diff --git a/.gitignore b/.gitignore index deb5922..7100c6d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.py[cod] *~ +.ipynb_checkpoints # C extensions *.so @@ -42,4 +43,3 @@ log .idea .DS_Store -.ipynb_checkpoints diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b815a97 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,65 @@ +language: python +sudo: required +# if the https://travis-ci.org/ODM2/ODM2PythonAPI/requests ever says: missing config +# validate at: http://lint.travis-ci.org/ +python: +# - "2.6" + - "2.7" +# - "3.2" +# - "3.3" +# - "3.4" +# - "3.5" +# - "3.5-dev" # 3.5 development branch +# - "nightly" # currently points to 3.6-dev +# command to install dependencies +cache: + directories: + - $HOME/.cache/pip/wheels + - $HOME/virtualenv/python2.7.9 +services: + - mysql + - postgresql +addons: + apt: + packages: + - cmake + - unixodbc + - unixodbc-dev + - odbcinst1debian2 + - odbcinst + - freetds-dev + - freetds-bin + - tdsodbc + - libc6 + - e2fsprogs + - mysql-client + - libproj-dev + - libgeos-dev + - libspatialite-dev +# mariadb: '10.1' +before_script: + - ./scripts/mysql_setup.sh + - ./scripts/postgres_setup.sh + - ./scripts/freetds.sh + +before_install: +# python -m pip makes the install go into the virtualenv + - python -m pip install pandas + - export PYMSSQL_BUILD_WITH_BUNDLED_FREETDS=1;python -m pip install pymssql + - python -m pip install mysql-python +install: # now just our code + - pip install git+https://github.com/ODM2/geoalchemy.git@odm2#egg=geoalchemy-0.7.3 + - pip install . + - pip install -r requirements_tests.txt --allow-external pyodbc --allow-unverified pyodbc + # pysqlite + - pip install pysqlite + - pip list + +# don't forget to open up the azure mssql server to these addreses +# https://docs.travis-ci.com/user/ip-addresses/ + +# command to run tests +script: + + - py.test + diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..9bf8ad1 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,171 @@ +environment: +# patterned after: https://github.com/ogrisel/python-appveyor-demo/blob/master/appveyor.yml + global: + # SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the + # /E:ON and /V:ON options are not enabled in the batch script intepreter + # See: http://stackoverflow.com/a/13751649/163740 + CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd" + # postgres + POSTGRES_PORT: tcp://localhost:5432 + POSTGRES_ENV_POSTGRES_USER: postgres + POSTGRES_ENV_POSTGRES_PASSWORD: Password12! + POSTGRES_ENV_POSTGRES_DB: odm2 + POSTGRES_PATH: C:\Program Files\PostgreSQL\9.4 + PGUSER: postgres + PGPASSWORD: Password12! + # mysql + MYSQL_PORT: tcp://localhost:3306 + MYSQL_ENV_MYSQL_USER: root + MYSQL_ENV_MYSQL_PASSWORD: Password12! + MYSQL_ENV_MYSQL_DATABASE: odm2 + MYSQL_PATH: C:\Program Files\MySql\MySQL Server 5.6 + MYSQL_PWD: Password12! + # sql server + SQLSERVER_ENV_SQLSERVER_HOST: localhost + SQLSERVER_ENV_SQLSERVER_PORT: 1433 + SQLSERVER_ENV_SQLSERVER_USER: sa + SQLSERVER_ENV_SQLSERVER_PASSWORD: Password12! + SQLSERVER_ENV_SQLSERVER_DATABASE: odm2 + matrix: + + + # Pre-installed Python versions, which Appveyor may upgrade to + # a later point release. + # See: http://www.appveyor.com/docs/installed-software#python + + + matrix: + - PYTHON: "C:\\Python27-conda32" + PYTHON_VERSION: "2.7" + PYTHON_ARCH: "32" + + - PYTHON: "C:\\Python34-conda64" + PYTHON_VERSION: "3.4" + PYTHON_ARCH: "64" + +services: + - mssql2008r2sp2 + - mysql + - postgresql + +install: + # If there is a newer build queued for the same PR, cancel this one. + # The AppVeyor 'rollout builds' option is supposed to serve the same + # purpose but it is problematic because it tends to cancel builds pushed + # directly to master instead of just PR builds (or the converse). + # credits: JuliaLang developers. + - ps: if ($env:APPVEYOR_PULL_REQUEST_NUMBER -and $env:APPVEYOR_BUILD_NUMBER -ne ((Invoke-RestMethod ` + https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | ` + Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { ` + throw "There are newer queued builds for this pull request, failing early." } + - ECHO "Filesystem root:" + - ps: "ls \"C:/\"" + + - ECHO "Installed SDKs:" + - ps: "ls \"C:/Program Files/Microsoft SDKs/Windows\"" + + # Install Python (from the official .msi of http://python.org) and pip when + # not already installed. + - ps: if (-not(Test-Path($env:PYTHON))) { & appveyor\install.ps1 } + + # Prepend newly installed Python to the PATH of this build (this cannot be + # done from inside the powershell script as it would require to restart + # the parent CMD process). + - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" + # add databases + - "SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%" + + # Check that we have the expected version and architecture for Python + - "python --version" + - "python -c \"import struct; print(struct.calcsize('P') * 8)\"" + + # Upgrade to the latest version of pip to avoid it displaying warnings + # about it being out of date. + - "pip install --disable-pip-version-check --user --upgrade pip" + + # Install the build dependencies of the project. If some dependencies contain + # compiled extensions and are not provided as pre-built wheel packages, + # pip will build them from source using the MSVC compiler matching the + # target Python version and architecture + - "%CMD_IN_ENV% pip install -r dev-requirements.txt" + +build_script: + # Build the compiled extension + - "%CMD_IN_ENV% python setup.py build" +build_script: + # Build the compiled extension + - "%CMD_IN_ENV% python setup.py build" + build_script: + # postgres + - createdb odm2 + - psql -d odm2 -a -f spec/databases/postgresql/schema/schema.sql + # mysql + - mysql -e "drop database test; create database odm2;" --user=root + - mysql sqlectron < spec/databases/mysql/schema/schema.sql --user=root + # sqlserver + - ps: ./appveyor-sqlserver.ps1 SQL2008R2SP2 + - sqlcmd -S localhost,1433 -U sa -P Password12! -Q "CREATE DATABASE odm2" -d "master" + - sqlcmd -S localhost,1433 -U sa -P Password12! -i spec/databases/sqlserver/schema/schema.sql -d "odm2" + - sqlcmd -S localhost,1433 -U sa -P Password12! -Q "select table_name from information_schema.tables" -d "odm2" + +test_script: + # Run the project tests + - "%CMD_IN_ENV% python setup.py nosetests" + +language: python +python: +# - "2.6" + - "2.7" +# - "3.2" +# - "3.3" +# - "3.4" +# - "3.5" +# - "3.5-dev" # 3.5 development branch +# - "nightly" # currently points to 3.6-dev +# command to install dependencies + +before_install: +#https://github.com/sqlectron/sqlectron-core/blob/master/appveyor.yml + - mysql -e "CREATE USER 'ODM'@'localhost' IDENTIFIED BY 'odm';GRANT ALL PRIVILEGES ON *.* TO 'ODM'@'localhost';" -uroot + - mysql -e "create database IF NOT EXISTS odm2;" -uroot + - mysql -e "create database IF NOT EXISTS odm2test;" -uroot + - psql -U postgres -c "create extension postgis" + - psql -c 'DROP DATABASE IF EXISTS odm2test;' -U postgres; + - psql -c 'create database odm2test;' -U postgres; +# - psql -U postgres -d odm2test -a -f ./tests/schemas/postgresql/ODM2_for_PostgreSQL.sql + - psql -c 'DROP DATABASE IF EXISTS odm2;' -U postgres; + - psql -c 'create database odm2;' -U postgres; + # patterned after: https://github.com/ptrv/gpx2spatialite/blob/master/.travis.yml +# - sudo apt-get install -y python-software-properties +# - sudo apt-add-repository -y ppa:git-core/ppa +# - sudo apt-add-repository -y ppa:ubuntugis/ppa +# - sudo apt-get update -qq +# - sudo apt-get install unixodbc unixodbc-dev tdsodbc +# - sudo apt-get install freetds-dev freetds-bin +# - sudo apt-get install libc6 e2fsprogs # mssql driver + # Spatialiate +# - sudo apt-get install -y libproj-dev libgeos-dev libspatialite-dev +# - sudo ln -s /usr/lib/x86_64-linux-gnu/libspatialite.so /usr/lib/libspatialite.so +# - sudo apt-get install python-scipy python-matplotlib python-pandas python-sympy python-nose +# - sudo apt-get install python-matplotlib python-pandas python-nose + - pip install pandas +install: # now just our code + - pip install git+https://github.com/ODM2/geoalchemy.git@odm2#egg=geoalchemy-0.7.3 + - pip install . + - pip install -r requirements_tests.txt --allow-external pyodbc --allow-unverified pyodbc + # pysqlite + - pip install pysqlite + - dir .\tests\usecasesql\littlebearriver\sampledatabases\odm2_mysql\LBR_MySQL_SmallExample.sql .\tests\usecasesql\marchantariats\marchantariats.sql + - mysql --user root --verbose odm2 < .\tests\usecasesql\littlebearriver\sampledatabases\odm2_mysql\LBR_MySQL_SmallExample.sql +# add -a to psql to see full log + - psql -U postgres -f ./tests/usecasesql/marchantariats/marchantariats.sql + +# don't forget to open up the azure mssql server to these addreses +# https://docs.travis-ci.com/user/ip-addresses/ + +# command to run tests +script: +# just the connection part + - py.test tests/test_connection.py + - py.test + diff --git a/distribution_notes.txt b/distribution_notes.txt new file mode 100644 index 0000000..8cb5bcf --- /dev/null +++ b/distribution_notes.txt @@ -0,0 +1,32 @@ + +Testing a package +* upload to pyptest: https://wiki.python.org/moin/TestPyPI +https://testpypi.python.org/pypi + +python setup.py sdist upload -r https://testpypi.python.org/pypi + +=== testing +cd dev_odm +virtualenv --system-site-packages v_odmtest +cd ODM2PythonAPI +python setup.py install +# above failed on windows... need to be able to compile code + +=== CONDA == WINDOWS +Start anaconda console +conda search "^python$" +conda create -n v_odm2test python=2.7.11 anaconda panadas sqlalchemy six geos pyodbc +activate v_odm2test +conda install -c SciTools shapely # to get binary versions + + +conda remove --name v_odm2test --all +# note issue solved by editing (anacona)\Scripts\activate.bat +http://stackoverflow.com/questions/34818282/anaconda-prompt-loading-error-the-input-line-is-too-long +=== +note for packaging yodatools +https://gehrcke.de/2014/02/distributing-a-python-command-line-application/ + +creating the databases: +connection string for spatiallite +sqlite+pysqlite:///../../../ODM2PythonAPI/tests/spatialite/odm2_test.sqlite diff --git a/doc/DatabaseNotes.md b/doc/DatabaseNotes.md new file mode 100644 index 0000000..d8439a0 --- /dev/null +++ b/doc/DatabaseNotes.md @@ -0,0 +1,15 @@ +Database Notes +============== + +Supported Databases: +* sqlite/Spatialite +* Postgres +* MySql +* MsSql + +Generic Instructions: +===================== +# create database from Schema in ODM2 https://github.com/ODM2/ODM2/tree/master/src +# determine appropriate connection string +# populate database using the load_cv.py toolkit +# Use YODA Tools. \ No newline at end of file diff --git a/doc/MySql.md b/doc/MySql.md new file mode 100644 index 0000000..dc49d8a --- /dev/null +++ b/doc/MySql.md @@ -0,0 +1,47 @@ +MySql Notes: +========= +On Linux, you are required to use { lower_case_table_names=1 }. It is suggested that databases should use this setting. + +Connection String +================= + +Create DB +========= + +Populate with CV +=============== + + +Linux Troubleshooting Notes +=========================== +On Linux, you are required to use { lower_case_table_names=1 }. +to see if this is set type: +mysql --verbose -e "show variables like 'lower%';" --user=root +-------------- +show variables like 'lower%' +-------------- ++------------------------+-------+ +| Variable_name | Value | ++------------------------+-------+ +| lower_case_file_system | OFF | +| lower_case_table_names | 1 | ++------------------------+-------+ + +If not you can install this line in $HOME/.my.cnf, /etc/my.cnf, or /etc/mysql/my.cnf + +[mysqld] +lower-case-table-names = 1 + +to see what files are being used by mysql: +> strace mysql 2>&1 | grep cnf + +stat("/etc/my.cnf", 0x7ffef7c8dca0) = -1 ENOENT (No such file or directory) +stat("/etc/mysql/my.cnf", {st_mode=S_IFREG|0644, st_size=5232, ...}) = 0 +open("/etc/mysql/my.cnf", O_RDONLY|O_CLOEXEC) = 3 +stat("/etc/mysql/conf.d/mariadb.cnf", {st_mode=S_IFREG|0644, st_size=435, ...}) = 0 +open("/etc/mysql/conf.d/mariadb.cnf", O_RDONLY|O_CLOEXEC) = 4 +stat("/etc/mysql/conf.d/mysqld_safe_syslog.cnf", {st_mode=S_IFREG|0644, st_size=36, ...}) = 0 +open("/etc/mysql/conf.d/mysqld_safe_syslog.cnf", O_RDONLY|O_CLOEXEC) = 4 +stat("/etc/mysql/conf.d/tokudb.cnf", {st_mode=S_IFREG|0644, st_size=285, ...}) = 0 +open("/etc/mysql/conf.d/tokudb.cnf", O_RDONLY|O_CLOEXEC) = 4 +stat("/home/travis/.my.cnf", 0x7ffef7c8dca0) = -1 ENOENT (No such file or directory) diff --git a/notes_sqlacodegen.txt b/notes_sqlacodegen.txt new file mode 100644 index 0000000..8aa1084 --- /dev/null +++ b/notes_sqlacodegen.txt @@ -0,0 +1,8 @@ + +https://pypi.python.org/pypi/sqlacodegen + +pip install sqlacodegen + +sqlacodegen "mssql+pyodbc://user:password@localhost/ODM2?driver=SQL+Server+Native+Client+10.0" + +sqlacodegen "mssql+pyodbc://user:password@localhost/ODM2_201512?driver=SQL+Server+Native+Client+10.0" --schema ODM2 --outfile generated_schema_201512.py diff --git a/odm2api/ODMconnection.py b/odm2api/ODMconnection.py index c293161..fa22aa7 100644 --- a/odm2api/ODMconnection.py +++ b/odm2api/ODMconnection.py @@ -9,12 +9,12 @@ import urllib import sys import os -import pyodbc + # LIBSPATIALITE_PATH = './libspatialite.so.5.1.0' class SessionFactory(): - def __init__(self, connection_string, echo, version = 1.1): + def __init__(self, connection_string, echo=True, version = 1.1): if 'sqlite' in connection_string: # from sqlite3 import dbapi2 as sqlite # put the spatialite dll on the path. If one had pyspatialite installed thn @@ -48,6 +48,7 @@ def __init__(self, connection_string, echo, version = 1.1): self.test_engine = self.engine elif 'mssql' in connection_string: + import pyodbc self.engine = create_engine(connection_string, encoding='utf-8', echo=echo, pool_recycle=3600) self.test_engine = create_engine(connection_string, encoding='utf-8', echo=echo, pool_recycle=3600, connect_args={'timeout': 1}) elif 'postgresql' in connection_string or 'mysql' in connection_string: @@ -72,20 +73,21 @@ def __init__(self, debug=False): self._connections = [] self.version = 0 self._connection_format = "%s+%s://%s:%s@%s/%s" + self._connection_format_nopassword = "%s+%s://%s@%s/%s" @classmethod - def createConnection(self, engine, address, db=None, user=None, password=None, dbtype = 2.0): + def createConnection(self, engine, address, db=None, user=None, password=None, dbtype = 2.0, echo=False): if engine == 'sqlite': connection_string = engine +':///'+address - s = SessionFactory(connection_string, echo = False, version= dbtype) + s = SessionFactory(connection_string, echo = echo, version= dbtype) setSchema(s.engine) return s else: connection_string = dbconnection.buildConnDict(dbconnection(), engine, address, db, user, password) if self.isValidConnection(connection_string, dbtype): - s= SessionFactory(connection_string, echo = False, version= dbtype) + s= SessionFactory(connection_string, echo = echo, version= dbtype) setSchema(s.engine) return s else : @@ -110,8 +112,8 @@ def isValidConnection(self, connection_string, dbtype=2.0): return False @classmethod - def testEngine(self, connection_string): - s = SessionFactory(connection_string, echo=False) + def testEngine(self, connection_string, echo = False ): + s = SessionFactory(connection_string, echo=echo) try: setSchema(s.test_engine) s.test_Session().query(Variable2.VariableCode).limit(1).first() @@ -122,8 +124,8 @@ def testEngine(self, connection_string): return True @classmethod - def testEngine1_1(self, connection_string): - s = SessionFactory(connection_string, echo=False) + def testEngine1_1(self, connection_string, echo = False ): + s = SessionFactory(connection_string, echo=echo) try: # s.ms_test_Session().query(Variable1).limit(1).first() s.test_Session().query(ODM.Variable.code).limit(1).first() @@ -190,7 +192,9 @@ def __buildConnectionString(self, conn_dict): if conn_dict['engine'] == 'mssql' and sys.platform != 'win32': driver = "pyodbc" #'DRIVER={FreeTDS};DSN=%s;UID=%s;PWD=%s;' % (conn_dict['address'], conn_dict['user'], conn_dict['password']) - quoted = urllib.quote_plus('DRIVER={FreeTDS};DSN=%s;UID=%s;PWD=%s;' % (conn_dict['address'], conn_dict['user'], conn_dict['password'])) + # quoted = urllib.quote_plus('DRIVER={FreeTDS};DSN=%s;UID=%s;PWD=%s;' % (conn_dict['address'], conn_dict['user'], conn_dict['password'])) + quoted = urllib.quote_plus('DRIVER={FreeTDS};DSN=%s;UID=%s;PWD=%s;DATABASE=%s' % + (conn_dict['address'], conn_dict['user'], conn_dict['password'],conn_dict['db'],)) conn_string = 'mssql+pyodbc:///?odbc_connect={}'.format(quoted) else: if conn_dict['engine'] == 'mssql': @@ -200,16 +204,30 @@ def __buildConnectionString(self, conn_dict): if "sqlncli11.dll" in os.listdir("C:\\Windows\\System32"): conn = "%s+%s://%s:%s@%s/%s?driver=SQL+Server+Native+Client+11.0" self._connection_format = conn + conn_string = self._connection_format % ( + conn_dict['engine'], driver, conn_dict['user'], conn_dict['password'], conn_dict['address'], + conn_dict['db']) elif conn_dict['engine'] == 'mysql': driver = "pymysql" + conn_string = self.constringBuilder(conn_dict, driver) elif conn_dict['engine'] == 'postgresql': driver = "psycopg2" + conn_string = self.constringBuilder(conn_dict, driver) else: driver = "None" + conn_string = self.constringBuilder(conn_dict, driver) + + + # print "******", conn_string + return conn_string + def constringBuilder(self, conn_dict, driver): + if conn_dict['password'] is None or not conn_dict['password']: + conn_string = self._connection_format_nopassword % ( + conn_dict['engine'], driver, conn_dict['user'], conn_dict['address'], + conn_dict['db']) + else: conn_string = self._connection_format % ( conn_dict['engine'], driver, conn_dict['user'], conn_dict['password'], conn_dict['address'], conn_dict['db']) - - # print "******", conn_string return conn_string diff --git a/requirements.txt b/requirements.txt index e6e8933..1aa136d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,7 @@ pyodbc -pymysql six sqlalchemy -geoalchemy -#https://github.com/ODM2/geoalchemy/archive/v0.7.3.tar.gz +-e git+https://github.com/ODM2/geoalchemy.git@odm2#egg=geoalchemy-0.7.3 shapely -dateutils pandas #psycopg2 # Commented out because I could not pip install it. -#matplotlib -#sqlalchemy-migrate diff --git a/requirements_tests.txt b/requirements_tests.txt index 7026576..db6f2b8 100644 --- a/requirements_tests.txt +++ b/requirements_tests.txt @@ -1,21 +1,13 @@ -six -sqlalchemy --e git+https://github.com/ODM2/geoalchemy.git@odm2 -#Change line #242 in geoalchemy/base.py -#from: -#class SpatialComparator(ColumnProperty.ColumnComparator): -#to : -#class SpatialComparator(ColumnProperty.Comparator): - -shapely - -#matplotlib -dateutils -pandas - +-r requirements.txt +pytest +pytest-cov +mock #db support pymysql pysqlite -pyspatialite +pymssql +psycopg2 +#pyspatialite +mysql-python + -#sqlalchemy-migrate diff --git a/scripts/apt-get.sh b/scripts/apt-get.sh new file mode 100755 index 0000000..7409880 --- /dev/null +++ b/scripts/apt-get.sh @@ -0,0 +1,15 @@ +#!/bin/bash + +sudo apt-get install -y python-software-properties +sudo apt-add-repository -y ppa:git-core/ppa +sudo apt-add-repository -y ppa:ubuntugis/ppa +sudo apt-get update -qq +sudo apt-get install unixodbc unixodbc-dev odbcinst1debian2 odbcinst +sudo apt-get install freetds-dev freetds-bin tdsodbc +sudo apt-get install libc6 e2fsprogs # mssql driver +sudo apt-get install mysql-client + # Spatialite +sudo apt-get install -y libproj-dev libgeos-dev libspatialite-dev +sudo ln -s /usr/lib/x86_64-linux-gnu/libspatialite.so /usr/lib/libspatialite.so +# - sudo apt-get install python-scipy python-matplotlib python-pandas python-sympy python-nose +sudo apt-get install python-matplotlib python-pandas python-nose \ No newline at end of file diff --git a/scripts/freetds.sh b/scripts/freetds.sh new file mode 100755 index 0000000..e057428 --- /dev/null +++ b/scripts/freetds.sh @@ -0,0 +1,39 @@ +#!/bin/bash +ls /usr/lib/x86_64-linux-gnu/odbc/ +echo "[FreeTDS]"> .odbcinst.ini +echo "Description = v0.91 with protocol v7.2">> .odbcinst.ini +echo "Driver = /usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so">> .odbcinst.ini +sudo odbcinst -i -d -f .odbcinst.ini +echo "[azure]" > azure.odbc +echo "Server = nrb8xkgxaj.database.windows.net" >> azure.odbc +echo "Driver = FreeTDS" >> azure.odbc +echo "Database = odm2" >> azure.odbc +sudo odbcinst -i -s -l -f azure.odbc +echo "[moonstone]" > moonstone.odbc +echo "Server = moonstone.sdsc.edu" >> moonstone.odbc +echo "Driver = FreeTDS" >> moonstone.odbc +echo "Database = odm2" >> moonstone.odbc +sudo odbcinst -i -s -l -f moonstone.odbc + # free tds +sudo echo "[FreeTDS]" >> odbcinst.ini +sudo echo "Description = v0.91 with protocol v7.2" >> odbcinst.ini +sudo echo "Driver = /usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so " >> odbcinst.ini +#sudo echo "Setup = $HOME/oob/client/libesoobsetup.so >> odbcinst.ini +#sudo echo "FileUsage = 1" >> odbcinst.ini + # - ls -al /etc/odbcinst.ini /etc/odbc.ini +cat /etc/odbcinst.ini +cat /etc/odbc.ini + # - ls /etc/ODBCDataSources + # - cat .odbc.ini #not found + # +echo "[global]" > .freetds.conf +echo "tds version = 4.2" >> .freetds.conf +echo "[kyle]" >> .freetds.conf +echo "host = nrb8xkgxaj.database.windows.net" >> .freetds.conf +echo "port = 1433" >> .freetds.conf +echo "database=odm2" >> .freetds.conf +echo "[moonstone]">> .freetds.conf +echo "host = moonstone.sdsc.edu">> .freetds.conf +echo "port = 1433">> .freetds.conf +echo "database=odm2" >> .freetds.conf +cat .freetds.conf \ No newline at end of file diff --git a/scripts/mysql_setup.sh b/scripts/mysql_setup.sh new file mode 100755 index 0000000..1beefb1 --- /dev/null +++ b/scripts/mysql_setup.sh @@ -0,0 +1,32 @@ +ls -al /etc/mysql +sudo service mysql stop +# lower-case-table-names = 1 leaving lower_case_table_names=1 since that is what the docs say + echo "[mysqld]" > $HOME/.my.cnf + echo "lower-case-table-names = 1" >> $HOME/.my.cnf +# echo "lower_case_table_names=1" >> $HOME/.my.cnf +cat $HOME/.my.cnf # be sure it registered +service --status-all +# this should have worked. +sudo sed -i '/\[mysqld\]/a lower_case_table_names = 1 ' /etc/mysql/my.cnf +cat /etc/mysql/my.cnf +sudo service mysql start +mysql --verbose -e "show variables like 'lower%';" --user=root + +#strace mysql 2>&1 | grep cnf # will tell you what files are being used +mysql --verbose -e "CREATE USER 'ODM'@'localhost' IDENTIFIED BY 'odm';GRANT ALL PRIVILEGES ON *.* TO 'ODM'@'localhost';" --user=root +mysql --verbose -e "CREATE USER 'ODM'@'127.0.0.1' IDENTIFIED BY 'odm';GRANT ALL PRIVILEGES ON *.* TO 'ODM'@'127.0.0.1';" --user=root +mysql --verbose -e "CREATE USER 'ODM'@'%' IDENTIFIED BY 'odm';GRANT ALL PRIVILEGES ON *.* TO 'ODM'@'%';" --user=root +mysql --verbose -e "create database IF NOT EXISTS odm2;" --user=root +mysql -e "create database IF NOT EXISTS odm2test;" --user=root +##### +# install +##### +ls -al ./tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql ./tests/usecasesql/marchantariats/marchantariats.sql +mysql --user=ODM --password=odm odm2 < ./tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql +mysql --user=root -e "show databases;" +mysql --user=root -e "GRANT ALL PRIVILEGES ON odm2.* TO 'ODM'@'localhost';FLUSH PRIVILEGES;" +# these should produce results, if they don't the lower_case_table_names failed +# should make them grep or sed for some keywords +mysql --user=ODM --password=odm odm2 -e "use odm2; Select * from Variables;" +mysql --user=ODM --password=odm odm2 -e "Select * from odm2.Variables;" +mysql --user=ODM --password=odm -e "Select * from odm2.Variables;" \ No newline at end of file diff --git a/scripts/postgres_setup.sh b/scripts/postgres_setup.sh new file mode 100755 index 0000000..b35cf5f --- /dev/null +++ b/scripts/postgres_setup.sh @@ -0,0 +1,10 @@ +#!/bin/bash +psql -U postgres -c "create extension postgis" +psql -c 'DROP DATABASE IF EXISTS odm2test;' -U postgres; +psql -c 'create database odm2test;' -U postgres; +#psql -U postgres -d odm2test -a -f ./tests/schemas/postgresql/ODM2_for_PostgreSQL.sql +psql -c 'DROP DATABASE IF EXISTS odm2;' -U postgres; +psql -c 'create database odm2;' -U postgres; + ## install + # add -a to psql to see full log, -q is quiet +psql -U postgres -q -f ./tests/usecasesql/marchantariats/marchantariats.sql \ No newline at end of file diff --git a/setup.py b/setup.py index 64a825a..5cccf8c 100644 --- a/setup.py +++ b/setup.py @@ -17,35 +17,40 @@ from os import path here = path.abspath(path.dirname(__file__)) -with open('requirements.txt') as f: - require = f.readlines() -install_requires = [r.strip() for r in require if - not r.startswith('http') and not r.startswith('#')] + +from pip.req import parse_requirements +install_reqs = parse_requirements('requirements.txt', session=False) +reqs = [str(ir.req) for ir in install_reqs] # Get the long description from the relevant file -# with open(path.join(here, 'DESCRIPTION.rst'), encoding='utf-8') as f: -# long_description = f.read() -long_description = "" +with open(path.join(here, 'README.md'), encoding='utf-8') as f: + long_description = f.read() +#long_description = "" setup( name='odm2api', # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.1', + version='0.5', - description='ODM 2 Python API', + description='A Python-based application programmers interface for the Observations Data Model 2 (ODM2) ', long_description=long_description, # The project's main homepage. url='https://github.com/ODM2/ODM2PythonAPI', # Author details - author='UWRL ', - author_email='test@usu.edu', + author='ODM2 team-Stephanie Reeder', + author_email='stephanie.reeder@usu.edu', + + # note: maintainer gets listed as author in PKG-INFO, so leaving + # this commented out for now + maintainer='David Valentine', + maintainer_email='david.valentine@gmail.com', # Choose your license - license='Open GPL', + license='BSD-3-Clause', # See https://pypi.python.org/pypi?%3Aaction=list_classifiers classifiers=[ @@ -53,22 +58,24 @@ # 3 - Alpha # 4 - Beta # 5 - Production/Stable - 'Development Status :: 4 - Beta', + 'Development Status :: 3 - Alpha', # Indicate who your project is intended for 'Intended Audience :: Developers', 'Topic :: Software Development :: Build Tools', # Pick your license as you wish (should match "license" above) - 'License :: OSI Approved :: Open GPL', - + 'License :: OSI Approved :: BSD License', + 'Operating System :: OS Independent', # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 2.7' + 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Scientific/Engineering' ], # What does your project relate to? - keywords='ODM2 development', + keywords='Observations Data Model ODM2', # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). @@ -80,7 +87,15 @@ # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=install_requires, + install_requires=install_reqs, + # install_requires=[ + # 'pyodbc', + # 'six', + # 'sqlalchemy', + # 'geoalchemy>=0.7.3', + # 'shapely', + # 'pandas', + # ], # dependency_links- geoalchemy from the ODM repository dependency_links=[ "git+https://github.com/ODM2/geoalchemy.git@v0.7.3#egg=geoalchemy-0.7.3" @@ -90,11 +105,12 @@ # dependencies). You can install these using the following syntax, # for example: # $ pip install -e .[dev,test] - - # extras_require={ - # 'dev': ['check-manifest'], - # 'test': ['coverage'], - # }, + extras_require={ + 'mysql': ['pymysql'], + 'postgis': ['psycopg2'], + 'sqlite': ['pyspatialite >=3.0.0'], # need to look at: http://www.gaia-gis.it/spatialite-2.4.0-4/splite-python.html + 'test': ['coverage'], + }, # If there are data files included in your packages that need to be # installed, specify them here. If using Python 2.6 or less, then these diff --git a/tests/schemas/__init__.py b/tests/schemas/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/schemas/ms_sql_server/ODM2_for_MSSQL.sql b/tests/schemas/ms_sql_server/ODM2_for_MSSQL.sql new file mode 100644 index 0000000..b3733d1 --- /dev/null +++ b/tests/schemas/ms_sql_server/ODM2_for_MSSQL.sql @@ -0,0 +1,2412 @@ +-- Drop the database called 'ODM2' if it exists and then create a new database called 'ODM2' +USE master; +GO + +IF DB_ID(N'ODM2') IS NOT NULL +DROP DATABASE ODM2; +GO + +CREATE DATABASE ODM2; +GO + +USE ODM2; +GO + +CREATE SCHEMA ODM2; +GO + +/***************************************************************************/ +/************************* CREATE ODM2ANNOTATIONS **************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.ActionAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.Annotations ( + AnnotationID int IDENTITY (1,1) NOT NULL, + AnnotationTypeCV varchar (255) NOT NULL, + AnnotationCode varchar (50) NULL, + AnnotationText varchar (500) NOT NULL, + AnnotationDateTime datetime NULL, + AnnotationUTCOffset int NULL, + AnnotationLink varchar (255) NULL, + AnnotatorID int NULL, + CitationID int NULL, + PRIMARY KEY (AnnotationID) +) +CREATE TABLE ODM2.CategoricalResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.EquipmentAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + EquipmentID int NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.MeasurementResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.MethodAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + MethodID int NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.PointCoverageResultValueAnnotations ( + BridgeID bigint IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.ProfileResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.ResultAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + AnnotationID int NOT NULL, + BeginDateTime datetime NOT NULL, + EndDateTime datetime NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.SamplingFeatureAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + SamplingFeatureID int NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.SectionResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.SpectraResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.TimeSeriesResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.TrajectoryResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.TransectResultValueAnnotations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ValueID bigint NOT NULL, + AnnotationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +/***************************************************************************/ +/***************************** CREATE ODM2CORE *****************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.ActionBy ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + AffiliationID int NOT NULL, + IsActionLead bit NOT NULL, + RoleDescription varchar (500) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.Actions ( + ActionID int IDENTITY (1,1) NOT NULL, + ActionTypeCV varchar (255) NOT NULL, + MethodID int NOT NULL, + BeginDateTime datetime NOT NULL, + BeginDateTimeUTCOffset int NOT NULL, + EndDateTime datetime NULL, + EndDateTimeUTCOffset int NULL, + ActionDescription varchar (500) NULL, + ActionFileLink varchar (255) NULL, + PRIMARY KEY (ActionID) +) +CREATE TABLE ODM2.Affiliations ( + AffiliationID int IDENTITY (1,1) NOT NULL, + PersonID int NOT NULL, + OrganizationID int NULL, + IsPrimaryOrganizationContact bit NULL, + AffiliationStartDate date NOT NULL, + AffiliationEndDate date NULL, + PrimaryPhone varchar (50) NULL, + PrimaryEmail varchar (255) NOT NULL, + PrimaryAddress varchar (255) NULL, + PersonLink varchar (255) NULL, + PRIMARY KEY (AffiliationID) +) +CREATE TABLE ODM2.Datasets ( + DatasetID int IDENTITY (1,1) NOT NULL, + DatasetUUID uniqueidentifier NOT NULL, + DatasetTypeCV varchar (255) NOT NULL, + DatasetCode varchar (50) NOT NULL, + DatasetTitle varchar (255) NOT NULL, + DatasetAbstract varchar (500) NOT NULL, + PRIMARY KEY (DatasetID), + CONSTRAINT uc_DatasetCode UNIQUE (DatasetCode) +) +CREATE TABLE ODM2.DatasetsResults ( + BridgeID int IDENTITY (1,1) NOT NULL, + DatasetID int NOT NULL, + ResultID bigint NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.FeatureActions ( + FeatureActionID int IDENTITY (1,1) NOT NULL, + SamplingFeatureID int NOT NULL, + ActionID int NOT NULL, + PRIMARY KEY (FeatureActionID) +) +CREATE TABLE ODM2.Methods ( + MethodID int IDENTITY (1,1) NOT NULL, + MethodTypeCV varchar (255) NOT NULL, + MethodCode varchar (50) NOT NULL, + MethodName varchar (255) NOT NULL, + MethodDescription varchar (500) NULL, + MethodLink varchar (255) NULL, + OrganizationID int NULL, + PRIMARY KEY (MethodID), + CONSTRAINT uc_MethodCode UNIQUE (MethodCode) +) +CREATE TABLE ODM2.Organizations ( + OrganizationID int IDENTITY (1,1) NOT NULL, + OrganizationTypeCV varchar (255) NOT NULL, + OrganizationCode varchar (50) NOT NULL, + OrganizationName varchar (255) NOT NULL, + OrganizationDescription varchar (500) NULL, + OrganizationLink varchar (255) NULL, + ParentOrganizationID int NULL, + PRIMARY KEY (OrganizationID), + CONSTRAINT uc_OrganizationCode UNIQUE (OrganizationCode) +) +CREATE TABLE ODM2.People ( + PersonID int IDENTITY (1,1) NOT NULL, + PersonFirstName varchar (255) NOT NULL, + PersonMiddleName varchar (255) NULL, + PersonLastName varchar (255) NOT NULL, + PRIMARY KEY (PersonID) +) +CREATE TABLE ODM2.ProcessingLevels ( + ProcessingLevelID int IDENTITY (1,1) NOT NULL, + ProcessingLevelCode varchar (50) NOT NULL, + Definition varchar (500) NULL, + Explanation varchar (500) NULL, + PRIMARY KEY (ProcessingLevelID), + CONSTRAINT uc_ProcessingLevelCode UNIQUE (ProcessingLevelCode) +) +CREATE TABLE ODM2.RelatedActions ( + RelationID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedActionID int NOT NULL, + PRIMARY KEY (RelationID) +) +CREATE TABLE ODM2.Results ( + ResultID bigint IDENTITY (1,1) NOT NULL, + ResultUUID uniqueidentifier NOT NULL, + FeatureActionID int NOT NULL, + ResultTypeCV varchar (255) NOT NULL, + VariableID int NOT NULL, + UnitsID int NOT NULL, + TaxonomicClassifierID int NULL, + ProcessingLevelID int NOT NULL, + ResultDateTime datetime NULL, + ResultDateTimeUTCOffset bigint NULL, + ValidDateTime datetime NULL, + ValidDateTimeUTCOffset bigint NULL, + StatusCV varchar (255) NULL, + SampledMediumCV varchar (255) NOT NULL, + ValueCount int NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.SamplingFeatures ( + SamplingFeatureID int IDENTITY (1,1) NOT NULL, + SamplingFeatureUUID uniqueidentifier NOT NULL, + SamplingFeatureTypeCV varchar (255) NOT NULL, + SamplingFeatureCode varchar (50) NOT NULL, + SamplingFeatureName varchar (255) NULL, + SamplingFeatureDescription varchar (500) NULL, + SamplingFeatureGeotypeCV varchar (255) NULL, + FeatureGeometry geometry NULL, + FeatureGeometryWKT varchar (8000) NULL, + Elevation_m float NULL, + ElevationDatumCV varchar (255) NULL, + PRIMARY KEY (SamplingFeatureID), + CONSTRAINT uc_SamplingFeatureCode UNIQUE (SamplingFeatureCode) +) +CREATE TABLE ODM2.TaxonomicClassifiers ( + TaxonomicClassifierID int IDENTITY (1,1) NOT NULL, + TaxonomicClassifierTypeCV varchar (255) NOT NULL, + TaxonomicClassifierName varchar (255) NOT NULL, + TaxonomicClassifierCommonName varchar (255) NULL, + TaxonomicClassifierDescription varchar (500) NULL, + ParentTaxonomicClassifierID int NULL, + PRIMARY KEY (TaxonomicClassifierID) +) +CREATE TABLE ODM2.Units ( + UnitsID int IDENTITY (1,1) NOT NULL, + UnitsTypeCV varchar (255) NOT NULL, + UnitsAbbreviation varchar (50) NOT NULL, + UnitsName varchar (255) NOT NULL, + UnitsLink varchar (255) NULL, + PRIMARY KEY (UnitsID) +) +CREATE TABLE ODM2.Variables ( + VariableID int IDENTITY (1,1) NOT NULL, + VariableTypeCV varchar (255) NOT NULL, + VariableCode varchar (50) NOT NULL, + VariableNameCV varchar (255) NOT NULL, + VariableDefinition varchar (500) NULL, + SpeciationCV varchar (255) NULL, + NoDataValue float NOT NULL, + PRIMARY KEY (VariableID), + CONSTRAINT uc_VariableCode UNIQUE (VariableCode) +) +/***************************************************************************/ +/****************************** CREATE ODM2CV ******************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.CV_ActionType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_AggregationStatistic ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_AnnotationType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_CensorCode ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_DataQualityType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_DatasetType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_DirectiveType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_ElevationDatum ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_EquipmentType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_Medium ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_MethodType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_OrganizationType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_PropertyDataType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_QualityCode ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_RelationshipType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_ResultType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_SamplingFeatureGeoType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_SamplingFeatureType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_SiteType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_SpatialOffsetType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_Speciation ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_SpecimenType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_Status ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_TaxonomicClassifierType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_UnitsType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_VariableName ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +CREATE TABLE ODM2.CV_VariableType ( + Term varchar (255) NOT NULL, + Name varchar (255) NOT NULL, + Definition varchar (5000) NULL, + Category varchar (255) NULL, + SourceVocabularyURI varchar (255) NULL, + PRIMARY KEY (Name) +) +/***************************************************************************/ +/************************* CREATE ODM2DATAQUALITY **************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.DataQuality ( + DataQualityID int NOT NULL, + DataQualityTypeCV varchar (255) NOT NULL, + DataQualityCode varchar (255) NOT NULL, + DataQualityValue float NULL, + DataQualityValueUnitsID int NULL, + DataQualityDescription varchar (500) NULL, + DataQualityLink varchar (255) NULL, + PRIMARY KEY (DataQualityID), + CONSTRAINT uc_DataQualityCode UNIQUE (DataQualityCode) +) +CREATE TABLE ODM2.ReferenceMaterials ( + ReferenceMaterialID int IDENTITY (1,1) NOT NULL, + ReferenceMaterialMediumCV varchar (255) NOT NULL, + ReferenceMaterialOrganizationID int NOT NULL, + ReferenceMaterialCode varchar (50) NOT NULL, + ReferenceMaterialLotCode varchar (255) NULL, + ReferenceMaterialPurchaseDate datetime NULL, + ReferenceMaterialExpirationDate datetime NULL, + ReferenceMaterialCertificateLink varchar (255) NULL, + SamplingFeatureID int NULL, + PRIMARY KEY (ReferenceMaterialID), + CONSTRAINT uc_ReferenceMaterialCode UNIQUE (ReferenceMaterialCode) +) +CREATE TABLE ODM2.ReferenceMaterialValues ( + ReferenceMaterialValueID int IDENTITY (1,1) NOT NULL, + ReferenceMaterialID int NOT NULL, + ReferenceMaterialValue float NOT NULL, + ReferenceMaterialAccuracy float NULL, + VariableID int NOT NULL, + UnitsID int NOT NULL, + CitationID int NULL, + PRIMARY KEY (ReferenceMaterialValueID) +) +CREATE TABLE ODM2.ResultNormalizationValues ( + ResultID bigint NOT NULL, + NormalizedByReferenceMaterialValueID int NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.ResultsDataQuality ( + BridgeID int IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataQualityID int NOT NULL, + PRIMARY KEY (BridgeID) +) +/***************************************************************************/ +/************************** CREATE ODM2EQUIPMENT ***************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.CalibrationActions ( + ActionID int NOT NULL, + CalibrationCheckValue float NULL, + InstrumentOutputVariableID int NOT NULL, + CalibrationEquation varchar (255) NULL, + PRIMARY KEY (ActionID) +) +CREATE TABLE ODM2.CalibrationReferenceEquipment ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + EquipmentID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.CalibrationStandards ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + ReferenceMaterialID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.DataloggerFileColumns ( + DataloggerFileColumnID int IDENTITY (1,1) NOT NULL, + ResultID bigint NULL, + DataLoggerFileID int NOT NULL, + InstrumentOutputVariableID int NOT NULL, + ColumnLabel varchar (50) NOT NULL, + ColumnDescription varchar (500) NULL, + MeasurementEquation varchar (255) NULL, + ScanInterval float NULL, + ScanIntervalUnitsID int NULL, + RecordingInterval float NULL, + RecordingIntervalUnitsID int NULL, + AggregationStatisticCV varchar (255) NULL, + PRIMARY KEY (DataloggerFileColumnID) +) +CREATE TABLE ODM2.DataLoggerFiles ( + DataLoggerFileID int IDENTITY (1,1) NOT NULL, + ProgramID int NOT NULL, + DataLoggerFileName varchar (255) NOT NULL, + DataLoggerFileDescription varchar (500) NULL, + DataLoggerFileLink varchar (255) NULL, + PRIMARY KEY (DataLoggerFileID) +) +CREATE TABLE ODM2.DataloggerProgramFiles ( + ProgramID int IDENTITY (1,1) NOT NULL, + AffiliationID int NOT NULL, + ProgramName varchar (255) NOT NULL, + ProgramDescription varchar (500) NULL, + ProgramVersion varchar (50) NULL, + ProgramFileLink varchar (255) NULL, + PRIMARY KEY (ProgramID) +) +CREATE TABLE ODM2.Equipment ( + EquipmentID int IDENTITY (1,1) NOT NULL, + EquipmentCode varchar (50) NOT NULL, + EquipmentName varchar (255) NOT NULL, + EquipmentTypeCV varchar (255) NOT NULL, + EquipmentModelID int NOT NULL, + EquipmentSerialNumber varchar (50) NOT NULL, + EquipmentOwnerID int NOT NULL, + EquipmentVendorID int NOT NULL, + EquipmentPurchaseDate datetime NOT NULL, + EquipmentPurchaseOrderNumber varchar (50) NULL, + EquipmentDescription varchar (500) NULL, + EquipmentDocumentationLink varchar (255) NULL, + PRIMARY KEY (EquipmentID), + CONSTRAINT uc_EquipmentCode UNIQUE (EquipmentCode) +) +CREATE TABLE ODM2.EquipmentModels ( + EquipmentModelID int IDENTITY (1,1) NOT NULL, + ModelManufacturerID int NOT NULL, + ModelPartNumber varchar (50) NULL, + ModelName varchar (255) NOT NULL, + ModelDescription varchar (500) NULL, + IsInstrument bit NOT NULL, + ModelSpecificationsFileLink varchar (255) NULL, + ModelLink varchar (255) NULL, + PRIMARY KEY (EquipmentModelID) +) +CREATE TABLE ODM2.EquipmentUsed ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + EquipmentID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.InstrumentOutputVariables ( + InstrumentOutputVariableID int IDENTITY (1,1) NOT NULL, + ModelID int NOT NULL, + VariableID int NOT NULL, + InstrumentMethodID int NOT NULL, + InstrumentResolution varchar (255) NULL, + InstrumentAccuracy varchar (255) NULL, + InstrumentRawOutputUnitsID int NOT NULL, + PRIMARY KEY (InstrumentOutputVariableID) +) +CREATE TABLE ODM2.MaintenanceActions ( + ActionID int NOT NULL, + IsFactoryService bit NOT NULL, + MaintenanceCode varchar (50) NULL, + MaintenanceReason varchar (500) NULL, + PRIMARY KEY (ActionID) +) +CREATE TABLE ODM2.RelatedEquipment ( + RelationID int IDENTITY (1,1) NOT NULL, + EquipmentID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedEquipmentID int NOT NULL, + RelationshipStartDateTime datetime NOT NULL, + RelationshipStartDateTimeUTCOffset int NOT NULL, + RelationshipEndDateTime datetime NULL, + RelationshipEndDateTimeUTCOffset int NULL, + PRIMARY KEY (RelationID) +) +/***************************************************************************/ +/********************* CREATE ODM2EXTENSIONPROPERTIES **********************/ +/***************************************************************************/ + +CREATE TABLE ODM2.ActionExtensionPropertyValues ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + PropertyID int NOT NULL, + PropertyValue varchar (255) NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.CitationExtensionPropertyValues ( + BridgeID int IDENTITY (1,1) NOT NULL, + CitationID int NOT NULL, + PropertyID int NOT NULL, + PropertyValue varchar (255) NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.ExtensionProperties ( + PropertyID int IDENTITY (1,1) NOT NULL, + PropertyName varchar (255) NOT NULL, + PropertyDescription varchar (500) NULL, + PropertyDataTypeCV varchar (255) NOT NULL, + PropertyUnitsID int NULL, + PRIMARY KEY (PropertyID) +) +CREATE TABLE ODM2.MethodExtensionPropertyValues ( + BridgeID int IDENTITY (1,1) NOT NULL, + MethodID int NOT NULL, + PropertyID int NOT NULL, + PropertyValue varchar (255) NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.ResultExtensionPropertyValues ( + BridgeID int IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + PropertyID int NOT NULL, + PropertyValue varchar (255) NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.SamplingFeatureExtensionPropertyValues ( + BridgeID int IDENTITY (1,1) NOT NULL, + SamplingFeatureID int NOT NULL, + PropertyID int NOT NULL, + PropertyValue varchar (255) NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.VariableExtensionPropertyValues ( + BridgeID int IDENTITY (1,1) NOT NULL, + VariableID int NOT NULL, + PropertyID int NOT NULL, + PropertyValue varchar (255) NOT NULL, + PRIMARY KEY (BridgeID) +) +/***************************************************************************/ +/********************* CREATE ODM2EXTERNALIDENTIFIERS **********************/ +/***************************************************************************/ + +CREATE TABLE ODM2.CitationExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + CitationID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + CitationExternalIdentifier varchar (255) NOT NULL, + CitationExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.ExternalIdentifierSystems ( + ExternalIdentifierSystemID int IDENTITY (1,1) NOT NULL, + ExternalIdentifierSystemName varchar (255) NOT NULL, + IdentifierSystemOrganizationID int NOT NULL, + ExternalIdentifierSystemDescription varchar (500) NULL, + ExternalIdentifierSystemURL varchar (255) NULL, + PRIMARY KEY (ExternalIdentifierSystemID) +) +CREATE TABLE ODM2.MethodExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + MethodID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + MethodExternalIdentifier varchar (255) NOT NULL, + MethodExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.PersonExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + PersonID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + PersonExternalIdentifier varchar (255) NOT NULL, + PersonExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.ReferenceMaterialExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + ReferenceMaterialID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + ReferenceMaterialExternalIdentifier varchar (255) NOT NULL, + ReferenceMaterialExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.SamplingFeatureExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + SamplingFeatureID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + SamplingFeatureExternalIdentifier varchar (255) NOT NULL, + SamplingFeatureExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.SpatialReferenceExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + SpatialReferenceID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + SpatialReferenceExternalIdentifier varchar (255) NOT NULL, + SpatialReferenceExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.TaxonomicClassifierExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + TaxonomicClassifierID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + TaxonomicClassifierExternalIdentifier varchar (255) NOT NULL, + TaxonomicClassifierExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.VariableExternalIdentifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + VariableID int NOT NULL, + ExternalIdentifierSystemID int NOT NULL, + VariableExternalIdentifer varchar (255) NOT NULL, + VariableExternalIdentifierURI varchar (255) NULL, + PRIMARY KEY (BridgeID) +) +/***************************************************************************/ +/************************* CREATE ODM2LABANALYSES **************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.ActionDirectives ( + BridgeID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + DirectiveID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.Directives ( + DirectiveID int IDENTITY (1,1) NOT NULL, + DirectiveTypeCV varchar (255) NOT NULL, + DirectiveDescription varchar (500) NOT NULL, + PRIMARY KEY (DirectiveID) +) +CREATE TABLE ODM2.SpecimenBatchPostions ( + FeatureActionID int NOT NULL, + BatchPositionNumber int NOT NULL, + BatchPositionLabel varchar (255) NULL, + PRIMARY KEY (FeatureActionID) +) +/***************************************************************************/ +/************************** CREATE ODM2PROVENANCE **************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.AuthorLists ( + BridgeID int IDENTITY (1,1) NOT NULL, + CitationID int NOT NULL, + PersonID int NOT NULL, + AuthorOrder int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.Citations ( + CitationID int IDENTITY (1,1) NOT NULL, + Title varchar (255) NOT NULL, + Publisher varchar (255) NOT NULL, + PublicationYear int NOT NULL, + CitationLink varchar (255) NULL, + PRIMARY KEY (CitationID) +) +CREATE TABLE ODM2.DatasetCitations ( + BridgeID int IDENTITY (1,1) NOT NULL, + DataSetID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + CitationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.DerivationEquations ( + DerivationEquationID int IDENTITY (1,1) NOT NULL, + DerivationEquation varchar (255) NOT NULL, + PRIMARY KEY (DerivationEquationID) +) +CREATE TABLE ODM2.MethodCitations ( + BridgeID int IDENTITY (1,1) NOT NULL, + MethodID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + CitationID int NOT NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.RelatedAnnotations ( + RelationID int IDENTITY (1,1) NOT NULL, + AnnotationID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedAnnotationID int NOT NULL, + PRIMARY KEY (RelationID) +) +CREATE TABLE ODM2.RelatedCitations ( + RelationID int IDENTITY (1,1) NOT NULL, + CitationID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedCitationID int NOT NULL, + PRIMARY KEY (RelationID) +) +CREATE TABLE ODM2.RelatedDatasets ( + RelationID int IDENTITY (1,1) NOT NULL, + DataSetID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedDatasetID int NOT NULL, + VersionCode varchar (50) NULL, + PRIMARY KEY (RelationID) +) +CREATE TABLE ODM2.RelatedResults ( + RelationID int IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedResultID bigint NOT NULL, + VersionCode varchar (50) NULL, + RelatedResultSequenceNumber int NULL, + PRIMARY KEY (RelationID) +) +CREATE TABLE ODM2.ResultDerivationEquations ( + ResultID bigint NOT NULL, + DerivationEquationID int NOT NULL, + PRIMARY KEY (ResultID) +) +/***************************************************************************/ +/*************************** CREATE ODM2RESULTS ****************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.CategoricalResults ( + ResultID bigint NOT NULL, + XLocation float NULL, + XLocationUnitsID int NULL, + YLocation float NULL, + YLocationUnitsID int NULL, + ZLocation float NULL, + ZLocationUnitsID int NULL, + SpatialReferenceID int NULL, + QualityCodeCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.CategoricalResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue varchar (255) NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_CategoricalResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +) +CREATE TABLE ODM2.MeasurementResults ( + ResultID bigint NOT NULL, + XLocation float NULL, + XLocationUnitsID int NULL, + YLocation float NULL, + YLocationUnitsID int NULL, + ZLocation float NULL, + ZLocationUnitsID int NULL, + SpatialReferenceID int NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + AggregationStatisticCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.MeasurementResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_MeasurementResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +) +CREATE TABLE ODM2.PointCoverageResults ( + ResultID bigint NOT NULL, + ZLocation float NULL, + ZLocationUnitsID int NULL, + SpatialReferenceID int NULL, + IntendedXSpacing float NULL, + IntendedXSpacingUnitsID int NULL, + IntendedYSpacing float NULL, + IntendedYSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.PointCoverageResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + XLocation float NOT NULL, + XLocationUnitsID int NOT NULL, + YLocation float NOT NULL, + YLocationUnitsID int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_PointCoverageResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, CensorCodeCV, QualityCodeCV) +) +CREATE TABLE ODM2.ProfileResults ( + ResultID bigint NOT NULL, + XLocation float NULL, + XLocationUnitsID int NULL, + YLocation float NULL, + YLocationUnitsID int NULL, + SpatialReferenceID int NULL, + IntendedZSpacing float NULL, + IntendedZSpacingUnitsID int NULL, + IntendedTimeSpacing float NULL, + IntendedTimeSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.ProfileResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + ZLocation float NOT NULL, + ZAggregationInterval float NOT NULL, + ZLocationUnitsID int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_ProfileResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +) +CREATE TABLE ODM2.SectionResults ( + ResultID bigint NOT NULL, + YLocation float NULL, + YLocationUnitsID int NULL, + SpatialReferenceID int NULL, + IntendedXSpacing float NULL, + IntendedXSpacingUnitsID int NULL, + IntendedZSpacing float NULL, + IntendedZSpacingUnitsID int NULL, + IntendedTimeSpacing float NULL, + IntendedTimeSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.SectionResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + XLocation float NOT NULL, + XAggregationInterval float NOT NULL, + XLocationUnitsID int NOT NULL, + ZLocation bigint NOT NULL, + ZAggregationInterval float NOT NULL, + ZLocationUnitsID int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + AggregationStatisticCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_SectionResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XAggregationInterval, XLocationUnitsID, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +) +CREATE TABLE ODM2.SpectraResults ( + ResultID bigint NOT NULL, + XLocation float NULL, + XLocationUnitsID int NULL, + YLocation float NULL, + YLocationUnitsID int NULL, + ZLocation float NULL, + ZLocationUnitsID int NULL, + SpatialReferenceID int NULL, + IntendedWavelengthSpacing float NULL, + IntendedWavelengthSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.SpectraResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + ExcitationWavelength float NOT NULL, + EmissionWavelength float NOT NULL, + WavelengthUnitsID int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_SpectraResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ExcitationWavelength, EmissionWavelength, WavelengthUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +) +CREATE TABLE ODM2.TimeSeriesResults ( + ResultID bigint NOT NULL, + XLocation float NULL, + XLocationUnitsID int NULL, + YLocation float NULL, + YLocationUnitsID int NULL, + ZLocation float NULL, + ZLocationUnitsID int NULL, + SpatialReferenceID int NULL, + IntendedTimeSpacing float NULL, + IntendedTimeSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.TimeSeriesResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_TimeSeriesResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +) +CREATE TABLE ODM2.TrajectoryResults ( + ResultID bigint NOT NULL, + SpatialReferenceID int NULL, + IntendedTrajectorySpacing float NULL, + IntendedTrajectorySpacingUnitsID int NULL, + IntendedTimeSpacing float NULL, + IntendedTimeSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.TrajectoryResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + XLocation float NOT NULL, + XLocationUnitsID int NOT NULL, + YLocation float NOT NULL, + YLocationUnitsID int NOT NULL, + ZLocation float NOT NULL, + ZLocationUnitsID int NOT NULL, + TrajectoryDistance float NOT NULL, + TrajectoryDistanceAggregationInterval float NOT NULL, + TrajectoryDistanceUnitsID int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_TrajectoryResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, ZLocation, ZLocationUnitsID, TrajectoryDistance, TrajectoryDistanceAggregationInterval, TrajectoryDistanceUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +) +CREATE TABLE ODM2.TransectResults ( + ResultID bigint NOT NULL, + ZLocation float NULL, + ZLocationUnitsID int NULL, + SpatialReferenceID int NULL, + IntendedTransectSpacing float NULL, + IntendedTransectSpacingUnitsID int NULL, + IntendedTimeSpacing float NULL, + IntendedTimeSpacingUnitsID int NULL, + AggregationStatisticCV varchar (255) NOT NULL, + PRIMARY KEY (ResultID) +) +CREATE TABLE ODM2.TransectResultValues ( + ValueID bigint IDENTITY (1,1) NOT NULL, + ResultID bigint NOT NULL, + DataValue float NOT NULL, + ValueDateTime datetime NOT NULL, + ValueDateTimeUTCOffset int NOT NULL, + XLocation float NOT NULL, + XLocationUnitsID int NOT NULL, + YLocation float NOT NULL, + YLocationUnitsID int NOT NULL, + TransectDistance float NOT NULL, + TransectDistanceAggregationInterval float NOT NULL, + TransectDistanceUnitsID int NOT NULL, + CensorCodeCV varchar (255) NOT NULL, + QualityCodeCV varchar (255) NOT NULL, + AggregationStatisticCV varchar (255) NOT NULL, + TimeAggregationInterval float NOT NULL, + TimeAggregationIntervalUnitsID int NOT NULL, + PRIMARY KEY (ValueID), + CONSTRAINT uc_TransectResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, TransectDistance, TransectDistanceAggregationInterval, TransectDistanceUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +) +/***************************************************************************/ +/*********************** CREATE ODM2SAMPLINGFEATURES ***********************/ +/***************************************************************************/ + +CREATE TABLE ODM2.RelatedFeatures ( + RelationID int IDENTITY (1,1) NOT NULL, + SamplingFeatureID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedFeatureID int NOT NULL, + SpatialOffsetID int NULL, + PRIMARY KEY (RelationID) +) +CREATE TABLE ODM2.Sites ( + SamplingFeatureID int NOT NULL, + SiteTypeCV varchar (255) NOT NULL, + Latitude float NOT NULL, + Longitude float NOT NULL, + SpatialReferenceID int NOT NULL, + PRIMARY KEY (SamplingFeatureID) +) +CREATE TABLE ODM2.SpatialOffsets ( + SpatialOffsetID int IDENTITY (1,1) NOT NULL, + SpatialOffsetTypeCV varchar (255) NOT NULL, + Offset1Value float NOT NULL, + Offset1UnitID int NOT NULL, + Offset2Value float NULL, + Offset2UnitID int NULL, + Offset3Value float NULL, + Offset3UnitID int NULL, + PRIMARY KEY (SpatialOffsetID) +) +CREATE TABLE ODM2.SpatialReferences ( + SpatialReferenceID int IDENTITY (1,1) NOT NULL, + SRSCode varchar (50) NULL, + SRSName varchar (255) NOT NULL, + SRSDescription varchar (500) NULL, + SRSLink varchar (255) NULL, + PRIMARY KEY (SpatialReferenceID) +) +CREATE TABLE ODM2.Specimens ( + SamplingFeatureID int NOT NULL, + SpecimenTypeCV varchar (255) NOT NULL, + SpecimenMediumCV varchar (255) NOT NULL, + IsFieldSpecimen bit NOT NULL, + PRIMARY KEY (SamplingFeatureID) +) +CREATE TABLE ODM2.SpecimenTaxonomicClassifiers ( + BridgeID int IDENTITY (1,1) NOT NULL, + SamplingFeatureID int NOT NULL, + TaxonomicClassifierID int NOT NULL, + CitationID int NULL, + PRIMARY KEY (BridgeID) +) +/***************************************************************************/ +/************************** CREATE ODM2SIMULATION **************************/ +/***************************************************************************/ + +CREATE TABLE ODM2.ModelAffiliations ( + BridgeID int IDENTITY (1,1) NOT NULL, + ModelID int NOT NULL, + AffiliationID int NOT NULL, + IsPrimary bit NOT NULL, + RoleDescription varchar (500) NULL, + PRIMARY KEY (BridgeID) +) +CREATE TABLE ODM2.Models ( + ModelID int IDENTITY (1,1) NOT NULL, + ModelCode varchar (50) NOT NULL, + ModelName varchar (255) NOT NULL, + ModelDescription varchar (500) NULL, + Version varchar (255) NULL, + ModelLink varchar (255) NULL, + PRIMARY KEY (ModelID), + CONSTRAINT uc_ModelCode UNIQUE (ModelCode) +) +CREATE TABLE ODM2.RelatedModels ( + RelatedID int IDENTITY (1,1) NOT NULL, + ModelID int NOT NULL, + RelationshipTypeCV varchar (255) NOT NULL, + RelatedModelID int NOT NULL, + PRIMARY KEY (RelatedID) +) +CREATE TABLE ODM2.Simulations ( + SimulationID int IDENTITY (1,1) NOT NULL, + ActionID int NOT NULL, + SimulationName varchar (255) NOT NULL, + SimulationDescription varchar (500) NULL, + SimulationStartDateTime datetime NOT NULL, + SimulationStartDateTimeUTCOffset int NOT NULL, + SimulationEndDateTime datetime NOT NULL, + SimulationEndDateTimeUTCOffset int NOT NULL, + TimeStepValue float NOT NULL, + TimeStepUnitsID int NOT NULL, + InputDataSetID int NULL, + ModelID int NOT NULL, + PRIMARY KEY (SimulationID) +) + +ALTER TABLE ODM2.ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Annotations ADD CONSTRAINT fk_Annotations_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Annotations ADD CONSTRAINT fk_Annotations_CV_AnnotationType +FOREIGN KEY (AnnotationTypeCV) REFERENCES ODM2.CV_AnnotationType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Annotations ADD CONSTRAINT fk_Annotations_People +FOREIGN KEY (AnnotatorID) REFERENCES ODM2.People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_CategoricalResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.CategoricalResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Equipment +FOREIGN KEY (EquipmentID) REFERENCES ODM2.Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResultValueAnnotations ADD CONSTRAINT fk_MeasurementResultValueAnnotations_MeasurementResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.MeasurementResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResultValueAnnotations ADD CONSTRAINT fk_ResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Methods +FOREIGN KEY (MethodID) REFERENCES ODM2.Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_PointCoverageResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.PointCoverageResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_ProfileResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.ProfileResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_SectionResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.SectionResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_SpectraResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.SpectraResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.TimeSeriesResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_TrajectoryResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.TrajectoryResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_TransectResultValues +FOREIGN KEY (ValueID) REFERENCES ODM2.TransectResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionBy ADD CONSTRAINT fk_ActionPeople_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionBy ADD CONSTRAINT fk_ActionPeople_Affiliations +FOREIGN KEY (AffiliationID) REFERENCES ODM2.Affiliations (AffiliationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Actions ADD CONSTRAINT fk_Actions_CV_ActionType +FOREIGN KEY (ActionTypeCV) REFERENCES ODM2.CV_ActionType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Actions ADD CONSTRAINT fk_Actions_Methods +FOREIGN KEY (MethodID) REFERENCES ODM2.Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Affiliations ADD CONSTRAINT fk_Affiliations_Organizations +FOREIGN KEY (OrganizationID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Affiliations ADD CONSTRAINT fk_Affiliations_People +FOREIGN KEY (PersonID) REFERENCES ODM2.People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Datasets ADD CONSTRAINT fk_Datasets_CV_DatasetTypeCV +FOREIGN KEY (DatasetTypeCV) REFERENCES ODM2.CV_DatasetType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DatasetsResults ADD CONSTRAINT fk_DataSetsResults_DataSets +FOREIGN KEY (DatasetID) REFERENCES ODM2.Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DatasetsResults ADD CONSTRAINT fk_DataSetsResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.FeatureActions ADD CONSTRAINT fk_FeatureActions_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.FeatureActions ADD CONSTRAINT fk_FeatureActions_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Methods ADD CONSTRAINT fk_Methods_CV_MethodType +FOREIGN KEY (MethodTypeCV) REFERENCES ODM2.CV_MethodType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Methods ADD CONSTRAINT fk_Methods_Organizations +FOREIGN KEY (OrganizationID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Organizations ADD CONSTRAINT fk_Organizations_CV_OrganizationType +FOREIGN KEY (OrganizationTypeCV) REFERENCES ODM2.CV_OrganizationType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Organizations ADD CONSTRAINT fk_Organizations_Organizations +FOREIGN KEY (ParentOrganizationID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions_AreRelated +FOREIGN KEY (RelatedActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedActions ADD CONSTRAINT fk_RelatedActions_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_CV_Medium +FOREIGN KEY (SampledMediumCV) REFERENCES ODM2.CV_Medium (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_CV_ResultType +FOREIGN KEY (ResultTypeCV) REFERENCES ODM2.CV_ResultType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_CV_Status +FOREIGN KEY (StatusCV) REFERENCES ODM2.CV_Status (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_FeatureActions +FOREIGN KEY (FeatureActionID) REFERENCES ODM2.FeatureActions (FeatureActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_ProcessingLevels +FOREIGN KEY (ProcessingLevelID) REFERENCES ODM2.ProcessingLevels (ProcessingLevelID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_TaxonomicClassifiers +FOREIGN KEY (TaxonomicClassifierID) REFERENCES ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_Units +FOREIGN KEY (UnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Results ADD CONSTRAINT fk_Results_Variables +FOREIGN KEY (VariableID) REFERENCES ODM2.Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatures ADD CONSTRAINT fk_SamplingFeatures_CV_ElevationDatum +FOREIGN KEY (ElevationDatumCV) REFERENCES ODM2.CV_ElevationDatum (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatures ADD CONSTRAINT fk_SamplingFeatures_CV_SamplingFeatureGeoType +FOREIGN KEY (SamplingFeatureGeotypeCV) REFERENCES ODM2.CV_SamplingFeatureGeoType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatures ADD CONSTRAINT fk_SamplingFeatures_CV_SamplingFeatureType +FOREIGN KEY (SamplingFeatureTypeCV) REFERENCES ODM2.CV_SamplingFeatureType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TaxonomicClassifiers ADD CONSTRAINT fk_ParentTaxon_Taxon +FOREIGN KEY (ParentTaxonomicClassifierID) REFERENCES ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TaxonomicClassifiers ADD CONSTRAINT fk_TaxonomicClassifiers_CV_TaxonomicClassifierType +FOREIGN KEY (TaxonomicClassifierTypeCV) REFERENCES ODM2.CV_TaxonomicClassifierType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Units ADD CONSTRAINT fk_Units_CV_UnitsType +FOREIGN KEY (UnitsTypeCV) REFERENCES ODM2.CV_UnitsType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Variables ADD CONSTRAINT fk_Variables_CV_Speciation +FOREIGN KEY (SpeciationCV) REFERENCES ODM2.CV_Speciation (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Variables ADD CONSTRAINT fk_Variables_CV_VariableName +FOREIGN KEY (VariableNameCV) REFERENCES ODM2.CV_VariableName (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Variables ADD CONSTRAINT fk_Variables_CV_VariableType +FOREIGN KEY (VariableTypeCV) REFERENCES ODM2.CV_VariableType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataQuality ADD CONSTRAINT fk_DataQuality_CV_DataQualityType +FOREIGN KEY (DataQualityTypeCV) REFERENCES ODM2.CV_DataQualityType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataQuality ADD CONSTRAINT fk_DataQuality_Units +FOREIGN KEY (DataQualityValueUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_CV_Medium +FOREIGN KEY (ReferenceMaterialMediumCV) REFERENCES ODM2.CV_Medium (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_Organizations +FOREIGN KEY (ReferenceMaterialOrganizationID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_ReferenceMaterials +FOREIGN KEY (ReferenceMaterialID) REFERENCES ODM2.ReferenceMaterials (ReferenceMaterialID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Units +FOREIGN KEY (UnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Variables +FOREIGN KEY (VariableID) REFERENCES ODM2.Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_ReferenceMaterialValues +FOREIGN KEY (NormalizedByReferenceMaterialValueID) REFERENCES ODM2.ReferenceMaterialValues (ReferenceMaterialValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_DataQuality +FOREIGN KEY (DataQualityID) REFERENCES ODM2.DataQuality (DataQualityID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CalibrationActions ADD CONSTRAINT fk_CalibrationActions_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CalibrationActions ADD CONSTRAINT fk_CalibrationActions_InstrumentOutputVariables +FOREIGN KEY (InstrumentOutputVariableID) REFERENCES ODM2.InstrumentOutputVariables (InstrumentOutputVariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CalibrationReferenceEquipment ADD CONSTRAINT fk_CalibrationReferenceEquipment_CalibrationActions +FOREIGN KEY (ActionID) REFERENCES ODM2.CalibrationActions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CalibrationReferenceEquipment ADD CONSTRAINT fk_CalibrationReferenceEquipment_Equipment +FOREIGN KEY (EquipmentID) REFERENCES ODM2.Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CalibrationStandards ADD CONSTRAINT fk_CalibrationStandards_CalibrationActions +FOREIGN KEY (ActionID) REFERENCES ODM2.CalibrationActions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CalibrationStandards ADD CONSTRAINT fk_FieldCalibrationStandards_ReferenceMaterials +FOREIGN KEY (ReferenceMaterialID) REFERENCES ODM2.ReferenceMaterials (ReferenceMaterialID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_DataLoggerFiles +FOREIGN KEY (DataLoggerFileID) REFERENCES ODM2.DataLoggerFiles (DataLoggerFileID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_InstrumentOutputVariables +FOREIGN KEY (InstrumentOutputVariableID) REFERENCES ODM2.InstrumentOutputVariables (InstrumentOutputVariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_RecordingUnits +FOREIGN KEY (RecordingIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_ScanUnits +FOREIGN KEY (ScanIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataLoggerFiles ADD CONSTRAINT fk_DataLoggerFiles_DataloggerProgramFiles +FOREIGN KEY (ProgramID) REFERENCES ODM2.DataloggerProgramFiles (ProgramID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DataloggerProgramFiles ADD CONSTRAINT fk_DataloggerProgramFiles_Affiliations +FOREIGN KEY (AffiliationID) REFERENCES ODM2.Affiliations (AffiliationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Equipment ADD CONSTRAINT fk_Equipment_CV_EquipmentType +FOREIGN KEY (EquipmentTypeCV) REFERENCES ODM2.CV_EquipmentType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Equipment ADD CONSTRAINT fk_Equipment_EquipmentModels +FOREIGN KEY (EquipmentModelID) REFERENCES ODM2.EquipmentModels (EquipmentModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Equipment ADD CONSTRAINT fk_Equipment_Organizations +FOREIGN KEY (EquipmentVendorID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Equipment ADD CONSTRAINT fk_Equipment_People +FOREIGN KEY (EquipmentOwnerID) REFERENCES ODM2.People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.EquipmentModels ADD CONSTRAINT fk_EquipmentModels_Organizations +FOREIGN KEY (ModelManufacturerID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.EquipmentUsed ADD CONSTRAINT fk_EquipmentActions_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.EquipmentUsed ADD CONSTRAINT fk_EquipmentActions_Equipment +FOREIGN KEY (EquipmentID) REFERENCES ODM2.Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_EquipmentModels +FOREIGN KEY (ModelID) REFERENCES ODM2.EquipmentModels (EquipmentModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Methods +FOREIGN KEY (InstrumentMethodID) REFERENCES ODM2.Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Units +FOREIGN KEY (InstrumentRawOutputUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Variables +FOREIGN KEY (VariableID) REFERENCES ODM2.Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MaintenanceActions ADD CONSTRAINT fk_MaintenanceActions_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment +FOREIGN KEY (EquipmentID) REFERENCES ODM2.Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment_AreRelated +FOREIGN KEY (RelatedEquipmentID) REFERENCES ODM2.Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ODM2.ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ODM2.ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ExtensionProperties ADD CONSTRAINT fk_ExtensionProperties_CV_PropertyDataType +FOREIGN KEY (PropertyDataTypeCV) REFERENCES ODM2.CV_PropertyDataType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ExtensionProperties ADD CONSTRAINT fk_ExtensionProperties_Units +FOREIGN KEY (PropertyUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ODM2.ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_Methods +FOREIGN KEY (MethodID) REFERENCES ODM2.Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ODM2.ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ODM2.ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ODM2.ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_Variables +FOREIGN KEY (VariableID) REFERENCES ODM2.Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ExternalIdentifierSystems ADD CONSTRAINT fk_ExternalIdentifierSystems_Organizations +FOREIGN KEY (IdentifierSystemOrganizationID) REFERENCES ODM2.Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_Methods +FOREIGN KEY (MethodID) REFERENCES ODM2.Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_People +FOREIGN KEY (PersonID) REFERENCES ODM2.People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_ExtIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_RefMaterials +FOREIGN KEY (ReferenceMaterialID) REFERENCES ODM2.ReferenceMaterials (ReferenceMaterialID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_ExtIDSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers +FOREIGN KEY (TaxonomicClassifierID) REFERENCES ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_Variables +FOREIGN KEY (VariableID) REFERENCES ODM2.Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Directives +FOREIGN KEY (DirectiveID) REFERENCES ODM2.Directives (DirectiveID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Directives ADD CONSTRAINT fk_Directives_CV_DirectiveType +FOREIGN KEY (DirectiveTypeCV) REFERENCES ODM2.CV_DirectiveType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpecimenBatchPostions ADD CONSTRAINT fk_SpecimenBatchPostions_FeatureActions +FOREIGN KEY (FeatureActionID) REFERENCES ODM2.FeatureActions (FeatureActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.AuthorLists ADD CONSTRAINT fk_AuthorLists_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.AuthorLists ADD CONSTRAINT fk_AuthorLists_People +FOREIGN KEY (PersonID) REFERENCES ODM2.People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DatasetCitations ADD CONSTRAINT fk_DataSetCitations_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DatasetCitations ADD CONSTRAINT fk_DatasetCitations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.DatasetCitations ADD CONSTRAINT fk_DataSetCitations_DataSets +FOREIGN KEY (DataSetID) REFERENCES ODM2.Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodCitations ADD CONSTRAINT fk_MethodCitations_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodCitations ADD CONSTRAINT fk_MethodCitations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MethodCitations ADD CONSTRAINT fk_MethodCitations_Methods +FOREIGN KEY (MethodID) REFERENCES ODM2.Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations_AreRelated +FOREIGN KEY (RelatedAnnotationID) REFERENCES ODM2.Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations_AreRelated +FOREIGN KEY (RelatedCitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets +FOREIGN KEY (DataSetID) REFERENCES ODM2.Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets_AreRelated +FOREIGN KEY (RelatedDatasetID) REFERENCES ODM2.Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedResults ADD CONSTRAINT fk_RelatedResults_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedResults ADD CONSTRAINT fk_RelatedResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedResults ADD CONSTRAINT fk_RelatedResults_Results_AreRelated +FOREIGN KEY (RelatedResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_DerivationEquations +FOREIGN KEY (DerivationEquationID) REFERENCES ODM2.DerivationEquations (DerivationEquationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.CategoricalResultValues ADD CONSTRAINT fk_CategoricalResultValues_CategoricalResults +FOREIGN KEY (ResultID) REFERENCES ODM2.CategoricalResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.MeasurementResultValues ADD CONSTRAINT fk_MeasurementResultValues_MeasurementResults +FOREIGN KEY (ResultID) REFERENCES ODM2.MeasurementResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_XUnits +FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_YUnits +FOREIGN KEY (IntendedYSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_PointCoverageResults +FOREIGN KEY (ResultID) REFERENCES ODM2.PointCoverageResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_DUnits +FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_TUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResults ADD CONSTRAINT fk_ProfileResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_DUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_ProfileResults +FOREIGN KEY (ResultID) REFERENCES ODM2.ProfileResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_TMUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_Units +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_XUnits +FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResults ADD CONSTRAINT fk_SectionResults_ZUnits +FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_SectionResults +FOREIGN KEY (ResultID) REFERENCES ODM2.SectionResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_Units +FOREIGN KEY (IntendedWavelengthSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResults ADD CONSTRAINT fk_SpectraResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_SpectraResults +FOREIGN KEY (ResultID) REFERENCES ODM2.SpectraResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_WUnits +FOREIGN KEY (WavelengthUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_TUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_TimeSeriesResults +FOREIGN KEY (ResultID) REFERENCES ODM2.TimeSeriesResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TSUnits +FOREIGN KEY (IntendedTrajectorySpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_DistanceUnits +FOREIGN KEY (TrajectoryDistanceUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_TrajectoryResults +FOREIGN KEY (ResultID) REFERENCES ODM2.TrajectoryResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResults ADD CONSTRAINT fk_TransectResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResults ADD CONSTRAINT fk_TransectResults_Results +FOREIGN KEY (ResultID) REFERENCES ODM2.Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResults ADD CONSTRAINT fk_TransectResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResults ADD CONSTRAINT fk_TransectResults_TMUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResults ADD CONSTRAINT fk_TransectResults_TSUnits +FOREIGN KEY (IntendedTransectSpacingUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResults ADD CONSTRAINT fk_TransectResults_Units +FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES ODM2.CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES ODM2.CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES ODM2.CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_DistanceUnits +FOREIGN KEY (TransectDistanceUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_TransectResults +FOREIGN KEY (ResultID) REFERENCES ODM2.TransectResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_FeaturesParent +FOREIGN KEY (RelatedFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SpatialOffsets +FOREIGN KEY (SpatialOffsetID) REFERENCES ODM2.SpatialOffsets (SpatialOffsetID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedFeatures ADD CONSTRAINT fk_RelatedFeatures_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Sites ADD CONSTRAINT fk_Sites_CV_SiteType +FOREIGN KEY (SiteTypeCV) REFERENCES ODM2.CV_SiteType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Sites ADD CONSTRAINT fk_Sites_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Sites ADD CONSTRAINT fk_Sites_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2.SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_CV_SpatialOffsetType +FOREIGN KEY (SpatialOffsetTypeCV) REFERENCES ODM2.CV_SpatialOffsetType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_Offset1Units +FOREIGN KEY (Offset1UnitID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_Offset2Units +FOREIGN KEY (Offset2UnitID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_Offset3Units +FOREIGN KEY (Offset3UnitID) REFERENCES ODM2.Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Specimens ADD CONSTRAINT fk_Specimens_CV_Medium +FOREIGN KEY (SpecimenMediumCV) REFERENCES ODM2.CV_Medium (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Specimens ADD CONSTRAINT fk_Specimens_CV_SpecimenType +FOREIGN KEY (SpecimenTypeCV) REFERENCES ODM2.CV_SpecimenType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Specimens ADD CONSTRAINT fk_Specimens_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_Citations +FOREIGN KEY (CitationID) REFERENCES ODM2.Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_Specimens +FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2.Specimens (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers +FOREIGN KEY (TaxonomicClassifierID) REFERENCES ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ModelAffiliations ADD CONSTRAINT fk_ModelAffiliations_Affiliations +FOREIGN KEY (AffiliationID) REFERENCES ODM2.Affiliations (AffiliationID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.ModelAffiliations ADD CONSTRAINT fk_ModelAffiliations_Models +FOREIGN KEY (ModelID) REFERENCES ODM2.Models (ModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedModels ADD CONSTRAINT fk_RelatedModels_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES ODM2.CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.RelatedModels ADD CONSTRAINT fk_RelatedModels_Models +FOREIGN KEY (ModelID) REFERENCES ODM2.Models (ModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Simulations ADD CONSTRAINT fk_Simulations_Actions +FOREIGN KEY (ActionID) REFERENCES ODM2.Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION + +ALTER TABLE ODM2.Simulations ADD CONSTRAINT fk_Simulations_Models +FOREIGN KEY (ModelID) REFERENCES ODM2.Models (ModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION \ No newline at end of file diff --git a/tests/schemas/ms_sql_server/readme.md b/tests/schemas/ms_sql_server/readme.md new file mode 100644 index 0000000..6900b31 --- /dev/null +++ b/tests/schemas/ms_sql_server/readme.md @@ -0,0 +1 @@ +This folder contains a SQL script for generating a blank ODM2 database within Microsoft SQL Server. \ No newline at end of file diff --git a/tests/schemas/mysql/ODM2_for_MySQL.sql b/tests/schemas/mysql/ODM2_for_MySQL.sql new file mode 100644 index 0000000..7c2a64b --- /dev/null +++ b/tests/schemas/mysql/ODM2_for_MySQL.sql @@ -0,0 +1,2412 @@ + +DROP SCHEMA IF EXISTS ODM2; + +CREATE SCHEMA IF NOT EXISTS ODM2; + +/***************************************************************************/ +/************************* CREATE ODM2ANNOTATIONS **************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE ActionAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE Annotations ( + AnnotationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + AnnotationTypeCV VARCHAR (255) NOT NULL, + AnnotationCode VARCHAR (50) NULL, + AnnotationText VARCHAR (500) NOT NULL, + AnnotationDateTime DATETIME NULL, + AnnotationUTCOffset INT NULL, + AnnotationLink VARCHAR (255) NULL, + AnnotatorID INT NULL, + CitationID INT NULL +); + +CREATE TABLE CategoricalResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE EquipmentAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + EquipmentID INT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE MeasurementResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE MethodAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + MethodID INT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE PointCoverageResultValueAnnotations ( + BridgeID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE ProfileResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE ResultAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + AnnotationID INT NOT NULL, + BeginDateTime DATETIME NOT NULL, + EndDateTime DATETIME NOT NULL +); + +CREATE TABLE SamplingFeatureAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureID INT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE SectionResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE SpectraResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE TimeSeriesResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE TrajectoryResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +CREATE TABLE TransectResultValueAnnotations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ValueID BIGINT NOT NULL, + AnnotationID INT NOT NULL +); + +/***************************************************************************/ +/***************************** CREATE ODM2CORE *****************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE ActionBy ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + AffiliationID INT NOT NULL, + IsActionLead TINYINT(1) NOT NULL, + RoleDescription VARCHAR (500) NULL +); + +CREATE TABLE Actions ( + ActionID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionTypeCV VARCHAR (255) NOT NULL, + MethodID INT NOT NULL, + BeginDateTime DATETIME NOT NULL, + BeginDateTimeUTCOffset INT NOT NULL, + EndDateTime DATETIME NULL, + EndDateTimeUTCOffset INT NULL, + ActionDescription VARCHAR (500) NULL, + ActionFileLink VARCHAR (255) NULL +); + +CREATE TABLE Affiliations ( + AffiliationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + PersonID INT NOT NULL, + OrganizationID INT NULL, + IsPrimaryOrganizationContact TINYINT(1) NULL, + AffiliationStartDate DATE NOT NULL, + AffiliationEndDate DATE NULL, + PrimaryPhone VARCHAR (50) NULL, + PrimaryEmail VARCHAR (255) NOT NULL, + PrimaryAddress VARCHAR (255) NULL, + PersonLink VARCHAR (255) NULL +); + +CREATE TABLE Datasets ( + DatasetID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + DatasetUUID VARCHAR(36) NOT NULL, + DatasetTypeCV VARCHAR (255) NOT NULL, + DatasetCode VARCHAR (50) NOT NULL, + DatasetTitle VARCHAR (255) NOT NULL, + DatasetAbstract VARCHAR (500) NOT NULL, + CONSTRAINT uc_DatasetCode UNIQUE (DatasetCode) +); + +CREATE TABLE DatasetsResults ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + DatasetID INT NOT NULL, + ResultID BIGINT NOT NULL +); + +CREATE TABLE FeatureActions ( + FeatureActionID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureID INT NOT NULL, + ActionID INT NOT NULL +); + +CREATE TABLE Methods ( + MethodID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + MethodTypeCV VARCHAR (255) NOT NULL, + MethodCode VARCHAR (50) NOT NULL, + MethodName VARCHAR (255) NOT NULL, + MethodDescription VARCHAR (500) NULL, + MethodLink VARCHAR (255) NULL, + OrganizationID INT NULL, + CONSTRAINT uc_MethodCode UNIQUE (MethodCode) +); + +CREATE TABLE Organizations ( + OrganizationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + OrganizationTypeCV VARCHAR (255) NOT NULL, + OrganizationCode VARCHAR (50) NOT NULL, + OrganizationName VARCHAR (255) NOT NULL, + OrganizationDescription VARCHAR (500) NULL, + OrganizationLink VARCHAR (255) NULL, + ParentOrganizationID INT NULL, + CONSTRAINT uc_OrganizationCode UNIQUE (OrganizationCode) +); + +CREATE TABLE People ( + PersonID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + PersonFirstName VARCHAR (255) NOT NULL, + PersonMiddleName VARCHAR (255) NULL, + PersonLastName VARCHAR (255) NOT NULL +); + +CREATE TABLE ProcessingLevels ( + ProcessingLevelID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ProcessingLevelCode VARCHAR (50) NOT NULL, + Definition VARCHAR (500) NULL, + Explanation VARCHAR (500) NULL, + CONSTRAINT uc_ProcessingLevelCode UNIQUE (ProcessingLevelCode) +); + +CREATE TABLE RelatedActions ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedActionID INT NOT NULL +); + +CREATE TABLE Results ( + ResultID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultUUID VARCHAR(36) NOT NULL, + FeatureActionID INT NOT NULL, + ResultTypeCV VARCHAR (255) NOT NULL, + VariableID INT NOT NULL, + UnitsID INT NOT NULL, + TaxonomicClassifierID INT NULL, + ProcessingLevelID INT NOT NULL, + ResultDateTime DATETIME NULL, + ResultDateTimeUTCOffset BIGINT NULL, + ValidDateTime DATETIME NULL, + ValidDateTimeUTCOffset BIGINT NULL, + StatusCV VARCHAR (255) NULL, + SampledMediumCV VARCHAR (255) NOT NULL, + ValueCount INT NOT NULL +); + +CREATE TABLE SamplingFeatures ( + SamplingFeatureID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureUUID VARCHAR(36) NOT NULL, + SamplingFeatureTypeCV VARCHAR (255) NOT NULL, + SamplingFeatureCode VARCHAR (50) NOT NULL, + SamplingFeatureName VARCHAR (255) NULL, + SamplingFeatureDescription VARCHAR (500) NULL, + SamplingFeatureGeotypeCV VARCHAR (255) NULL, + FeatureGeometry geometry NULL, + FeatureGeometryWKT VARCHAR (8000) NULL, + Elevation_m FLOAT NULL, + ElevationDatumCV VARCHAR (255) NULL, + CONSTRAINT uc_SamplingFeatureCode UNIQUE (SamplingFeatureCode) +); + +CREATE TABLE TaxonomicClassifiers ( + TaxonomicClassifierID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + TaxonomicClassifierTypeCV VARCHAR (255) NOT NULL, + TaxonomicClassifierName VARCHAR (255) NOT NULL, + TaxonomicClassifierCommonName VARCHAR (255) NULL, + TaxonomicClassifierDescription VARCHAR (500) NULL, + ParentTaxonomicClassifierID INT NULL +); + +CREATE TABLE Units ( + UnitsID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + UnitsTypeCV VARCHAR (255) NOT NULL, + UnitsAbbreviation VARCHAR (50) NOT NULL, + UnitsName VARCHAR (255) NOT NULL, + UnitsLink VARCHAR (255) NULL +); + +CREATE TABLE Variables ( + VariableID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + VariableTypeCV VARCHAR (255) NOT NULL, + VariableCode VARCHAR (50) NOT NULL, + VariableNameCV VARCHAR (255) NOT NULL, + VariableDefinition VARCHAR (500) NULL, + SpeciationCV VARCHAR (255) NULL, + NoDataValue DOUBLE NOT NULL, + CONSTRAINT uc_VariableCode UNIQUE (VariableCode) +); + +/***************************************************************************/ +/****************************** CREATE ODM2CV ******************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE CV_ActionType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_AggregationStatistic ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_AnnotationType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_CensorCode ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_DataQualityType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_DatasetType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_DirectiveType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_ElevationDatum ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_EquipmentType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_Medium ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_MethodType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_OrganizationType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_PropertyDataType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_QualityCode ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_RelationshipType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_ResultType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SamplingFeatureGeoType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SamplingFeatureType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SiteType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SpatialOffsetType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_Speciation ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SpecimenType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_Status ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_TaxonomicClassifierType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_UnitsType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_VariableName ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_VariableType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +/***************************************************************************/ +/************************* CREATE ODM2DATAQUALITY **************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE DataQuality ( + DataQualityID INT NOT NULL PRIMARY KEY, + DataQualityTypeCV VARCHAR (255) NOT NULL, + DataQualityCode VARCHAR (255) NOT NULL, + DataQualityValue FLOAT NULL, + DataQualityValueUnitsID INT NULL, + DataQualityDescription VARCHAR (500) NULL, + DataQualityLink VARCHAR (255) NULL, + CONSTRAINT uc_DataQualityCode UNIQUE (DataQualityCode) +); + +CREATE TABLE ReferenceMaterials ( + ReferenceMaterialID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ReferenceMaterialMediumCV VARCHAR (255) NOT NULL, + ReferenceMaterialOrganizationID INT NOT NULL, + ReferenceMaterialCode VARCHAR (50) NOT NULL, + ReferenceMaterialLotCode VARCHAR (255) NULL, + ReferenceMaterialPurchaseDate DATETIME NULL, + ReferenceMaterialExpirationDate DATETIME NULL, + ReferenceMaterialCertificateLink VARCHAR (255) NULL, + SamplingFeatureID INT NULL, + CONSTRAINT uc_ReferenceMaterialCode UNIQUE (ReferenceMaterialCode) +); + +CREATE TABLE ReferenceMaterialValues ( + ReferenceMaterialValueID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ReferenceMaterialID INT NOT NULL, + ReferenceMaterialValue FLOAT NOT NULL, + ReferenceMaterialAccuracy FLOAT NULL, + VariableID INT NOT NULL, + UnitsID INT NOT NULL, + CitationID INT NULL +); + +CREATE TABLE ResultNormalizationValues ( + ResultID BIGINT NOT NULL PRIMARY KEY, + NormalizedByReferenceMaterialValueID INT NOT NULL +); + +CREATE TABLE ResultsDataQuality ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataQualityID INT NOT NULL +); + +/***************************************************************************/ +/************************** CREATE ODM2EQUIPMENT ***************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE CalibrationActions ( + ActionID INT NOT NULL PRIMARY KEY, + CalibrationCheckValue FLOAT NULL, + InstrumentOutputVariableID INT NOT NULL, + CalibrationEquation VARCHAR (255) NULL +); + +CREATE TABLE CalibrationReferenceEquipment ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + EquipmentID INT NOT NULL +); + +CREATE TABLE CalibrationStandards ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + ReferenceMaterialID INT NOT NULL +); + +CREATE TABLE DataloggerFileColumns ( + DataloggerFileColumnID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NULL, + DataLoggerFileID INT NOT NULL, + InstrumentOutputVariableID INT NOT NULL, + ColumnLabel VARCHAR (50) NOT NULL, + ColumnDescription VARCHAR (500) NULL, + MeasurementEquation VARCHAR (255) NULL, + ScanInterval FLOAT NULL, + ScanIntervalUnitsID INT NULL, + RecordingInterval FLOAT NULL, + RecordingIntervalUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NULL +); + +CREATE TABLE DataLoggerFiles ( + DataLoggerFileID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ProgramID INT NOT NULL, + DataLoggerFileName VARCHAR (255) NOT NULL, + DataLoggerFileDescription VARCHAR (500) NULL, + DataLoggerFileLink VARCHAR (255) NULL +); + +CREATE TABLE DataloggerProgramFiles ( + ProgramID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + AffiliationID INT NOT NULL, + ProgramName VARCHAR (255) NOT NULL, + ProgramDescription VARCHAR (500) NULL, + ProgramVersion VARCHAR (50) NULL, + ProgramFileLink VARCHAR (255) NULL +); + +CREATE TABLE Equipment ( + EquipmentID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + EquipmentCode VARCHAR (50) NOT NULL, + EquipmentName VARCHAR (255) NOT NULL, + EquipmentTypeCV VARCHAR (255) NOT NULL, + EquipmentModelID INT NOT NULL, + EquipmentSerialNumber VARCHAR (50) NOT NULL, + EquipmentOwnerID INT NOT NULL, + EquipmentVendorID INT NOT NULL, + EquipmentPurchaseDate DATETIME NOT NULL, + EquipmentPurchaseOrderNumber VARCHAR (50) NULL, + EquipmentDescription VARCHAR (500) NULL, + EquipmentDocumentationLink VARCHAR (255) NULL, + CONSTRAINT uc_EquipmentCode UNIQUE (EquipmentCode) +); + +CREATE TABLE EquipmentModels ( + EquipmentModelID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ModelManufacturerID INT NOT NULL, + ModelPartNumber VARCHAR (50) NULL, + ModelName VARCHAR (255) NOT NULL, + ModelDescription VARCHAR (500) NULL, + IsInstrument TINYINT(1) NOT NULL, + ModelSpecificationsFileLink VARCHAR (255) NULL, + ModelLink VARCHAR (255) NULL +); + +CREATE TABLE EquipmentUsed ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + EquipmentID INT NOT NULL +); + +CREATE TABLE InstrumentOutputVariables ( + InstrumentOutputVariableID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ModelID INT NOT NULL, + VariableID INT NOT NULL, + InstrumentMethodID INT NOT NULL, + InstrumentResolution VARCHAR (255) NULL, + InstrumentAccuracy VARCHAR (255) NULL, + InstrumentRawOutputUnitsID INT NOT NULL +); + +CREATE TABLE MaintenanceActions ( + ActionID INT NOT NULL PRIMARY KEY, + IsFactoryService TINYINT(1) NOT NULL, + MaintenanceCode VARCHAR (50) NULL, + MaintenanceReason VARCHAR (500) NULL +); + +CREATE TABLE RelatedEquipment ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + EquipmentID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedEquipmentID INT NOT NULL, + RelationshipStartDateTime DATETIME NOT NULL, + RelationshipStartDateTimeUTCOffset INT NOT NULL, + RelationshipEndDateTime DATETIME NULL, + RelationshipEndDateTimeUTCOffset INT NULL +); + +/***************************************************************************/ +/********************* CREATE ODM2EXTENSIONPROPERTIES **********************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE ActionExtensionPropertyValues ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + PropertyID INT NOT NULL, + PropertyValue VARCHAR (255) NOT NULL +); + +CREATE TABLE CitationExtensionPropertyValues ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + CitationID INT NOT NULL, + PropertyID INT NOT NULL, + PropertyValue VARCHAR (255) NOT NULL +); + +CREATE TABLE ExtensionProperties ( + PropertyID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + PropertyName VARCHAR (255) NOT NULL, + PropertyDescription VARCHAR (500) NULL, + PropertyDataTypeCV VARCHAR (255) NOT NULL, + PropertyUnitsID INT NULL +); + +CREATE TABLE MethodExtensionPropertyValues ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + MethodID INT NOT NULL, + PropertyID INT NOT NULL, + PropertyValue VARCHAR (255) NOT NULL +); + +CREATE TABLE ResultExtensionPropertyValues ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + PropertyID INT NOT NULL, + PropertyValue VARCHAR (255) NOT NULL +); + +CREATE TABLE SamplingFeatureExtensionPropertyValues ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureID INT NOT NULL, + PropertyID INT NOT NULL, + PropertyValue VARCHAR (255) NOT NULL +); + +CREATE TABLE VariableExtensionPropertyValues ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + VariableID INT NOT NULL, + PropertyID INT NOT NULL, + PropertyValue VARCHAR (255) NOT NULL +); + +/***************************************************************************/ +/********************* CREATE ODM2EXTERNALIDENTIFIERS **********************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE CitationExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + CitationID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + CitationExternalIdentifier VARCHAR (255) NOT NULL, + CitationExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE ExternalIdentifierSystems ( + ExternalIdentifierSystemID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ExternalIdentifierSystemName VARCHAR (255) NOT NULL, + IdentifierSystemOrganizationID INT NOT NULL, + ExternalIdentifierSystemDescription VARCHAR (500) NULL, + ExternalIdentifierSystemURL VARCHAR (255) NULL +); + +CREATE TABLE MethodExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + MethodID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + MethodExternalIdentifier VARCHAR (255) NOT NULL, + MethodExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE PersonExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + PersonID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + PersonExternalIdentifier VARCHAR (255) NOT NULL, + PersonExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE ReferenceMaterialExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ReferenceMaterialID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + ReferenceMaterialExternalIdentifier VARCHAR (255) NOT NULL, + ReferenceMaterialExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE SamplingFeatureExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + SamplingFeatureExternalIdentifier VARCHAR (255) NOT NULL, + SamplingFeatureExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE SpatialReferenceExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SpatialReferenceID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + SpatialReferenceExternalIdentifier VARCHAR (255) NOT NULL, + SpatialReferenceExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE TaxonomicClassifierExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + TaxonomicClassifierID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + TaxonomicClassifierExternalIdentifier VARCHAR (255) NOT NULL, + TaxonomicClassifierExternalIdentifierURI VARCHAR (255) NULL +); + +CREATE TABLE VariableExternalIdentifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + VariableID INT NOT NULL, + ExternalIdentifierSystemID INT NOT NULL, + VariableExternalIdentifer VARCHAR (255) NOT NULL, + VariableExternalIdentifierURI VARCHAR (255) NULL +); + +/***************************************************************************/ +/************************* CREATE ODM2LABANALYSES **************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE ActionDirectives ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + DirectiveID INT NOT NULL +); + +CREATE TABLE Directives ( + DirectiveID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + DirectiveTypeCV VARCHAR (255) NOT NULL, + DirectiveDescription VARCHAR (500) NOT NULL +); + +CREATE TABLE SpecimenBatchPostions ( + FeatureActionID INT NOT NULL PRIMARY KEY, + BatchPositionNumber INT NOT NULL, + BatchPositionLabel VARCHAR (255) NULL +); + +/***************************************************************************/ +/************************** CREATE ODM2PROVENANCE **************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE AuthorLists ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + CitationID INT NOT NULL, + PersonID INT NOT NULL, + AuthorOrder INT NOT NULL +); + +CREATE TABLE Citations ( + CitationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + Title VARCHAR (255) NOT NULL, + Publisher VARCHAR (255) NOT NULL, + PublicationYear INT NOT NULL, + CitationLink VARCHAR (255) NULL +); + +CREATE TABLE DatasetCitations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + DataSetID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + CitationID INT NOT NULL +); + +CREATE TABLE DerivationEquations ( + DerivationEquationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + DerivationEquation VARCHAR (255) NOT NULL +); + +CREATE TABLE MethodCitations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + MethodID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + CitationID INT NOT NULL +); + +CREATE TABLE RelatedAnnotations ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + AnnotationID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedAnnotationID INT NOT NULL +); + +CREATE TABLE RelatedCitations ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + CitationID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedCitationID INT NOT NULL +); + +CREATE TABLE RelatedDatasets ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + DataSetID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedDatasetID INT NOT NULL, + VersionCode VARCHAR (50) NULL +); + +CREATE TABLE RelatedResults ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedResultID BIGINT NOT NULL, + VersionCode VARCHAR (50) NULL, + RelatedResultSequenceNumber INT NULL +); + +CREATE TABLE ResultDerivationEquations ( + ResultID BIGINT NOT NULL PRIMARY KEY, + DerivationEquationID INT NOT NULL +); + +/***************************************************************************/ +/*************************** CREATE ODM2RESULTS ****************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE CategoricalResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + QualityCodeCV VARCHAR (255) NOT NULL +); + +CREATE TABLE CategoricalResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue VARCHAR (255) NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + CONSTRAINT uc_CategoricalResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +); + +CREATE TABLE MeasurementResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL +); + +CREATE TABLE MeasurementResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + CONSTRAINT uc_MeasurementResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +); + +CREATE TABLE PointCoverageResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + ZLocation FLOAT NULL, + ZLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INT NULL, + IntendedYSpacing FLOAT NULL, + IntendedYSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL +); + +CREATE TABLE PointCoverageResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue DOUBLE NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INT NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + CONSTRAINT uc_PointCoverageResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, CensorCodeCV, QualityCodeCV) +); + +CREATE TABLE ProfileResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INT NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL +); + +CREATE TABLE ProfileResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + ZLocation FLOAT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL, + CONSTRAINT uc_ProfileResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE SectionResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + YLocation FLOAT NULL, + YLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INT NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INT NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL +); + +CREATE TABLE SectionResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue DOUBLE NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + XLocation DOUBLE NOT NULL, + XAggregationInterval FLOAT NOT NULL, + XLocationUnitsID INT NOT NULL, + ZLocation BIGINT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL, + CONSTRAINT uc_SectionResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XAggregationInterval, XLocationUnitsID, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE SpectraResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + IntendedWavelengthSpacing DOUBLE NULL, + IntendedWavelengthSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL +); + +CREATE TABLE SpectraResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + ExcitationWavelength FLOAT NOT NULL, + EmissionWavelength FLOAT NOT NULL, + WavelengthUnitsID INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval DOUBLE NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL, + CONSTRAINT uc_SpectraResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ExcitationWavelength, EmissionWavelength, WavelengthUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE TimeSeriesResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL +); + +CREATE TABLE TimeSeriesResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL, + CONSTRAINT uc_TimeSeriesResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE TrajectoryResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + SpatialReferenceID INT NULL, + IntendedTrajectorySpacing FLOAT NULL, + IntendedTrajectorySpacingUnitsID INT NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL +); + +CREATE TABLE TrajectoryResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INT NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INT NOT NULL, + ZLocation FLOAT NOT NULL, + ZLocationUnitsID INT NOT NULL, + TrajectoryDistance FLOAT NOT NULL, + TrajectoryDistanceAggregationInterval FLOAT NOT NULL, + TrajectoryDistanceUnitsID INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL, + CONSTRAINT uc_TrajectoryResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, ZLocation, ZLocationUnitsID, TrajectoryDistance, TrajectoryDistanceAggregationInterval, TrajectoryDistanceUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval) +); + +CREATE TABLE TransectResults ( + ResultID BIGINT NOT NULL PRIMARY KEY, + ZLocation FLOAT NULL, + ZLocationUnitsID INT NULL, + SpatialReferenceID INT NULL, + IntendedTransectSpacing FLOAT NULL, + IntendedTransectSpacingUnitsID INT NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL +); + +CREATE TABLE TransectResultValues ( + ValueID BIGINT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INT NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INT NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INT NOT NULL, + TransectDistance FLOAT NOT NULL, + TransectDistanceAggregationInterval FLOAT NOT NULL, + TransectDistanceUnitsID INT NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INT NOT NULL, + CONSTRAINT uc_TransectResultValues UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, TransectDistance, TransectDistanceAggregationInterval, TransectDistanceUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +/***************************************************************************/ +/*********************** CREATE ODM2SAMPLINGFEATURES ***********************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE RelatedFeatures ( + RelationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedFeatureID INT NOT NULL, + SpatialOffsetID INT NULL +); + +CREATE TABLE Sites ( + SamplingFeatureID INT NOT NULL PRIMARY KEY, + SiteTypeCV VARCHAR (255) NOT NULL, + Latitude FLOAT NOT NULL, + Longitude FLOAT NOT NULL, + SpatialReferenceID INT NOT NULL +); + +CREATE TABLE SpatialOffsets ( + SpatialOffsetID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SpatialOffsetTypeCV VARCHAR (255) NOT NULL, + Offset1Value FLOAT NOT NULL, + Offset1UnitID INT NOT NULL, + Offset2Value FLOAT NULL, + Offset2UnitID INT NULL, + Offset3Value FLOAT NULL, + Offset3UnitID INT NULL +); + +CREATE TABLE SpatialReferences ( + SpatialReferenceID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SRSCode VARCHAR (50) NULL, + SRSName VARCHAR (255) NOT NULL, + SRSDescription VARCHAR (500) NULL, + SRSLink VARCHAR (255) NULL +); + +CREATE TABLE Specimens ( + SamplingFeatureID INT NOT NULL PRIMARY KEY, + SpecimenTypeCV VARCHAR (255) NOT NULL, + SpecimenMediumCV VARCHAR (255) NOT NULL, + IsFieldSpecimen TINYINT(1) NOT NULL +); + +CREATE TABLE SpecimenTaxonomicClassifiers ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + SamplingFeatureID INT NOT NULL, + TaxonomicClassifierID INT NOT NULL, + CitationID INT NULL +); + +/***************************************************************************/ +/************************** CREATE ODM2SIMULATION **************************/ +/***************************************************************************/ +USE ODM2; + +CREATE TABLE ModelAffiliations ( + BridgeID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ModelID INT NOT NULL, + AffiliationID INT NOT NULL, + IsPrimary TINYINT(1) NOT NULL, + RoleDescription VARCHAR (500) NULL +); + +CREATE TABLE Models ( + ModelID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ModelCode VARCHAR (50) NOT NULL, + ModelName VARCHAR (255) NOT NULL, + ModelDescription VARCHAR (500) NULL, + Version VARCHAR (255) NULL, + ModelLink VARCHAR (255) NULL, + CONSTRAINT uc_ModelCode UNIQUE (ModelCode) +); + +CREATE TABLE RelatedModels ( + RelatedID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ModelID INT NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedModelID INT NOT NULL +); + +CREATE TABLE Simulations ( + SimulationID INT AUTO_INCREMENT NOT NULL PRIMARY KEY, + ActionID INT NOT NULL, + SimulationName VARCHAR (255) NOT NULL, + SimulationDescription VARCHAR (500) NULL, + SimulationStartDateTime DATETIME NOT NULL, + SimulationStartDateTimeUTCOffset INT NOT NULL, + SimulationEndDateTime DATETIME NOT NULL, + SimulationEndDateTimeUTCOffset INT NOT NULL, + TimeStepValue FLOAT NOT NULL, + TimeStepUnitsID INT NOT NULL, + InputDataSetID INT NULL, + ModelID INT NOT NULL +); + + +ALTER TABLE ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Annotations ADD CONSTRAINT fk_Annotations_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Annotations ADD CONSTRAINT fk_Annotations_CV_AnnotationType +FOREIGN KEY (AnnotationTypeCV) REFERENCES CV_AnnotationType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Annotations ADD CONSTRAINT fk_Annotations_People +FOREIGN KEY (AnnotatorID) REFERENCES People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_CategoricalResultValues +FOREIGN KEY (ValueID) REFERENCES CategoricalResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Equipment +FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResultValueAnnotations ADD CONSTRAINT fk_MeasurementResultValueAnnotations_MeasurementResultValues +FOREIGN KEY (ValueID) REFERENCES MeasurementResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResultValueAnnotations ADD CONSTRAINT fk_ResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Methods +FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_PointCoverageResultValues +FOREIGN KEY (ValueID) REFERENCES PointCoverageResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_ProfileResultValues +FOREIGN KEY (ValueID) REFERENCES ProfileResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_SectionResultValues +FOREIGN KEY (ValueID) REFERENCES SectionResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_SpectraResultValues +FOREIGN KEY (ValueID) REFERENCES SpectraResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues +FOREIGN KEY (ValueID) REFERENCES TimeSeriesResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_TrajectoryResultValues +FOREIGN KEY (ValueID) REFERENCES TrajectoryResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_TransectResultValues +FOREIGN KEY (ValueID) REFERENCES TransectResultValues (ValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionBy ADD CONSTRAINT fk_ActionPeople_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionBy ADD CONSTRAINT fk_ActionPeople_Affiliations +FOREIGN KEY (AffiliationID) REFERENCES Affiliations (AffiliationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Actions ADD CONSTRAINT fk_Actions_CV_ActionType +FOREIGN KEY (ActionTypeCV) REFERENCES CV_ActionType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Actions ADD CONSTRAINT fk_Actions_Methods +FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Affiliations ADD CONSTRAINT fk_Affiliations_Organizations +FOREIGN KEY (OrganizationID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Affiliations ADD CONSTRAINT fk_Affiliations_People +FOREIGN KEY (PersonID) REFERENCES People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Datasets ADD CONSTRAINT fk_Datasets_CV_DatasetTypeCV +FOREIGN KEY (DatasetTypeCV) REFERENCES CV_DatasetType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DatasetsResults ADD CONSTRAINT fk_DataSetsResults_DataSets +FOREIGN KEY (DatasetID) REFERENCES Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DatasetsResults ADD CONSTRAINT fk_DataSetsResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE FeatureActions ADD CONSTRAINT fk_FeatureActions_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE FeatureActions ADD CONSTRAINT fk_FeatureActions_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Methods ADD CONSTRAINT fk_Methods_CV_MethodType +FOREIGN KEY (MethodTypeCV) REFERENCES CV_MethodType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Methods ADD CONSTRAINT fk_Methods_Organizations +FOREIGN KEY (OrganizationID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Organizations ADD CONSTRAINT fk_Organizations_CV_OrganizationType +FOREIGN KEY (OrganizationTypeCV) REFERENCES CV_OrganizationType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Organizations ADD CONSTRAINT fk_Organizations_Organizations +FOREIGN KEY (ParentOrganizationID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions_AreRelated +FOREIGN KEY (RelatedActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedActions ADD CONSTRAINT fk_RelatedActions_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_CV_Medium +FOREIGN KEY (SampledMediumCV) REFERENCES CV_Medium (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_CV_ResultType +FOREIGN KEY (ResultTypeCV) REFERENCES CV_ResultType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_CV_Status +FOREIGN KEY (StatusCV) REFERENCES CV_Status (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_FeatureActions +FOREIGN KEY (FeatureActionID) REFERENCES FeatureActions (FeatureActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_ProcessingLevels +FOREIGN KEY (ProcessingLevelID) REFERENCES ProcessingLevels (ProcessingLevelID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_TaxonomicClassifiers +FOREIGN KEY (TaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_Units +FOREIGN KEY (UnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Results ADD CONSTRAINT fk_Results_Variables +FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatures ADD CONSTRAINT fk_SamplingFeatures_CV_ElevationDatum +FOREIGN KEY (ElevationDatumCV) REFERENCES CV_ElevationDatum (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatures ADD CONSTRAINT fk_SamplingFeatures_CV_SamplingFeatureGeoType +FOREIGN KEY (SamplingFeatureGeotypeCV) REFERENCES CV_SamplingFeatureGeoType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatures ADD CONSTRAINT fk_SamplingFeatures_CV_SamplingFeatureType +FOREIGN KEY (SamplingFeatureTypeCV) REFERENCES CV_SamplingFeatureType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TaxonomicClassifiers ADD CONSTRAINT fk_ParentTaxon_Taxon +FOREIGN KEY (ParentTaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TaxonomicClassifiers ADD CONSTRAINT fk_TaxonomicClassifiers_CV_TaxonomicClassifierType +FOREIGN KEY (TaxonomicClassifierTypeCV) REFERENCES CV_TaxonomicClassifierType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Units ADD CONSTRAINT fk_Units_CV_UnitsType +FOREIGN KEY (UnitsTypeCV) REFERENCES CV_UnitsType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Variables ADD CONSTRAINT fk_Variables_CV_Speciation +FOREIGN KEY (SpeciationCV) REFERENCES CV_Speciation (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Variables ADD CONSTRAINT fk_Variables_CV_VariableName +FOREIGN KEY (VariableNameCV) REFERENCES CV_VariableName (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Variables ADD CONSTRAINT fk_Variables_CV_VariableType +FOREIGN KEY (VariableTypeCV) REFERENCES CV_VariableType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataQuality ADD CONSTRAINT fk_DataQuality_CV_DataQualityType +FOREIGN KEY (DataQualityTypeCV) REFERENCES CV_DataQualityType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataQuality ADD CONSTRAINT fk_DataQuality_Units +FOREIGN KEY (DataQualityValueUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_CV_Medium +FOREIGN KEY (ReferenceMaterialMediumCV) REFERENCES CV_Medium (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_Organizations +FOREIGN KEY (ReferenceMaterialOrganizationID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_ReferenceMaterials +FOREIGN KEY (ReferenceMaterialID) REFERENCES ReferenceMaterials (ReferenceMaterialID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Units +FOREIGN KEY (UnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Variables +FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_ReferenceMaterialValues +FOREIGN KEY (NormalizedByReferenceMaterialValueID) REFERENCES ReferenceMaterialValues (ReferenceMaterialValueID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_DataQuality +FOREIGN KEY (DataQualityID) REFERENCES DataQuality (DataQualityID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CalibrationActions ADD CONSTRAINT fk_CalibrationActions_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CalibrationActions ADD CONSTRAINT fk_CalibrationActions_InstrumentOutputVariables +FOREIGN KEY (InstrumentOutputVariableID) REFERENCES InstrumentOutputVariables (InstrumentOutputVariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CalibrationReferenceEquipment ADD CONSTRAINT fk_CalibrationReferenceEquipment_CalibrationActions +FOREIGN KEY (ActionID) REFERENCES CalibrationActions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CalibrationReferenceEquipment ADD CONSTRAINT fk_CalibrationReferenceEquipment_Equipment +FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CalibrationStandards ADD CONSTRAINT fk_CalibrationStandards_CalibrationActions +FOREIGN KEY (ActionID) REFERENCES CalibrationActions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CalibrationStandards ADD CONSTRAINT fk_FieldCalibrationStandards_ReferenceMaterials +FOREIGN KEY (ReferenceMaterialID) REFERENCES ReferenceMaterials (ReferenceMaterialID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_DataLoggerFiles +FOREIGN KEY (DataLoggerFileID) REFERENCES DataLoggerFiles (DataLoggerFileID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_InstrumentOutputVariables +FOREIGN KEY (InstrumentOutputVariableID) REFERENCES InstrumentOutputVariables (InstrumentOutputVariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_RecordingUnits +FOREIGN KEY (RecordingIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerFileColumns ADD CONSTRAINT fk_DataloggerFileColumns_ScanUnits +FOREIGN KEY (ScanIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataLoggerFiles ADD CONSTRAINT fk_DataLoggerFiles_DataloggerProgramFiles +FOREIGN KEY (ProgramID) REFERENCES DataloggerProgramFiles (ProgramID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DataloggerProgramFiles ADD CONSTRAINT fk_DataloggerProgramFiles_Affiliations +FOREIGN KEY (AffiliationID) REFERENCES Affiliations (AffiliationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Equipment ADD CONSTRAINT fk_Equipment_CV_EquipmentType +FOREIGN KEY (EquipmentTypeCV) REFERENCES CV_EquipmentType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Equipment ADD CONSTRAINT fk_Equipment_EquipmentModels +FOREIGN KEY (EquipmentModelID) REFERENCES EquipmentModels (EquipmentModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Equipment ADD CONSTRAINT fk_Equipment_Organizations +FOREIGN KEY (EquipmentVendorID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Equipment ADD CONSTRAINT fk_Equipment_People +FOREIGN KEY (EquipmentOwnerID) REFERENCES People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE EquipmentModels ADD CONSTRAINT fk_EquipmentModels_Organizations +FOREIGN KEY (ModelManufacturerID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE EquipmentUsed ADD CONSTRAINT fk_EquipmentActions_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE EquipmentUsed ADD CONSTRAINT fk_EquipmentActions_Equipment +FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_EquipmentModels +FOREIGN KEY (ModelID) REFERENCES EquipmentModels (EquipmentModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Methods +FOREIGN KEY (InstrumentMethodID) REFERENCES Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Units +FOREIGN KEY (InstrumentRawOutputUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Variables +FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MaintenanceActions ADD CONSTRAINT fk_MaintenanceActions_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment +FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment_AreRelated +FOREIGN KEY (RelatedEquipmentID) REFERENCES Equipment (EquipmentID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ExtensionProperties ADD CONSTRAINT fk_ExtensionProperties_CV_PropertyDataType +FOREIGN KEY (PropertyDataTypeCV) REFERENCES CV_PropertyDataType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ExtensionProperties ADD CONSTRAINT fk_ExtensionProperties_Units +FOREIGN KEY (PropertyUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_Methods +FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_ExtensionProperties +FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_Variables +FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ExternalIdentifierSystems ADD CONSTRAINT fk_ExternalIdentifierSystems_Organizations +FOREIGN KEY (IdentifierSystemOrganizationID) REFERENCES Organizations (OrganizationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_Methods +FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_People +FOREIGN KEY (PersonID) REFERENCES People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_ExtIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_RefMaterials +FOREIGN KEY (ReferenceMaterialID) REFERENCES ReferenceMaterials (ReferenceMaterialID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_ExtIDSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers +FOREIGN KEY (TaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_ExternalIdentifierSystems +FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_Variables +FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Directives +FOREIGN KEY (DirectiveID) REFERENCES Directives (DirectiveID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Directives ADD CONSTRAINT fk_Directives_CV_DirectiveType +FOREIGN KEY (DirectiveTypeCV) REFERENCES CV_DirectiveType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpecimenBatchPostions ADD CONSTRAINT fk_SpecimenBatchPostions_FeatureActions +FOREIGN KEY (FeatureActionID) REFERENCES FeatureActions (FeatureActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE AuthorLists ADD CONSTRAINT fk_AuthorLists_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE AuthorLists ADD CONSTRAINT fk_AuthorLists_People +FOREIGN KEY (PersonID) REFERENCES People (PersonID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DatasetCitations ADD CONSTRAINT fk_DataSetCitations_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DatasetCitations ADD CONSTRAINT fk_DatasetCitations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE DatasetCitations ADD CONSTRAINT fk_DataSetCitations_DataSets +FOREIGN KEY (DataSetID) REFERENCES Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodCitations ADD CONSTRAINT fk_MethodCitations_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodCitations ADD CONSTRAINT fk_MethodCitations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MethodCitations ADD CONSTRAINT fk_MethodCitations_Methods +FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations +FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations_AreRelated +FOREIGN KEY (RelatedAnnotationID) REFERENCES Annotations (AnnotationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations_AreRelated +FOREIGN KEY (RelatedCitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedCitations ADD CONSTRAINT fk_RelatedCitations_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets +FOREIGN KEY (DataSetID) REFERENCES Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets_AreRelated +FOREIGN KEY (RelatedDatasetID) REFERENCES Datasets (DatasetID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedResults ADD CONSTRAINT fk_RelatedResults_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedResults ADD CONSTRAINT fk_RelatedResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedResults ADD CONSTRAINT fk_RelatedResults_Results_AreRelated +FOREIGN KEY (RelatedResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_DerivationEquations +FOREIGN KEY (DerivationEquationID) REFERENCES DerivationEquations (DerivationEquationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CategoricalResults ADD CONSTRAINT fk_CategoricalResults_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CategoricalResults ADD CONSTRAINT fk_CategoricalResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CategoricalResults ADD CONSTRAINT fk_CategoricalResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE CategoricalResultValues ADD CONSTRAINT fk_CategoricalResultValues_CategoricalResults +FOREIGN KEY (ResultID) REFERENCES CategoricalResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResults ADD CONSTRAINT fk_MeasurementResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE MeasurementResultValues ADD CONSTRAINT fk_MeasurementResultValues_MeasurementResults +FOREIGN KEY (ResultID) REFERENCES MeasurementResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_XUnits +FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_YUnits +FOREIGN KEY (IntendedYSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_PointCoverageResults +FOREIGN KEY (ResultID) REFERENCES PointCoverageResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_DUnits +FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_TUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResults ADD CONSTRAINT fk_ProfileResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_DUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_ProfileResults +FOREIGN KEY (ResultID) REFERENCES ProfileResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_TMUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_Units +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_XUnits +FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResults ADD CONSTRAINT fk_SectionResults_ZUnits +FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_SectionResults +FOREIGN KEY (ResultID) REFERENCES SectionResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SectionResultValues ADD CONSTRAINT fk_SectionResultValues_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_Units +FOREIGN KEY (IntendedWavelengthSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResults ADD CONSTRAINT fk_SpectraResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_SpectraResults +FOREIGN KEY (ResultID) REFERENCES SpectraResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_WUnits +FOREIGN KEY (WavelengthUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_TUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_TimeSeriesResults +FOREIGN KEY (ResultID) REFERENCES TimeSeriesResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TSUnits +FOREIGN KEY (IntendedTrajectorySpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_DistanceUnits +FOREIGN KEY (TrajectoryDistanceUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_TrajectoryResults +FOREIGN KEY (ResultID) REFERENCES TrajectoryResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_ZUnits +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResults ADD CONSTRAINT fk_TransectResults_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResults ADD CONSTRAINT fk_TransectResults_Results +FOREIGN KEY (ResultID) REFERENCES Results (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResults ADD CONSTRAINT fk_TransectResults_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResults ADD CONSTRAINT fk_TransectResults_TMUnits +FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResults ADD CONSTRAINT fk_TransectResults_TSUnits +FOREIGN KEY (IntendedTransectSpacingUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResults ADD CONSTRAINT fk_TransectResults_Units +FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_AIUnits +FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_CV_AggregationStatistic +FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_CV_CensorCode +FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_CV_QualityCode +FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_DistanceUnits +FOREIGN KEY (TransectDistanceUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_TransectResults +FOREIGN KEY (ResultID) REFERENCES TransectResults (ResultID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_XUnits +FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE TransectResultValues ADD CONSTRAINT fk_TransectResultValues_YUnits +FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedFeatures ADD CONSTRAINT fk_FeatureParents_FeaturesParent +FOREIGN KEY (RelatedFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SpatialOffsets +FOREIGN KEY (SpatialOffsetID) REFERENCES SpatialOffsets (SpatialOffsetID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedFeatures ADD CONSTRAINT fk_RelatedFeatures_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Sites ADD CONSTRAINT fk_Sites_CV_SiteType +FOREIGN KEY (SiteTypeCV) REFERENCES CV_SiteType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Sites ADD CONSTRAINT fk_Sites_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Sites ADD CONSTRAINT fk_Sites_SpatialReferences +FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_CV_SpatialOffsetType +FOREIGN KEY (SpatialOffsetTypeCV) REFERENCES CV_SpatialOffsetType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_Offset1Units +FOREIGN KEY (Offset1UnitID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_Offset2Units +FOREIGN KEY (Offset2UnitID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpatialOffsets ADD CONSTRAINT fk_SpatialOffsets_Offset3Units +FOREIGN KEY (Offset3UnitID) REFERENCES Units (UnitsID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Specimens ADD CONSTRAINT fk_Specimens_CV_Medium +FOREIGN KEY (SpecimenMediumCV) REFERENCES CV_Medium (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Specimens ADD CONSTRAINT fk_Specimens_CV_SpecimenType +FOREIGN KEY (SpecimenTypeCV) REFERENCES CV_SpecimenType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Specimens ADD CONSTRAINT fk_Specimens_SamplingFeatures +FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_Citations +FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_Specimens +FOREIGN KEY (SamplingFeatureID) REFERENCES Specimens (SamplingFeatureID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers +FOREIGN KEY (TaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ModelAffiliations ADD CONSTRAINT fk_ModelAffiliations_Affiliations +FOREIGN KEY (AffiliationID) REFERENCES Affiliations (AffiliationID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE ModelAffiliations ADD CONSTRAINT fk_ModelAffiliations_Models +FOREIGN KEY (ModelID) REFERENCES Models (ModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedModels ADD CONSTRAINT fk_RelatedModels_CV_RelationshipType +FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE RelatedModels ADD CONSTRAINT fk_RelatedModels_Models +FOREIGN KEY (ModelID) REFERENCES Models (ModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Simulations ADD CONSTRAINT fk_Simulations_Actions +FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) +ON UPDATE NO ACTION ON DELETE NO ACTION; + +ALTER TABLE Simulations ADD CONSTRAINT fk_Simulations_Models +FOREIGN KEY (ModelID) REFERENCES Models (ModelID) +ON UPDATE NO ACTION ON DELETE NO ACTION; \ No newline at end of file diff --git a/tests/schemas/mysql/readme.md b/tests/schemas/mysql/readme.md new file mode 100644 index 0000000..bb91f14 --- /dev/null +++ b/tests/schemas/mysql/readme.md @@ -0,0 +1 @@ +This folder contains a SQL script for generating a blank ODM2 database within MySQL. \ No newline at end of file diff --git a/tests/schemas/postgresql/ODM2_for_PostgreSQL.sql b/tests/schemas/postgresql/ODM2_for_PostgreSQL.sql new file mode 100644 index 0000000..803f550 --- /dev/null +++ b/tests/schemas/postgresql/ODM2_for_PostgreSQL.sql @@ -0,0 +1,2273 @@ + +CREATE EXTENSION if not exists postgis; +CREATE EXTENSION if not exists postgis_topology; +CREATE EXTENSION if not exists fuzzystrmatch; +CREATE EXTENSION if not exists postgis_tiger_geoCoder; + +drop schema if exists ODM2 cascade; + +create schema ODM2; + +/***************************************************************************/ +/************************* CREATE ODM2ANNOTATIONS **************************/ +/***************************************************************************/ + +create table ODM2.ActionAnnotations ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.Annotations ( + annotationid serial NOT NULL primary key, + annotationtypecv varchar (255) NOT NULL, + annotationcode varchar (50) NULL, + annotationtext varchar (500) NOT NULL, + annotationdatetime timestamp NULL, + annotationutcoffset integer NULL, + annotationlink varchar (255) NULL, + annotatorid integer NULL, + citationid integer NULL +); +create table ODM2.CategoricalResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.EquipmentAnnotations ( + bridgeid serial NOT NULL primary key, + equipmentid integer NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.MeasurementResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.MethodAnnotations ( + bridgeid serial NOT NULL primary key, + methodid integer NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.PointCoverageResultValueAnnotations ( + bridgeid bigserial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.ProfileResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.ResultAnnotations ( + bridgeid serial NOT NULL primary key, + resultid bigint NOT NULL, + annotationid integer NOT NULL, + begindatetime timestamp NOT NULL, + enddatetime timestamp NOT NULL +); +create table ODM2.SamplingFeatureAnnotations ( + bridgeid serial NOT NULL primary key, + samplingfeatureid integer NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.SectionResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.SpectraResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.TimeSeriesResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.TrajectoryResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +create table ODM2.TransectResultValueAnnotations ( + bridgeid serial NOT NULL primary key, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); +/***************************************************************************/ +/***************************** CREATE ODM2CORE *****************************/ +/***************************************************************************/ + +create table ODM2.ActionBy ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + affiliationid integer NOT NULL, + isactionlead boolean NOT NULL, + roledescription varchar (500) NULL +); +create table ODM2.Actions ( + actionid serial NOT NULL primary key, + actiontypecv varchar (255) NOT NULL, + methodid integer NOT NULL, + begindatetime timestamp NOT NULL, + begindatetimeutcoffset integer NOT NULL, + enddatetime timestamp NULL, + enddatetimeutcoffset integer NULL, + actiondescription varchar (500) NULL, + actionfilelink varchar (255) NULL +); +create table ODM2.Affiliations ( + affiliationid serial NOT NULL primary key, + personid integer NOT NULL, + organizationid integer NULL, + isprimaryorganizationcontact boolean NULL, + affiliationstartdate date NOT NULL, + affiliationenddate date NULL, + primaryphone varchar (50) NULL, + primaryemail varchar (255) NOT NULL, + primaryaddress varchar (255) NULL, + personlink varchar (255) NULL +); +create table ODM2.Datasets ( + datasetid serial NOT NULL primary key, + datasetuuid uuid NOT NULL, + datasettypecv varchar (255) NOT NULL, + datasetcode varchar (50) NOT NULL, + datasettitle varchar (255) NOT NULL, + datasetabstract varchar (500) NOT NULL, + UNIQUE (DatasetCode) +); +create table ODM2.DatasetsResults ( + bridgeid serial NOT NULL primary key, + datasetid integer NOT NULL, + resultid bigint NOT NULL +); +create table ODM2.FeatureActions ( + featureactionid serial NOT NULL primary key, + samplingfeatureid integer NOT NULL, + actionid integer NOT NULL +); +create table ODM2.Methods ( + methodid serial NOT NULL primary key, + methodtypecv varchar (255) NOT NULL, + methodcode varchar (50) NOT NULL, + methodname varchar (255) NOT NULL, + methoddescription varchar (500) NULL, + methodlink varchar (255) NULL, + organizationid integer NULL, + UNIQUE (MethodCode) +); +create table ODM2.Organizations ( + organizationid serial NOT NULL primary key, + organizationtypecv varchar (255) NOT NULL, + organizationcode varchar (50) NOT NULL, + organizationname varchar (255) NOT NULL, + organizationdescription varchar (500) NULL, + organizationlink varchar (255) NULL, + parentorganizationid integer NULL, + UNIQUE (OrganizationCode) +); +create table ODM2.People ( + personid serial NOT NULL primary key, + personfirstname varchar (255) NOT NULL, + personmiddlename varchar (255) NULL, + personlastname varchar (255) NOT NULL +); +create table ODM2.ProcessingLevels ( + processinglevelid serial NOT NULL primary key, + processinglevelcode varchar (50) NOT NULL, + definition varchar (500) NULL, + explanation varchar (500) NULL, + UNIQUE (ProcessingLevelCode) +); +create table ODM2.RelatedActions ( + relationid serial NOT NULL primary key, + actionid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedactionid integer NOT NULL +); +create table ODM2.Results ( + resultid bigserial NOT NULL primary key, + resultuuid uuid NOT NULL, + featureactionid integer NOT NULL, + resulttypecv varchar (255) NOT NULL, + variableid integer NOT NULL, + unitsid integer NOT NULL, + taxonomicclassifierid integer NULL, + processinglevelid integer NOT NULL, + resultdatetime timestamp NULL, + resultdatetimeutcoffset bigint NULL, + validdatetime timestamp NULL, + validdatetimeutcoffset bigint NULL, + statuscv varchar (255) NULL, + sampledmediumcv varchar (255) NOT NULL, + valuecount integer NOT NULL +); +create table ODM2.SamplingFeatures ( + samplingfeatureid serial NOT NULL primary key, + samplingfeatureuuid uuid NOT NULL, + samplingfeaturetypecv varchar (255) NOT NULL, + samplingfeaturecode varchar (50) NOT NULL, + samplingfeaturename varchar (255) NULL, + samplingfeaturedescription varchar (500) NULL, + samplingfeaturegeotypecv varchar (255) NULL, + featuregeometry geometry NULL, + featuregeometrywkt varchar (8000) NULL, + elevation_m double precision NULL, + elevationdatumcv varchar (255) NULL, + UNIQUE (SamplingFeatureCode) +); +create table ODM2.TaxonomicClassifiers ( + taxonomicclassifierid serial NOT NULL primary key, + taxonomicclassifiertypecv varchar (255) NOT NULL, + taxonomicclassifiername varchar (255) NOT NULL, + taxonomicclassifiercommonname varchar (255) NULL, + taxonomicclassifierdescription varchar (500) NULL, + parenttaxonomicclassifierid integer NULL +); +create table ODM2.Units ( + unitsid serial NOT NULL primary key, + unitstypecv varchar (255) NOT NULL, + unitsabbreviation varchar (50) NOT NULL, + unitsname varchar (255) NOT NULL, + unitslink varchar (255) NULL +); +create table ODM2.Variables ( + variableid serial NOT NULL primary key, + variabletypecv varchar (255) NOT NULL, + variablecode varchar (50) NOT NULL, + variablenamecv varchar (255) NOT NULL, + variabledefinition varchar (500) NULL, + speciationcv varchar (255) NULL, + nodatavalue double precision NOT NULL, + UNIQUE (VariableCode) +); +/***************************************************************************/ +/****************************** CREATE ODM2CV ******************************/ +/***************************************************************************/ + +create table ODM2.CV_ActionType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_AggregationStatistic ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_AnnotationType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_CensorCode ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_DataQualityType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_DatasetType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_DirectiveType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_ElevationDatum ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_EquipmentType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_Medium ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_MethodType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_OrganizationType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_PropertyDataType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_QualityCode ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_RelationshipType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_ResultType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_SamplingFeatureGeoType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_SamplingFeatureType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_SiteType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_SpatialOffsetType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_Speciation ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_SpecimenType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_Status ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_TaxonomicClassifierType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_UnitsType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_VariableName ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +create table ODM2.CV_VariableType ( + term varchar (255) NOT NULL, + name varchar (255) NOT NULL primary key, + definition varchar (5000) NULL, + category varchar (255) NULL, + sourcevocabularyuri varchar (255) NULL +); +/***************************************************************************/ +/************************* CREATE ODM2DATAQUALITY **************************/ +/***************************************************************************/ + +create table ODM2.DataQuality ( + dataqualityid integer NOT NULL primary key, + dataqualitytypecv varchar (255) NOT NULL, + dataqualitycode varchar (255) NOT NULL, + dataqualityvalue double precision NULL, + dataqualityvalueunitsid integer NULL, + dataqualitydescription varchar (500) NULL, + dataqualitylink varchar (255) NULL, + UNIQUE (DataQualityCode) +); +create table ODM2.ReferenceMaterials ( + referencematerialid serial NOT NULL primary key, + referencematerialmediumcv varchar (255) NOT NULL, + referencematerialorganizationid integer NOT NULL, + referencematerialcode varchar (50) NOT NULL, + referencemateriallotcode varchar (255) NULL, + referencematerialpurchasedate timestamp NULL, + referencematerialexpirationdate timestamp NULL, + referencematerialcertificatelink varchar (255) NULL, + samplingfeatureid integer NULL, + UNIQUE (ReferenceMaterialCode) +); +create table ODM2.ReferenceMaterialValues ( + referencematerialvalueid serial NOT NULL primary key, + referencematerialid integer NOT NULL, + referencematerialvalue double precision NOT NULL, + referencematerialaccuracy double precision NULL, + variableid integer NOT NULL, + unitsid integer NOT NULL, + citationid integer NULL +); +create table ODM2.ResultNormalizationValues ( + resultid bigint NOT NULL primary key, + normalizedbyreferencematerialvalueid integer NOT NULL +); +create table ODM2.ResultsDataQuality ( + bridgeid serial NOT NULL primary key, + resultid bigint NOT NULL, + dataqualityid integer NOT NULL +); +/***************************************************************************/ +/************************** CREATE ODM2EQUIPMENT ***************************/ +/***************************************************************************/ + +create table ODM2.CalibrationActions ( + actionid integer NOT NULL primary key, + calibrationcheckvalue double precision NULL, + instrumentoutputvariableid integer NOT NULL, + calibrationequation varchar (255) NULL +); +create table ODM2.CalibrationReferenceEquipment ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + equipmentid integer NOT NULL +); +create table ODM2.CalibrationStandards ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + referencematerialid integer NOT NULL +); +create table ODM2.DataloggerFileColumns ( + dataloggerfilecolumnid serial NOT NULL primary key, + resultid bigint NULL, + dataloggerfileid integer NOT NULL, + instrumentoutputvariableid integer NOT NULL, + columnlabel varchar (50) NOT NULL, + columndescription varchar (500) NULL, + measurementequation varchar (255) NULL, + scaninterval double precision NULL, + scanintervalunitsid integer NULL, + recordinginterval double precision NULL, + recordingintervalunitsid integer NULL, + aggregationstatisticcv varchar (255) NULL +); +create table ODM2.DataLoggerFiles ( + dataloggerfileid serial NOT NULL primary key, + programid integer NOT NULL, + dataloggerfilename varchar (255) NOT NULL, + dataloggerfiledescription varchar (500) NULL, + dataloggerfilelink varchar (255) NULL +); +create table ODM2.DataloggerProgramFiles ( + programid serial NOT NULL primary key, + affiliationid integer NOT NULL, + programname varchar (255) NOT NULL, + programdescription varchar (500) NULL, + programversion varchar (50) NULL, + programfilelink varchar (255) NULL +); +create table ODM2.Equipment ( + equipmentid serial NOT NULL primary key, + equipmentcode varchar (50) NOT NULL, + equipmentname varchar (255) NOT NULL, + equipmenttypecv varchar (255) NOT NULL, + equipmentmodelid integer NOT NULL, + equipmentserialnumber varchar (50) NOT NULL, + equipmentownerid integer NOT NULL, + equipmentvendorid integer NOT NULL, + equipmentpurchasedate timestamp NOT NULL, + equipmentpurchaseordernumber varchar (50) NULL, + equipmentdescription varchar (500) NULL, + equipmentdocumentationlink varchar (255) NULL, + UNIQUE (EquipmentCode) +); +create table ODM2.EquipmentModels ( + equipmentmodelid serial NOT NULL primary key, + modelmanufacturerid integer NOT NULL, + modelpartnumber varchar (50) NULL, + modelname varchar (255) NOT NULL, + modeldescription varchar (500) NULL, + isinstrument boolean NOT NULL, + modelspecificationsfilelink varchar (255) NULL, + modellink varchar (255) NULL +); +create table ODM2.EquipmentUsed ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + equipmentid integer NOT NULL +); +create table ODM2.InstrumentOutputVariables ( + instrumentoutputvariableid serial NOT NULL primary key, + modelid integer NOT NULL, + variableid integer NOT NULL, + instrumentmethodid integer NOT NULL, + instrumentresolution varchar (255) NULL, + instrumentaccuracy varchar (255) NULL, + instrumentrawoutputunitsid integer NOT NULL +); +create table ODM2.MaintenanceActions ( + actionid integer NOT NULL primary key, + isfactoryservice boolean NOT NULL, + maintenancecode varchar (50) NULL, + maintenancereason varchar (500) NULL +); +create table ODM2.RelatedEquipment ( + relationid serial NOT NULL primary key, + equipmentid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedequipmentid integer NOT NULL, + relationshipstartdatetime timestamp NOT NULL, + relationshipstartdatetimeutcoffset integer NOT NULL, + relationshipenddatetime timestamp NULL, + relationshipenddatetimeutcoffset integer NULL +); +/***************************************************************************/ +/********************* CREATE ODM2EXTENSIONPROPERTIES **********************/ +/***************************************************************************/ + +create table ODM2.ActionExtensionPropertyValues ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue varchar (255) NOT NULL +); +create table ODM2.CitationExtensionPropertyValues ( + bridgeid serial NOT NULL primary key, + citationid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue varchar (255) NOT NULL +); +create table ODM2.ExtensionProperties ( + propertyid serial NOT NULL primary key, + propertyname varchar (255) NOT NULL, + propertydescription varchar (500) NULL, + propertydatatypecv varchar (255) NOT NULL, + propertyunitsid integer NULL +); +create table ODM2.MethodExtensionPropertyValues ( + bridgeid serial NOT NULL primary key, + methodid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue varchar (255) NOT NULL +); +create table ODM2.ResultExtensionPropertyValues ( + bridgeid serial NOT NULL primary key, + resultid bigint NOT NULL, + propertyid integer NOT NULL, + propertyvalue varchar (255) NOT NULL +); +create table ODM2.SamplingFeatureExtensionPropertyValues ( + bridgeid serial NOT NULL primary key, + samplingfeatureid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue varchar (255) NOT NULL +); +create table ODM2.VariableExtensionPropertyValues ( + bridgeid serial NOT NULL primary key, + variableid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue varchar (255) NOT NULL +); +/***************************************************************************/ +/********************* CREATE ODM2EXTERNALIDENTIFIERS **********************/ +/***************************************************************************/ + +create table ODM2.CitationExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + citationid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + citationexternalidentifier varchar (255) NOT NULL, + citationexternalidentifieruri varchar (255) NULL +); +create table ODM2.ExternalIdentifierSystems ( + externalidentifiersystemid serial NOT NULL primary key, + externalidentifiersystemname varchar (255) NOT NULL, + identifiersystemorganizationid integer NOT NULL, + externalidentifiersystemdescription varchar (500) NULL, + externalidentifiersystemurl varchar (255) NULL +); +create table ODM2.MethodExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + methodid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + methodexternalidentifier varchar (255) NOT NULL, + methodexternalidentifieruri varchar (255) NULL +); +create table ODM2.PersonExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + personid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + personexternalidentifier varchar (255) NOT NULL, + personexternalidentifieruri varchar (255) NULL +); +create table ODM2.ReferenceMaterialExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + referencematerialid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + referencematerialexternalidentifier varchar (255) NOT NULL, + referencematerialexternalidentifieruri varchar (255) NULL +); +create table ODM2.SamplingFeatureExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + samplingfeatureid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + samplingfeatureexternalidentifier varchar (255) NOT NULL, + samplingfeatureexternalidentifieruri varchar (255) NULL +); +create table ODM2.SpatialReferenceExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + spatialreferenceid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + spatialreferenceexternalidentifier varchar (255) NOT NULL, + spatialreferenceexternalidentifieruri varchar (255) NULL +); +create table ODM2.TaxonomicClassifierExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + taxonomicclassifierid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + taxonomicclassifierexternalidentifier varchar (255) NOT NULL, + taxonomicclassifierexternalidentifieruri varchar (255) NULL +); +create table ODM2.VariableExternalIdentifiers ( + bridgeid serial NOT NULL primary key, + variableid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + variableexternalidentifer varchar (255) NOT NULL, + variableexternalidentifieruri varchar (255) NULL +); +/***************************************************************************/ +/************************* CREATE ODM2LABANALYSES **************************/ +/***************************************************************************/ + +create table ODM2.ActionDirectives ( + bridgeid serial NOT NULL primary key, + actionid integer NOT NULL, + directiveid integer NOT NULL +); +create table ODM2.Directives ( + directiveid serial NOT NULL primary key, + directivetypecv varchar (255) NOT NULL, + directivedescription varchar (500) NOT NULL +); +create table ODM2.SpecimenBatchPostions ( + featureactionid integer NOT NULL primary key, + batchpositionnumber integer NOT NULL, + batchpositionlabel varchar (255) NULL +); +/***************************************************************************/ +/************************** CREATE ODM2PROVENANCE **************************/ +/***************************************************************************/ + +create table ODM2.AuthorLists ( + bridgeid serial NOT NULL primary key, + citationid integer NOT NULL, + personid integer NOT NULL, + authororder integer NOT NULL +); +create table ODM2.Citations ( + citationid serial NOT NULL primary key, + title varchar (255) NOT NULL, + publisher varchar (255) NOT NULL, + publicationyear integer NOT NULL, + citationlink varchar (255) NULL +); +create table ODM2.DatasetCitations ( + bridgeid serial NOT NULL primary key, + datasetid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + citationid integer NOT NULL +); +create table ODM2.DerivationEquations ( + derivationequationid serial NOT NULL primary key, + derivationequation varchar (255) NOT NULL +); +create table ODM2.MethodCitations ( + bridgeid serial NOT NULL primary key, + methodid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + citationid integer NOT NULL +); +create table ODM2.RelatedAnnotations ( + relationid serial NOT NULL primary key, + annotationid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedannotationid integer NOT NULL +); +create table ODM2.RelatedCitations ( + relationid serial NOT NULL primary key, + citationid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedcitationid integer NOT NULL +); +create table ODM2.RelatedDatasets ( + relationid serial NOT NULL primary key, + datasetid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relateddatasetid integer NOT NULL, + versioncode varchar (50) NULL +); +create table ODM2.RelatedResults ( + relationid serial NOT NULL primary key, + resultid bigint NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedresultid bigint NOT NULL, + versioncode varchar (50) NULL, + relatedresultsequencenumber integer NULL +); +create table ODM2.ResultDerivationEquations ( + resultid bigint NOT NULL primary key, + derivationequationid integer NOT NULL +); +/***************************************************************************/ +/*************************** CREATE ODM2RESULTS ****************************/ +/***************************************************************************/ + +create table ODM2.CategoricalResults ( + resultid bigint NOT NULL primary key, + xlocation double precision NULL, + xlocationunitsid integer NULL, + ylocation double precision NULL, + ylocationunitsid integer NULL, + zlocation double precision NULL, + zlocationunitsid integer NULL, + spatialreferenceid integer NULL, + qualitycodecv varchar (255) NOT NULL +); +create table ODM2.CategoricalResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue varchar (255) NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +); +create table ODM2.MeasurementResults ( + resultid bigint NOT NULL primary key, + xlocation double precision NULL, + xlocationunitsid integer NULL, + ylocation double precision NULL, + ylocationunitsid integer NULL, + zlocation double precision NULL, + zlocationunitsid integer NULL, + spatialreferenceid integer NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + aggregationstatisticcv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); +create table ODM2.MeasurementResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +); +create table ODM2.PointCoverageResults ( + resultid bigint NOT NULL primary key, + zlocation double precision NULL, + zlocationunitsid integer NULL, + spatialreferenceid integer NULL, + intendedxspacing double precision NULL, + intendedxspacingunitsid integer NULL, + intendedyspacing double precision NULL, + intendedyspacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); +create table ODM2.PointCoverageResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + xlocation double precision NOT NULL, + xlocationunitsid integer NOT NULL, + ylocation double precision NOT NULL, + ylocationunitsid integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, CensorCodeCV, QualityCodeCV) +); +create table ODM2.ProfileResults ( + resultid bigint NOT NULL primary key, + xlocation double precision NULL, + xlocationunitsid integer NULL, + ylocation double precision NULL, + ylocationunitsid integer NULL, + spatialreferenceid integer NULL, + intendedzspacing double precision NULL, + intendedzspacingunitsid integer NULL, + intendedtimespacing double precision NULL, + intendedtimespacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL +); +create table ODM2.ProfileResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + zlocation double precision NOT NULL, + zaggregationinterval double precision NOT NULL, + zlocationunitsid integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); +create table ODM2.SectionResults ( + resultid bigint NOT NULL primary key, + ylocation double precision NULL, + ylocationunitsid integer NULL, + spatialreferenceid integer NULL, + intendedxspacing double precision NULL, + intendedxspacingunitsid integer NULL, + intendedzspacing double precision NULL, + intendedzspacingunitsid integer NULL, + intendedtimespacing double precision NULL, + intendedtimespacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL +); +create table ODM2.SectionResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + xlocation double precision NOT NULL, + xaggregationinterval double precision NOT NULL, + xlocationunitsid integer NOT NULL, + zlocation bigint NOT NULL, + zaggregationinterval double precision NOT NULL, + zlocationunitsid integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + aggregationstatisticcv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XAggregationInterval, XLocationUnitsID, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); +create table ODM2.SpectraResults ( + resultid bigint NOT NULL primary key, + xlocation double precision NULL, + xlocationunitsid integer NULL, + ylocation double precision NULL, + ylocationunitsid integer NULL, + zlocation double precision NULL, + zlocationunitsid integer NULL, + spatialreferenceid integer NULL, + intendedwavelengthspacing double precision NULL, + intendedwavelengthspacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL +); +create table ODM2.SpectraResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + excitationwavelength double precision NOT NULL, + emissionwavelength double precision NOT NULL, + wavelengthunitsid integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ExcitationWavelength, EmissionWavelength, WavelengthUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); +create table ODM2.TimeSeriesResults ( + resultid bigint NOT NULL primary key, + xlocation double precision NULL, + xlocationunitsid integer NULL, + ylocation double precision NULL, + ylocationunitsid integer NULL, + zlocation double precision NULL, + zlocationunitsid integer NULL, + spatialreferenceid integer NULL, + intendedtimespacing double precision NULL, + intendedtimespacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL +); +create table ODM2.TimeSeriesResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); +create table ODM2.TrajectoryResults ( + resultid bigint NOT NULL primary key, + spatialreferenceid integer NULL, + intendedtrajectoryspacing double precision NULL, + intendedtrajectoryspacingunitsid integer NULL, + intendedtimespacing double precision NULL, + intendedtimespacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL +); +create table ODM2.TrajectoryResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + xlocation double precision NOT NULL, + xlocationunitsid integer NOT NULL, + ylocation double precision NOT NULL, + ylocationunitsid integer NOT NULL, + zlocation double precision NOT NULL, + zlocationunitsid integer NOT NULL, + trajectorydistance double precision NOT NULL, + trajectorydistanceaggregationinterval double precision NOT NULL, + trajectorydistanceunitsid integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, ZLocation, ZLocationUnitsID, TrajectoryDistance, TrajectoryDistanceAggregationInterval, TrajectoryDistanceUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); +create table ODM2.TransectResults ( + resultid bigint NOT NULL primary key, + zlocation double precision NULL, + zlocationunitsid integer NULL, + spatialreferenceid integer NULL, + intendedtransectspacing double precision NULL, + intendedtransectspacingunitsid integer NULL, + intendedtimespacing double precision NULL, + intendedtimespacingunitsid integer NULL, + aggregationstatisticcv varchar (255) NOT NULL +); +create table ODM2.TransectResultValues ( + valueid bigserial NOT NULL primary key, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + xlocation double precision NOT NULL, + xlocationunitsid integer NOT NULL, + ylocation double precision NOT NULL, + ylocationunitsid integer NOT NULL, + transectdistance double precision NOT NULL, + transectdistanceaggregationinterval double precision NOT NULL, + transectdistanceunitsid integer NOT NULL, + censorcodecv varchar (255) NOT NULL, + qualitycodecv varchar (255) NOT NULL, + aggregationstatisticcv varchar (255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, TransectDistance, TransectDistanceAggregationInterval, TransectDistanceUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); +/***************************************************************************/ +/*********************** CREATE ODM2SAMPLINGFEATURES ***********************/ +/***************************************************************************/ + +create table ODM2.RelatedFeatures ( + relationid serial NOT NULL primary key, + samplingfeatureid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedfeatureid integer NOT NULL, + spatialoffsetid integer NULL +); +create table ODM2.Sites ( + samplingfeatureid integer NOT NULL primary key, + sitetypecv varchar (255) NOT NULL, + latitude double precision NOT NULL, + longitude double precision NOT NULL, + spatialreferenceid integer NOT NULL +); +create table ODM2.SpatialOffsets ( + spatialoffsetid serial NOT NULL primary key, + spatialoffsettypecv varchar (255) NOT NULL, + offset1value double precision NOT NULL, + offset1unitid integer NOT NULL, + offset2value double precision NULL, + offset2unitid integer NULL, + offset3value double precision NULL, + offset3unitid integer NULL +); +create table ODM2.SpatialReferences ( + spatialreferenceid serial NOT NULL primary key, + srscode varchar (50) NULL, + srsname varchar (255) NOT NULL, + srsdescription varchar (500) NULL, + srslink varchar (255) NULL +); +create table ODM2.Specimens ( + samplingfeatureid integer NOT NULL primary key, + specimentypecv varchar (255) NOT NULL, + specimenmediumcv varchar (255) NOT NULL, + isfieldspecimen boolean NOT NULL +); +create table ODM2.SpecimenTaxonomicClassifiers ( + bridgeid serial NOT NULL primary key, + samplingfeatureid integer NOT NULL, + taxonomicclassifierid integer NOT NULL, + citationid integer NULL +); +/***************************************************************************/ +/************************** CREATE ODM2SIMULATION **************************/ +/***************************************************************************/ + +create table ODM2.ModelAffiliations ( + bridgeid serial NOT NULL primary key, + modelid integer NOT NULL, + affiliationid integer NOT NULL, + isprimary boolean NOT NULL, + roledescription varchar (500) NULL +); +create table ODM2.Models ( + modelid serial NOT NULL primary key, + modelcode varchar (50) NOT NULL, + modelname varchar (255) NOT NULL, + modeldescription varchar (500) NULL, + version varchar (255) NULL, + modellink varchar (255) NULL, + UNIQUE (ModelCode) +); +create table ODM2.RelatedModels ( + relatedid serial NOT NULL primary key, + modelid integer NOT NULL, + relationshiptypecv varchar (255) NOT NULL, + relatedmodelid integer NOT NULL +); +create table ODM2.Simulations ( + simulationid serial NOT NULL primary key, + actionid integer NOT NULL, + simulationname varchar (255) NOT NULL, + simulationdescription varchar (500) NULL, + simulationstartdatetime timestamp NOT NULL, + simulationstartdatetimeutcoffset integer NOT NULL, + simulationenddatetime timestamp NOT NULL, + simulationenddatetimeutcoffset integer NOT NULL, + timestepvalue double precision NOT NULL, + timestepunitsid integer NOT NULL, + inputdatasetid integer NULL, + modelid integer NOT NULL +); + +alter table ODM2.ActionAnnotations add constraint fk_ActionAnnotations_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.ActionAnnotations add constraint fk_ActionAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.Annotations add constraint fk_Annotations_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.Annotations add constraint fk_Annotations_CV_AnnotationType +foreign key (AnnotationTypeCV) References ODM2.CV_AnnotationType (Name) +on update no Action on delete cascade; + +alter table ODM2.Annotations add constraint fk_Annotations_People +foreign key (AnnotatorID) References ODM2.People (PersonID) +on update no Action on delete cascade; + +alter table ODM2.CategoricalResultValueAnnotations add constraint fk_CategoricalResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.CategoricalResultValueAnnotations add constraint fk_CategoricalResultValueAnnotations_CategoricalResultValues +foreign key (ValueID) References ODM2.CategoricalResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.EquipmentAnnotations add constraint fk_EquipmentAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.EquipmentAnnotations add constraint fk_EquipmentAnnotations_Equipment +foreign key (EquipmentID) References ODM2.Equipment (EquipmentID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResultValueAnnotations add constraint fk_MeasurementResultValueAnnotations_MeasurementResultValues +foreign key (ValueID) References ODM2.MeasurementResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResultValueAnnotations add constraint fk_ResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.MethodAnnotations add constraint fk_MethodAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.MethodAnnotations add constraint fk_MethodAnnotations_Methods +foreign key (MethodID) References ODM2.Methods (MethodID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValueAnnotations add constraint fk_PointCoverageResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValueAnnotations add constraint fk_PointCoverageResultValueAnnotations_PointCoverageResultValues +foreign key (ValueID) References ODM2.PointCoverageResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValueAnnotations add constraint fk_ProfileResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValueAnnotations add constraint fk_ProfileResultValueAnnotations_ProfileResultValues +foreign key (ValueID) References ODM2.ProfileResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.ResultAnnotations add constraint fk_ResultAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.ResultAnnotations add constraint fk_ResultAnnotations_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatureAnnotations add constraint fk_SamplingFeatureAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatureAnnotations add constraint fk_SamplingFeatureAnnotations_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValueAnnotations add constraint fk_SectionResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValueAnnotations add constraint fk_SectionResultValueAnnotations_SectionResultValues +foreign key (ValueID) References ODM2.SectionResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValueAnnotations add constraint fk_SpectraResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValueAnnotations add constraint fk_SpectraResultValueAnnotations_SpectraResultValues +foreign key (ValueID) References ODM2.SpectraResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResultValueAnnotations add constraint fk_TimeSeriesResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResultValueAnnotations add constraint fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues +foreign key (ValueID) References ODM2.TimeSeriesResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValueAnnotations add constraint fk_TrajectoryResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValueAnnotations add constraint fk_TrajectoryResultValueAnnotations_TrajectoryResultValues +foreign key (ValueID) References ODM2.TrajectoryResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValueAnnotations add constraint fk_TransectResultValueAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValueAnnotations add constraint fk_TransectResultValueAnnotations_TransectResultValues +foreign key (ValueID) References ODM2.TransectResultValues (ValueID) +on update no Action on delete cascade; + +alter table ODM2.ActionBy add constraint fk_ActionPeople_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.ActionBy add constraint fk_ActionPeople_Affiliations +foreign key (AffiliationID) References ODM2.Affiliations (AffiliationID) +on update no Action on delete cascade; + +alter table ODM2.Actions add constraint fk_Actions_CV_ActionType +foreign key (ActionTypeCV) References ODM2.CV_ActionType (Name) +on update no Action on delete cascade; + +alter table ODM2.Actions add constraint fk_Actions_Methods +foreign key (MethodID) References ODM2.Methods (MethodID) +on update no Action on delete cascade; + +alter table ODM2.Affiliations add constraint fk_Affiliations_Organizations +foreign key (OrganizationID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.Affiliations add constraint fk_Affiliations_People +foreign key (PersonID) References ODM2.People (PersonID) +on update no Action on delete cascade; + +alter table ODM2.Datasets add constraint fk_Datasets_CV_DatasetTypeCV +foreign key (DatasetTypeCV) References ODM2.CV_DatasetType (Name) +on update no Action on delete cascade; + +alter table ODM2.DatasetsResults add constraint fk_DataSetsResults_DataSets +foreign key (DatasetID) References ODM2.Datasets (DatasetID) +on update no Action on delete cascade; + +alter table ODM2.DatasetsResults add constraint fk_DataSetsResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.FeatureActions add constraint fk_FeatureActions_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.FeatureActions add constraint fk_FeatureActions_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.Methods add constraint fk_Methods_CV_MethodType +foreign key (MethodTypeCV) References ODM2.CV_MethodType (Name) +on update no Action on delete cascade; + +alter table ODM2.Methods add constraint fk_Methods_Organizations +foreign key (OrganizationID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.Organizations add constraint fk_Organizations_CV_OrganizationType +foreign key (OrganizationTypeCV) References ODM2.CV_OrganizationType (Name) +on update no Action on delete cascade; + +alter table ODM2.Organizations add constraint fk_Organizations_Organizations +foreign key (ParentOrganizationID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.RelatedActions add constraint fk_RelatedActions_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.RelatedActions add constraint fk_RelatedActions_Actions_AreRelated +foreign key (RelatedActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.RelatedActions add constraint fk_RelatedActions_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_CV_Medium +foreign key (SampledMediumCV) References ODM2.CV_Medium (Name) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_CV_ResultType +foreign key (ResultTypeCV) References ODM2.CV_ResultType (Name) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_CV_Status +foreign key (StatusCV) References ODM2.CV_Status (Name) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_FeatureActions +foreign key (FeatureActionID) References ODM2.FeatureActions (FeatureActionID) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_ProcessingLevels +foreign key (ProcessingLevelID) References ODM2.ProcessingLevels (ProcessingLevelID) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_TaxonomicClassifiers +foreign key (TaxonomicClassifierID) References ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_Units +foreign key (UnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.Results add constraint fk_Results_Variables +foreign key (VariableID) References ODM2.Variables (VariableID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatures add constraint fk_SamplingFeatures_CV_ElevationDatum +foreign key (ElevationDatumCV) References ODM2.CV_ElevationDatum (Name) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatures add constraint fk_SamplingFeatures_CV_SamplingFeatureGeoType +foreign key (SamplingFeatureGeotypeCV) References ODM2.CV_SamplingFeatureGeoType (Name) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatures add constraint fk_SamplingFeatures_CV_SamplingFeatureType +foreign key (SamplingFeatureTypeCV) References ODM2.CV_SamplingFeatureType (Name) +on update no Action on delete cascade; + +alter table ODM2.TaxonomicClassifiers add constraint fk_ParentTaxon_Taxon +foreign key (ParentTaxonomicClassifierID) References ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +on update no Action on delete cascade; + +alter table ODM2.TaxonomicClassifiers add constraint fk_TaxonomicClassifiers_CV_TaxonomicClassifierType +foreign key (TaxonomicClassifierTypeCV) References ODM2.CV_TaxonomicClassifierType (Name) +on update no Action on delete cascade; + +alter table ODM2.Units add constraint fk_Units_CV_UnitsType +foreign key (UnitsTypeCV) References ODM2.CV_UnitsType (Name) +on update no Action on delete cascade; + +alter table ODM2.Variables add constraint fk_Variables_CV_Speciation +foreign key (SpeciationCV) References ODM2.CV_Speciation (Name) +on update no Action on delete cascade; + +alter table ODM2.Variables add constraint fk_Variables_CV_VariableName +foreign key (VariableNameCV) References ODM2.CV_VariableName (Name) +on update no Action on delete cascade; + +alter table ODM2.Variables add constraint fk_Variables_CV_VariableType +foreign key (VariableTypeCV) References ODM2.CV_VariableType (Name) +on update no Action on delete cascade; + +alter table ODM2.DataQuality add constraint fk_DataQuality_CV_DataQualityType +foreign key (DataQualityTypeCV) References ODM2.CV_DataQualityType (Name) +on update no Action on delete cascade; + +alter table ODM2.DataQuality add constraint fk_DataQuality_Units +foreign key (DataQualityValueUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterials add constraint fk_ReferenceMaterials_CV_Medium +foreign key (ReferenceMaterialMediumCV) References ODM2.CV_Medium (Name) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterials add constraint fk_ReferenceMaterials_Organizations +foreign key (ReferenceMaterialOrganizationID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterials add constraint fk_ReferenceMaterials_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterialValues add constraint fk_ReferenceMaterialValues_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterialValues add constraint fk_ReferenceMaterialValues_ReferenceMaterials +foreign key (ReferenceMaterialID) References ODM2.ReferenceMaterials (ReferenceMaterialID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterialValues add constraint fk_ReferenceMaterialValues_Units +foreign key (UnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterialValues add constraint fk_ReferenceMaterialValues_Variables +foreign key (VariableID) References ODM2.Variables (VariableID) +on update no Action on delete cascade; + +alter table ODM2.ResultNormalizationValues add constraint fk_ResultNormalizationValues_ReferenceMaterialValues +foreign key (NormalizedByReferenceMaterialValueID) References ODM2.ReferenceMaterialValues (ReferenceMaterialValueID) +on update no Action on delete cascade; + +alter table ODM2.ResultNormalizationValues add constraint fk_ResultNormalizationValues_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.ResultsDataQuality add constraint fk_ResultsDataQuality_DataQuality +foreign key (DataQualityID) References ODM2.DataQuality (DataQualityID) +on update no Action on delete cascade; + +alter table ODM2.ResultsDataQuality add constraint fk_ResultsDataQuality_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.CalibrationActions add constraint fk_CalibrationActions_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.CalibrationActions add constraint fk_CalibrationActions_InstrumentOutputVariables +foreign key (InstrumentOutputVariableID) References ODM2.InstrumentOutputVariables (InstrumentOutputVariableID) +on update no Action on delete cascade; + +alter table ODM2.CalibrationReferenceEquipment add constraint fk_CalibrationReferenceEquipment_CalibrationActions +foreign key (ActionID) References ODM2.CalibrationActions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.CalibrationReferenceEquipment add constraint fk_CalibrationReferenceEquipment_Equipment +foreign key (EquipmentID) References ODM2.Equipment (EquipmentID) +on update no Action on delete cascade; + +alter table ODM2.CalibrationStandards add constraint fk_CalibrationStandards_CalibrationActions +foreign key (ActionID) References ODM2.CalibrationActions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.CalibrationStandards add constraint fk_FieldCalibrationStandards_ReferenceMaterials +foreign key (ReferenceMaterialID) References ODM2.ReferenceMaterials (ReferenceMaterialID) +on update no Action on delete cascade; + +alter table ODM2.DataloggerFileColumns add constraint fk_DataloggerFileColumns_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.DataloggerFileColumns add constraint fk_DataloggerFileColumns_DataLoggerFiles +foreign key (DataLoggerFileID) References ODM2.DataLoggerFiles (DataLoggerFileID) +on update no Action on delete cascade; + +alter table ODM2.DataloggerFileColumns add constraint fk_DataloggerFileColumns_InstrumentOutputVariables +foreign key (InstrumentOutputVariableID) References ODM2.InstrumentOutputVariables (InstrumentOutputVariableID) +on update no Action on delete cascade; + +alter table ODM2.DataloggerFileColumns add constraint fk_DataloggerFileColumns_RecordingUnits +foreign key (RecordingIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.DataloggerFileColumns add constraint fk_DataloggerFileColumns_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.DataloggerFileColumns add constraint fk_DataloggerFileColumns_ScanUnits +foreign key (ScanIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.DataLoggerFiles add constraint fk_DataLoggerFiles_DataloggerProgramFiles +foreign key (ProgramID) References ODM2.DataloggerProgramFiles (ProgramID) +on update no Action on delete cascade; + +alter table ODM2.DataloggerProgramFiles add constraint fk_DataloggerProgramFiles_Affiliations +foreign key (AffiliationID) References ODM2.Affiliations (AffiliationID) +on update no Action on delete cascade; + +alter table ODM2.Equipment add constraint fk_Equipment_CV_EquipmentType +foreign key (EquipmentTypeCV) References ODM2.CV_EquipmentType (Name) +on update no Action on delete cascade; + +alter table ODM2.Equipment add constraint fk_Equipment_EquipmentModels +foreign key (EquipmentModelID) References ODM2.EquipmentModels (EquipmentModelID) +on update no Action on delete cascade; + +alter table ODM2.Equipment add constraint fk_Equipment_Organizations +foreign key (EquipmentVendorID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.Equipment add constraint fk_Equipment_People +foreign key (EquipmentOwnerID) References ODM2.People (PersonID) +on update no Action on delete cascade; + +alter table ODM2.EquipmentModels add constraint fk_EquipmentModels_Organizations +foreign key (ModelManufacturerID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.EquipmentUsed add constraint fk_EquipmentActions_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.EquipmentUsed add constraint fk_EquipmentActions_Equipment +foreign key (EquipmentID) References ODM2.Equipment (EquipmentID) +on update no Action on delete cascade; + +alter table ODM2.InstrumentOutputVariables add constraint fk_InstrumentOutputVariables_EquipmentModels +foreign key (ModelID) References ODM2.EquipmentModels (EquipmentModelID) +on update no Action on delete cascade; + +alter table ODM2.InstrumentOutputVariables add constraint fk_InstrumentOutputVariables_Methods +foreign key (InstrumentMethodID) References ODM2.Methods (MethodID) +on update no Action on delete cascade; + +alter table ODM2.InstrumentOutputVariables add constraint fk_InstrumentOutputVariables_Units +foreign key (InstrumentRawOutputUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.InstrumentOutputVariables add constraint fk_InstrumentOutputVariables_Variables +foreign key (VariableID) References ODM2.Variables (VariableID) +on update no Action on delete cascade; + +alter table ODM2.MaintenanceActions add constraint fk_MaintenanceActions_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.RelatedEquipment add constraint fk_RelatedEquipment_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.RelatedEquipment add constraint fk_RelatedEquipment_Equipment +foreign key (EquipmentID) References ODM2.Equipment (EquipmentID) +on update no Action on delete cascade; + +alter table ODM2.RelatedEquipment add constraint fk_RelatedEquipment_Equipment_AreRelated +foreign key (RelatedEquipmentID) References ODM2.Equipment (EquipmentID) +on update no Action on delete cascade; + +alter table ODM2.ActionExtensionPropertyValues add constraint fk_ActionExtensionPropertyValues_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.ActionExtensionPropertyValues add constraint fk_ActionExtensionPropertyValues_ExtensionProperties +foreign key (PropertyID) References ODM2.ExtensionProperties (PropertyID) +on update no Action on delete cascade; + +alter table ODM2.CitationExtensionPropertyValues add constraint fk_CitationExtensionPropertyValues_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.CitationExtensionPropertyValues add constraint fk_CitationExtensionPropertyValues_ExtensionProperties +foreign key (PropertyID) References ODM2.ExtensionProperties (PropertyID) +on update no Action on delete cascade; + +alter table ODM2.ExtensionProperties add constraint fk_ExtensionProperties_CV_PropertyDataType +foreign key (PropertyDataTypeCV) References ODM2.CV_PropertyDataType (Name) +on update no Action on delete cascade; + +alter table ODM2.ExtensionProperties add constraint fk_ExtensionProperties_Units +foreign key (PropertyUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.MethodExtensionPropertyValues add constraint fk_MethodExtensionPropertyValues_ExtensionProperties +foreign key (PropertyID) References ODM2.ExtensionProperties (PropertyID) +on update no Action on delete cascade; + +alter table ODM2.MethodExtensionPropertyValues add constraint fk_MethodExtensionPropertyValues_Methods +foreign key (MethodID) References ODM2.Methods (MethodID) +on update no Action on delete cascade; + +alter table ODM2.ResultExtensionPropertyValues add constraint fk_ResultExtensionPropertyValues_ExtensionProperties +foreign key (PropertyID) References ODM2.ExtensionProperties (PropertyID) +on update no Action on delete cascade; + +alter table ODM2.ResultExtensionPropertyValues add constraint fk_ResultExtensionPropertyValues_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatureExtensionPropertyValues add constraint fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties +foreign key (PropertyID) References ODM2.ExtensionProperties (PropertyID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatureExtensionPropertyValues add constraint fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.VariableExtensionPropertyValues add constraint fk_VariableExtensionPropertyValues_ExtensionProperties +foreign key (PropertyID) References ODM2.ExtensionProperties (PropertyID) +on update no Action on delete cascade; + +alter table ODM2.VariableExtensionPropertyValues add constraint fk_VariableExtensionPropertyValues_Variables +foreign key (VariableID) References ODM2.Variables (VariableID) +on update no Action on delete cascade; + +alter table ODM2.CitationExternalIdentifiers add constraint fk_CitationExternalIdentifiers_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.CitationExternalIdentifiers add constraint fk_CitationExternalIdentifiers_ExternalIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.ExternalIdentifierSystems add constraint fk_ExternalIdentifierSystems_Organizations +foreign key (IdentifierSystemOrganizationID) References ODM2.Organizations (OrganizationID) +on update no Action on delete cascade; + +alter table ODM2.MethodExternalIdentifiers add constraint fk_MethodExternalIdentifiers_ExternalIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.MethodExternalIdentifiers add constraint fk_MethodExternalIdentifiers_Methods +foreign key (MethodID) References ODM2.Methods (MethodID) +on update no Action on delete cascade; + +alter table ODM2.PersonExternalIdentifiers add constraint fk_PersonExternalIdentifiers_ExternalIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.PersonExternalIdentifiers add constraint fk_PersonExternalIdentifiers_People +foreign key (PersonID) References ODM2.People (PersonID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterialExternalIdentifiers add constraint fk_RefMaterialExtIdentifiers_ExtIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.ReferenceMaterialExternalIdentifiers add constraint fk_RefMaterialExtIdentifiers_RefMaterials +foreign key (ReferenceMaterialID) References ODM2.ReferenceMaterials (ReferenceMaterialID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatureExternalIdentifiers add constraint fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.SamplingFeatureExternalIdentifiers add constraint fk_SamplingFeatureExternalIdentifiers_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.SpatialReferenceExternalIdentifiers add constraint fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.SpatialReferenceExternalIdentifiers add constraint fk_SpatialReferenceExternalIdentifiers_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.TaxonomicClassifierExternalIdentifiers add constraint fk_TaxonomicClassifierExtIDs_ExtIDSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.TaxonomicClassifierExternalIdentifiers add constraint fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers +foreign key (TaxonomicClassifierID) References ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +on update no Action on delete cascade; + +alter table ODM2.VariableExternalIdentifiers add constraint fk_VariableExternalIdentifiers_ExternalIdentifierSystems +foreign key (ExternalIdentifierSystemID) References ODM2.ExternalIdentifierSystems (ExternalIdentifierSystemID) +on update no Action on delete cascade; + +alter table ODM2.VariableExternalIdentifiers add constraint fk_VariableExternalIdentifiers_Variables +foreign key (VariableID) References ODM2.Variables (VariableID) +on update no Action on delete cascade; + +alter table ODM2.ActionDirectives add constraint fk_ActionDirectives_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.ActionDirectives add constraint fk_ActionDirectives_Directives +foreign key (DirectiveID) References ODM2.Directives (DirectiveID) +on update no Action on delete cascade; + +alter table ODM2.Directives add constraint fk_Directives_CV_DirectiveType +foreign key (DirectiveTypeCV) References ODM2.CV_DirectiveType (Name) +on update no Action on delete cascade; + +alter table ODM2.SpecimenBatchPostions add constraint fk_SpecimenBatchPostions_FeatureActions +foreign key (FeatureActionID) References ODM2.FeatureActions (FeatureActionID) +on update no Action on delete cascade; + +alter table ODM2.AuthorLists add constraint fk_AuthorLists_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.AuthorLists add constraint fk_AuthorLists_People +foreign key (PersonID) References ODM2.People (PersonID) +on update no Action on delete cascade; + +alter table ODM2.DatasetCitations add constraint fk_DataSetCitations_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.DatasetCitations add constraint fk_DatasetCitations_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.DatasetCitations add constraint fk_DataSetCitations_DataSets +foreign key (DataSetID) References ODM2.Datasets (DatasetID) +on update no Action on delete cascade; + +alter table ODM2.MethodCitations add constraint fk_MethodCitations_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.MethodCitations add constraint fk_MethodCitations_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.MethodCitations add constraint fk_MethodCitations_Methods +foreign key (MethodID) References ODM2.Methods (MethodID) +on update no Action on delete cascade; + +alter table ODM2.RelatedAnnotations add constraint fk_RelatedAnnotations_Annotations +foreign key (AnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.RelatedAnnotations add constraint fk_RelatedAnnotations_Annotations_AreRelated +foreign key (RelatedAnnotationID) References ODM2.Annotations (AnnotationID) +on update no Action on delete cascade; + +alter table ODM2.RelatedAnnotations add constraint fk_RelatedAnnotations_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.RelatedCitations add constraint fk_RelatedCitations_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.RelatedCitations add constraint fk_RelatedCitations_Citations_AreRelated +foreign key (RelatedCitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.RelatedCitations add constraint fk_RelatedCitations_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.RelatedDatasets add constraint fk_RelatedDatasets_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.RelatedDatasets add constraint fk_RelatedDatasets_DataSets +foreign key (DataSetID) References ODM2.Datasets (DatasetID) +on update no Action on delete cascade; + +alter table ODM2.RelatedDatasets add constraint fk_RelatedDatasets_DataSets_AreRelated +foreign key (RelatedDatasetID) References ODM2.Datasets (DatasetID) +on update no Action on delete cascade; + +alter table ODM2.RelatedResults add constraint fk_RelatedResults_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.RelatedResults add constraint fk_RelatedResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.RelatedResults add constraint fk_RelatedResults_Results_AreRelated +foreign key (RelatedResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.ResultDerivationEquations add constraint fk_ResultDerivationEquations_DerivationEquations +foreign key (DerivationEquationID) References ODM2.DerivationEquations (DerivationEquationID) +on update no Action on delete cascade; + +alter table ODM2.ResultDerivationEquations add constraint fk_ResultDerivationEquations_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.CategoricalResults add constraint fk_CategoricalResults_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.CategoricalResults add constraint fk_CategoricalResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.CategoricalResults add constraint fk_CategoricalResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.CategoricalResultValues add constraint fk_CategoricalResultValues_CategoricalResults +foreign key (ResultID) References ODM2.CategoricalResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResults add constraint fk_MeasurementResults_ZUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.MeasurementResultValues add constraint fk_MeasurementResultValues_MeasurementResults +foreign key (ResultID) References ODM2.MeasurementResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResults add constraint fk_PointCoverageResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResults add constraint fk_PointCoverageResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResults add constraint fk_PointCoverageResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResults add constraint fk_PointCoverageResults_XUnits +foreign key (IntendedXSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResults add constraint fk_PointCoverageResults_YUnits +foreign key (IntendedYSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResults add constraint fk_PointCoverageResults_ZUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValues add constraint fk_PointCoverageResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValues add constraint fk_PointCoverageResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValues add constraint fk_PointCoverageResultValues_PointCoverageResults +foreign key (ResultID) References ODM2.PointCoverageResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValues add constraint fk_PointCoverageResultValues_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.PointCoverageResultValues add constraint fk_PointCoverageResultValues_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_DUnits +foreign key (IntendedZSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_TUnits +foreign key (IntendedTimeSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResults add constraint fk_ProfileResults_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValues add constraint fk_ProfileResultValues_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValues add constraint fk_ProfileResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValues add constraint fk_ProfileResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValues add constraint fk_ProfileResultValues_DUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.ProfileResultValues add constraint fk_ProfileResultValues_ProfileResults +foreign key (ResultID) References ODM2.ProfileResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_TMUnits +foreign key (IntendedTimeSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_Units +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_XUnits +foreign key (IntendedXSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SectionResults add constraint fk_SectionResults_ZUnits +foreign key (IntendedZSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_SectionResults +foreign key (ResultID) References ODM2.SectionResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SectionResultValues add constraint fk_SectionResultValues_ZUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_Units +foreign key (IntendedWavelengthSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResults add constraint fk_SpectraResults_ZUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValues add constraint fk_SpectraResultValues_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValues add constraint fk_SpectraResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValues add constraint fk_SpectraResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValues add constraint fk_SpectraResultValues_SpectraResults +foreign key (ResultID) References ODM2.SpectraResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.SpectraResultValues add constraint fk_SpectraResultValues_WUnits +foreign key (WavelengthUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_TUnits +foreign key (IntendedTimeSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResults add constraint fk_TimeSeriesResults_ZUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResultValues add constraint fk_TimeSeriesResultValues_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResultValues add constraint fk_TimeSeriesResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResultValues add constraint fk_TimeSeriesResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.TimeSeriesResultValues add constraint fk_TimeSeriesResultValues_TimeSeriesResults +foreign key (ResultID) References ODM2.TimeSeriesResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResults add constraint fk_TrajectoryResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResults add constraint fk_TrajectoryResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResults add constraint fk_TrajectoryResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResults add constraint fk_TrajectoryResults_TSUnits +foreign key (IntendedTrajectorySpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResults add constraint fk_TrajectoryResults_TUnits +foreign key (IntendedTimeSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_DistanceUnits +foreign key (TrajectoryDistanceUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_TrajectoryResults +foreign key (ResultID) References ODM2.TrajectoryResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TrajectoryResultValues add constraint fk_TrajectoryResultValues_ZUnits +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResults add constraint fk_TransectResults_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.TransectResults add constraint fk_TransectResults_Results +foreign key (ResultID) References ODM2.Results (ResultID) +on update no Action on delete cascade; + +alter table ODM2.TransectResults add constraint fk_TransectResults_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.TransectResults add constraint fk_TransectResults_TMUnits +foreign key (IntendedTimeSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResults add constraint fk_TransectResults_TSUnits +foreign key (IntendedTransectSpacingUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResults add constraint fk_TransectResults_Units +foreign key (ZLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_AIUnits +foreign key (TimeAggregationIntervalUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_CV_AggregationStatistic +foreign key (AggregationStatisticCV) References ODM2.CV_AggregationStatistic (Name) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_CV_CensorCode +foreign key (CensorCodeCV) References ODM2.CV_CensorCode (Name) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_CV_QualityCode +foreign key (QualityCodeCV) References ODM2.CV_QualityCode (Name) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_DistanceUnits +foreign key (TransectDistanceUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_TransectResults +foreign key (ResultID) References ODM2.TransectResults (ResultID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_XUnits +foreign key (XLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.TransectResultValues add constraint fk_TransectResultValues_YUnits +foreign key (YLocationUnitsID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.RelatedFeatures add constraint fk_FeatureParents_FeaturesParent +foreign key (RelatedFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.RelatedFeatures add constraint fk_FeatureParents_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.RelatedFeatures add constraint fk_FeatureParents_SpatialOffsets +foreign key (SpatialOffsetID) References ODM2.SpatialOffsets (SpatialOffsetID) +on update no Action on delete cascade; + +alter table ODM2.RelatedFeatures add constraint fk_RelatedFeatures_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.Sites add constraint fk_Sites_CV_SiteType +foreign key (SiteTypeCV) References ODM2.CV_SiteType (Name) +on update no Action on delete cascade; + +alter table ODM2.Sites add constraint fk_Sites_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.Sites add constraint fk_Sites_SpatialReferences +foreign key (SpatialReferenceID) References ODM2.SpatialReferences (SpatialReferenceID) +on update no Action on delete cascade; + +alter table ODM2.SpatialOffsets add constraint fk_SpatialOffsets_CV_SpatialOffsetType +foreign key (SpatialOffsetTypeCV) References ODM2.CV_SpatialOffsetType (Name) +on update no Action on delete cascade; + +alter table ODM2.SpatialOffsets add constraint fk_SpatialOffsets_Offset1Units +foreign key (Offset1UnitID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpatialOffsets add constraint fk_SpatialOffsets_Offset2Units +foreign key (Offset2UnitID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.SpatialOffsets add constraint fk_SpatialOffsets_Offset3Units +foreign key (Offset3UnitID) References ODM2.Units (UnitsID) +on update no Action on delete cascade; + +alter table ODM2.Specimens add constraint fk_Specimens_CV_Medium +foreign key (SpecimenMediumCV) References ODM2.CV_Medium (Name) +on update no Action on delete cascade; + +alter table ODM2.Specimens add constraint fk_Specimens_CV_SpecimenType +foreign key (SpecimenTypeCV) References ODM2.CV_SpecimenType (Name) +on update no Action on delete cascade; + +alter table ODM2.Specimens add constraint fk_Specimens_SamplingFeatures +foreign key (SamplingFeatureID) References ODM2.SamplingFeatures (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.SpecimenTaxonomicClassifiers add constraint fk_SpecimenTaxonomicClassifiers_Citations +foreign key (CitationID) References ODM2.Citations (CitationID) +on update no Action on delete cascade; + +alter table ODM2.SpecimenTaxonomicClassifiers add constraint fk_SpecimenTaxonomicClassifiers_Specimens +foreign key (SamplingFeatureID) References ODM2.Specimens (SamplingFeatureID) +on update no Action on delete cascade; + +alter table ODM2.SpecimenTaxonomicClassifiers add constraint fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers +foreign key (TaxonomicClassifierID) References ODM2.TaxonomicClassifiers (TaxonomicClassifierID) +on update no Action on delete cascade; + +alter table ODM2.ModelAffiliations add constraint fk_ModelAffiliations_Affiliations +foreign key (AffiliationID) References ODM2.Affiliations (AffiliationID) +on update no Action on delete cascade; + +alter table ODM2.ModelAffiliations add constraint fk_ModelAffiliations_Models +foreign key (ModelID) References ODM2.Models (ModelID) +on update no Action on delete cascade; + +alter table ODM2.RelatedModels add constraint fk_RelatedModels_CV_RelationshipType +foreign key (RelationshipTypeCV) References ODM2.CV_RelationshipType (Name) +on update no Action on delete cascade; + +alter table ODM2.RelatedModels add constraint fk_RelatedModels_Models +foreign key (ModelID) References ODM2.Models (ModelID) +on update no Action on delete cascade; + +alter table ODM2.Simulations add constraint fk_Simulations_Actions +foreign key (ActionID) References ODM2.Actions (ActionID) +on update no Action on delete cascade; + +alter table ODM2.Simulations add constraint fk_Simulations_Models +foreign key (ModelID) References ODM2.Models (ModelID) +on update no Action on delete cascade; \ No newline at end of file diff --git a/tests/schemas/postgresql/__init__.py b/tests/schemas/postgresql/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/schemas/postgresql/olderversions/DbWrench_DDL_postprocess.py b/tests/schemas/postgresql/olderversions/DbWrench_DDL_postprocess.py new file mode 100644 index 0000000..0c9de9b --- /dev/null +++ b/tests/schemas/postgresql/olderversions/DbWrench_DDL_postprocess.py @@ -0,0 +1,87 @@ +""" DbWrench_DDL_postprocess.py +Emilio Mayorga (UW/APL) +8/15-18/2014 +Take the DDL SQL output from DbWrench for PostgreSQL, and apply changes in order to +generate a new, blank ODM2 database following ODM2 conventions. Specifically: +1. All entity names will be lowercase +2. All entities will be under a single schema +3. The field samplingfeatures.featuregeometry will be PostGIS geometry field constrained + to be 2D, but otherwise free to store any project (eg, epsg:4326) and to + accept any geometry type (point, line, polygon, and collections thereof [multi-polygon, etc]) + +- Assumes that the source DDL SQL file is in the same directory as the script +- This DDL must be run on a pre-existing, "empty" database. All permissions (roles) settings +must be set up by the database administrator. +------------------------------------ + +Note: developed and tested on Linux only. +------------------------------------ + +See this great online tool (there are others), to test regex, export to code, etc +http://regex101.com +""" + +import re + + +# =============== USER (run-time) CHANGES ================= +# DDL input file name +ddlfile = "ODM2_DDL_for_PostgreSQL9.3PostGIS2.1.sql" +# DDL output file name +ddlppfile = "ODM2_DDL_for_PostgreSQL9.3PostGIS2.1_postprocessed.sql" + +newschemaname = "odm2" +odmversion = "2.0" +odm2infodct = {'schema':newschemaname, 'version':odmversion} +# ========================================================= + + +pre_block = """ /* Post-processed DDL based on DbWrench export. 2014-8-18 10pm PDT */ + +-- IF THIS DDL SCRIPT IS TO *CREATE* THE DATABASE ITSELF, +-- WILL NEED TO FIRST KNOW THE DATABASE NAME AND ROLES TO BE USED. + +/* Add single base schema for all odm2 entities */ +CREATE SCHEMA %(schema)s; +COMMENT ON SCHEMA %(schema)s IS 'Schema holding all ODM2 (%(version)s) entities (tables, etc).'; +""" % odm2infodct + +post_block = """/* ** Set up samplingfeatures.featuregeometry as a heterogeneous, 2D PostGIS geom field. */ +ALTER TABLE %(schema)s.samplingfeatures ALTER COLUMN featuregeometry TYPE geometry; +ALTER TABLE %(schema)s.samplingfeatures ADD CONSTRAINT + enforce_dims_featuregeometry CHECK (st_ndims(featuregeometry) = 2); +CREATE INDEX idx_samplingfeature_featuregeom ON %(schema)s.samplingfeatures USING gist (featuregeometry); +-- Populate and tweak geometry_columns +SELECT Populate_Geometry_Columns(); +-- But it assigned a POINT type to %(schema)s.samplingfeatures. Need instead to use the generic +-- 'geometries', to accept any type (point, line, polygon, and collections thereof [multi-polygon, etc]) +UPDATE public.geometry_columns SET type = 'GEOMETRY' WHERE f_table_schema = '%(schema)s' AND f_table_name = 'samplingfeatures'; +""" % odm2infodct + +# Relies on these assumptions: +# 1. All schema names start with the prefix "ODM2" +# 2. No entity other than schemas starts with the prefix "ODM2" +p = re.compile(ur'(ODM2\w*?)(?=\.)') + +ddl_pp_lines = [] +with open(ddlfile, 'r') as ddl_f: + for ddl_ln in ddl_f.readlines(): + ddl_ln.replace('"', '') # remove double quotes, if present + if 'schema' in ddl_ln.lower(): + # Skip the line, so it won't be written out + # Assumes all schema statements are found as single lines + continue + else: + ddl_pp_lines.append(re.sub(p, newschemaname, ddl_ln)) + +# Write out new, post-processed DDL file +# Insert pre and post blocks, and the modified DDL lines in between +ddl_ppf = open(ddlppfile, 'w') +ddl_ppf.write(pre_block) +ddl_ppf.write("/* ================================================================\n") +ddl_ppf.write(" ================================================================ */\n\n") +ddl_ppf.writelines(ddl_pp_lines) +ddl_ppf.write("\n/* ================================================================\n") +ddl_ppf.write(" ================================================================ */\n\n") +ddl_ppf.write(post_block) +ddl_ppf.close() diff --git a/tests/schemas/postgresql/olderversions/ODM2_DDL_for_PostgreSQL9.3PostGIS2.1.sql b/tests/schemas/postgresql/olderversions/ODM2_DDL_for_PostgreSQL9.3PostGIS2.1.sql new file mode 100644 index 0000000..6afdd22 --- /dev/null +++ b/tests/schemas/postgresql/olderversions/ODM2_DDL_for_PostgreSQL9.3PostGIS2.1.sql @@ -0,0 +1,3979 @@ +/* Generate from DbWrench: 2014-8-2 10pm PDT */ + +/************ Update: Schemas ***************/ + +/* Add Schema: ODM2Annotations */ +CREATE SCHEMA ODM2Annotations; +COMMENT ON SCHEMA ODM2Annotations IS 'Annotations are used to add comments or qualifiers to entity instances in ODM2.'; + +/* Add Schema: ODM2CV */ +CREATE SCHEMA ODM2CV; +COMMENT ON SCHEMA ODM2CV IS 'Controlled vocabularies for ODM2.'; + +/* Add Schema: ODM2Core */ +CREATE SCHEMA ODM2Core; +COMMENT ON SCHEMA ODM2Core IS 'The core of ODM2. Every ODM2 instance will implement the Core.'; + +/* Add Schema: ODM2DataQuality */ +CREATE SCHEMA ODM2DataQuality; + +/* Add Schema: ODM2Equipment */ +CREATE SCHEMA ODM2Equipment; +COMMENT ON SCHEMA ODM2Equipment IS 'Entities and attributes of equipment used to make observations (e.g., sensors and instruments).'; + +/* Add Schema: ODM2ExtensionProperties */ +CREATE SCHEMA ODM2ExtensionProperties; +COMMENT ON SCHEMA ODM2ExtensionProperties IS 'A general extensibility mechanism for any entity/object/table in ODM2.'; + +/* Add Schema: ODM2ExternalIdentifiers */ +CREATE SCHEMA ODM2ExternalIdentifiers; + +/* Add Schema: ODM2LabAnalyses */ +CREATE SCHEMA ODM2LabAnalyses; +COMMENT ON SCHEMA ODM2LabAnalyses IS 'Information about samples and laboratory analyses for ex-situ data.'; + +/* Add Schema: ODM2Provenance */ +CREATE SCHEMA ODM2Provenance; +COMMENT ON SCHEMA ODM2Provenance IS 'Entities and attributes for creating and storing provenance information and versions of observations in ODM2.'; + +/* Add Schema: ODM2Results */ +CREATE SCHEMA ODM2Results; +COMMENT ON SCHEMA ODM2Results IS 'The resulting values of observations in ODM2.'; + +/* Add Schema: ODM2SamplingFeatures */ +CREATE SCHEMA ODM2SamplingFeatures; +COMMENT ON SCHEMA ODM2SamplingFeatures IS 'Information about sampling features, including sites and specimens.'; + +/* Add Schema: ODM2Sensors */ +CREATE SCHEMA ODM2Sensors; +COMMENT ON SCHEMA ODM2Sensors IS 'Information about sensor deployment and management for in situ data.'; + + + +/************ Update: Tables ***************/ + +/******************** Add Table: ODM2Annotations.ActionAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.ActionAnnotations +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.ActionAnnotations ADD CONSTRAINT pkActionAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Annotations.ActionAnnotations.ActionID IS 'Foreign key of the Action being annotated.'; + +COMMENT ON COLUMN ODM2Annotations.ActionAnnotations.AnnotationID IS 'Foreign key of the annotation being added to the Action.'; + +COMMENT ON TABLE ODM2Annotations.ActionAnnotations IS 'Notes for or groups of one or more Actions.'; + + +/******************** Add Table: ODM2Annotations.Annotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.Annotations +( + AnnotationID INTEGER NOT NULL, + AnnotationTypeCV VARCHAR(255) NOT NULL, + AnnotationCode VARCHAR(50) NULL, + AnnotationText VARCHAR(500) NOT NULL, + AnnotationDateTime TIMESTAMP NULL, + AnnotationUTCOffset INTEGER NULL, + AnnotationLink VARCHAR(255) NULL, + AnnotatorID INTEGER NULL, + CitationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.Annotations ADD CONSTRAINT pkAnnotations + PRIMARY KEY (AnnotationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotationID IS 'Primary key for Annotations.'; + +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotationTypeCV IS 'CV for types of annotations.'; + +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotationCode IS 'A short text code that identifies the annotation (e.g., A'' for Approved data).'; + +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotationText IS 'Full text of the annotation.'; + +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotationDateTime IS 'Date and time at which the annotation was created.'; + +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotationUTCOffset IS 'UTCOffset for the annotation creation date/time.'; + +COMMENT ON COLUMN ODM2Annotations.Annotations.AnnotatorID IS 'Foregn key identifier for the person that created the annotation'; + +COMMENT ON TABLE ODM2Annotations.Annotations IS 'Contains text annotations added to one or more records within various ODM2 tables. Annotations can be used to record notes about a particular SamplingFeature, Action, Result, etc. or to create groups of records such as Specimens, Sites, People, etc.'; + + +/******************** Add Table: ODM2Annotations.CategoricalResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.CategoricalResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.CategoricalResultValueAnnotations ADD CONSTRAINT pkCategoricalResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.CategoricalResultValueAnnotations IS 'Annotations for Categorical ResultValues'; + + +/******************** Add Table: ODM2Annotations.EquipmentAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.EquipmentAnnotations +( + BridgeID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.EquipmentAnnotations ADD CONSTRAINT pkEquipmentAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.EquipmentAnnotations IS 'Bridge table linking Annotations to Equipment'; + + +/******************** Add Table: ODM2Annotations.MeasurementResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.MeasurementResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.MeasurementResultValueAnnotations ADD CONSTRAINT pkMeasurementResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Annotations.MeasurementResultValueAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Annotations.MeasurementResultValueAnnotations.ValueID IS 'Foreign key of the result value being annotated'; + +COMMENT ON COLUMN ODM2Annotations.MeasurementResultValueAnnotations.AnnotationID IS 'Foreign key of the annotation applied to the result value'; + +COMMENT ON TABLE ODM2Annotations.MeasurementResultValueAnnotations IS 'Annotations for Measurement ResultValues'; + + +/******************** Add Table: ODM2Annotations.MethodAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.MethodAnnotations +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.MethodAnnotations ADD CONSTRAINT pkMethodAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Annotations.MethodAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Annotations.MethodAnnotations.MethodID IS 'Foreign key of the method being annotated'; + +COMMENT ON COLUMN ODM2Annotations.MethodAnnotations.AnnotationID IS 'Foreign key of the annotation added to the method'; + +COMMENT ON TABLE ODM2Annotations.MethodAnnotations IS 'Notes for or groups of one or more Methods.'; + + +/******************** Add Table: ODM2Annotations.PointCoverageResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.PointCoverageResultValueAnnotations +( + BridgeID BIGINT NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.PointCoverageResultValueAnnotations ADD CONSTRAINT pkPointCoverageResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.PointCoverageResultValueAnnotations IS 'Annotations for Point Coverage ResultValues'; + + +/******************** Add Table: ODM2Annotations.ProfileResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.ProfileResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.ProfileResultValueAnnotations ADD CONSTRAINT pkProfileResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.ProfileResultValueAnnotations IS 'Annotations for Profile ResultValues'; + + +/******************** Add Table: ODM2Annotations.ResultAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.ResultAnnotations +( + BridgeID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL, + BeginDateTime TIMESTAMP NOT NULL, + EndDateTime TIMESTAMP NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.ResultAnnotations ADD CONSTRAINT pkResultAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Annotations.ResultAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Annotations.ResultAnnotations.ResultID IS 'Foreign key of the result being annotated'; + +COMMENT ON COLUMN ODM2Annotations.ResultAnnotations.AnnotationID IS 'Foreign key of the annotation added to the result'; + +COMMENT ON COLUMN ODM2Annotations.ResultAnnotations.BeginDateTime IS 'Beginning date/time of the annotation'; + +COMMENT ON COLUMN ODM2Annotations.ResultAnnotations.EndDateTime IS 'Ending date/time of the annotation'; + +COMMENT ON TABLE ODM2Annotations.ResultAnnotations IS 'Notes for or groups of one or more Results [sets].'; + + +/******************** Add Table: ODM2Annotations.SamplingFeatureAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.SamplingFeatureAnnotations +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.SamplingFeatureAnnotations ADD CONSTRAINT pkSamplingFeatureAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Annotations.SamplingFeatureAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Annotations.SamplingFeatureAnnotations.SamplingFeatureID IS 'Foreign key of the SamplingFeature being annotated.'; + +COMMENT ON COLUMN ODM2Annotations.SamplingFeatureAnnotations.AnnotationID IS 'Foreign key of the Annotation applied to the SamplingFeature.'; + +COMMENT ON TABLE ODM2Annotations.SamplingFeatureAnnotations IS 'Notes for or groups of one or more Sampling Features.'; + + +/******************** Add Table: ODM2Annotations.SectionResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.SectionResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.SectionResultValueAnnotations ADD CONSTRAINT pkSectionResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.SectionResultValueAnnotations IS 'Annotations for Section ResultValues'; + + +/******************** Add Table: ODM2Annotations.SpectraResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.SpectraResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.SpectraResultValueAnnotations ADD CONSTRAINT pkSpectraResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.SpectraResultValueAnnotations IS 'Annotations for Spectra ResultValues'; + + +/******************** Add Table: ODM2Annotations.TimeSeriesResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.TimeSeriesResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.TimeSeriesResultValueAnnotations ADD CONSTRAINT pkTimeSeriesResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.TimeSeriesResultValueAnnotations IS 'Annotations for Time Series ResultValues'; + + +/******************** Add Table: ODM2Annotations.TrajectoryResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.TrajectoryResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.TrajectoryResultValueAnnotations ADD CONSTRAINT pkTrajectoryResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.TrajectoryResultValueAnnotations IS 'Annotations for Trajectory ResultValues'; + + +/******************** Add Table: ODM2Annotations.TransectResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Annotations.TransectResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Annotations.TransectResultValueAnnotations ADD CONSTRAINT pkTransectResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Annotations.TransectResultValueAnnotations IS 'Annotations for Transect ResultValues'; + + +/******************** Add Table: ODM2CV.CVTerms ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2CV.CVTerms +( + TermID INTEGER NOT NULL, + Term VARCHAR(255) NOT NULL, + Definition VARCHAR(500) NULL, + ODMVocabulary VARCHAR(255) NOT NULL, + SourceVocabulary VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2CV.CVTerms ADD CONSTRAINT pkCVTerms + PRIMARY KEY (TermID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2CV.CVTerms.TermID IS 'Primary key'; + +COMMENT ON COLUMN ODM2CV.CVTerms.Term IS 'Controlled vocabulary term'; + +COMMENT ON COLUMN ODM2CV.CVTerms.Definition IS 'Definition of term'; + +COMMENT ON COLUMN ODM2CV.CVTerms.ODMVocabulary IS 'Name of the ODM controlled vocabulary to which the term belongs'; + +COMMENT ON COLUMN ODM2CV.CVTerms.SourceVocabulary IS 'Name and/or description of the source vocabulary from which the term was derived'; + +COMMENT ON TABLE ODM2CV.CVTerms IS 'Table containing terms used in the controlled vocabularies of ODM2.'; + + +/******************** Add Table: ODM2Core.ActionBy ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.ActionBy +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + AffiliationID INTEGER NOT NULL, + IsActionLead BOOL NOT NULL, + RoleDescription VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.ActionBy ADD CONSTRAINT pkActionBy + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.ActionBy.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Core.ActionBy.ActionID IS 'Foreign key identifier of an action.'; + +COMMENT ON COLUMN ODM2Core.ActionBy.AffiliationID IS 'Foreign key identifier of a person'; + +COMMENT ON COLUMN ODM2Core.ActionBy.IsActionLead IS 'Indicator of whether the affiliated person was the lead for the action'; + +COMMENT ON COLUMN ODM2Core.ActionBy.RoleDescription IS 'Foreign key identifier for a role played by a person in performing an action'; + +COMMENT ON TABLE ODM2Core.ActionBy IS 'Affiliates people with actions and describes thier role in the action.'; + + +/******************** Add Table: ODM2Core.Actions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Actions +( + ActionID INTEGER NOT NULL, + ActionTypeCV VARCHAR(255) NOT NULL, + MethodID INTEGER NOT NULL, + BeginDateTime TIMESTAMP NOT NULL, + BeginDateTimeUTCOffset INTEGER NOT NULL, + EndDateTime TIMESTAMP NULL, + EndDateTimeUTCOffset INTEGER NULL, + ActionDescription VARCHAR(500) NULL, + ActionFileLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Actions ADD CONSTRAINT pkActions + PRIMARY KEY (ActionID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Actions.ActionID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Core.Actions.ActionTypeCV IS 'CV term describing the type of action (e.g., observation, sample collection, sample analysis)'; + +COMMENT ON COLUMN ODM2Core.Actions.MethodID IS 'Foreign key identifier for the method used to complete the action'; + +COMMENT ON COLUMN ODM2Core.Actions.BeginDateTime IS 'The date/time at which the action began'; + +COMMENT ON COLUMN ODM2Core.Actions.BeginDateTimeUTCOffset IS 'The UTCOffset for the BeginDateTime'; + +COMMENT ON COLUMN ODM2Core.Actions.EndDateTime IS 'The date/time at which the action ended'; + +COMMENT ON COLUMN ODM2Core.Actions.EndDateTimeUTCOffset IS 'The UTCOffset of for the EndDateTime'; + +COMMENT ON COLUMN ODM2Core.Actions.ActionDescription IS 'Text that describes the action'; + +COMMENT ON COLUMN ODM2Core.Actions.ActionFileLink IS 'A URL or path to a file created by or used by the Action, such as instrument output or configuration.'; + +COMMENT ON TABLE ODM2Core.Actions IS 'Describes actions (e.g., observation, sample collection, sample analysis, field visits, field activities, etc.)'; + + +/******************** Add Table: ODM2Core.Affiliations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Affiliations +( + AffiliationID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + OrganizationID INTEGER NULL, + IsPrimaryOrganizationContact BOOL NULL, + AffiliationStartDate DATE NOT NULL, + AffiliationEndDate DATE NULL, + PrimaryPhone VARCHAR(50) NULL, + PrimaryEmail VARCHAR(255) NOT NULL, + PrimaryAddress VARCHAR(255) NULL, + PersonLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Affiliations ADD CONSTRAINT pkAffiliations + PRIMARY KEY (AffiliationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Affiliations.AffiliationID IS 'Primay key'; + +COMMENT ON COLUMN ODM2Core.Affiliations.PersonID IS 'Foreign key identifer for a person'; + +COMMENT ON COLUMN ODM2Core.Affiliations.OrganizationID IS 'Foreigh key identifier for an organization'; + +COMMENT ON COLUMN ODM2Core.Affiliations.IsPrimaryOrganizationContact IS 'Boolean indication of whether the person is the organizations primary contact person'; + +COMMENT ON COLUMN ODM2Core.Affiliations.AffiliationStartDate IS 'The date on which the person became affiliated with the organization'; + +COMMENT ON COLUMN ODM2Core.Affiliations.AffiliationEndDate IS 'The date on which the person''s affiliation with the organization ended'; + +COMMENT ON COLUMN ODM2Core.Affiliations.PrimaryPhone IS 'The primary phone number of the person'; + +COMMENT ON COLUMN ODM2Core.Affiliations.PrimaryEmail IS 'The primary email address of the person'; + +COMMENT ON COLUMN ODM2Core.Affiliations.PrimaryAddress IS 'The primary mailing address of the person, including street, city, state, zip, and country'; + +COMMENT ON COLUMN ODM2Core.Affiliations.PersonLink IS 'A URL for the website for a person'; + +COMMENT ON TABLE ODM2Core.Affiliations IS 'Describes affiliations of people with organizations.'; + + +/******************** Add Table: ODM2Core.DataSets ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.DataSets +( + DataSetID INTEGER NOT NULL, + DataSetUUID OID NOT NULL, + DataSetTypeCV VARCHAR(255) NOT NULL, + DataSetCode VARCHAR(50) NOT NULL, + DataSetTitle VARCHAR(255) NOT NULL, + DataSetAbstract VARCHAR(500) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.DataSets ADD CONSTRAINT pkDataSets + PRIMARY KEY (DataSetID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.DataSets.DataSetID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Core.DataSets.DataSetTypeCV IS 'CV term(s) describing the Topic Category'; + +COMMENT ON COLUMN ODM2Core.DataSets.DataSetCode IS 'A short text code identifying the dataset'; + +COMMENT ON COLUMN ODM2Core.DataSets.DataSetTitle IS 'A text title for the dataset'; + +COMMENT ON COLUMN ODM2Core.DataSets.DataSetAbstract IS 'A text abstract describing the dataset'; + +COMMENT ON TABLE ODM2Core.DataSets IS 'Describes groupings of observation results that can be considered datasets'; + + +/******************** Add Table: ODM2Core.DataSetsResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.DataSetsResults +( + BridgeID INTEGER NOT NULL, + DataSetID INTEGER NOT NULL, + ResultID BIGINT NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.DataSetsResults ADD CONSTRAINT pkDataSetsResults + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.DataSetsResults.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Core.DataSetsResults.DataSetID IS 'Foreign key identifier of the DataSet'; + +COMMENT ON COLUMN ODM2Core.DataSetsResults.ResultID IS 'Foreign key identifier of the Result'; + +COMMENT ON TABLE ODM2Core.DataSetsResults IS 'Lists the Results that are grouped into a DataSet'; + + +/******************** Add Table: ODM2Core.FeatureActions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.FeatureActions +( + FeatureActionID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + ActionID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.FeatureActions ADD CONSTRAINT pkFeatureActions + PRIMARY KEY (FeatureActionID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.FeatureActions.FeatureActionID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Core.FeatureActions.SamplingFeatureID IS 'Foreign key identifier for the SamplingFeature on which or at which the Action was performed'; + +COMMENT ON COLUMN ODM2Core.FeatureActions.ActionID IS 'Foreign key identifier of the Action that was performed'; + + +/******************** Add Table: ODM2Core.Methods ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Methods +( + MethodID INTEGER NOT NULL, + MethodTypeCV VARCHAR(255) NOT NULL, + MethodCode VARCHAR(50) NOT NULL, + MethodName VARCHAR(255) NOT NULL, + MethodDescription VARCHAR(500) NULL, + MethodLink VARCHAR(255) NULL, + OrganizationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Methods ADD CONSTRAINT pkMethods + PRIMARY KEY (MethodID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Methods.MethodID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Core.Methods.MethodTypeCV IS 'CV term describing the type of method (e.g., sample collection, laboratory analytical, field, sample prepratation, etc.)'; + +COMMENT ON COLUMN ODM2Core.Methods.MethodCode IS 'A text code identifiying the method (e.g., EPA 650.2)'; + +COMMENT ON COLUMN ODM2Core.Methods.MethodName IS 'Full text name of the method'; + +COMMENT ON COLUMN ODM2Core.Methods.MethodDescription IS 'Full text description of the method'; + +COMMENT ON COLUMN ODM2Core.Methods.MethodLink IS 'A URL to a full description of the method'; + +COMMENT ON COLUMN ODM2Core.Methods.OrganizationID IS 'Foreign key identifier for the Organization with which the method is affiliated'; + +COMMENT ON TABLE ODM2Core.Methods IS 'Describes methods used to perform actions recorded in ODM (e.g., observation methods, sample analysis methods, sample preparation methods, etc.)'; + + +/******************** Add Table: ODM2Core.Organizations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Organizations +( + OrganizationID INTEGER NOT NULL, + OrganizationTypeCV VARCHAR(255) NOT NULL, + OrganizationCode VARCHAR(50) NOT NULL, + OrganizationName VARCHAR(255) NOT NULL, + OrganizationDescription VARCHAR(500) NULL, + OrganizationLink VARCHAR(255) NULL, + ParentOrganizationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Organizations ADD CONSTRAINT pkOrganizations + PRIMARY KEY (OrganizationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Organizations.OrganizationID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Core.Organizations.OrganizationTypeCV IS 'CV term defining the type of organization (e.g., government agency, university, etc.)'; + +COMMENT ON COLUMN ODM2Core.Organizations.OrganizationCode IS 'A text code identifying the Organization (e.g., USGS)'; + +COMMENT ON COLUMN ODM2Core.Organizations.OrganizationName IS 'The full text name of the organization'; + +COMMENT ON COLUMN ODM2Core.Organizations.OrganizationDescription IS 'A text description of the organization'; + +COMMENT ON COLUMN ODM2Core.Organizations.OrganizationLink IS 'A URL for the organization''s website'; + +COMMENT ON COLUMN ODM2Core.Organizations.ParentOrganizationID IS 'Foreign key of the parent organization of the current organization'; + +COMMENT ON TABLE ODM2Core.Organizations IS 'Describes organizations - as in research groups, companies, universities, etc.'; + + +/******************** Add Table: ODM2Core.People ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.People +( + PersonID INTEGER NOT NULL, + PersonFirstName VARCHAR(255) NOT NULL, + PersonMiddleName VARCHAR(255) NULL, + PersonLastName VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.People ADD CONSTRAINT pkPeople + PRIMARY KEY (PersonID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.People.PersonID IS 'Primary Key'; + +COMMENT ON COLUMN ODM2Core.People.PersonFirstName IS 'First name of the person'; + +COMMENT ON COLUMN ODM2Core.People.PersonMiddleName IS 'Middle name of the person'; + +COMMENT ON COLUMN ODM2Core.People.PersonLastName IS 'Last name of the person'; + +COMMENT ON TABLE ODM2Core.People IS 'Describes people.'; + + +/******************** Add Table: ODM2Core.ProcessingLevels ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.ProcessingLevels +( + ProcessingLevelID INTEGER NOT NULL, + ProcessingLevelCode VARCHAR(50) NOT NULL, + Definition VARCHAR(500) NULL, + Explanation VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.ProcessingLevels ADD CONSTRAINT pkProcessingLevels + PRIMARY KEY (ProcessingLevelID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.ProcessingLevels.ProcessingLevelID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Core.ProcessingLevels.ProcessingLevelCode IS 'Text code identifying the level of processing the Result has been subject to'; + +COMMENT ON COLUMN ODM2Core.ProcessingLevels.Definition IS 'Text defintion of the processing level'; + +COMMENT ON COLUMN ODM2Core.ProcessingLevels.Explanation IS 'Text explanation of the processing level'; + +COMMENT ON TABLE ODM2Core.ProcessingLevels IS 'Describes the processing level of Results'; + + +/******************** Add Table: ODM2Core.RelatedActions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.RelatedActions +( + RelationID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedActionID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.RelatedActions ADD CONSTRAINT pkRelatedActions + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.RelatedActions.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN ODM2Core.RelatedActions.ActionID IS 'Foreign key identifier of the Action'; + +COMMENT ON COLUMN ODM2Core.RelatedActions.RelationshipTypeCV IS 'Text description of the relationship between two Actions'; + +COMMENT ON COLUMN ODM2Core.RelatedActions.RelatedActionID IS 'Foreign key identifier for a Action related to the Action identified by ActionID'; + +COMMENT ON TABLE ODM2Core.RelatedActions IS 'Describes Actions that are related to one another.'; + + +/******************** Add Table: ODM2Core.Results ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Results +( + ResultID BIGINT NOT NULL, + ResultUUID OID NOT NULL, + FeatureActionID INTEGER NOT NULL, + ResultTypeCV VARCHAR(255) NOT NULL, + VariableID INTEGER NOT NULL, + UnitsID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NULL, + ProcessingLevelID INTEGER NOT NULL, + ResultDateTime TIMESTAMP NULL, + ResultDateTimeUTCOffset BIGINT NULL, + ValidDateTime TIMESTAMP NULL, + ValidDateTimeUTCOffset BIGINT NULL, + StatusCV VARCHAR(255) NULL, + SampledMediumCV VARCHAR(255) NOT NULL, + ValueCount INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT pkResults + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Results.ResultID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Core.Results.ResultUUID IS 'Universally unique identifier for the Result'; + +COMMENT ON COLUMN ODM2Core.Results.FeatureActionID IS 'Foreign key identifier for the combinaton of SamplingFeature and Action that created the Result'; + +COMMENT ON COLUMN ODM2Core.Results.ResultTypeCV IS 'CV term describing the result type (e.g., time series, measurement, etc.)'; + +COMMENT ON COLUMN ODM2Core.Results.VariableID IS 'Foreign key identifier for the Variable of the result'; + +COMMENT ON COLUMN ODM2Core.Results.UnitsID IS 'Foreign key identifier for the Units of the result'; + +COMMENT ON COLUMN ODM2Core.Results.TaxonomicClassifierID IS 'Foreign key identifier for a TaxonomicClassifier for the variable (if one exists)'; + +COMMENT ON COLUMN ODM2Core.Results.ProcessingLevelID IS 'Foreign key identifier for the ProcessingLevel of the result'; + +COMMENT ON COLUMN ODM2Core.Results.ResultDateTime IS 'Date and time at which the result became available (could be used as analysis time for samples)'; + +COMMENT ON COLUMN ODM2Core.Results.ResultDateTimeUTCOffset IS 'UTDCOffset of ResultDateTime'; + +COMMENT ON COLUMN ODM2Core.Results.ValidDateTime IS 'Date and time for which the result is valid (e.g., for a forecast result). Should probably be expressed as a duration'; + +COMMENT ON COLUMN ODM2Core.Results.ValidDateTimeUTCOffset IS 'UTCOffset of ValidDateTime'; + +COMMENT ON COLUMN ODM2Core.Results.StatusCV IS 'Status of the result (e.g., finished, ongoing, etc.)'; + +COMMENT ON COLUMN ODM2Core.Results.SampledMediumCV IS 'CV term defining the environmental medium that the result represents (e.g., air, soil, water)'; + +COMMENT ON COLUMN ODM2Core.Results.ValueCount IS 'Number of data values contained within the result'; + +COMMENT ON TABLE ODM2Core.Results IS 'Describes the results of observation actions (e.g., groups of one or more numeric data values that result from an observation action)'; + + +/******************** Add Table: ODM2Core.SamplingFeatures ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.SamplingFeatures +( + SamplingFeatureID INTEGER NOT NULL, + SamplingFeatureTypeCV VARCHAR(255) NOT NULL, + SamplingFeatureCode VARCHAR(50) NOT NULL, + SamplingFeatureName VARCHAR(255) NULL, + SamplingFeatureDescription VARCHAR(500) NULL, + SamplingFeatureGeotypeCV VARCHAR(255) NULL, + FeatureGeometry GEOMETRY NULL, + Elevation_m FLOAT NULL, + ElevationDatumCV VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.SamplingFeatures ADD CONSTRAINT pkSamplingFeatures + PRIMARY KEY (SamplingFeatureID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.SamplingFeatures.SamplingFeatureID IS 'Primary key.'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.SamplingFeatureTypeCV IS 'CV term descripting the type of sampling feature.'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.SamplingFeatureCode IS 'A short but meaningful text identifier for the sampling feature.'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.SamplingFeatureName IS 'Sampling Feature name (free text).'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.SamplingFeatureDescription IS 'Text describing the sampling feature.'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.SamplingFeatureGeotypeCV IS 'Dimensionality of SamplingFeature; point2d, line2d, etc.'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.FeatureGeometry IS 'The location geometry of the sampling feature on the Earth. Can be a Point, Curve (profile, trajectory, etc), Surface (flat polygons, etc) or Solid/Volume (although often limited to 2D geometries). '; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.Elevation_m IS 'The elevation of the sampling feature in meters, or in the case of Specimen, the elevation from where the SamplingFeature.Specimen was collected'; + +COMMENT ON COLUMN ODM2Core.SamplingFeatures.ElevationDatumCV IS 'The code for the vertical geodetic datum that specifies the zero point for the Sampling Feature Elevation.'; + +COMMENT ON TABLE ODM2Core.SamplingFeatures IS 'Describes the sampling features on which observations are made.'; + + +/******************** Add Table: ODM2Core.TaxonomicClassifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.TaxonomicClassifiers +( + TaxonomicClassifierID INTEGER NOT NULL, + TaxonomicClassifierTypeCV VARCHAR(255) NOT NULL, + TaxonomicClassifierName VARCHAR(255) NOT NULL, + TaxonomicClassifierCommonName VARCHAR(255) NULL, + TaxonomicClassifierDescription VARCHAR(500) NULL, + ParentTaxonomicClassifierID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.TaxonomicClassifiers ADD CONSTRAINT pkTaxonomicClassifiers + PRIMARY KEY (TaxonomicClassifierID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.TaxonomicClassifiers.TaxonomicClassifierID IS 'ID'; + +COMMENT ON COLUMN ODM2Core.TaxonomicClassifiers.TaxonomicClassifierTypeCV IS 'Controlled Vocabulary for the type of taxonomy'; + +COMMENT ON COLUMN ODM2Core.TaxonomicClassifiers.TaxonomicClassifierName IS 'Taxonomic classification'; + +COMMENT ON COLUMN ODM2Core.TaxonomicClassifiers.TaxonomicClassifierCommonName IS 'Taxonomic classification using a common name'; + +COMMENT ON COLUMN ODM2Core.TaxonomicClassifiers.TaxonomicClassifierDescription IS 'Description or remarks about Taxonomic Classifier'; + +COMMENT ON COLUMN ODM2Core.TaxonomicClassifiers.ParentTaxonomicClassifierID IS 'ID of the Classifier that is one higher level in the taxonomic hiearchy'; + + +/******************** Add Table: ODM2Core.Units ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Units +( + UnitsID INTEGER NOT NULL, + UnitsTypeCV VARCHAR(255) NOT NULL, + UnitsAbbreviation VARCHAR(50) NOT NULL, + UnitsName VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Units ADD CONSTRAINT pkUnits + PRIMARY KEY (UnitsID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Units.UnitsID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Core.Units.UnitsTypeCV IS 'CV term that defines the unit type'; + +COMMENT ON COLUMN ODM2Core.Units.UnitsAbbreviation IS 'Text abbreviation for the unit'; + +COMMENT ON COLUMN ODM2Core.Units.UnitsName IS 'Text name for the unit'; + +COMMENT ON TABLE ODM2Core.Units IS 'Describes units of measure for varibles and time'; + + +/******************** Add Table: ODM2Core.Variables ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Core.Variables +( + VariableID INTEGER NOT NULL, + VariableTypeCV VARCHAR(255) NOT NULL, + VariableCode VARCHAR(50) NOT NULL, + VariableNameCV VARCHAR(255) NOT NULL, + VariableDefinition VARCHAR(500) NULL, + SpeciationCV VARCHAR(255) NULL, + NoDataValue DOUBLE PRECISION NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Core.Variables ADD CONSTRAINT pkVariables + PRIMARY KEY (VariableID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Core.Variables.VariableID IS 'Primary key'; + +COMMENT ON COLUMN ODM2Core.Variables.VariableTypeCV IS 'Controlled vocabulary for the type of variable'; + +COMMENT ON COLUMN ODM2Core.Variables.VariableCode IS 'Unique text code for the variable'; + +COMMENT ON COLUMN ODM2Core.Variables.VariableNameCV IS 'Controlled vocabulary for the name of the variable'; + +COMMENT ON COLUMN ODM2Core.Variables.VariableDefinition IS 'Text definition of the variable'; + +COMMENT ON COLUMN ODM2Core.Variables.SpeciationCV IS 'Speciation for the variable (e.g., expressed as P or as PO4)'; + +COMMENT ON COLUMN ODM2Core.Variables.NoDataValue IS 'A numeric value indicating no data.'; + +COMMENT ON TABLE ODM2Core.Variables IS 'Stores information about measured properties.'; + + +/******************** Add Table: ODM2DataQuality.DataQuality ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2DataQuality.DataQuality +( + DataQualityID INTEGER NOT NULL, + DataQualityTypeCV VARCHAR(255) NOT NULL, + DataQualityCode VARCHAR(255) NOT NULL, + DataQualityValue FLOAT NULL, + DataQualityValueUnitsID INTEGER NULL, + DataQualityDescription VARCHAR(500) NULL, + DataQualityLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2DataQuality.DataQuality ADD CONSTRAINT pkDataQuality + PRIMARY KEY (DataQualityID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityID IS 'Primary Key for DataQuality entity'; + +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityTypeCV IS ' i.e. Precision_2sigma, MethodDetectionLimit, ReportingLevel, 95%ConfidenceNoFalsePositives.'; + +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityCode IS 'Code for DataQualityType'; + +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityValue IS 'Numeric value of the DataQuality'; + +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityValueUnitsID IS 'Units for the DataQualityValue'; + +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityDescription IS 'Text description of the DataQuality metadata'; + +COMMENT ON COLUMN ODM2DataQuality.DataQuality.DataQualityLink IS 'URL or path to a file or other resource supporting the DataQuality metadata'; + + +/******************** Add Table: ODM2DataQuality.ReferenceMaterialValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2DataQuality.ReferenceMaterialValues +( + ReferenceMaterialValueID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL, + ReferenceMaterialValue FLOAT NOT NULL, + ReferenceMaterialAccuracy FLOAT NULL, + VariableID INTEGER NOT NULL, + UnitsID INTEGER NOT NULL, + CitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2DataQuality.ReferenceMaterialValues ADD CONSTRAINT pkReferenceMaterialValues + PRIMARY KEY (ReferenceMaterialValueID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.ReferenceMaterialValueID IS 'The primary key for ReferenceMaterialValues'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.ReferenceMaterialID IS 'A foreign key to ReferenceMaterials'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.ReferenceMaterialValue IS 'The established property value for the ReferenceMaterial.'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.ReferenceMaterialAccuracy IS 'The established accuracy of the property value for the ReferenceMaterial, in the same units as the value.'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.VariableID IS 'The property that is quantified by the ReferenceMaterialValue'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.UnitsID IS 'The units for the ReferenceMaterialValue and ReferenceMaterialAccuracy'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterialValues.CitationID IS 'The attribution for source that established the ReferenceMaterialValue and ReferenceMaterialAccuracy'; + +COMMENT ON TABLE ODM2DataQuality.ReferenceMaterialValues IS 'Accepted property values for a Reference Material, which can be certified by an agency or vendor, established in the literature by the research community, or developed for in house use only by a laboratory.'; + + +/******************** Add Table: ODM2DataQuality.ReferenceMaterials ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2DataQuality.ReferenceMaterials +( + ReferenceMaterialID INTEGER NOT NULL, + ReferenceMaterialMediumCV VARCHAR(255) NOT NULL, + ReferenceMaterialOrganizationID INTEGER NOT NULL, + ReferenceMaterialCode VARCHAR(50) NOT NULL, + ReferenceMaterialLotCode VARCHAR(255) NULL, + ReferenceMaterialPurchaseDate TIMESTAMP NULL, + ReferenceMaterialExpirationDate TIMESTAMP NULL, + ReferenceMaterialCertificateLink VARCHAR(255) NULL, + SamplingFeatureID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2DataQuality.ReferenceMaterials ADD CONSTRAINT pkReferenceMaterials + PRIMARY KEY (ReferenceMaterialID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialID IS 'The primary key to the Reference Material used to calibrate an instrument, assess a measurement method, or assign values to unknown specimens'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialMediumCV IS 'The medium of a Reference Material, from the same CV as SpecimenMediumCV. Examples include: water, sediment, air, tissue, etc.'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialOrganizationID IS 'A foreign key to the Organization that manufactured and established property values for the ReferenceMaterial'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialCode IS 'A code or short name used to identify the reference material.'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialLotCode IS 'The lot, or manufactured batch, of the reference material, that is often associated with a certified set of property values'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialPurchaseDate IS 'The purchase date of a reference material, when applicable'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialExpirationDate IS 'The expiration date of a reference material, when applicable'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.ReferenceMaterialCertificateLink IS 'A URL or file path to the Certificate that provides established property values for the given lot number.'; + +COMMENT ON COLUMN ODM2DataQuality.ReferenceMaterials.SamplingFeatureID IS 'A foreign key to SamplingFeatures. Only required when the ReferenceMaterial is Analyzed as if it were an unknown specimen.'; + +COMMENT ON TABLE ODM2DataQuality.ReferenceMaterials IS 'Describes materials that are used for the calibration of an instrument, the assessment of a measurement method, or for assigning values to unknown specimens.'; + + +/******************** Add Table: ODM2DataQuality.ResultNormalizationValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2DataQuality.ResultNormalizationValues +( + ResultID BIGINT NOT NULL, + NormalizedByReferenceMaterialValueID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2DataQuality.ResultNormalizationValues ADD CONSTRAINT pkResultNormalizationValues + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2DataQuality.ResultNormalizationValues.ResultID IS 'Unique identifier'; + +COMMENT ON TABLE ODM2DataQuality.ResultNormalizationValues IS 'Extends the Results table with a foreign key to NormalizationReferenceMaterialValues when the optional DataQuality schema is implemented. In a database implementation, we would not implement this as a separate table from Results.'; + + +/******************** Add Table: ODM2DataQuality.ResultsDataQuality ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2DataQuality.ResultsDataQuality +( + BridgeID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + DataQualityID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2DataQuality.ResultsDataQuality ADD CONSTRAINT pkResultsDataQuality + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2DataQuality.ResultsDataQuality.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2DataQuality.ResultsDataQuality.ResultID IS 'Foreign key identifier of the Result'; + +COMMENT ON COLUMN ODM2DataQuality.ResultsDataQuality.DataQualityID IS 'Foreign key identifier of the DataQuality entity.'; + + +/******************** Add Table: ODM2Equipment.CalibratedDeploymentVariables ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.CalibratedDeploymentVariables +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + DeploymentMeasuredVariableID INTEGER NOT NULL, + CalibrationCheckValue FLOAT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.CalibratedDeploymentVariables ADD CONSTRAINT pkCalibratedDeploymentVariables + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.CalibratedDeploymentVariables.BridgeID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Equipment.CalibratedDeploymentVariables.ActionID IS 'Foreign key identifier of the calibration Action'; + +COMMENT ON COLUMN ODM2Equipment.CalibratedDeploymentVariables.DeploymentMeasuredVariableID IS 'Foreign key identifier of the DeploymentMeasuredVariable to which the calibration was applied'; + +COMMENT ON COLUMN ODM2Equipment.CalibratedDeploymentVariables.CalibrationCheckValue IS 'A numeric value for the DeploymentMeasuredVariable measued using the ReferenceMaterial prior to calibration'; + +COMMENT ON TABLE ODM2Equipment.CalibratedDeploymentVariables IS 'Information about which deployment measured variable a calibration Action is associated with'; + + +/******************** Add Table: ODM2Equipment.CalibrationEquations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.CalibrationEquations +( + CalibrationEquationID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + InstrumentOutputVariableID INTEGER NOT NULL, + OutputVariableEquation VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.CalibrationEquations ADD CONSTRAINT pkCalibrationEquations + PRIMARY KEY (CalibrationEquationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.CalibrationEquations.CalibrationEquationID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Equipment.CalibrationEquations.ActionID IS 'Foreign key identifier of the calibration Action'; + +COMMENT ON COLUMN ODM2Equipment.CalibrationEquations.InstrumentOutputVariableID IS 'Foreign key identifier for the InstrumentOutputVariableID to which the calibration equation applies'; + +COMMENT ON COLUMN ODM2Equipment.CalibrationEquations.OutputVariableEquation IS 'Text string that encodes the calibration equation'; + +COMMENT ON TABLE ODM2Equipment.CalibrationEquations IS 'Information about instrument calibration equations'; + + +/******************** Add Table: ODM2Equipment.CalibrationStandards ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.CalibrationStandards +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.CalibrationStandards ADD CONSTRAINT pkCalibrationStandards + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.CalibrationStandards.BridgeID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Equipment.CalibrationStandards.ActionID IS 'Foreign key identifier of the calibration Action'; + +COMMENT ON COLUMN ODM2Equipment.CalibrationStandards.ReferenceMaterialID IS 'Foreign key identifier of the ReferenceMaterial used in the calibration'; + +COMMENT ON TABLE ODM2Equipment.CalibrationStandards IS 'Bridge table linking field calibrations to the reference materials used'; + + +/******************** Add Table: ODM2Equipment.Equipment ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.Equipment +( + EquipmentID INTEGER NOT NULL, + EquipmentCode VARCHAR(50) NOT NULL, + EquipmentName VARCHAR(255) NOT NULL, + EquipmentTypeCV VARCHAR(255) NOT NULL, + EquipmentModelID INTEGER NOT NULL, + EquipmentSerialNumber VARCHAR(50) NOT NULL, + EquipmentOwnerID INTEGER NOT NULL, + EquipmentVendorID INTEGER NOT NULL, + EquipmentPurchaseDate TIMESTAMP NOT NULL, + EquipmentPurchaseOrderNumber VARCHAR(50) NULL, + EquipmentDescription VARCHAR(500) NULL, + EquipmentDocumentationLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.Equipment ADD CONSTRAINT pkEquipment + PRIMARY KEY (EquipmentID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentCode IS 'A text code that identifies the piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentName IS 'A text name for the piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentTypeCV IS 'CV term describing the equipment type (e.g., sensor, datalogger, solar panel, etc.)'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentModelID IS 'Foreign key identifier for the model of the equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentSerialNumber IS 'Manufacturer''s serial number for the specific piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentOwnerID IS 'Foreign key identifer for the person that owns the piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentVendorID IS 'Foreign key identifier for the vendor organization for the piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentPurchaseDate IS 'Date that the piece of equipment was purchased'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentPurchaseOrderNumber IS 'A text string identifying the purchase order used to purchase the piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentDescription IS 'Text notes about the specific piece of equipment'; + +COMMENT ON COLUMN ODM2Equipment.Equipment.EquipmentDocumentationLink IS 'A file name, path, or URL to a photo of the specific piece of equipment'; + +COMMENT ON TABLE ODM2Equipment.Equipment IS 'Descriptions of specific pieces of equipment.'; + + +/******************** Add Table: ODM2Equipment.EquipmentActions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.EquipmentActions +( + BridgeID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + ActionID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.EquipmentActions ADD CONSTRAINT pkEquipmentActions + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.EquipmentActions.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentActions.EquipmentID IS 'Foreign key identifier of the Equipment entity associated with the Action'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentActions.ActionID IS 'Foreign key identifier of the Action'; + + +/******************** Add Table: ODM2Equipment.EquipmentModels ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.EquipmentModels +( + EquipmentModelID INTEGER NOT NULL, + ModelManufacturerID INTEGER NOT NULL, + ModelPartNumber VARCHAR(50) NULL, + ModelName VARCHAR(255) NOT NULL, + ModelDescription VARCHAR(500) NULL, + IsInstrument BOOL NOT NULL, + ModelSpecificationsFileLink VARCHAR(255) NULL, + ModelLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.EquipmentModels ADD CONSTRAINT pkEquipmentModels + PRIMARY KEY (EquipmentModelID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.EquipmentModelID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.ModelManufacturerID IS 'Foreign key identifier of the model manufacturer'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.ModelPartNumber IS 'A part number for the equipment model'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.ModelName IS 'Text name of the equipment model'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.ModelDescription IS 'Text description of the equipment model'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.IsInstrument IS 'A boolean indication of whether the equipment is a sensor/instrument used to make observations'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.ModelSpecificationsFileLink IS 'File name, path, or URL to a specifications file for the equipment'; + +COMMENT ON COLUMN ODM2Equipment.EquipmentModels.ModelLink IS 'A URL to a website or file having a description of the equipment model'; + +COMMENT ON TABLE ODM2Equipment.EquipmentModels IS 'Describes models of sensors, loggers, and related equipment used in making observations.'; + + +/******************** Add Table: ODM2Equipment.InstrumentOutputVariables ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.InstrumentOutputVariables +( + InstrumentOutputVariableID INTEGER NOT NULL, + ModelID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + InstrumentMethodID INTEGER NOT NULL, + InstrumentResolution VARCHAR(255) NULL, + InstrumentAccuracy VARCHAR(255) NULL, + InstrumentRawOutputUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.InstrumentOutputVariables ADD CONSTRAINT pkInstrumentOutputVariables + PRIMARY KEY (InstrumentOutputVariableID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.InstrumentOutputVariableID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.ModelID IS 'Foreign key identifier of the Equipment Model'; + +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.VariableID IS 'Foreign key identifier of the Variable output by the Equipment Model'; + +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.InstrumentMethodID IS 'Foreign key identifier of the Method used to output the Variable from the Equipment Model'; + +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.InstrumentResolution IS 'Text description of the resolution of the output variable'; + +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.InstrumentAccuracy IS 'Text description of the accuracy of the output variable'; + +COMMENT ON COLUMN ODM2Equipment.InstrumentOutputVariables.InstrumentRawOutputUnitsID IS 'Foreign key identifier of the raw output Units associated with the output variable'; + +COMMENT ON TABLE ODM2Equipment.InstrumentOutputVariables IS 'Information about the Variables that an instrument is capable of measuring'; + + +/******************** Add Table: ODM2Equipment.MaintenanceActions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.MaintenanceActions +( + ActionID INTEGER NOT NULL, + IsFactoryService BOOL NOT NULL, + FactoryServiceCode VARCHAR(50) NULL, + FactoryServiceReason VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.MaintenanceActions ADD CONSTRAINT pkMaintenanceActions + PRIMARY KEY (ActionID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.MaintenanceActions.ActionID IS 'Primary key and foreign key idenfier of the Equipment MaintenanceAction'; + +COMMENT ON COLUMN ODM2Equipment.MaintenanceActions.IsFactoryService IS 'Boolean indicator of whether the Action is a factory service'; + +COMMENT ON COLUMN ODM2Equipment.MaintenanceActions.FactoryServiceCode IS 'Text code assigned by the factory to the service performed'; + +COMMENT ON COLUMN ODM2Equipment.MaintenanceActions.FactoryServiceReason IS 'Text description of why the factory service Action was required'; + +COMMENT ON TABLE ODM2Equipment.MaintenanceActions IS 'Information about maintenance Actions performed on Equipment'; + + +/******************** Add Table: ODM2Equipment.RelatedEquipment ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Equipment.RelatedEquipment +( + RelationID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedEquipmentID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Equipment.RelatedEquipment ADD CONSTRAINT pkRelatedEquipment + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Equipment.RelatedEquipment.RelationID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Equipment.RelatedEquipment.EquipmentID IS 'Foreign key identifier for a piece of Equipment'; + +COMMENT ON COLUMN ODM2Equipment.RelatedEquipment.RelationshipTypeCV IS 'Text string indicating the type of relationship between two pieces of equipement'; + +COMMENT ON COLUMN ODM2Equipment.RelatedEquipment.RelatedEquipmentID IS 'Foreign key identifier of the related piece of equipment'; + +COMMENT ON TABLE ODM2Equipment.RelatedEquipment IS 'Information about relationships among Equipment'; + + +/******************** Add Table: ODM2ExtensionProperties.ActionExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.ActionExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.ActionExtensionPropertyValues ADD CONSTRAINT pkActionExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.ActionExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ActionExtensionPropertyValues.ActionID IS 'Foreign key of the Action'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ActionExtensionPropertyValues.PropertyID IS 'Foreign key of the extension property added to the Action'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ActionExtensionPropertyValues.PropertyValue IS 'Value of the extension property added to the Action'; + + +/******************** Add Table: ODM2ExtensionProperties.CitationExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.CitationExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.CitationExtensionPropertyValues ADD CONSTRAINT pkCitationExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.CitationExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExtensionProperties.CitationExtensionPropertyValues.CitationID IS 'Foreign key identifier of the Citation being extended'; + +COMMENT ON COLUMN ODM2ExtensionProperties.CitationExtensionPropertyValues.PropertyID IS 'Foreign key identifier for the Property being applied to the Citation'; + +COMMENT ON COLUMN ODM2ExtensionProperties.CitationExtensionPropertyValues.PropertyValue IS 'Value of the property being applied to the Citation'; + +COMMENT ON TABLE ODM2ExtensionProperties.CitationExtensionPropertyValues IS 'Values for Citation Extension Properties'; + + +/******************** Add Table: ODM2ExtensionProperties.ExtensionProperties ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.ExtensionProperties +( + PropertyID INTEGER NOT NULL, + PropertyName VARCHAR(255) NOT NULL, + PropertyDescription VARCHAR(500) NULL, + PropertyDataTypeCV VARCHAR(255) NOT NULL, + PropertyUnitsID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.ExtensionProperties ADD CONSTRAINT pkExtensionProperties + PRIMARY KEY (PropertyID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.ExtensionProperties.PropertyID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ExtensionProperties.PropertyName IS 'Text name of the extension property'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ExtensionProperties.PropertyDescription IS 'Text description of the extension property'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ExtensionProperties.PropertyDataTypeCV IS 'CV term specifying the data type of the property value'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ExtensionProperties.PropertyUnitsID IS 'Foreign key identifier for the units of the property value'; + +COMMENT ON TABLE ODM2ExtensionProperties.ExtensionProperties IS 'Describes extension properties added to objects in an ODM database'; + + +/******************** Add Table: ODM2ExtensionProperties.MethodExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.MethodExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.MethodExtensionPropertyValues ADD CONSTRAINT pkMethodExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.MethodExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExtensionProperties.MethodExtensionPropertyValues.MethodID IS 'Foreign key identifier for the Method'; + +COMMENT ON COLUMN ODM2ExtensionProperties.MethodExtensionPropertyValues.PropertyID IS 'Foreign key identifier for the extension property'; + +COMMENT ON COLUMN ODM2ExtensionProperties.MethodExtensionPropertyValues.PropertyValue IS 'Text or numeric value of the extension property'; + +COMMENT ON TABLE ODM2ExtensionProperties.MethodExtensionPropertyValues IS 'Links extnsion properties to a Method'; + + +/******************** Add Table: ODM2ExtensionProperties.ResultExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.ResultExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.ResultExtensionPropertyValues ADD CONSTRAINT pkResultExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.ResultExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ResultExtensionPropertyValues.ResultID IS 'Foreign key identifier for the result to which the extension property applies'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ResultExtensionPropertyValues.PropertyID IS 'Foreign key identifier for the extension propery'; + +COMMENT ON COLUMN ODM2ExtensionProperties.ResultExtensionPropertyValues.PropertyValue IS 'Text or numeric value of the extension property'; + +COMMENT ON TABLE ODM2ExtensionProperties.ResultExtensionPropertyValues IS 'Links extension properties to a Result'; + + +/******************** Add Table: ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT pkSamplingFeatureExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues.SamplingFeatureID IS 'Foreign key of the SamplingFeature being extended'; + +COMMENT ON COLUMN ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues.PropertyID IS 'Foreign key of the extension property being added to the sampling feature '; + +COMMENT ON COLUMN ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues.PropertyValue IS 'Value of the property being added to the sampling feature'; + + +/******************** Add Table: ODM2ExtensionProperties.VariableExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExtensionProperties.VariableExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExtensionProperties.VariableExtensionPropertyValues ADD CONSTRAINT pkVariableExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExtensionProperties.VariableExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExtensionProperties.VariableExtensionPropertyValues.VariableID IS 'Foreign key of the variable being extended'; + +COMMENT ON COLUMN ODM2ExtensionProperties.VariableExtensionPropertyValues.PropertyID IS 'Foreign key of the extension property being applied to the variable'; + +COMMENT ON COLUMN ODM2ExtensionProperties.VariableExtensionPropertyValues.PropertyValue IS 'Text or numeric value of the extension property for the variable'; + + +/******************** Add Table: ODM2ExternalIdentifiers.CitationExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.CitationExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + CitationExternalIdentifer VARCHAR(255) NOT NULL, + CitationExternalIdentiferURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.CitationExternalIdentifiers ADD CONSTRAINT pkCitationExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.CitationExternalIdentifiers.CitationID IS 'Forign key of the Citation linked to the external identifer'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.CitationExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.CitationExternalIdentifiers.CitationExternalIdentifer IS 'A resolvable, globally unique ID, such as a DOI; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.CitationExternalIdentifiers.CitationExternalIdentiferURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.ExternalIdentifierSystems ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.ExternalIdentifierSystems +( + ExternalIdentifierSystemID INTEGER NOT NULL, + ExternalIdentifierSystemName VARCHAR(255) NOT NULL, + IdentifierSystemOrganizationID INTEGER NOT NULL, + ExternalIdentifierSystemDescription VARCHAR(500) NULL, + ExternalIdentifierSystemURL VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.ExternalIdentifierSystems ADD CONSTRAINT pkExternalIdentifierSystems + PRIMARY KEY (ExternalIdentifierSystemID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.ExternalIdentifierSystems.ExternalIdentifierSystemID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ExternalIdentifierSystems.ExternalIdentifierSystemName IS 'Defines the identifier system used (i.e. IGSN, SWRC Sample Number, etc.)'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ExternalIdentifierSystems.IdentifierSystemOrganizationID IS 'Foreign Key identifer for the organization overseeing or affiliated with the identifier system'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ExternalIdentifierSystems.ExternalIdentifierSystemDescription IS 'Description of identifier system.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ExternalIdentifierSystems.ExternalIdentifierSystemURL IS 'Universal Resource Locator (URL) for resolution/translation of an identifier system''s URNs (i.e. http://dx.doi.org/ is the resolver URL for doi:10.1002/2013GL057450)'; + +COMMENT ON TABLE ODM2ExternalIdentifiers.ExternalIdentifierSystems IS 'A single table for connecting various primary keys with points to outside systems.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.MethodExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.MethodExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + MethodExternalIdentifier VARCHAR(255) NOT NULL, + MethodExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.MethodExternalIdentifiers ADD CONSTRAINT pkMethodExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.MethodExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.MethodExternalIdentifiers.MethodID IS 'Foreign Key to SamplingFeatures'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.MethodExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.MethodExternalIdentifiers.MethodExternalIdentifier IS 'A resolvable, globally unique ID, such as a NEMI method number; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.MethodExternalIdentifiers.MethodExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.PersonExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.PersonExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + PersonExternalIdentifier VARCHAR(255) NOT NULL, + PersonExternalIdenifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.PersonExternalIdentifiers ADD CONSTRAINT pkPersonExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.PersonExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.PersonExternalIdentifiers.PersonID IS 'Foreign Key to People table'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.PersonExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.PersonExternalIdentifiers.PersonExternalIdentifier IS 'A resolvable, globally unique ID, such as an IGSN; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.PersonExternalIdentifiers.PersonExternalIdenifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting.'; + +COMMENT ON TABLE ODM2ExternalIdentifiers.PersonExternalIdentifiers IS 'Cross reference linking table to allow many to many '; + + +/******************** Add Table: ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + ReferenceMaterialExternalIdentifier VARCHAR(255) NOT NULL, + ReferenceMaterialExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT pkReferenceMaterialExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers.ReferenceMaterialID IS 'Foreign Key to ReferenceMaterials'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers.ReferenceMaterialExternalIdentifier IS 'A resolvable, globally unique ID, such as NBS-19; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers.ReferenceMaterialExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + SamplingFeatureExternalIdentifier VARCHAR(255) NOT NULL, + SamplingFeatureExternalIdentiferURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers ADD CONSTRAINT pkSamplingFeatureExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers.SamplingFeatureID IS 'Foreign Key to SamplingFeatures'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers.SamplingFeatureExternalIdentifier IS 'A resolvable, globally unique ID, such as an IGSN; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers.SamplingFeatureExternalIdentiferURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.SpatialReferenceExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.SpatialReferenceExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + SpatialReferenceID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + SpatialReferenceExternalIdentifier VARCHAR(255) NOT NULL, + SpatialReferenceExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.SpatialReferenceExternalIdentifiers ADD CONSTRAINT pkSpatialReferenceExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.SpatialReferenceExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + TaxonomicClassifierExternalIdentifier VARCHAR(255) NOT NULL, + TaxonomicClassifierExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT pkTaxonomicClassifierExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers.TaxonomicClassifierID IS 'Foreign Key to TaxonomicClassifiers'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers.TaxonomicClassifierExternalIdentifier IS 'A resolvable, globally unique ID, such as a GBIF ID; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers.TaxonomicClassifierExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: ODM2ExternalIdentifiers.VariableExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2ExternalIdentifiers.VariableExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + VariableExternalIdentifer VARCHAR(255) NOT NULL, + VariableExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2ExternalIdentifiers.VariableExternalIdentifiers ADD CONSTRAINT pkVariableExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2ExternalIdentifiers.VariableExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.VariableExternalIdentifiers.VariableID IS 'Foreign Key to Variables'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.VariableExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.VariableExternalIdentifiers.VariableExternalIdentifer IS 'A resolvable, globally unique ID; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN ODM2ExternalIdentifiers.VariableExternalIdentifiers.VariableExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: ODM2LabAnalyses.ActionDirectives ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2LabAnalyses.ActionDirectives +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + DirectiveID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2LabAnalyses.ActionDirectives ADD CONSTRAINT pkActionDirectives + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2LabAnalyses.ActionDirectives.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2LabAnalyses.ActionDirectives.ActionID IS 'Foreign key identifier of the Action'; + +COMMENT ON COLUMN ODM2LabAnalyses.ActionDirectives.DirectiveID IS 'Foreign key identifier of the Directive'; + + +/******************** Add Table: ODM2LabAnalyses.Directives ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2LabAnalyses.Directives +( + DirectiveID INTEGER NOT NULL, + DirectiveTypeCV VARCHAR(255) NOT NULL, + DirectiveDescription VARCHAR(500) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2LabAnalyses.Directives ADD CONSTRAINT pkDirectives + PRIMARY KEY (DirectiveID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2LabAnalyses.Directives.DirectiveID IS 'Unique identifier.'; + +COMMENT ON COLUMN ODM2LabAnalyses.Directives.DirectiveTypeCV IS 'Directive type, such as project, intended analyte/analysis for a Specimen, etc.'; + +COMMENT ON COLUMN ODM2LabAnalyses.Directives.DirectiveDescription IS 'Text description of the directive or purpose under which the action was taken.'; + +COMMENT ON TABLE ODM2LabAnalyses.Directives IS 'Describes the directive or purpose under which actions are made. Directives can be projects, intended analyses for a specimen, etc.'; + + +/******************** Add Table: ODM2LabAnalyses.SpecimenBatchPostions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2LabAnalyses.SpecimenBatchPostions +( + FeatureActionID INTEGER NOT NULL, + BatchPositionNumber INTEGER NOT NULL, + BatchPositionLabel VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2LabAnalyses.SpecimenBatchPostions ADD CONSTRAINT pkSpecimenBatchPostions + PRIMARY KEY (FeatureActionID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2LabAnalyses.SpecimenBatchPostions.FeatureActionID IS 'Foriegn key identifer for the Specimen Preparation or Analysis Batch'; + +COMMENT ON COLUMN ODM2LabAnalyses.SpecimenBatchPostions.BatchPositionNumber IS 'The position or line number of a specimen within a PreparationBatchAction or an InstrumentAnalysisAction.'; + +COMMENT ON COLUMN ODM2LabAnalyses.SpecimenBatchPostions.BatchPositionLabel IS 'The label text for a specimen within a PreparationBatchAction or an InstrumentAnalysisAction.'; + +COMMENT ON TABLE ODM2LabAnalyses.SpecimenBatchPostions IS 'Extends the FeatureActions table with a foreign key when the optional LabAnalyses schema is implemented. In a database implementation, we would not implement this as a separate table from FeatureActions, but rather just add the additional field(s).'; + + +/******************** Add Table: ODM2Provenance.AuthorLists ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.AuthorLists +( + BridgeID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + AuthorOrder INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.AuthorLists ADD CONSTRAINT pkAuthorLists + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.AuthorLists.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Provenance.AuthorLists.CitationID IS 'Foreign key identifier for a Citation'; + +COMMENT ON COLUMN ODM2Provenance.AuthorLists.PersonID IS 'Foreign key identifier for a Person that is an author of the Citation'; + +COMMENT ON COLUMN ODM2Provenance.AuthorLists.AuthorOrder IS 'Integer order of the authors of the Citation starting with 1 for first author'; + +COMMENT ON TABLE ODM2Provenance.AuthorLists IS 'Relationship between Citations and their Authors'; + + +/******************** Add Table: ODM2Provenance.Citations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.Citations +( + CitationID INTEGER NOT NULL, + Title VARCHAR(255) NOT NULL, + Publisher VARCHAR(255) NOT NULL, + PublicationYear INTEGER NOT NULL, + CitationLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.Citations ADD CONSTRAINT pkCitations + PRIMARY KEY (CitationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.Citations.CitationID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Provenance.Citations.Title IS 'Text title of the Citation'; + +COMMENT ON COLUMN ODM2Provenance.Citations.Publisher IS 'Text publisher of the Citation'; + +COMMENT ON COLUMN ODM2Provenance.Citations.PublicationYear IS 'Integer publication year (4 digits) of the Citation'; + +COMMENT ON COLUMN ODM2Provenance.Citations.CitationLink IS 'Text link to the Citation (i.e. URL or path).'; + +COMMENT ON TABLE ODM2Provenance.Citations IS 'Information about Citations'; + + +/******************** Add Table: ODM2Provenance.DataSetCitations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.DataSetCitations +( + BridgeID INTEGER NOT NULL, + DataSetID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + CitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.DataSetCitations ADD CONSTRAINT pkDataSetCitations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.DataSetCitations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Provenance.DataSetCitations.DataSetID IS 'Foreign key identifier for a DataSet'; + +COMMENT ON COLUMN ODM2Provenance.DataSetCitations.RelationshipTypeCV IS 'CV term describing the relationship between the DataSet and the Citation (e.g., cites or isCitedBy), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN ODM2Provenance.DataSetCitations.CitationID IS 'Foreign key identifier for a Citation that is associated with the DataSet identified by DataSetID'; + +COMMENT ON TABLE ODM2Provenance.DataSetCitations IS 'Relationship between DataSets and Citations'; + + +/******************** Add Table: ODM2Provenance.DerivationEquations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.DerivationEquations +( + DerivationEquationID INTEGER NOT NULL, + DerivationEquation VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.DerivationEquations ADD CONSTRAINT pkDerivationEquations + PRIMARY KEY (DerivationEquationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.DerivationEquations.DerivationEquationID IS 'Primary key for DerivationEquations, which include calibration equations, normalizations, etc. on one or more RelatedResults to produce a DerivedResult.'; + +COMMENT ON COLUMN ODM2Provenance.DerivationEquations.DerivationEquation IS 'Text of the equation used to derive a Result from one or more RelatedResults, where y is the DerivedResult and x1, x2, ..., xn are the RelatedResults specified in order by RelatedResultSequenceID.'; + +COMMENT ON TABLE ODM2Provenance.DerivationEquations IS 'DerivationEquations include calibration equations, normalizations, etc. on one or more RelatedResults to produce a DerivedResult.'; + + +/******************** Add Table: ODM2Provenance.MethodCitations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.MethodCitations +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + CitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.MethodCitations ADD CONSTRAINT pkMethodCitations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.MethodCitations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2Provenance.MethodCitations.MethodID IS 'Foreign key identifier for a Method'; + +COMMENT ON COLUMN ODM2Provenance.MethodCitations.RelationshipTypeCV IS 'CV term describing the relationship between the Methods and the Citation (e.g., References or isDocumentedBy), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN ODM2Provenance.MethodCitations.CitationID IS 'Foreign key identifier for a Citation that is associated with the Method identified by MethodID'; + + +/******************** Add Table: ODM2Provenance.RelatedAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.RelatedAnnotations +( + RelationID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedAnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.RelatedAnnotations ADD CONSTRAINT pkRelatedAnnotations + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Provenance.RelatedAnnotations IS 'Stores information about relationships among Annotations'; + + +/******************** Add Table: ODM2Provenance.RelatedCitations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.RelatedCitations +( + RelationID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + RelationshipTypeCV INTEGER NOT NULL, + RelatedCitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.RelatedCitations ADD CONSTRAINT pkRelatedCitations + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.RelatedCitations.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN ODM2Provenance.RelatedCitations.CitationID IS 'Foreign key identifier for a Citation'; + +COMMENT ON COLUMN ODM2Provenance.RelatedCitations.RelationshipTypeCV IS 'CV term describing the relationship between Citations (e.g., IsSupplementTo or IsPartOf), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN ODM2Provenance.RelatedCitations.RelatedCitationID IS 'Foreign key identifier for a Citation that is related to the Citation identified by CitationID'; + +COMMENT ON TABLE ODM2Provenance.RelatedCitations IS 'Information about relationships among citations'; + + +/******************** Add Table: ODM2Provenance.RelatedDatasets ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.RelatedDatasets +( + RelationID INTEGER NOT NULL, + DataSetID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedDatasetID INTEGER NOT NULL, + VersionCode VARCHAR(50) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.RelatedDatasets ADD CONSTRAINT pkRelatedDatasets + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.RelatedDatasets.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN ODM2Provenance.RelatedDatasets.DataSetID IS 'Foreign key identifier for a DataSet'; + +COMMENT ON COLUMN ODM2Provenance.RelatedDatasets.RelationshipTypeCV IS 'CV term describing the relationship between DataSets (e.g., IsNewVersionOf or Continues), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN ODM2Provenance.RelatedDatasets.RelatedDatasetID IS 'Foreign key identifier for a DataSet related to the DataSet identified by DataSetID'; + +COMMENT ON COLUMN ODM2Provenance.RelatedDatasets.VersionCode IS 'Text version number/code that can be specified if the DataSet is an explicit version of another DataSet and where the RelationshipTypeCV = isNewVersionOf.'; + +COMMENT ON TABLE ODM2Provenance.RelatedDatasets IS 'Information about relationships among DataSets'; + + +/******************** Add Table: ODM2Provenance.RelatedResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.RelatedResults +( + RelationID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedResultID BIGINT NOT NULL, + VersionCode VARCHAR(50) NULL, + RelatedResultSequenceNumber INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.RelatedResults ADD CONSTRAINT pkRelatedResults + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.RelatedResults.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN ODM2Provenance.RelatedResults.ResultID IS 'Foreign key identifier for a Result'; + +COMMENT ON COLUMN ODM2Provenance.RelatedResults.RelationshipTypeCV IS 'Text description of the relationship between the Results from a controlled vocabulary (e.g., isDerivedFrom)'; + +COMMENT ON COLUMN ODM2Provenance.RelatedResults.RelatedResultID IS 'Foreign key identifier for a Result that is related to the Result identified by ResultID'; + +COMMENT ON COLUMN ODM2Provenance.RelatedResults.VersionCode IS 'Text version number/code that can be specified if the Result is an explicit version of another Result and where the RelationshipTypeCV = isNewVersionOf.'; + +COMMENT ON COLUMN ODM2Provenance.RelatedResults.RelatedResultSequenceNumber IS 'Integer sequence number indicating the order in which a RelatedResults appears in a DerivationEquation (i.e. 1 for x1, 2 for x2...) and where a Result isDerivedFrom one or more RelatedResults.'; + +COMMENT ON TABLE ODM2Provenance.RelatedResults IS 'Information about relationships among Results'; + + +/******************** Add Table: ODM2Provenance.ResultDerivationEquations ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Provenance.ResultDerivationEquations +( + ResultID BIGINT NOT NULL, + DerivationEquationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Provenance.ResultDerivationEquations ADD CONSTRAINT pkResultDerivationEquations + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Provenance.ResultDerivationEquations.ResultID IS 'Foreign key identifier for a Result that was derived using the Equation specified by DerivationEquationID'; + +COMMENT ON COLUMN ODM2Provenance.ResultDerivationEquations.DerivationEquationID IS 'Foreign key identifier for the DerivationEquation used to derive the Result identified by ResultID'; + +COMMENT ON TABLE ODM2Provenance.ResultDerivationEquations IS 'Relationship between Results and Equations used to derive them'; + + +/******************** Add Table: ODM2Results.CategoricalResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.CategoricalResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue VARCHAR(255) NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.CategoricalResultValues ADD CONSTRAINT pkCategoricalResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.CategoricalResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.CategoricalResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + QualityCodeCV BIGINT NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.CategoricalResults ADD CONSTRAINT pkCategoricalResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.MeasurementResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.MeasurementResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.MeasurementResultValues ADD CONSTRAINT pkMeasurementResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.MeasurementResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.MeasurementResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT pkMeasurementResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.PointCoverageResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.PointCoverageResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue BIGINT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.PointCoverageResultValues ADD CONSTRAINT pkPointCoverageResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.PointCoverageResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.PointCoverageResults +( + ResultID BIGINT NOT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INTEGER NULL, + IntendedYSpacing FLOAT NULL, + IntendedYSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.PointCoverageResults ADD CONSTRAINT pkPointCoverageResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.ProfileResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.ProfileResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + ZLocation FLOAT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.ProfileResultValues ADD CONSTRAINT pkProfileResultValues + PRIMARY KEY (ValueID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Results.ProfileResultValues IS 'Numeric values of Depth Profile Results.'; + + +/******************** Add Table: ODM2Results.ProfileResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.ProfileResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT pkProfileResults + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON TABLE ODM2Results.ProfileResults IS 'Information about Profile Results'; + + +/******************** Add Table: ODM2Results.ResultTypeCV ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.ResultTypeCV +( + ResultTypeCV VARCHAR(255) NOT NULL, + ResultTypeCategory VARCHAR(255) NOT NULL, + DataType VARCHAR(255) NOT NULL, + ResultTypeDefinition VARCHAR(500) NOT NULL, + FixedDimensions VARCHAR(255) NOT NULL, + VaryingDimensions VARCHAR(255) NOT NULL, + SpaceMeasurementFramework VARCHAR(255) NOT NULL, + TimeMeasurementFramework VARCHAR(255) NOT NULL, + VariableMeasurementFramework VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.ResultTypeCV ADD CONSTRAINT pkResultTypeCV + PRIMARY KEY (ResultTypeCV); + + +/******************** Add Table: ODM2Results.SectionResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.SectionResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue DOUBLE PRECISION NOT NULL, + ValueDateTime BIGINT NOT NULL, + ValueDateTimeUTCOffset BIGINT NOT NULL, + XLocation DOUBLE PRECISION NOT NULL, + XAggregationInterval FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + ZLocation BIGINT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.SectionResultValues ADD CONSTRAINT pkSectionResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.SectionResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.SectionResults +( + ResultID BIGINT NOT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INTEGER NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT pkSectionResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.SpectraResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.SpectraResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + ExcitationWavelength FLOAT NOT NULL, + EmissionWavelength FLOAT NOT NULL, + WavelengthUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval DOUBLE PRECISION NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.SpectraResultValues ADD CONSTRAINT pkSpectraResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.SpectraResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.SpectraResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedWavelengthSpacing DOUBLE PRECISION NULL, + IntendedWavelengthSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT pkSpectraResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.TimeSeriesResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.TimeSeriesResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.TimeSeriesResultValues ADD CONSTRAINT pkTimeSeriesResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.TimeSeriesResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.TimeSeriesResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT pkTimeSeriesResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.TrajectoryResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.TrajectoryResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + ZLocation FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + TrajectoryDistance FLOAT NOT NULL, + TrajectoryDistanceAggregationInterval FLOAT NOT NULL, + TrajectoryDistanceUnitsID INTEGER NOT NULL, + CensorCode VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.TrajectoryResultValues ADD CONSTRAINT pkTrajectoryResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.TrajectoryResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.TrajectoryResults +( + ResultID BIGINT NOT NULL, + SpatialReferenceID INTEGER NULL, + IntendedTrajectorySpacing FLOAT NULL, + IntendedTrajectorySpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.TrajectoryResults ADD CONSTRAINT pkTrajectoryResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2Results.TransectResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.TransectResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset TIMESTAMP NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + TransectDistance FLOAT NOT NULL, + TransectDistanceAggregationInterval FLOAT NOT NULL, + TransectDistanceUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.TransectResultValues ADD CONSTRAINT pkTransectResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: ODM2Results.TransectResults ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Results.TransectResults +( + ResultID BIGINT NOT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedTransectSpacing FLOAT NULL, + IntendedTransectSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Results.TransectResults ADD CONSTRAINT pkTransectResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: ODM2SamplingFeatures.RelatedFeatures ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2SamplingFeatures.RelatedFeatures +( + RelationID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedFeatureID INTEGER NOT NULL, + SpatialOffsetID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2SamplingFeatures.RelatedFeatures ADD CONSTRAINT pkRelatedFeatures + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2SamplingFeatures.RelatedFeatures.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN ODM2SamplingFeatures.RelatedFeatures.SamplingFeatureID IS 'Foregn key identifier of a Sampling Feature'; + +COMMENT ON COLUMN ODM2SamplingFeatures.RelatedFeatures.RelationshipTypeCV IS 'CV term describing the relationship between SamplingFeatures (e.g., IsChildOf, IsFractionOf or IsCompositeOf).'; + +COMMENT ON COLUMN ODM2SamplingFeatures.RelatedFeatures.RelatedFeatureID IS 'Foreign key identifier of a Sampling Feature that is the parent of the current Sampling Feature'; + +COMMENT ON COLUMN ODM2SamplingFeatures.RelatedFeatures.SpatialOffsetID IS 'Foreign key identifier of a spatial offset from the feature parent'; + +COMMENT ON TABLE ODM2SamplingFeatures.RelatedFeatures IS 'Describes parrent/child relationships among Sampling Features'; + + +/******************** Add Table: ODM2SamplingFeatures.Sites ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2SamplingFeatures.Sites +( + SamplingFeatureID INTEGER NOT NULL, + SiteTypeCV VARCHAR(255) NOT NULL, + Latitude FLOAT NOT NULL, + Longitude FLOAT NOT NULL, + LatLonDatumID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2SamplingFeatures.Sites ADD CONSTRAINT pkSites + PRIMARY KEY (SamplingFeatureID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2SamplingFeatures.Sites.SamplingFeatureID IS 'Foreign key identifier of the Sampling Feature that is the Site'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Sites.SiteTypeCV IS 'A CV term describing the site type'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Sites.Latitude IS 'Latitude of the site'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Sites.Longitude IS 'Longitude of the site'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Sites.LatLonDatumID IS 'Foreign key identifier for the Spatial Reference System that describes the latitude and longitude coordinates'; + +COMMENT ON TABLE ODM2SamplingFeatures.Sites IS 'Describes sampling features that are point sites'; + + +/******************** Add Table: ODM2SamplingFeatures.SpatialOffsets ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2SamplingFeatures.SpatialOffsets +( + SpatialOffsetID INTEGER NOT NULL, + SpatialOffsetTypeCV VARCHAR(255) NOT NULL, + Offset1Value FLOAT NOT NULL, + Offset1UnitID INTEGER NOT NULL, + Offset2Value FLOAT NULL, + Offset2UnitID INTEGER NULL, + Offset3Value FLOAT NULL, + Offset3UnitID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2SamplingFeatures.SpatialOffsets ADD CONSTRAINT pkSpatialOffsets + PRIMARY KEY (SpatialOffsetID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.SpatialOffsetID IS 'Primary Key of SpatialOffset'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.SpatialOffsetTypeCV IS 'Type of SpatialOffset, such as Depth, DepthInterval, HorizaontalRadial'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.Offset1Value IS 'Numerical value for 1st SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.Offset1UnitID IS 'Units for 1st SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.Offset2Value IS 'Numerical value for 2nd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.Offset2UnitID IS 'Units for 2nd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.Offset3Value IS 'Numerical value for 3rd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialOffsets.Offset3UnitID IS 'Units for 3rd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON TABLE ODM2SamplingFeatures.SpatialOffsets IS 'An explicit spatial relationship between a sampling feature relative to it''s parent.'; + + +/******************** Add Table: ODM2SamplingFeatures.SpatialReferences ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2SamplingFeatures.SpatialReferences +( + SpatialReferenceID INTEGER NOT NULL, + SRSCode VARCHAR(50) NULL, + SRSName VARCHAR(255) NOT NULL, + SRSDescription VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2SamplingFeatures.SpatialReferences ADD CONSTRAINT pkSpatialReferences + PRIMARY KEY (SpatialReferenceID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialReferences.SpatialReferenceID IS 'Unique identifier'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialReferences.SRSCode IS 'SRS code for the spatial reference system'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialReferences.SRSName IS 'Text name of the spatial reference system'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpatialReferences.SRSDescription IS 'Text notes describing the spatial reference system'; + +COMMENT ON TABLE ODM2SamplingFeatures.SpatialReferences IS 'Describes spatial reference systems used to reference the coordinates for sites'; + + +/******************** Add Table: ODM2SamplingFeatures.SpecimenTaxonomicClassifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2SamplingFeatures.SpecimenTaxonomicClassifiers +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NOT NULL, + CitationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2SamplingFeatures.SpecimenTaxonomicClassifiers ADD CONSTRAINT pkSpecimenTaxonomicClassifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2SamplingFeatures.SpecimenTaxonomicClassifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpecimenTaxonomicClassifiers.SamplingFeatureID IS 'Foreign key to SamplingFeatures.Specimens.'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpecimenTaxonomicClassifiers.TaxonomicClassifierID IS 'Foreign key to TaxonomicClassifiers.'; + +COMMENT ON COLUMN ODM2SamplingFeatures.SpecimenTaxonomicClassifiers.CitationID IS 'Foreign key to the attribution, or Citation, for the classification.'; + +COMMENT ON TABLE ODM2SamplingFeatures.SpecimenTaxonomicClassifiers IS 'This cross-reference table allows Taxonomic Classification of Specimens as an annotation, rather than as a Result.'; + + +/******************** Add Table: ODM2SamplingFeatures.Specimens ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2SamplingFeatures.Specimens +( + SamplingFeatureID INTEGER NOT NULL, + SpecimenTypeCV VARCHAR(255) NOT NULL, + SpecimenMediumCV VARCHAR(255) NOT NULL, + IsFieldSpecimen BOOL NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2SamplingFeatures.Specimens ADD CONSTRAINT pkSpecimens + PRIMARY KEY (SamplingFeatureID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2SamplingFeatures.Specimens.SamplingFeatureID IS 'Foreign key identifier for the Sampling Feature that is the specimen'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Specimens.SpecimenTypeCV IS 'A CV term defining the type of specimen (e.g., aquatic sample, core, etc.)'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Specimens.SpecimenMediumCV IS 'A CV term defining the medium of the specimen (i.e. water, sediment, etc.)'; + +COMMENT ON COLUMN ODM2SamplingFeatures.Specimens.IsFieldSpecimen IS 'A boolean indicating whether the specimen was collected in the field'; + +COMMENT ON TABLE ODM2SamplingFeatures.Specimens IS 'Equivalent to O&M Sampling Feature Type Specimen. Describes physical samples or specimens.'; + + +/******************** Add Table: ODM2Sensors.DataLoggerFiles ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Sensors.DataLoggerFiles +( + DataLoggerFileID INTEGER NOT NULL, + ProgramID INTEGER NOT NULL, + DataLoggerFileName VARCHAR(255) NOT NULL, + DataLoggerFileDescription VARCHAR(500) NULL, + DataLoggerFileLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Sensors.DataLoggerFiles ADD CONSTRAINT pkDataLoggerFiles + PRIMARY KEY (DataLoggerFileID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Sensors.DataLoggerFiles.DataLoggerFileID IS 'Unique identifier for the datalogger file'; + +COMMENT ON COLUMN ODM2Sensors.DataLoggerFiles.ProgramID IS 'Foreign key identifier of the datalogger program that created the file'; + +COMMENT ON COLUMN ODM2Sensors.DataLoggerFiles.DataLoggerFileName IS 'Text name of the datalogger file'; + +COMMENT ON COLUMN ODM2Sensors.DataLoggerFiles.DataLoggerFileDescription IS 'Text description of the datalogger file'; + +COMMENT ON COLUMN ODM2Sensors.DataLoggerFiles.DataLoggerFileLink IS 'File path to the datalogger file'; + +COMMENT ON TABLE ODM2Sensors.DataLoggerFiles IS 'Destibes datalogger files created by a deployment action'; + + +/******************** Add Table: ODM2Sensors.DataloggerProgramFiles ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Sensors.DataloggerProgramFiles +( + ProgramID INTEGER NOT NULL, + AffiliationID INTEGER NOT NULL, + ProgramName VARCHAR(255) NOT NULL, + ProgramDescription VARCHAR(500) NULL, + ProgramVersion VARCHAR(50) NULL, + ProgramFileLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Sensors.DataloggerProgramFiles ADD CONSTRAINT pkDataloggerProgramFiles + PRIMARY KEY (ProgramID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Sensors.DataloggerProgramFiles.ProgramID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Sensors.DataloggerProgramFiles.AffiliationID IS 'Foreign key identifier of the person that created the program'; + +COMMENT ON COLUMN ODM2Sensors.DataloggerProgramFiles.ProgramName IS 'Text name of the datalogger program file'; + +COMMENT ON COLUMN ODM2Sensors.DataloggerProgramFiles.ProgramDescription IS 'Text description of the datalogger program file'; + +COMMENT ON COLUMN ODM2Sensors.DataloggerProgramFiles.ProgramVersion IS 'Text description of the version of the datalogger program file'; + +COMMENT ON COLUMN ODM2Sensors.DataloggerProgramFiles.ProgramFileLink IS 'URL or file path to the datalogger program file'; + +COMMENT ON TABLE ODM2Sensors.DataloggerProgramFiles IS 'Information about datalogger program files'; + + +/******************** Add Table: ODM2Sensors.DeploymentActions ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Sensors.DeploymentActions +( + ActionID INTEGER NOT NULL, + DeploymentTypeCV VARCHAR(255) NOT NULL, + CurrentlyDeployed BOOL NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Sensors.DeploymentActions ADD CONSTRAINT pkDeploymentActions + PRIMARY KEY (ActionID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Sensors.DeploymentActions.ActionID IS 'Foreign key identifer for the Action that is the deployment'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentActions.DeploymentTypeCV IS 'CV term that describes the type of the deployment'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentActions.CurrentlyDeployed IS 'A boolean indicating whether a piece of equipment is currently deployed'; + +COMMENT ON TABLE ODM2Sensors.DeploymentActions IS 'Describes actions that are deployment events'; + + +/******************** Add Table: ODM2Sensors.DeploymentMeasuredVariables ************************/ + +/* Build Table Structure */ +CREATE TABLE ODM2Sensors.DeploymentMeasuredVariables +( + DeploymentMeasuredVariableID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + InstrumentOutputVariableID INTEGER NOT NULL, + DataloggerFileID INTEGER NOT NULL, + ColumnLabel VARCHAR(50) NULL, + ColumnDescription VARCHAR(500) NULL, + MeasurementEquation VARCHAR(255) NULL, + ScanInterval FLOAT NULL, + ScanIntervalUnitsID INTEGER NULL, + RecordingInterval FLOAT NULL, + RecordingIntervalUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE ODM2Sensors.DeploymentMeasuredVariables ADD CONSTRAINT pkDeploymentMeasuredVariables + PRIMARY KEY (DeploymentMeasuredVariableID); + +/* Add Comments */ +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.DeploymentMeasuredVariableID IS 'Primary key identifier'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.ActionID IS 'Foreign key identifier of the Deployment Action associated with the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.InstrumentOutputVariableID IS 'Foreign key identifier of the InstrumentOutputVariable that is the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.DataloggerFileID IS 'Foreign key identifier of the DataloggerFile from in which the DeploymentMeasuredVariable is recorded'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.ColumnLabel IS 'Text label of the column within the DataloggerFile that is the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.ColumnDescription IS 'Text description of hte column within the DataloggerFile that is the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.MeasurementEquation IS 'Text string that gives the equation (if any) associated with the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.ScanInterval IS 'Numeric value of the scan interval'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.ScanIntervalUnitsID IS 'Foreign key identifier of the units of the scan interval'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.RecordingInterval IS 'Numeric value of the recording interval'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.RecordingIntervalUnitsID IS 'Foreign key identifier of the units for the recording interval'; + +COMMENT ON COLUMN ODM2Sensors.DeploymentMeasuredVariables.AggregationStatisticCV IS 'Text aggregation statistic of the recorded value - chosen from a CV'; + +COMMENT ON TABLE ODM2Sensors.DeploymentMeasuredVariables IS 'Inoformation about the variables measured by a deployment'; + + + + + +/************ Add Foreign Keys ***************/ + +/* Add Foreign Key: fk_ActionAnnotations_Actions */ +ALTER TABLE ODM2Annotations.ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Annotations_Citations */ +ALTER TABLE ODM2Annotations.Annotations ADD CONSTRAINT fk_Annotations_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Annotations_People */ +ALTER TABLE ODM2Annotations.Annotations ADD CONSTRAINT fk_Annotations_People + FOREIGN KEY (AnnotatorID) REFERENCES ODM2Core.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResultValueAnnotations_CategoricalResultValues */ +ALTER TABLE ODM2Annotations.CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_CategoricalResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.CategoricalResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentAnnotations_Equipment */ +ALTER TABLE ODM2Annotations.EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Equipment + FOREIGN KEY (EquipmentID) REFERENCES ODM2Equipment.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResultValueAnnotations_MeasurementResultValues */ +ALTER TABLE ODM2Annotations.MeasurementResultValueAnnotations ADD CONSTRAINT fk_MeasurementResultValueAnnotations_MeasurementResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.MeasurementResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.MeasurementResultValueAnnotations ADD CONSTRAINT fk_ResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodAnnotations_Methods */ +ALTER TABLE ODM2Annotations.MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Methods + FOREIGN KEY (MethodID) REFERENCES ODM2Core.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValueAnnotations_PointCoverageResultValues */ +ALTER TABLE ODM2Annotations.PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_PointCoverageResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.PointCoverageResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValueAnnotations_ProfileResultValues */ +ALTER TABLE ODM2Annotations.ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_ProfileResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.ProfileResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultAnnotations_Results */ +ALTER TABLE ODM2Annotations.ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureAnnotations_SamplingFeatures */ +ALTER TABLE ODM2Annotations.SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValueAnnotations_SectionResultValues */ +ALTER TABLE ODM2Annotations.SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_SectionResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.SectionResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValueAnnotations_SpectraResultValues */ +ALTER TABLE ODM2Annotations.SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_SpectraResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.SpectraResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues */ +ALTER TABLE ODM2Annotations.TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.TimeSeriesResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValueAnnotations_TrajectoryResultValues */ +ALTER TABLE ODM2Annotations.TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_TrajectoryResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.TrajectoryResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResultValueAnnotations_Annotations */ +ALTER TABLE ODM2Annotations.TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResultValueAnnotations_TransectResultValues */ +ALTER TABLE ODM2Annotations.TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_TransectResultValues + FOREIGN KEY (ValueID) REFERENCES ODM2Results.TransectResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionPeople_Actions */ +ALTER TABLE ODM2Core.ActionBy ADD CONSTRAINT fk_ActionPeople_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionPeople_Affiliations */ +ALTER TABLE ODM2Core.ActionBy ADD CONSTRAINT fk_ActionPeople_Affiliations + FOREIGN KEY (AffiliationID) REFERENCES ODM2Core.Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Actions_Methods */ +ALTER TABLE ODM2Core.Actions ADD CONSTRAINT fk_Actions_Methods + FOREIGN KEY (MethodID) REFERENCES ODM2Core.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Affiliations_Organizations */ +ALTER TABLE ODM2Core.Affiliations ADD CONSTRAINT fk_Affiliations_Organizations + FOREIGN KEY (OrganizationID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Affiliations_People */ +ALTER TABLE ODM2Core.Affiliations ADD CONSTRAINT fk_Affiliations_People + FOREIGN KEY (PersonID) REFERENCES ODM2Core.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetsResults_DataSets */ +ALTER TABLE ODM2Core.DataSetsResults ADD CONSTRAINT fk_DataSetsResults_DataSets + FOREIGN KEY (DataSetID) REFERENCES ODM2Core.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetsResults_Results */ +ALTER TABLE ODM2Core.DataSetsResults ADD CONSTRAINT fk_DataSetsResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureActions_Actions */ +ALTER TABLE ODM2Core.FeatureActions ADD CONSTRAINT fk_FeatureActions_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureActions_SamplingFeatures */ +ALTER TABLE ODM2Core.FeatureActions ADD CONSTRAINT fk_FeatureActions_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Methods_Organizations */ +ALTER TABLE ODM2Core.Methods ADD CONSTRAINT fk_Methods_Organizations + FOREIGN KEY (OrganizationID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Organizations_Organizations */ +ALTER TABLE ODM2Core.Organizations ADD CONSTRAINT fk_Organizations_Organizations + FOREIGN KEY (ParentOrganizationID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedActions_Actions */ +ALTER TABLE ODM2Core.RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedActions_Actions_AreRelated */ +ALTER TABLE ODM2Core.RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions_AreRelated + FOREIGN KEY (RelatedActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_FeatureActions */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT fk_Results_FeatureActions + FOREIGN KEY (FeatureActionID) REFERENCES ODM2Core.FeatureActions (FeatureActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_ProcessingLevels */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT fk_Results_ProcessingLevels + FOREIGN KEY (ProcessingLevelID) REFERENCES ODM2Core.ProcessingLevels (ProcessingLevelID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_ResultTypeCV */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT fk_Results_ResultTypeCV + FOREIGN KEY (ResultTypeCV) REFERENCES ODM2Results.ResultTypeCV (ResultTypeCV) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_TaxonomicClassifiers */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT fk_Results_TaxonomicClassifiers + FOREIGN KEY (TaxonomicClassifierID) REFERENCES ODM2Core.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_Units */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT fk_Results_Units + FOREIGN KEY (UnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_Variables */ +ALTER TABLE ODM2Core.Results ADD CONSTRAINT fk_Results_Variables + FOREIGN KEY (VariableID) REFERENCES ODM2Core.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ParentTaxon_Taxon */ +ALTER TABLE ODM2Core.TaxonomicClassifiers ADD CONSTRAINT fk_ParentTaxon_Taxon + FOREIGN KEY (ParentTaxonomicClassifierID) REFERENCES ODM2Core.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataQuality_Units */ +ALTER TABLE ODM2DataQuality.DataQuality ADD CONSTRAINT fk_DataQuality_Units + FOREIGN KEY (DataQualityValueUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_Citations */ +ALTER TABLE ODM2DataQuality.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_ReferenceMaterials */ +ALTER TABLE ODM2DataQuality.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_ReferenceMaterials + FOREIGN KEY (ReferenceMaterialID) REFERENCES ODM2DataQuality.ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_Units */ +ALTER TABLE ODM2DataQuality.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Units + FOREIGN KEY (UnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_Variables */ +ALTER TABLE ODM2DataQuality.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Variables + FOREIGN KEY (VariableID) REFERENCES ODM2Core.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterials_Organizations */ +ALTER TABLE ODM2DataQuality.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_Organizations + FOREIGN KEY (ReferenceMaterialOrganizationID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterials_SamplingFeatures */ +ALTER TABLE ODM2DataQuality.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultNormalizationValues_ReferenceMaterialValues */ +ALTER TABLE ODM2DataQuality.ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_ReferenceMaterialValues + FOREIGN KEY (NormalizedByReferenceMaterialValueID) REFERENCES ODM2DataQuality.ReferenceMaterialValues (ReferenceMaterialValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultNormalizationValues_Results */ +ALTER TABLE ODM2DataQuality.ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultsDataQuality_DataQuality */ +ALTER TABLE ODM2DataQuality.ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_DataQuality + FOREIGN KEY (DataQualityID) REFERENCES ODM2DataQuality.DataQuality (DataQualityID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultsDataQuality_Results */ +ALTER TABLE ODM2DataQuality.ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibratedDeploymentVariables_Actions */ +ALTER TABLE ODM2Equipment.CalibratedDeploymentVariables ADD CONSTRAINT fk_CalibratedDeploymentVariables_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibratedDeploymentVariables_DeploymentMeasuredVariables */ +ALTER TABLE ODM2Equipment.CalibratedDeploymentVariables ADD CONSTRAINT fk_CalibratedDeploymentVariables_DeploymentMeasuredVariables + FOREIGN KEY (DeploymentMeasuredVariableID) REFERENCES ODM2Sensors.DeploymentMeasuredVariables (DeploymentMeasuredVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibrationEquations_Actions */ +ALTER TABLE ODM2Equipment.CalibrationEquations ADD CONSTRAINT fk_CalibrationEquations_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibrationEquations_InstrumentOutputVariables */ +ALTER TABLE ODM2Equipment.CalibrationEquations ADD CONSTRAINT fk_CalibrationEquations_InstrumentOutputVariables + FOREIGN KEY (InstrumentOutputVariableID) REFERENCES ODM2Equipment.InstrumentOutputVariables (InstrumentOutputVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FieldCalibrationStandards_Actions */ +ALTER TABLE ODM2Equipment.CalibrationStandards ADD CONSTRAINT fk_FieldCalibrationStandards_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FieldCalibrationStandards_ReferenceMaterials */ +ALTER TABLE ODM2Equipment.CalibrationStandards ADD CONSTRAINT fk_FieldCalibrationStandards_ReferenceMaterials + FOREIGN KEY (ReferenceMaterialID) REFERENCES ODM2DataQuality.ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Equipment_EquipmentModels */ +ALTER TABLE ODM2Equipment.Equipment ADD CONSTRAINT fk_Equipment_EquipmentModels + FOREIGN KEY (EquipmentModelID) REFERENCES ODM2Equipment.EquipmentModels (EquipmentModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Equipment_Organizations */ +ALTER TABLE ODM2Equipment.Equipment ADD CONSTRAINT fk_Equipment_Organizations + FOREIGN KEY (EquipmentVendorID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Equipment_People */ +ALTER TABLE ODM2Equipment.Equipment ADD CONSTRAINT fk_Equipment_People + FOREIGN KEY (EquipmentOwnerID) REFERENCES ODM2Core.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentActions_Actions */ +ALTER TABLE ODM2Equipment.EquipmentActions ADD CONSTRAINT fk_EquipmentActions_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentActions_Equipment */ +ALTER TABLE ODM2Equipment.EquipmentActions ADD CONSTRAINT fk_EquipmentActions_Equipment + FOREIGN KEY (EquipmentID) REFERENCES ODM2Equipment.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentModels_Organizations */ +ALTER TABLE ODM2Equipment.EquipmentModels ADD CONSTRAINT fk_EquipmentModels_Organizations + FOREIGN KEY (ModelManufacturerID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_EquipmentModels */ +ALTER TABLE ODM2Equipment.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_EquipmentModels + FOREIGN KEY (ModelID) REFERENCES ODM2Equipment.EquipmentModels (EquipmentModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_Methods */ +ALTER TABLE ODM2Equipment.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Methods + FOREIGN KEY (InstrumentMethodID) REFERENCES ODM2Core.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_Units */ +ALTER TABLE ODM2Equipment.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Units + FOREIGN KEY (InstrumentRawOutputUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_Variables */ +ALTER TABLE ODM2Equipment.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Variables + FOREIGN KEY (VariableID) REFERENCES ODM2Core.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MaintenanceActions_Actions */ +ALTER TABLE ODM2Equipment.MaintenanceActions ADD CONSTRAINT fk_MaintenanceActions_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedEquipment_Equipment */ +ALTER TABLE ODM2Equipment.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment + FOREIGN KEY (EquipmentID) REFERENCES ODM2Equipment.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedEquipment_Equipment_AreRelated */ +ALTER TABLE ODM2Equipment.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment_AreRelated + FOREIGN KEY (RelatedEquipmentID) REFERENCES ODM2Equipment.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionExtensionPropertyValues_Actions */ +ALTER TABLE ODM2ExtensionProperties.ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE ODM2ExtensionProperties.ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES ODM2ExtensionProperties.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExtensionPropertyValues_Citations */ +ALTER TABLE ODM2ExtensionProperties.CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE ODM2ExtensionProperties.CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES ODM2ExtensionProperties.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ExtensionProperties_Units */ +ALTER TABLE ODM2ExtensionProperties.ExtensionProperties ADD CONSTRAINT fk_ExtensionProperties_Units + FOREIGN KEY (PropertyUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE ODM2ExtensionProperties.MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES ODM2ExtensionProperties.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExtensionPropertyValues_Methods */ +ALTER TABLE ODM2ExtensionProperties.MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_Methods + FOREIGN KEY (MethodID) REFERENCES ODM2Core.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE ODM2ExtensionProperties.ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES ODM2ExtensionProperties.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultExtensionPropertyValues_Results */ +ALTER TABLE ODM2ExtensionProperties.ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES ODM2ExtensionProperties.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures */ +ALTER TABLE ODM2ExtensionProperties.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE ODM2ExtensionProperties.VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES ODM2ExtensionProperties.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExtensionPropertyValues_Variables */ +ALTER TABLE ODM2ExtensionProperties.VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_Variables + FOREIGN KEY (VariableID) REFERENCES ODM2Core.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExternalIdentifiers_Citations */ +ALTER TABLE ODM2ExternalIdentifiers.CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ExternalIdentifierSystems_Organizations */ +ALTER TABLE ODM2ExternalIdentifiers.ExternalIdentifierSystems ADD CONSTRAINT fk_ExternalIdentifierSystems_Organizations + FOREIGN KEY (IdentifierSystemOrganizationID) REFERENCES ODM2Core.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExternalIdentifiers_Methods */ +ALTER TABLE ODM2ExternalIdentifiers.MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_Methods + FOREIGN KEY (MethodID) REFERENCES ODM2Core.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PersonExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PersonExternalIdentifiers_People */ +ALTER TABLE ODM2ExternalIdentifiers.PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_People + FOREIGN KEY (PersonID) REFERENCES ODM2Core.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RefMaterialExtIdentifiers_ExtIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_ExtIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RefMaterialExtIdentifiers_RefMaterials */ +ALTER TABLE ODM2ExternalIdentifiers.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_RefMaterials + FOREIGN KEY (ReferenceMaterialID) REFERENCES ODM2DataQuality.ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExternalIdentifiers_SamplingFeatures */ +ALTER TABLE ODM2ExternalIdentifiers.SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpatialReferenceExternalIdentifiers_SpatialReferences */ +ALTER TABLE ODM2ExternalIdentifiers.SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TaxonomicClassifierExtIDs_ExtIDSystems */ +ALTER TABLE ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_ExtIDSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers */ +ALTER TABLE ODM2ExternalIdentifiers.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers + FOREIGN KEY (TaxonomicClassifierID) REFERENCES ODM2Core.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE ODM2ExternalIdentifiers.VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ODM2ExternalIdentifiers.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExternalIdentifiers_Variables */ +ALTER TABLE ODM2ExternalIdentifiers.VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_Variables + FOREIGN KEY (VariableID) REFERENCES ODM2Core.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionDirectives_Actions */ +ALTER TABLE ODM2LabAnalyses.ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionDirectives_Directives */ +ALTER TABLE ODM2LabAnalyses.ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Directives + FOREIGN KEY (DirectiveID) REFERENCES ODM2LabAnalyses.Directives (DirectiveID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpecimenBatchPostions_FeatureActions */ +ALTER TABLE ODM2LabAnalyses.SpecimenBatchPostions ADD CONSTRAINT fk_SpecimenBatchPostions_FeatureActions + FOREIGN KEY (FeatureActionID) REFERENCES ODM2Core.FeatureActions (FeatureActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_AuthorLists_Citations */ +ALTER TABLE ODM2Provenance.AuthorLists ADD CONSTRAINT fk_AuthorLists_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_AuthorLists_People */ +ALTER TABLE ODM2Provenance.AuthorLists ADD CONSTRAINT fk_AuthorLists_People + FOREIGN KEY (PersonID) REFERENCES ODM2Core.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetCitations_Citations */ +ALTER TABLE ODM2Provenance.DataSetCitations ADD CONSTRAINT fk_DataSetCitations_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetCitations_DataSets */ +ALTER TABLE ODM2Provenance.DataSetCitations ADD CONSTRAINT fk_DataSetCitations_DataSets + FOREIGN KEY (DataSetID) REFERENCES ODM2Core.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodCitations_Citations */ +ALTER TABLE ODM2Provenance.MethodCitations ADD CONSTRAINT fk_MethodCitations_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodCitations_Methods */ +ALTER TABLE ODM2Provenance.MethodCitations ADD CONSTRAINT fk_MethodCitations_Methods + FOREIGN KEY (MethodID) REFERENCES ODM2Core.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedAnnotations_Annotations */ +ALTER TABLE ODM2Provenance.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedAnnotations_Annotations_AreRelated */ +ALTER TABLE ODM2Provenance.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations_AreRelated + FOREIGN KEY (RelatedAnnotationID) REFERENCES ODM2Annotations.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedCitations_Citations */ +ALTER TABLE ODM2Provenance.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations + FOREIGN KEY (CitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedCitations_Citations_AreRelated */ +ALTER TABLE ODM2Provenance.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations_AreRelated + FOREIGN KEY (RelatedCitationID) REFERENCES ODM2Provenance.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedDatasets_DataSets */ +ALTER TABLE ODM2Provenance.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets + FOREIGN KEY (DataSetID) REFERENCES ODM2Core.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedDatasets_DataSets_AreRelated */ +ALTER TABLE ODM2Provenance.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets_AreRelated + FOREIGN KEY (RelatedDatasetID) REFERENCES ODM2Core.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedResults_Results */ +ALTER TABLE ODM2Provenance.RelatedResults ADD CONSTRAINT fk_RelatedResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedResults_Results_AreRelated */ +ALTER TABLE ODM2Provenance.RelatedResults ADD CONSTRAINT fk_RelatedResults_Results_AreRelated + FOREIGN KEY (RelatedResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultDerivationEquations_DerivationEquations */ +ALTER TABLE ODM2Provenance.ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_DerivationEquations + FOREIGN KEY (DerivationEquationID) REFERENCES ODM2Provenance.DerivationEquations (DerivationEquationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultDerivationEquations_Results */ +ALTER TABLE ODM2Provenance.ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResultValues_CategoricalResults */ +ALTER TABLE ODM2Results.CategoricalResultValues ADD CONSTRAINT fk_CategoricalResultValues_CategoricalResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.CategoricalResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResults_Results */ +ALTER TABLE ODM2Results.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResults_SpatialReferences */ +ALTER TABLE ODM2Results.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResultValues_MeasurementResults */ +ALTER TABLE ODM2Results.MeasurementResultValues ADD CONSTRAINT fk_MeasurementResultValues_MeasurementResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.MeasurementResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_AIUnits */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_Results */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_SpatialReferences */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_XUnits */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_YUnits */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_ZUnits */ +ALTER TABLE ODM2Results.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValues_PointCoverageResults */ +ALTER TABLE ODM2Results.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_PointCoverageResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.PointCoverageResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValues_XUnits */ +ALTER TABLE ODM2Results.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValues_YUnits */ +ALTER TABLE ODM2Results.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_Results */ +ALTER TABLE ODM2Results.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_SpatialReferences */ +ALTER TABLE ODM2Results.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_XUnits */ +ALTER TABLE ODM2Results.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_XUnits + FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_YUnits */ +ALTER TABLE ODM2Results.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_YUnits + FOREIGN KEY (IntendedYSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_ZUnits */ +ALTER TABLE ODM2Results.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValues_AIUnits */ +ALTER TABLE ODM2Results.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValues_DUnits */ +ALTER TABLE ODM2Results.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_DUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValues_ProfileResults */ +ALTER TABLE ODM2Results.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_ProfileResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.ProfileResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_DUnits */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT fk_ProfileResults_DUnits + FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_Results */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT fk_ProfileResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_SpatialReferences */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT fk_ProfileResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_TUnits */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT fk_ProfileResults_TUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_XUnits */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT fk_ProfileResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_YUnits */ +ALTER TABLE ODM2Results.ProfileResults ADD CONSTRAINT fk_ProfileResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_AIUnits */ +ALTER TABLE ODM2Results.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_SectionResults */ +ALTER TABLE ODM2Results.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_SectionResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.SectionResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_XUnits */ +ALTER TABLE ODM2Results.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_ZUnits */ +ALTER TABLE ODM2Results.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_Results */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT fk_SectionResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_SpatialReferences */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT fk_SectionResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_TMUnits */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT fk_SectionResults_TMUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_Units */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT fk_SectionResults_Units + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_XUnits */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT fk_SectionResults_XUnits + FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_ZUnits */ +ALTER TABLE ODM2Results.SectionResults ADD CONSTRAINT fk_SectionResults_ZUnits + FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValues_AIUnits */ +ALTER TABLE ODM2Results.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValues_SpectraResults */ +ALTER TABLE ODM2Results.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_SpectraResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.SpectraResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValues_WUnits */ +ALTER TABLE ODM2Results.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_WUnits + FOREIGN KEY (WavelengthUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_Results */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT fk_SpectraResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_SpatialReferences */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT fk_SpectraResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_Units */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT fk_SpectraResults_Units + FOREIGN KEY (IntendedWavelengthSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_XUnits */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT fk_SpectraResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_YUnits */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT fk_SpectraResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_ZUnits */ +ALTER TABLE ODM2Results.SpectraResults ADD CONSTRAINT fk_SpectraResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValues_TimeSeriesResults */ +ALTER TABLE ODM2Results.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_TimeSeriesResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.TimeSeriesResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValues_Units */ +ALTER TABLE ODM2Results.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_Units + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_Results */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_SpatialReferences */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_TUnits */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_TUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_XUnits */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_YUnits */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_ZUnits */ +ALTER TABLE ODM2Results.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_AIUnits */ +ALTER TABLE ODM2Results.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_TrajectoryResults */ +ALTER TABLE ODM2Results.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_TrajectoryResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.TrajectoryResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_XUnits */ +ALTER TABLE ODM2Results.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_YUnits */ +ALTER TABLE ODM2Results.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_ZUnits */ +ALTER TABLE ODM2Results.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_Results */ +ALTER TABLE ODM2Results.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_SpatialReferences */ +ALTER TABLE ODM2Results.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_TSUnits */ +ALTER TABLE ODM2Results.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TSUnits + FOREIGN KEY (IntendedTrajectorySpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_TUnits */ +ALTER TABLE ODM2Results.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResultValues_TransectResults */ +ALTER TABLE ODM2Results.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_TransectResults + FOREIGN KEY (ResultID) REFERENCES ODM2Results.TransectResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_Results */ +ALTER TABLE ODM2Results.TransectResults ADD CONSTRAINT fk_TransectResults_Results + FOREIGN KEY (ResultID) REFERENCES ODM2Core.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_SpatialReferences */ +ALTER TABLE ODM2Results.TransectResults ADD CONSTRAINT fk_TransectResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_TMUnits */ +ALTER TABLE ODM2Results.TransectResults ADD CONSTRAINT fk_TransectResults_TMUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_TSUnits */ +ALTER TABLE ODM2Results.TransectResults ADD CONSTRAINT fk_TransectResults_TSUnits + FOREIGN KEY (IntendedTransectSpacingUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_Units */ +ALTER TABLE ODM2Results.TransectResults ADD CONSTRAINT fk_TransectResults_Units + FOREIGN KEY (ZLocationUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureParents_FeaturesParent */ +ALTER TABLE ODM2SamplingFeatures.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_FeaturesParent + FOREIGN KEY (RelatedFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureParents_SamplingFeatures */ +ALTER TABLE ODM2SamplingFeatures.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureParents_SpatialOffsets */ +ALTER TABLE ODM2SamplingFeatures.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SpatialOffsets + FOREIGN KEY (SpatialOffsetID) REFERENCES ODM2SamplingFeatures.SpatialOffsets (SpatialOffsetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Sites_SamplingFeatures */ +ALTER TABLE ODM2SamplingFeatures.Sites ADD CONSTRAINT fk_Sites_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Sites_SpatialReferences */ +ALTER TABLE ODM2SamplingFeatures.Sites ADD CONSTRAINT fk_Sites_SpatialReferences + FOREIGN KEY (LatLonDatumID) REFERENCES ODM2SamplingFeatures.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpecimenTaxonomicClassifiers_Specimens */ +ALTER TABLE ODM2SamplingFeatures.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_Specimens + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2SamplingFeatures.Specimens (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers */ +ALTER TABLE ODM2SamplingFeatures.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers + FOREIGN KEY (TaxonomicClassifierID) REFERENCES ODM2Core.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Specimens_SamplingFeatures */ +ALTER TABLE ODM2SamplingFeatures.Specimens ADD CONSTRAINT fk_Specimens_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES ODM2Core.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataLoggerFiles_DataloggerProgramFiles */ +ALTER TABLE ODM2Sensors.DataLoggerFiles ADD CONSTRAINT fk_DataLoggerFiles_DataloggerProgramFiles + FOREIGN KEY (ProgramID) REFERENCES ODM2Sensors.DataloggerProgramFiles (ProgramID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataloggerProgramFiles_Affiliations */ +ALTER TABLE ODM2Sensors.DataloggerProgramFiles ADD CONSTRAINT fk_DataloggerProgramFiles_Affiliations + FOREIGN KEY (AffiliationID) REFERENCES ODM2Core.Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentActions_Actions */ +ALTER TABLE ODM2Sensors.DeploymentActions ADD CONSTRAINT fk_DeploymentActions_Actions + FOREIGN KEY (ActionID) REFERENCES ODM2Core.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_DataLoggerFiles */ +ALTER TABLE ODM2Sensors.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_DataLoggerFiles + FOREIGN KEY (DataloggerFileID) REFERENCES ODM2Sensors.DataLoggerFiles (DataLoggerFileID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_DeploymentActions */ +ALTER TABLE ODM2Sensors.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_DeploymentActions + FOREIGN KEY (ActionID) REFERENCES ODM2Sensors.DeploymentActions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_InstrumentOutputVariables */ +ALTER TABLE ODM2Sensors.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_InstrumentOutputVariables + FOREIGN KEY (InstrumentOutputVariableID) REFERENCES ODM2Equipment.InstrumentOutputVariables (InstrumentOutputVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_RI_Units */ +ALTER TABLE ODM2Sensors.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_RI_Units + FOREIGN KEY (RecordingIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_SI_Units */ +ALTER TABLE ODM2Sensors.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_SI_Units + FOREIGN KEY (ScanIntervalUnitsID) REFERENCES ODM2Core.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; \ No newline at end of file diff --git a/tests/schemas/postgresql/olderversions/ODM2_DDL_for_PostgreSQL9.3PostGIS2.1_postprocessed.sql b/tests/schemas/postgresql/olderversions/ODM2_DDL_for_PostgreSQL9.3PostGIS2.1_postprocessed.sql new file mode 100644 index 0000000..db7e50d --- /dev/null +++ b/tests/schemas/postgresql/olderversions/ODM2_DDL_for_PostgreSQL9.3PostGIS2.1_postprocessed.sql @@ -0,0 +1,3966 @@ + /* Post-processed DDL based on DbWrench export. 2014-8-18 10pm PDT */ + +-- IF THIS DDL SCRIPT IS TO *CREATE* THE DATABASE ITSELF, +-- WILL NEED TO FIRST KNOW THE DATABASE NAME AND ROLES TO BE USED. + +/* Add single base schema for all odm2 entities */ +CREATE SCHEMA odm2; +COMMENT ON SCHEMA odm2 IS 'Schema holding all ODM2 (2.0) entities (tables, etc).'; +/* ================================================================ + ================================================================ */ + +/* Generate from DbWrench: 2014-8-2 10pm PDT */ + + + + + + + + + + + + + + + + +/************ Update: Tables ***************/ + +/******************** Add Table: odm2.ActionAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ActionAnnotations +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ActionAnnotations ADD CONSTRAINT pkActionAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ActionAnnotations.ActionID IS 'Foreign key of the Action being annotated.'; + +COMMENT ON COLUMN odm2.ActionAnnotations.AnnotationID IS 'Foreign key of the annotation being added to the Action.'; + +COMMENT ON TABLE odm2.ActionAnnotations IS 'Notes for or groups of one or more Actions.'; + + +/******************** Add Table: odm2.Annotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Annotations +( + AnnotationID INTEGER NOT NULL, + AnnotationTypeCV VARCHAR(255) NOT NULL, + AnnotationCode VARCHAR(50) NULL, + AnnotationText VARCHAR(500) NOT NULL, + AnnotationDateTime TIMESTAMP NULL, + AnnotationUTCOffset INTEGER NULL, + AnnotationLink VARCHAR(255) NULL, + AnnotatorID INTEGER NULL, + CitationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Annotations ADD CONSTRAINT pkAnnotations + PRIMARY KEY (AnnotationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Annotations.AnnotationID IS 'Primary key for Annotations.'; + +COMMENT ON COLUMN odm2.Annotations.AnnotationTypeCV IS 'CV for types of annotations.'; + +COMMENT ON COLUMN odm2.Annotations.AnnotationCode IS 'A short text code that identifies the annotation (e.g., A'' for Approved data).'; + +COMMENT ON COLUMN odm2.Annotations.AnnotationText IS 'Full text of the annotation.'; + +COMMENT ON COLUMN odm2.Annotations.AnnotationDateTime IS 'Date and time at which the annotation was created.'; + +COMMENT ON COLUMN odm2.Annotations.AnnotationUTCOffset IS 'UTCOffset for the annotation creation date/time.'; + +COMMENT ON COLUMN odm2.Annotations.AnnotatorID IS 'Foregn key identifier for the person that created the annotation'; + +COMMENT ON TABLE odm2.Annotations IS 'Contains text annotations added to one or more records within various ODM2 tables. Annotations can be used to record notes about a particular SamplingFeature, Action, Result, etc. or to create groups of records such as Specimens, Sites, People, etc.'; + + +/******************** Add Table: odm2.CategoricalResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CategoricalResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CategoricalResultValueAnnotations ADD CONSTRAINT pkCategoricalResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.CategoricalResultValueAnnotations IS 'Annotations for Categorical ResultValues'; + + +/******************** Add Table: odm2.EquipmentAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.EquipmentAnnotations +( + BridgeID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.EquipmentAnnotations ADD CONSTRAINT pkEquipmentAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.EquipmentAnnotations IS 'Bridge table linking Annotations to Equipment'; + + +/******************** Add Table: odm2.MeasurementResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MeasurementResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MeasurementResultValueAnnotations ADD CONSTRAINT pkMeasurementResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.MeasurementResultValueAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.MeasurementResultValueAnnotations.ValueID IS 'Foreign key of the result value being annotated'; + +COMMENT ON COLUMN odm2.MeasurementResultValueAnnotations.AnnotationID IS 'Foreign key of the annotation applied to the result value'; + +COMMENT ON TABLE odm2.MeasurementResultValueAnnotations IS 'Annotations for Measurement ResultValues'; + + +/******************** Add Table: odm2.MethodAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MethodAnnotations +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MethodAnnotations ADD CONSTRAINT pkMethodAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.MethodAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.MethodAnnotations.MethodID IS 'Foreign key of the method being annotated'; + +COMMENT ON COLUMN odm2.MethodAnnotations.AnnotationID IS 'Foreign key of the annotation added to the method'; + +COMMENT ON TABLE odm2.MethodAnnotations IS 'Notes for or groups of one or more Methods.'; + + +/******************** Add Table: odm2.PointCoverageResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.PointCoverageResultValueAnnotations +( + BridgeID BIGINT NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.PointCoverageResultValueAnnotations ADD CONSTRAINT pkPointCoverageResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.PointCoverageResultValueAnnotations IS 'Annotations for Point Coverage ResultValues'; + + +/******************** Add Table: odm2.ProfileResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ProfileResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ProfileResultValueAnnotations ADD CONSTRAINT pkProfileResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.ProfileResultValueAnnotations IS 'Annotations for Profile ResultValues'; + + +/******************** Add Table: odm2.ResultAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ResultAnnotations +( + BridgeID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL, + BeginDateTime TIMESTAMP NOT NULL, + EndDateTime TIMESTAMP NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ResultAnnotations ADD CONSTRAINT pkResultAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ResultAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ResultAnnotations.ResultID IS 'Foreign key of the result being annotated'; + +COMMENT ON COLUMN odm2.ResultAnnotations.AnnotationID IS 'Foreign key of the annotation added to the result'; + +COMMENT ON COLUMN odm2.ResultAnnotations.BeginDateTime IS 'Beginning date/time of the annotation'; + +COMMENT ON COLUMN odm2.ResultAnnotations.EndDateTime IS 'Ending date/time of the annotation'; + +COMMENT ON TABLE odm2.ResultAnnotations IS 'Notes for or groups of one or more Results [sets].'; + + +/******************** Add Table: odm2.SamplingFeatureAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SamplingFeatureAnnotations +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SamplingFeatureAnnotations ADD CONSTRAINT pkSamplingFeatureAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SamplingFeatureAnnotations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.SamplingFeatureAnnotations.SamplingFeatureID IS 'Foreign key of the SamplingFeature being annotated.'; + +COMMENT ON COLUMN odm2.SamplingFeatureAnnotations.AnnotationID IS 'Foreign key of the Annotation applied to the SamplingFeature.'; + +COMMENT ON TABLE odm2.SamplingFeatureAnnotations IS 'Notes for or groups of one or more Sampling Features.'; + + +/******************** Add Table: odm2.SectionResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SectionResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SectionResultValueAnnotations ADD CONSTRAINT pkSectionResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.SectionResultValueAnnotations IS 'Annotations for Section ResultValues'; + + +/******************** Add Table: odm2.SpectraResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpectraResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpectraResultValueAnnotations ADD CONSTRAINT pkSpectraResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.SpectraResultValueAnnotations IS 'Annotations for Spectra ResultValues'; + + +/******************** Add Table: odm2.TimeSeriesResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TimeSeriesResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TimeSeriesResultValueAnnotations ADD CONSTRAINT pkTimeSeriesResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.TimeSeriesResultValueAnnotations IS 'Annotations for Time Series ResultValues'; + + +/******************** Add Table: odm2.TrajectoryResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TrajectoryResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TrajectoryResultValueAnnotations ADD CONSTRAINT pkTrajectoryResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.TrajectoryResultValueAnnotations IS 'Annotations for Trajectory ResultValues'; + + +/******************** Add Table: odm2.TransectResultValueAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TransectResultValueAnnotations +( + BridgeID INTEGER NOT NULL, + ValueID BIGINT NOT NULL, + AnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TransectResultValueAnnotations ADD CONSTRAINT pkTransectResultValueAnnotations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON TABLE odm2.TransectResultValueAnnotations IS 'Annotations for Transect ResultValues'; + + +/******************** Add Table: odm2.CVTerms ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CVTerms +( + TermID INTEGER NOT NULL, + Term VARCHAR(255) NOT NULL, + Definition VARCHAR(500) NULL, + ODMVocabulary VARCHAR(255) NOT NULL, + SourceVocabulary VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CVTerms ADD CONSTRAINT pkCVTerms + PRIMARY KEY (TermID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.CVTerms.TermID IS 'Primary key'; + +COMMENT ON COLUMN odm2.CVTerms.Term IS 'Controlled vocabulary term'; + +COMMENT ON COLUMN odm2.CVTerms.Definition IS 'Definition of term'; + +COMMENT ON COLUMN odm2.CVTerms.ODMVocabulary IS 'Name of the ODM controlled vocabulary to which the term belongs'; + +COMMENT ON COLUMN odm2.CVTerms.SourceVocabulary IS 'Name and/or description of the source vocabulary from which the term was derived'; + +COMMENT ON TABLE odm2.CVTerms IS 'Table containing terms used in the controlled vocabularies of odm2.'; + + +/******************** Add Table: odm2.ActionBy ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ActionBy +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + AffiliationID INTEGER NOT NULL, + IsActionLead BOOL NOT NULL, + RoleDescription VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ActionBy ADD CONSTRAINT pkActionBy + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ActionBy.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ActionBy.ActionID IS 'Foreign key identifier of an action.'; + +COMMENT ON COLUMN odm2.ActionBy.AffiliationID IS 'Foreign key identifier of a person'; + +COMMENT ON COLUMN odm2.ActionBy.IsActionLead IS 'Indicator of whether the affiliated person was the lead for the action'; + +COMMENT ON COLUMN odm2.ActionBy.RoleDescription IS 'Foreign key identifier for a role played by a person in performing an action'; + +COMMENT ON TABLE odm2.ActionBy IS 'Affiliates people with actions and describes thier role in the action.'; + + +/******************** Add Table: odm2.Actions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Actions +( + ActionID INTEGER NOT NULL, + ActionTypeCV VARCHAR(255) NOT NULL, + MethodID INTEGER NOT NULL, + BeginDateTime TIMESTAMP NOT NULL, + BeginDateTimeUTCOffset INTEGER NOT NULL, + EndDateTime TIMESTAMP NULL, + EndDateTimeUTCOffset INTEGER NULL, + ActionDescription VARCHAR(500) NULL, + ActionFileLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Actions ADD CONSTRAINT pkActions + PRIMARY KEY (ActionID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Actions.ActionID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.Actions.ActionTypeCV IS 'CV term describing the type of action (e.g., observation, sample collection, sample analysis)'; + +COMMENT ON COLUMN odm2.Actions.MethodID IS 'Foreign key identifier for the method used to complete the action'; + +COMMENT ON COLUMN odm2.Actions.BeginDateTime IS 'The date/time at which the action began'; + +COMMENT ON COLUMN odm2.Actions.BeginDateTimeUTCOffset IS 'The UTCOffset for the BeginDateTime'; + +COMMENT ON COLUMN odm2.Actions.EndDateTime IS 'The date/time at which the action ended'; + +COMMENT ON COLUMN odm2.Actions.EndDateTimeUTCOffset IS 'The UTCOffset of for the EndDateTime'; + +COMMENT ON COLUMN odm2.Actions.ActionDescription IS 'Text that describes the action'; + +COMMENT ON COLUMN odm2.Actions.ActionFileLink IS 'A URL or path to a file created by or used by the Action, such as instrument output or configuration.'; + +COMMENT ON TABLE odm2.Actions IS 'Describes actions (e.g., observation, sample collection, sample analysis, field visits, field activities, etc.)'; + + +/******************** Add Table: odm2.Affiliations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Affiliations +( + AffiliationID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + OrganizationID INTEGER NULL, + IsPrimaryOrganizationContact BOOL NULL, + AffiliationStartDate DATE NOT NULL, + AffiliationEndDate DATE NULL, + PrimaryPhone VARCHAR(50) NULL, + PrimaryEmail VARCHAR(255) NOT NULL, + PrimaryAddress VARCHAR(255) NULL, + PersonLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Affiliations ADD CONSTRAINT pkAffiliations + PRIMARY KEY (AffiliationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Affiliations.AffiliationID IS 'Primay key'; + +COMMENT ON COLUMN odm2.Affiliations.PersonID IS 'Foreign key identifer for a person'; + +COMMENT ON COLUMN odm2.Affiliations.OrganizationID IS 'Foreigh key identifier for an organization'; + +COMMENT ON COLUMN odm2.Affiliations.IsPrimaryOrganizationContact IS 'Boolean indication of whether the person is the organizations primary contact person'; + +COMMENT ON COLUMN odm2.Affiliations.AffiliationStartDate IS 'The date on which the person became affiliated with the organization'; + +COMMENT ON COLUMN odm2.Affiliations.AffiliationEndDate IS 'The date on which the person''s affiliation with the organization ended'; + +COMMENT ON COLUMN odm2.Affiliations.PrimaryPhone IS 'The primary phone number of the person'; + +COMMENT ON COLUMN odm2.Affiliations.PrimaryEmail IS 'The primary email address of the person'; + +COMMENT ON COLUMN odm2.Affiliations.PrimaryAddress IS 'The primary mailing address of the person, including street, city, state, zip, and country'; + +COMMENT ON COLUMN odm2.Affiliations.PersonLink IS 'A URL for the website for a person'; + +COMMENT ON TABLE odm2.Affiliations IS 'Describes affiliations of people with organizations.'; + + +/******************** Add Table: odm2.DataSets ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DataSets +( + DataSetID INTEGER NOT NULL, + DataSetUUID OID NOT NULL, + DataSetTypeCV VARCHAR(255) NOT NULL, + DataSetCode VARCHAR(50) NOT NULL, + DataSetTitle VARCHAR(255) NOT NULL, + DataSetAbstract VARCHAR(500) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DataSets ADD CONSTRAINT pkDataSets + PRIMARY KEY (DataSetID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DataSets.DataSetID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.DataSets.DataSetTypeCV IS 'CV term(s) describing the Topic Category'; + +COMMENT ON COLUMN odm2.DataSets.DataSetCode IS 'A short text code identifying the dataset'; + +COMMENT ON COLUMN odm2.DataSets.DataSetTitle IS 'A text title for the dataset'; + +COMMENT ON COLUMN odm2.DataSets.DataSetAbstract IS 'A text abstract describing the dataset'; + +COMMENT ON TABLE odm2.DataSets IS 'Describes groupings of observation results that can be considered datasets'; + + +/******************** Add Table: odm2.DataSetsResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DataSetsResults +( + BridgeID INTEGER NOT NULL, + DataSetID INTEGER NOT NULL, + ResultID BIGINT NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DataSetsResults ADD CONSTRAINT pkDataSetsResults + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DataSetsResults.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.DataSetsResults.DataSetID IS 'Foreign key identifier of the DataSet'; + +COMMENT ON COLUMN odm2.DataSetsResults.ResultID IS 'Foreign key identifier of the Result'; + +COMMENT ON TABLE odm2.DataSetsResults IS 'Lists the Results that are grouped into a DataSet'; + + +/******************** Add Table: odm2.FeatureActions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.FeatureActions +( + FeatureActionID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + ActionID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.FeatureActions ADD CONSTRAINT pkFeatureActions + PRIMARY KEY (FeatureActionID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.FeatureActions.FeatureActionID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.FeatureActions.SamplingFeatureID IS 'Foreign key identifier for the SamplingFeature on which or at which the Action was performed'; + +COMMENT ON COLUMN odm2.FeatureActions.ActionID IS 'Foreign key identifier of the Action that was performed'; + + +/******************** Add Table: odm2.Methods ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Methods +( + MethodID INTEGER NOT NULL, + MethodTypeCV VARCHAR(255) NOT NULL, + MethodCode VARCHAR(50) NOT NULL, + MethodName VARCHAR(255) NOT NULL, + MethodDescription VARCHAR(500) NULL, + MethodLink VARCHAR(255) NULL, + OrganizationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Methods ADD CONSTRAINT pkMethods + PRIMARY KEY (MethodID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Methods.MethodID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.Methods.MethodTypeCV IS 'CV term describing the type of method (e.g., sample collection, laboratory analytical, field, sample prepratation, etc.)'; + +COMMENT ON COLUMN odm2.Methods.MethodCode IS 'A text code identifiying the method (e.g., EPA 650.2)'; + +COMMENT ON COLUMN odm2.Methods.MethodName IS 'Full text name of the method'; + +COMMENT ON COLUMN odm2.Methods.MethodDescription IS 'Full text description of the method'; + +COMMENT ON COLUMN odm2.Methods.MethodLink IS 'A URL to a full description of the method'; + +COMMENT ON COLUMN odm2.Methods.OrganizationID IS 'Foreign key identifier for the Organization with which the method is affiliated'; + +COMMENT ON TABLE odm2.Methods IS 'Describes methods used to perform actions recorded in ODM (e.g., observation methods, sample analysis methods, sample preparation methods, etc.)'; + + +/******************** Add Table: odm2.Organizations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Organizations +( + OrganizationID INTEGER NOT NULL, + OrganizationTypeCV VARCHAR(255) NOT NULL, + OrganizationCode VARCHAR(50) NOT NULL, + OrganizationName VARCHAR(255) NOT NULL, + OrganizationDescription VARCHAR(500) NULL, + OrganizationLink VARCHAR(255) NULL, + ParentOrganizationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Organizations ADD CONSTRAINT pkOrganizations + PRIMARY KEY (OrganizationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Organizations.OrganizationID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.Organizations.OrganizationTypeCV IS 'CV term defining the type of organization (e.g., government agency, university, etc.)'; + +COMMENT ON COLUMN odm2.Organizations.OrganizationCode IS 'A text code identifying the Organization (e.g., USGS)'; + +COMMENT ON COLUMN odm2.Organizations.OrganizationName IS 'The full text name of the organization'; + +COMMENT ON COLUMN odm2.Organizations.OrganizationDescription IS 'A text description of the organization'; + +COMMENT ON COLUMN odm2.Organizations.OrganizationLink IS 'A URL for the organization''s website'; + +COMMENT ON COLUMN odm2.Organizations.ParentOrganizationID IS 'Foreign key of the parent organization of the current organization'; + +COMMENT ON TABLE odm2.Organizations IS 'Describes organizations - as in research groups, companies, universities, etc.'; + + +/******************** Add Table: odm2.People ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.People +( + PersonID INTEGER NOT NULL, + PersonFirstName VARCHAR(255) NOT NULL, + PersonMiddleName VARCHAR(255) NULL, + PersonLastName VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.People ADD CONSTRAINT pkPeople + PRIMARY KEY (PersonID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.People.PersonID IS 'Primary Key'; + +COMMENT ON COLUMN odm2.People.PersonFirstName IS 'First name of the person'; + +COMMENT ON COLUMN odm2.People.PersonMiddleName IS 'Middle name of the person'; + +COMMENT ON COLUMN odm2.People.PersonLastName IS 'Last name of the person'; + +COMMENT ON TABLE odm2.People IS 'Describes people.'; + + +/******************** Add Table: odm2.ProcessingLevels ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ProcessingLevels +( + ProcessingLevelID INTEGER NOT NULL, + ProcessingLevelCode VARCHAR(50) NOT NULL, + Definition VARCHAR(500) NULL, + Explanation VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ProcessingLevels ADD CONSTRAINT pkProcessingLevels + PRIMARY KEY (ProcessingLevelID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ProcessingLevels.ProcessingLevelID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.ProcessingLevels.ProcessingLevelCode IS 'Text code identifying the level of processing the Result has been subject to'; + +COMMENT ON COLUMN odm2.ProcessingLevels.Definition IS 'Text defintion of the processing level'; + +COMMENT ON COLUMN odm2.ProcessingLevels.Explanation IS 'Text explanation of the processing level'; + +COMMENT ON TABLE odm2.ProcessingLevels IS 'Describes the processing level of Results'; + + +/******************** Add Table: odm2.RelatedActions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedActions +( + RelationID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedActionID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedActions ADD CONSTRAINT pkRelatedActions + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.RelatedActions.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN odm2.RelatedActions.ActionID IS 'Foreign key identifier of the Action'; + +COMMENT ON COLUMN odm2.RelatedActions.RelationshipTypeCV IS 'Text description of the relationship between two Actions'; + +COMMENT ON COLUMN odm2.RelatedActions.RelatedActionID IS 'Foreign key identifier for a Action related to the Action identified by ActionID'; + +COMMENT ON TABLE odm2.RelatedActions IS 'Describes Actions that are related to one another.'; + + +/******************** Add Table: odm2.Results ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Results +( + ResultID BIGINT NOT NULL, + ResultUUID OID NOT NULL, + FeatureActionID INTEGER NOT NULL, + ResultTypeCV VARCHAR(255) NOT NULL, + VariableID INTEGER NOT NULL, + UnitsID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NULL, + ProcessingLevelID INTEGER NOT NULL, + ResultDateTime TIMESTAMP NULL, + ResultDateTimeUTCOffset BIGINT NULL, + ValidDateTime TIMESTAMP NULL, + ValidDateTimeUTCOffset BIGINT NULL, + StatusCV VARCHAR(255) NULL, + SampledMediumCV VARCHAR(255) NOT NULL, + ValueCount INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Results ADD CONSTRAINT pkResults + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Results.ResultID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.Results.ResultUUID IS 'Universally unique identifier for the Result'; + +COMMENT ON COLUMN odm2.Results.FeatureActionID IS 'Foreign key identifier for the combinaton of SamplingFeature and Action that created the Result'; + +COMMENT ON COLUMN odm2.Results.ResultTypeCV IS 'CV term describing the result type (e.g., time series, measurement, etc.)'; + +COMMENT ON COLUMN odm2.Results.VariableID IS 'Foreign key identifier for the Variable of the result'; + +COMMENT ON COLUMN odm2.Results.UnitsID IS 'Foreign key identifier for the Units of the result'; + +COMMENT ON COLUMN odm2.Results.TaxonomicClassifierID IS 'Foreign key identifier for a TaxonomicClassifier for the variable (if one exists)'; + +COMMENT ON COLUMN odm2.Results.ProcessingLevelID IS 'Foreign key identifier for the ProcessingLevel of the result'; + +COMMENT ON COLUMN odm2.Results.ResultDateTime IS 'Date and time at which the result became available (could be used as analysis time for samples)'; + +COMMENT ON COLUMN odm2.Results.ResultDateTimeUTCOffset IS 'UTDCOffset of ResultDateTime'; + +COMMENT ON COLUMN odm2.Results.ValidDateTime IS 'Date and time for which the result is valid (e.g., for a forecast result). Should probably be expressed as a duration'; + +COMMENT ON COLUMN odm2.Results.ValidDateTimeUTCOffset IS 'UTCOffset of ValidDateTime'; + +COMMENT ON COLUMN odm2.Results.StatusCV IS 'Status of the result (e.g., finished, ongoing, etc.)'; + +COMMENT ON COLUMN odm2.Results.SampledMediumCV IS 'CV term defining the environmental medium that the result represents (e.g., air, soil, water)'; + +COMMENT ON COLUMN odm2.Results.ValueCount IS 'Number of data values contained within the result'; + +COMMENT ON TABLE odm2.Results IS 'Describes the results of observation actions (e.g., groups of one or more numeric data values that result from an observation action)'; + + +/******************** Add Table: odm2.SamplingFeatures ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SamplingFeatures +( + SamplingFeatureID INTEGER NOT NULL, + SamplingFeatureTypeCV VARCHAR(255) NOT NULL, + SamplingFeatureCode VARCHAR(50) NOT NULL, + SamplingFeatureName VARCHAR(255) NULL, + SamplingFeatureDescription VARCHAR(500) NULL, + SamplingFeatureGeotypeCV VARCHAR(255) NULL, + FeatureGeometry GEOMETRY NULL, + Elevation_m FLOAT NULL, + ElevationDatumCV VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SamplingFeatures ADD CONSTRAINT pkSamplingFeatures + PRIMARY KEY (SamplingFeatureID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SamplingFeatures.SamplingFeatureID IS 'Primary key.'; + +COMMENT ON COLUMN odm2.SamplingFeatures.SamplingFeatureTypeCV IS 'CV term descripting the type of sampling feature.'; + +COMMENT ON COLUMN odm2.SamplingFeatures.SamplingFeatureCode IS 'A short but meaningful text identifier for the sampling feature.'; + +COMMENT ON COLUMN odm2.SamplingFeatures.SamplingFeatureName IS 'Sampling Feature name (free text).'; + +COMMENT ON COLUMN odm2.SamplingFeatures.SamplingFeatureDescription IS 'Text describing the sampling feature.'; + +COMMENT ON COLUMN odm2.SamplingFeatures.SamplingFeatureGeotypeCV IS 'Dimensionality of SamplingFeature; point2d, line2d, etc.'; + +COMMENT ON COLUMN odm2.SamplingFeatures.FeatureGeometry IS 'The location geometry of the sampling feature on the Earth. Can be a Point, Curve (profile, trajectory, etc), Surface (flat polygons, etc) or Solid/Volume (although often limited to 2D geometries). '; + +COMMENT ON COLUMN odm2.SamplingFeatures.Elevation_m IS 'The elevation of the sampling feature in meters, or in the case of Specimen, the elevation from where the SamplingFeature.Specimen was collected'; + +COMMENT ON COLUMN odm2.SamplingFeatures.ElevationDatumCV IS 'The code for the vertical geodetic datum that specifies the zero point for the Sampling Feature Elevation.'; + +COMMENT ON TABLE odm2.SamplingFeatures IS 'Describes the sampling features on which observations are made.'; + + +/******************** Add Table: odm2.TaxonomicClassifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TaxonomicClassifiers +( + TaxonomicClassifierID INTEGER NOT NULL, + TaxonomicClassifierTypeCV VARCHAR(255) NOT NULL, + TaxonomicClassifierName VARCHAR(255) NOT NULL, + TaxonomicClassifierCommonName VARCHAR(255) NULL, + TaxonomicClassifierDescription VARCHAR(500) NULL, + ParentTaxonomicClassifierID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TaxonomicClassifiers ADD CONSTRAINT pkTaxonomicClassifiers + PRIMARY KEY (TaxonomicClassifierID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.TaxonomicClassifiers.TaxonomicClassifierID IS 'ID'; + +COMMENT ON COLUMN odm2.TaxonomicClassifiers.TaxonomicClassifierTypeCV IS 'Controlled Vocabulary for the type of taxonomy'; + +COMMENT ON COLUMN odm2.TaxonomicClassifiers.TaxonomicClassifierName IS 'Taxonomic classification'; + +COMMENT ON COLUMN odm2.TaxonomicClassifiers.TaxonomicClassifierCommonName IS 'Taxonomic classification using a common name'; + +COMMENT ON COLUMN odm2.TaxonomicClassifiers.TaxonomicClassifierDescription IS 'Description or remarks about Taxonomic Classifier'; + +COMMENT ON COLUMN odm2.TaxonomicClassifiers.ParentTaxonomicClassifierID IS 'ID of the Classifier that is one higher level in the taxonomic hiearchy'; + + +/******************** Add Table: odm2.Units ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Units +( + UnitsID INTEGER NOT NULL, + UnitsTypeCV VARCHAR(255) NOT NULL, + UnitsAbbreviation VARCHAR(50) NOT NULL, + UnitsName VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Units ADD CONSTRAINT pkUnits + PRIMARY KEY (UnitsID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Units.UnitsID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.Units.UnitsTypeCV IS 'CV term that defines the unit type'; + +COMMENT ON COLUMN odm2.Units.UnitsAbbreviation IS 'Text abbreviation for the unit'; + +COMMENT ON COLUMN odm2.Units.UnitsName IS 'Text name for the unit'; + +COMMENT ON TABLE odm2.Units IS 'Describes units of measure for varibles and time'; + + +/******************** Add Table: odm2.Variables ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Variables +( + VariableID INTEGER NOT NULL, + VariableTypeCV VARCHAR(255) NOT NULL, + VariableCode VARCHAR(50) NOT NULL, + VariableNameCV VARCHAR(255) NOT NULL, + VariableDefinition VARCHAR(500) NULL, + SpeciationCV VARCHAR(255) NULL, + NoDataValue DOUBLE PRECISION NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Variables ADD CONSTRAINT pkVariables + PRIMARY KEY (VariableID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Variables.VariableID IS 'Primary key'; + +COMMENT ON COLUMN odm2.Variables.VariableTypeCV IS 'Controlled vocabulary for the type of variable'; + +COMMENT ON COLUMN odm2.Variables.VariableCode IS 'Unique text code for the variable'; + +COMMENT ON COLUMN odm2.Variables.VariableNameCV IS 'Controlled vocabulary for the name of the variable'; + +COMMENT ON COLUMN odm2.Variables.VariableDefinition IS 'Text definition of the variable'; + +COMMENT ON COLUMN odm2.Variables.SpeciationCV IS 'Speciation for the variable (e.g., expressed as P or as PO4)'; + +COMMENT ON COLUMN odm2.Variables.NoDataValue IS 'A numeric value indicating no data.'; + +COMMENT ON TABLE odm2.Variables IS 'Stores information about measured properties.'; + + +/******************** Add Table: odm2.DataQuality ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DataQuality +( + DataQualityID INTEGER NOT NULL, + DataQualityTypeCV VARCHAR(255) NOT NULL, + DataQualityCode VARCHAR(255) NOT NULL, + DataQualityValue FLOAT NULL, + DataQualityValueUnitsID INTEGER NULL, + DataQualityDescription VARCHAR(500) NULL, + DataQualityLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DataQuality ADD CONSTRAINT pkDataQuality + PRIMARY KEY (DataQualityID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DataQuality.DataQualityID IS 'Primary Key for DataQuality entity'; + +COMMENT ON COLUMN odm2.DataQuality.DataQualityTypeCV IS ' i.e. Precision_2sigma, MethodDetectionLimit, ReportingLevel, 95%ConfidenceNoFalsePositives.'; + +COMMENT ON COLUMN odm2.DataQuality.DataQualityCode IS 'Code for DataQualityType'; + +COMMENT ON COLUMN odm2.DataQuality.DataQualityValue IS 'Numeric value of the DataQuality'; + +COMMENT ON COLUMN odm2.DataQuality.DataQualityValueUnitsID IS 'Units for the DataQualityValue'; + +COMMENT ON COLUMN odm2.DataQuality.DataQualityDescription IS 'Text description of the DataQuality metadata'; + +COMMENT ON COLUMN odm2.DataQuality.DataQualityLink IS 'URL or path to a file or other resource supporting the DataQuality metadata'; + + +/******************** Add Table: odm2.ReferenceMaterialValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ReferenceMaterialValues +( + ReferenceMaterialValueID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL, + ReferenceMaterialValue FLOAT NOT NULL, + ReferenceMaterialAccuracy FLOAT NULL, + VariableID INTEGER NOT NULL, + UnitsID INTEGER NOT NULL, + CitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ReferenceMaterialValues ADD CONSTRAINT pkReferenceMaterialValues + PRIMARY KEY (ReferenceMaterialValueID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ReferenceMaterialValues.ReferenceMaterialValueID IS 'The primary key for ReferenceMaterialValues'; + +COMMENT ON COLUMN odm2.ReferenceMaterialValues.ReferenceMaterialID IS 'A foreign key to ReferenceMaterials'; + +COMMENT ON COLUMN odm2.ReferenceMaterialValues.ReferenceMaterialValue IS 'The established property value for the ReferenceMaterial.'; + +COMMENT ON COLUMN odm2.ReferenceMaterialValues.ReferenceMaterialAccuracy IS 'The established accuracy of the property value for the ReferenceMaterial, in the same units as the value.'; + +COMMENT ON COLUMN odm2.ReferenceMaterialValues.VariableID IS 'The property that is quantified by the ReferenceMaterialValue'; + +COMMENT ON COLUMN odm2.ReferenceMaterialValues.UnitsID IS 'The units for the ReferenceMaterialValue and ReferenceMaterialAccuracy'; + +COMMENT ON COLUMN odm2.ReferenceMaterialValues.CitationID IS 'The attribution for source that established the ReferenceMaterialValue and ReferenceMaterialAccuracy'; + +COMMENT ON TABLE odm2.ReferenceMaterialValues IS 'Accepted property values for a Reference Material, which can be certified by an agency or vendor, established in the literature by the research community, or developed for in house use only by a laboratory.'; + + +/******************** Add Table: odm2.ReferenceMaterials ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ReferenceMaterials +( + ReferenceMaterialID INTEGER NOT NULL, + ReferenceMaterialMediumCV VARCHAR(255) NOT NULL, + ReferenceMaterialOrganizationID INTEGER NOT NULL, + ReferenceMaterialCode VARCHAR(50) NOT NULL, + ReferenceMaterialLotCode VARCHAR(255) NULL, + ReferenceMaterialPurchaseDate TIMESTAMP NULL, + ReferenceMaterialExpirationDate TIMESTAMP NULL, + ReferenceMaterialCertificateLink VARCHAR(255) NULL, + SamplingFeatureID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ReferenceMaterials ADD CONSTRAINT pkReferenceMaterials + PRIMARY KEY (ReferenceMaterialID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialID IS 'The primary key to the Reference Material used to calibrate an instrument, assess a measurement method, or assign values to unknown specimens'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialMediumCV IS 'The medium of a Reference Material, from the same CV as SpecimenMediumCV. Examples include: water, sediment, air, tissue, etc.'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialOrganizationID IS 'A foreign key to the Organization that manufactured and established property values for the ReferenceMaterial'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialCode IS 'A code or short name used to identify the reference material.'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialLotCode IS 'The lot, or manufactured batch, of the reference material, that is often associated with a certified set of property values'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialPurchaseDate IS 'The purchase date of a reference material, when applicable'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialExpirationDate IS 'The expiration date of a reference material, when applicable'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.ReferenceMaterialCertificateLink IS 'A URL or file path to the Certificate that provides established property values for the given lot number.'; + +COMMENT ON COLUMN odm2.ReferenceMaterials.SamplingFeatureID IS 'A foreign key to SamplingFeatures. Only required when the ReferenceMaterial is Analyzed as if it were an unknown specimen.'; + +COMMENT ON TABLE odm2.ReferenceMaterials IS 'Describes materials that are used for the calibration of an instrument, the assessment of a measurement method, or for assigning values to unknown specimens.'; + + +/******************** Add Table: odm2.ResultNormalizationValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ResultNormalizationValues +( + ResultID BIGINT NOT NULL, + NormalizedByReferenceMaterialValueID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ResultNormalizationValues ADD CONSTRAINT pkResultNormalizationValues + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ResultNormalizationValues.ResultID IS 'Unique identifier'; + + + +/******************** Add Table: odm2.ResultsDataQuality ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ResultsDataQuality +( + BridgeID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + DataQualityID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ResultsDataQuality ADD CONSTRAINT pkResultsDataQuality + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ResultsDataQuality.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ResultsDataQuality.ResultID IS 'Foreign key identifier of the Result'; + +COMMENT ON COLUMN odm2.ResultsDataQuality.DataQualityID IS 'Foreign key identifier of the DataQuality entity.'; + + +/******************** Add Table: odm2.CalibratedDeploymentVariables ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CalibratedDeploymentVariables +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + DeploymentMeasuredVariableID INTEGER NOT NULL, + CalibrationCheckValue FLOAT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CalibratedDeploymentVariables ADD CONSTRAINT pkCalibratedDeploymentVariables + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.CalibratedDeploymentVariables.BridgeID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.CalibratedDeploymentVariables.ActionID IS 'Foreign key identifier of the calibration Action'; + +COMMENT ON COLUMN odm2.CalibratedDeploymentVariables.DeploymentMeasuredVariableID IS 'Foreign key identifier of the DeploymentMeasuredVariable to which the calibration was applied'; + +COMMENT ON COLUMN odm2.CalibratedDeploymentVariables.CalibrationCheckValue IS 'A numeric value for the DeploymentMeasuredVariable measued using the ReferenceMaterial prior to calibration'; + +COMMENT ON TABLE odm2.CalibratedDeploymentVariables IS 'Information about which deployment measured variable a calibration Action is associated with'; + + +/******************** Add Table: odm2.CalibrationEquations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CalibrationEquations +( + CalibrationEquationID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + InstrumentOutputVariableID INTEGER NOT NULL, + OutputVariableEquation VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CalibrationEquations ADD CONSTRAINT pkCalibrationEquations + PRIMARY KEY (CalibrationEquationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.CalibrationEquations.CalibrationEquationID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.CalibrationEquations.ActionID IS 'Foreign key identifier of the calibration Action'; + +COMMENT ON COLUMN odm2.CalibrationEquations.InstrumentOutputVariableID IS 'Foreign key identifier for the InstrumentOutputVariableID to which the calibration equation applies'; + +COMMENT ON COLUMN odm2.CalibrationEquations.OutputVariableEquation IS 'Text string that encodes the calibration equation'; + +COMMENT ON TABLE odm2.CalibrationEquations IS 'Information about instrument calibration equations'; + + +/******************** Add Table: odm2.CalibrationStandards ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CalibrationStandards +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CalibrationStandards ADD CONSTRAINT pkCalibrationStandards + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.CalibrationStandards.BridgeID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.CalibrationStandards.ActionID IS 'Foreign key identifier of the calibration Action'; + +COMMENT ON COLUMN odm2.CalibrationStandards.ReferenceMaterialID IS 'Foreign key identifier of the ReferenceMaterial used in the calibration'; + +COMMENT ON TABLE odm2.CalibrationStandards IS 'Bridge table linking field calibrations to the reference materials used'; + + +/******************** Add Table: odm2.Equipment ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Equipment +( + EquipmentID INTEGER NOT NULL, + EquipmentCode VARCHAR(50) NOT NULL, + EquipmentName VARCHAR(255) NOT NULL, + EquipmentTypeCV VARCHAR(255) NOT NULL, + EquipmentModelID INTEGER NOT NULL, + EquipmentSerialNumber VARCHAR(50) NOT NULL, + EquipmentOwnerID INTEGER NOT NULL, + EquipmentVendorID INTEGER NOT NULL, + EquipmentPurchaseDate TIMESTAMP NOT NULL, + EquipmentPurchaseOrderNumber VARCHAR(50) NULL, + EquipmentDescription VARCHAR(500) NULL, + EquipmentDocumentationLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Equipment ADD CONSTRAINT pkEquipment + PRIMARY KEY (EquipmentID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Equipment.EquipmentID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentCode IS 'A text code that identifies the piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentName IS 'A text name for the piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentTypeCV IS 'CV term describing the equipment type (e.g., sensor, datalogger, solar panel, etc.)'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentModelID IS 'Foreign key identifier for the model of the equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentSerialNumber IS 'Manufacturer''s serial number for the specific piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentOwnerID IS 'Foreign key identifer for the person that owns the piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentVendorID IS 'Foreign key identifier for the vendor organization for the piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentPurchaseDate IS 'Date that the piece of equipment was purchased'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentPurchaseOrderNumber IS 'A text string identifying the purchase order used to purchase the piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentDescription IS 'Text notes about the specific piece of equipment'; + +COMMENT ON COLUMN odm2.Equipment.EquipmentDocumentationLink IS 'A file name, path, or URL to a photo of the specific piece of equipment'; + +COMMENT ON TABLE odm2.Equipment IS 'Descriptions of specific pieces of equipment.'; + + +/******************** Add Table: odm2.EquipmentActions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.EquipmentActions +( + BridgeID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + ActionID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.EquipmentActions ADD CONSTRAINT pkEquipmentActions + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.EquipmentActions.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.EquipmentActions.EquipmentID IS 'Foreign key identifier of the Equipment entity associated with the Action'; + +COMMENT ON COLUMN odm2.EquipmentActions.ActionID IS 'Foreign key identifier of the Action'; + + +/******************** Add Table: odm2.EquipmentModels ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.EquipmentModels +( + EquipmentModelID INTEGER NOT NULL, + ModelManufacturerID INTEGER NOT NULL, + ModelPartNumber VARCHAR(50) NULL, + ModelName VARCHAR(255) NOT NULL, + ModelDescription VARCHAR(500) NULL, + IsInstrument BOOL NOT NULL, + ModelSpecificationsFileLink VARCHAR(255) NULL, + ModelLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.EquipmentModels ADD CONSTRAINT pkEquipmentModels + PRIMARY KEY (EquipmentModelID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.EquipmentModels.EquipmentModelID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.EquipmentModels.ModelManufacturerID IS 'Foreign key identifier of the model manufacturer'; + +COMMENT ON COLUMN odm2.EquipmentModels.ModelPartNumber IS 'A part number for the equipment model'; + +COMMENT ON COLUMN odm2.EquipmentModels.ModelName IS 'Text name of the equipment model'; + +COMMENT ON COLUMN odm2.EquipmentModels.ModelDescription IS 'Text description of the equipment model'; + +COMMENT ON COLUMN odm2.EquipmentModels.IsInstrument IS 'A boolean indication of whether the equipment is a sensor/instrument used to make observations'; + +COMMENT ON COLUMN odm2.EquipmentModels.ModelSpecificationsFileLink IS 'File name, path, or URL to a specifications file for the equipment'; + +COMMENT ON COLUMN odm2.EquipmentModels.ModelLink IS 'A URL to a website or file having a description of the equipment model'; + +COMMENT ON TABLE odm2.EquipmentModels IS 'Describes models of sensors, loggers, and related equipment used in making observations.'; + + +/******************** Add Table: odm2.InstrumentOutputVariables ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.InstrumentOutputVariables +( + InstrumentOutputVariableID INTEGER NOT NULL, + ModelID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + InstrumentMethodID INTEGER NOT NULL, + InstrumentResolution VARCHAR(255) NULL, + InstrumentAccuracy VARCHAR(255) NULL, + InstrumentRawOutputUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.InstrumentOutputVariables ADD CONSTRAINT pkInstrumentOutputVariables + PRIMARY KEY (InstrumentOutputVariableID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.InstrumentOutputVariables.InstrumentOutputVariableID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.InstrumentOutputVariables.ModelID IS 'Foreign key identifier of the Equipment Model'; + +COMMENT ON COLUMN odm2.InstrumentOutputVariables.VariableID IS 'Foreign key identifier of the Variable output by the Equipment Model'; + +COMMENT ON COLUMN odm2.InstrumentOutputVariables.InstrumentMethodID IS 'Foreign key identifier of the Method used to output the Variable from the Equipment Model'; + +COMMENT ON COLUMN odm2.InstrumentOutputVariables.InstrumentResolution IS 'Text description of the resolution of the output variable'; + +COMMENT ON COLUMN odm2.InstrumentOutputVariables.InstrumentAccuracy IS 'Text description of the accuracy of the output variable'; + +COMMENT ON COLUMN odm2.InstrumentOutputVariables.InstrumentRawOutputUnitsID IS 'Foreign key identifier of the raw output Units associated with the output variable'; + +COMMENT ON TABLE odm2.InstrumentOutputVariables IS 'Information about the Variables that an instrument is capable of measuring'; + + +/******************** Add Table: odm2.MaintenanceActions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MaintenanceActions +( + ActionID INTEGER NOT NULL, + IsFactoryService BOOL NOT NULL, + FactoryServiceCode VARCHAR(50) NULL, + FactoryServiceReason VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MaintenanceActions ADD CONSTRAINT pkMaintenanceActions + PRIMARY KEY (ActionID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.MaintenanceActions.ActionID IS 'Primary key and foreign key idenfier of the Equipment MaintenanceAction'; + +COMMENT ON COLUMN odm2.MaintenanceActions.IsFactoryService IS 'Boolean indicator of whether the Action is a factory service'; + +COMMENT ON COLUMN odm2.MaintenanceActions.FactoryServiceCode IS 'Text code assigned by the factory to the service performed'; + +COMMENT ON COLUMN odm2.MaintenanceActions.FactoryServiceReason IS 'Text description of why the factory service Action was required'; + +COMMENT ON TABLE odm2.MaintenanceActions IS 'Information about maintenance Actions performed on Equipment'; + + +/******************** Add Table: odm2.RelatedEquipment ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedEquipment +( + RelationID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedEquipmentID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedEquipment ADD CONSTRAINT pkRelatedEquipment + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.RelatedEquipment.RelationID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.RelatedEquipment.EquipmentID IS 'Foreign key identifier for a piece of Equipment'; + +COMMENT ON COLUMN odm2.RelatedEquipment.RelationshipTypeCV IS 'Text string indicating the type of relationship between two pieces of equipement'; + +COMMENT ON COLUMN odm2.RelatedEquipment.RelatedEquipmentID IS 'Foreign key identifier of the related piece of equipment'; + +COMMENT ON TABLE odm2.RelatedEquipment IS 'Information about relationships among Equipment'; + + +/******************** Add Table: odm2.ActionExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ActionExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ActionExtensionPropertyValues ADD CONSTRAINT pkActionExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ActionExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ActionExtensionPropertyValues.ActionID IS 'Foreign key of the Action'; + +COMMENT ON COLUMN odm2.ActionExtensionPropertyValues.PropertyID IS 'Foreign key of the extension property added to the Action'; + +COMMENT ON COLUMN odm2.ActionExtensionPropertyValues.PropertyValue IS 'Value of the extension property added to the Action'; + + +/******************** Add Table: odm2.CitationExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CitationExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CitationExtensionPropertyValues ADD CONSTRAINT pkCitationExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.CitationExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.CitationExtensionPropertyValues.CitationID IS 'Foreign key identifier of the Citation being extended'; + +COMMENT ON COLUMN odm2.CitationExtensionPropertyValues.PropertyID IS 'Foreign key identifier for the Property being applied to the Citation'; + +COMMENT ON COLUMN odm2.CitationExtensionPropertyValues.PropertyValue IS 'Value of the property being applied to the Citation'; + +COMMENT ON TABLE odm2.CitationExtensionPropertyValues IS 'Values for Citation Extension Properties'; + + +/******************** Add Table: odm2.ExtensionProperties ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ExtensionProperties +( + PropertyID INTEGER NOT NULL, + PropertyName VARCHAR(255) NOT NULL, + PropertyDescription VARCHAR(500) NULL, + PropertyDataTypeCV VARCHAR(255) NOT NULL, + PropertyUnitsID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ExtensionProperties ADD CONSTRAINT pkExtensionProperties + PRIMARY KEY (PropertyID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ExtensionProperties.PropertyID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.ExtensionProperties.PropertyName IS 'Text name of the extension property'; + +COMMENT ON COLUMN odm2.ExtensionProperties.PropertyDescription IS 'Text description of the extension property'; + +COMMENT ON COLUMN odm2.ExtensionProperties.PropertyDataTypeCV IS 'CV term specifying the data type of the property value'; + +COMMENT ON COLUMN odm2.ExtensionProperties.PropertyUnitsID IS 'Foreign key identifier for the units of the property value'; + +COMMENT ON TABLE odm2.ExtensionProperties IS 'Describes extension properties added to objects in an ODM database'; + + +/******************** Add Table: odm2.MethodExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MethodExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MethodExtensionPropertyValues ADD CONSTRAINT pkMethodExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.MethodExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.MethodExtensionPropertyValues.MethodID IS 'Foreign key identifier for the Method'; + +COMMENT ON COLUMN odm2.MethodExtensionPropertyValues.PropertyID IS 'Foreign key identifier for the extension property'; + +COMMENT ON COLUMN odm2.MethodExtensionPropertyValues.PropertyValue IS 'Text or numeric value of the extension property'; + +COMMENT ON TABLE odm2.MethodExtensionPropertyValues IS 'Links extnsion properties to a Method'; + + +/******************** Add Table: odm2.ResultExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ResultExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ResultExtensionPropertyValues ADD CONSTRAINT pkResultExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ResultExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ResultExtensionPropertyValues.ResultID IS 'Foreign key identifier for the result to which the extension property applies'; + +COMMENT ON COLUMN odm2.ResultExtensionPropertyValues.PropertyID IS 'Foreign key identifier for the extension propery'; + +COMMENT ON COLUMN odm2.ResultExtensionPropertyValues.PropertyValue IS 'Text or numeric value of the extension property'; + +COMMENT ON TABLE odm2.ResultExtensionPropertyValues IS 'Links extension properties to a Result'; + + +/******************** Add Table: odm2.SamplingFeatureExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SamplingFeatureExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT pkSamplingFeatureExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SamplingFeatureExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.SamplingFeatureExtensionPropertyValues.SamplingFeatureID IS 'Foreign key of the SamplingFeature being extended'; + +COMMENT ON COLUMN odm2.SamplingFeatureExtensionPropertyValues.PropertyID IS 'Foreign key of the extension property being added to the sampling feature '; + +COMMENT ON COLUMN odm2.SamplingFeatureExtensionPropertyValues.PropertyValue IS 'Value of the property being added to the sampling feature'; + + +/******************** Add Table: odm2.VariableExtensionPropertyValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.VariableExtensionPropertyValues +( + BridgeID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.VariableExtensionPropertyValues ADD CONSTRAINT pkVariableExtensionPropertyValues + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.VariableExtensionPropertyValues.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.VariableExtensionPropertyValues.VariableID IS 'Foreign key of the variable being extended'; + +COMMENT ON COLUMN odm2.VariableExtensionPropertyValues.PropertyID IS 'Foreign key of the extension property being applied to the variable'; + +COMMENT ON COLUMN odm2.VariableExtensionPropertyValues.PropertyValue IS 'Text or numeric value of the extension property for the variable'; + + +/******************** Add Table: odm2.CitationExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CitationExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + CitationExternalIdentifer VARCHAR(255) NOT NULL, + CitationExternalIdentiferURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CitationExternalIdentifiers ADD CONSTRAINT pkCitationExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.CitationExternalIdentifiers.CitationID IS 'Forign key of the Citation linked to the external identifer'; + +COMMENT ON COLUMN odm2.CitationExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.CitationExternalIdentifiers.CitationExternalIdentifer IS 'A resolvable, globally unique ID, such as a DOI; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.CitationExternalIdentifiers.CitationExternalIdentiferURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: odm2.ExternalIdentifierSystems ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ExternalIdentifierSystems +( + ExternalIdentifierSystemID INTEGER NOT NULL, + ExternalIdentifierSystemName VARCHAR(255) NOT NULL, + IdentifierSystemOrganizationID INTEGER NOT NULL, + ExternalIdentifierSystemDescription VARCHAR(500) NULL, + ExternalIdentifierSystemURL VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ExternalIdentifierSystems ADD CONSTRAINT pkExternalIdentifierSystems + PRIMARY KEY (ExternalIdentifierSystemID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ExternalIdentifierSystems.ExternalIdentifierSystemID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.ExternalIdentifierSystems.ExternalIdentifierSystemName IS 'Defines the identifier system used (i.e. IGSN, SWRC Sample Number, etc.)'; + +COMMENT ON COLUMN odm2.ExternalIdentifierSystems.IdentifierSystemOrganizationID IS 'Foreign Key identifer for the organization overseeing or affiliated with the identifier system'; + +COMMENT ON COLUMN odm2.ExternalIdentifierSystems.ExternalIdentifierSystemDescription IS 'Description of identifier system.'; + +COMMENT ON COLUMN odm2.ExternalIdentifierSystems.ExternalIdentifierSystemURL IS 'Universal Resource Locator (URL) for resolution/translation of an identifier system''s URNs (i.e. http://dx.doi.org/ is the resolver URL for doi:10.1002/2013GL057450)'; + +COMMENT ON TABLE odm2.ExternalIdentifierSystems IS 'A single table for connecting various primary keys with points to outside systems.'; + + +/******************** Add Table: odm2.MethodExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MethodExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + MethodExternalIdentifier VARCHAR(255) NOT NULL, + MethodExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MethodExternalIdentifiers ADD CONSTRAINT pkMethodExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.MethodExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.MethodExternalIdentifiers.MethodID IS 'Foreign Key to SamplingFeatures'; + +COMMENT ON COLUMN odm2.MethodExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.MethodExternalIdentifiers.MethodExternalIdentifier IS 'A resolvable, globally unique ID, such as a NEMI method number; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.MethodExternalIdentifiers.MethodExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: odm2.PersonExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.PersonExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + PersonExternalIdentifier VARCHAR(255) NOT NULL, + PersonExternalIdenifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.PersonExternalIdentifiers ADD CONSTRAINT pkPersonExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.PersonExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.PersonExternalIdentifiers.PersonID IS 'Foreign Key to People table'; + +COMMENT ON COLUMN odm2.PersonExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.PersonExternalIdentifiers.PersonExternalIdentifier IS 'A resolvable, globally unique ID, such as an IGSN; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.PersonExternalIdentifiers.PersonExternalIdenifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting.'; + +COMMENT ON TABLE odm2.PersonExternalIdentifiers IS 'Cross reference linking table to allow many to many '; + + +/******************** Add Table: odm2.ReferenceMaterialExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ReferenceMaterialExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + ReferenceMaterialExternalIdentifier VARCHAR(255) NOT NULL, + ReferenceMaterialExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT pkReferenceMaterialExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ReferenceMaterialExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ReferenceMaterialExternalIdentifiers.ReferenceMaterialID IS 'Foreign Key to ReferenceMaterials'; + +COMMENT ON COLUMN odm2.ReferenceMaterialExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.ReferenceMaterialExternalIdentifiers.ReferenceMaterialExternalIdentifier IS 'A resolvable, globally unique ID, such as NBS-19; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.ReferenceMaterialExternalIdentifiers.ReferenceMaterialExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting.'; + + +/******************** Add Table: odm2.SamplingFeatureExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SamplingFeatureExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + SamplingFeatureExternalIdentifier VARCHAR(255) NOT NULL, + SamplingFeatureExternalIdentiferURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SamplingFeatureExternalIdentifiers ADD CONSTRAINT pkSamplingFeatureExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SamplingFeatureExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.SamplingFeatureExternalIdentifiers.SamplingFeatureID IS 'Foreign Key to SamplingFeatures'; + +COMMENT ON COLUMN odm2.SamplingFeatureExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.SamplingFeatureExternalIdentifiers.SamplingFeatureExternalIdentifier IS 'A resolvable, globally unique ID, such as an IGSN; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.SamplingFeatureExternalIdentifiers.SamplingFeatureExternalIdentiferURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting.'; + + +/******************** Add Table: odm2.SpatialReferenceExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpatialReferenceExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + SpatialReferenceID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + SpatialReferenceExternalIdentifier VARCHAR(255) NOT NULL, + SpatialReferenceExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpatialReferenceExternalIdentifiers ADD CONSTRAINT pkSpatialReferenceExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SpatialReferenceExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + + +/******************** Add Table: odm2.TaxonomicClassifierExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TaxonomicClassifierExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + TaxonomicClassifierExternalIdentifier VARCHAR(255) NOT NULL, + TaxonomicClassifierExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT pkTaxonomicClassifierExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.TaxonomicClassifierExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.TaxonomicClassifierExternalIdentifiers.TaxonomicClassifierID IS 'Foreign Key to TaxonomicClassifiers'; + +COMMENT ON COLUMN odm2.TaxonomicClassifierExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.TaxonomicClassifierExternalIdentifiers.TaxonomicClassifierExternalIdentifier IS 'A resolvable, globally unique ID, such as a GBIF ID; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.TaxonomicClassifierExternalIdentifiers.TaxonomicClassifierExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: odm2.VariableExternalIdentifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.VariableExternalIdentifiers +( + BridgeID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + VariableExternalIdentifer VARCHAR(255) NOT NULL, + VariableExternalIdentifierURI VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.VariableExternalIdentifiers ADD CONSTRAINT pkVariableExternalIdentifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.VariableExternalIdentifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.VariableExternalIdentifiers.VariableID IS 'Foreign Key to Variables'; + +COMMENT ON COLUMN odm2.VariableExternalIdentifiers.ExternalIdentifierSystemID IS 'Foreign Key to ExternalIdentifierSystems'; + +COMMENT ON COLUMN odm2.VariableExternalIdentifiers.VariableExternalIdentifer IS 'A resolvable, globally unique ID; could be a Uniform Resource Name (URN).'; + +COMMENT ON COLUMN odm2.VariableExternalIdentifiers.VariableExternalIdentifierURI IS 'Uniform Resource Identifier (URI), preferably in the form of a persistent URL that is self-documenting and maintained by the external identifier system.'; + + +/******************** Add Table: odm2.ActionDirectives ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ActionDirectives +( + BridgeID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + DirectiveID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ActionDirectives ADD CONSTRAINT pkActionDirectives + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ActionDirectives.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.ActionDirectives.ActionID IS 'Foreign key identifier of the Action'; + +COMMENT ON COLUMN odm2.ActionDirectives.DirectiveID IS 'Foreign key identifier of the Directive'; + + +/******************** Add Table: odm2.Directives ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Directives +( + DirectiveID INTEGER NOT NULL, + DirectiveTypeCV VARCHAR(255) NOT NULL, + DirectiveDescription VARCHAR(500) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Directives ADD CONSTRAINT pkDirectives + PRIMARY KEY (DirectiveID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Directives.DirectiveID IS 'Unique identifier.'; + +COMMENT ON COLUMN odm2.Directives.DirectiveTypeCV IS 'Directive type, such as project, intended analyte/analysis for a Specimen, etc.'; + +COMMENT ON COLUMN odm2.Directives.DirectiveDescription IS 'Text description of the directive or purpose under which the action was taken.'; + +COMMENT ON TABLE odm2.Directives IS 'Describes the directive or purpose under which actions are made. Directives can be projects, intended analyses for a specimen, etc.'; + + +/******************** Add Table: odm2.SpecimenBatchPostions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpecimenBatchPostions +( + FeatureActionID INTEGER NOT NULL, + BatchPositionNumber INTEGER NOT NULL, + BatchPositionLabel VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpecimenBatchPostions ADD CONSTRAINT pkSpecimenBatchPostions + PRIMARY KEY (FeatureActionID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SpecimenBatchPostions.FeatureActionID IS 'Foriegn key identifer for the Specimen Preparation or Analysis Batch'; + +COMMENT ON COLUMN odm2.SpecimenBatchPostions.BatchPositionNumber IS 'The position or line number of a specimen within a PreparationBatchAction or an InstrumentAnalysisAction.'; + +COMMENT ON COLUMN odm2.SpecimenBatchPostions.BatchPositionLabel IS 'The label text for a specimen within a PreparationBatchAction or an InstrumentAnalysisAction.'; + + + +/******************** Add Table: odm2.AuthorLists ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.AuthorLists +( + BridgeID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + AuthorOrder INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.AuthorLists ADD CONSTRAINT pkAuthorLists + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.AuthorLists.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.AuthorLists.CitationID IS 'Foreign key identifier for a Citation'; + +COMMENT ON COLUMN odm2.AuthorLists.PersonID IS 'Foreign key identifier for a Person that is an author of the Citation'; + +COMMENT ON COLUMN odm2.AuthorLists.AuthorOrder IS 'Integer order of the authors of the Citation starting with 1 for first author'; + +COMMENT ON TABLE odm2.AuthorLists IS 'Relationship between Citations and their Authors'; + + +/******************** Add Table: odm2.Citations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Citations +( + CitationID INTEGER NOT NULL, + Title VARCHAR(255) NOT NULL, + Publisher VARCHAR(255) NOT NULL, + PublicationYear INTEGER NOT NULL, + CitationLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Citations ADD CONSTRAINT pkCitations + PRIMARY KEY (CitationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Citations.CitationID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.Citations.Title IS 'Text title of the Citation'; + +COMMENT ON COLUMN odm2.Citations.Publisher IS 'Text publisher of the Citation'; + +COMMENT ON COLUMN odm2.Citations.PublicationYear IS 'Integer publication year (4 digits) of the Citation'; + +COMMENT ON COLUMN odm2.Citations.CitationLink IS 'Text link to the Citation (i.e. URL or path).'; + +COMMENT ON TABLE odm2.Citations IS 'Information about Citations'; + + +/******************** Add Table: odm2.DataSetCitations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DataSetCitations +( + BridgeID INTEGER NOT NULL, + DataSetID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + CitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DataSetCitations ADD CONSTRAINT pkDataSetCitations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DataSetCitations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.DataSetCitations.DataSetID IS 'Foreign key identifier for a DataSet'; + +COMMENT ON COLUMN odm2.DataSetCitations.RelationshipTypeCV IS 'CV term describing the relationship between the DataSet and the Citation (e.g., cites or isCitedBy), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN odm2.DataSetCitations.CitationID IS 'Foreign key identifier for a Citation that is associated with the DataSet identified by DataSetID'; + +COMMENT ON TABLE odm2.DataSetCitations IS 'Relationship between DataSets and Citations'; + + +/******************** Add Table: odm2.DerivationEquations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DerivationEquations +( + DerivationEquationID INTEGER NOT NULL, + DerivationEquation VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DerivationEquations ADD CONSTRAINT pkDerivationEquations + PRIMARY KEY (DerivationEquationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DerivationEquations.DerivationEquationID IS 'Primary key for DerivationEquations, which include calibration equations, normalizations, etc. on one or more RelatedResults to produce a DerivedResult.'; + +COMMENT ON COLUMN odm2.DerivationEquations.DerivationEquation IS 'Text of the equation used to derive a Result from one or more RelatedResults, where y is the DerivedResult and x1, x2, ..., xn are the RelatedResults specified in order by RelatedResultSequenceID.'; + +COMMENT ON TABLE odm2.DerivationEquations IS 'DerivationEquations include calibration equations, normalizations, etc. on one or more RelatedResults to produce a DerivedResult.'; + + +/******************** Add Table: odm2.MethodCitations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MethodCitations +( + BridgeID INTEGER NOT NULL, + MethodID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + CitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MethodCitations ADD CONSTRAINT pkMethodCitations + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.MethodCitations.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.MethodCitations.MethodID IS 'Foreign key identifier for a Method'; + +COMMENT ON COLUMN odm2.MethodCitations.RelationshipTypeCV IS 'CV term describing the relationship between the Methods and the Citation (e.g., References or isDocumentedBy), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN odm2.MethodCitations.CitationID IS 'Foreign key identifier for a Citation that is associated with the Method identified by MethodID'; + + +/******************** Add Table: odm2.RelatedAnnotations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedAnnotations +( + RelationID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedAnnotationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedAnnotations ADD CONSTRAINT pkRelatedAnnotations + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON TABLE odm2.RelatedAnnotations IS 'Stores information about relationships among Annotations'; + + +/******************** Add Table: odm2.RelatedCitations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedCitations +( + RelationID INTEGER NOT NULL, + CitationID INTEGER NOT NULL, + RelationshipTypeCV INTEGER NOT NULL, + RelatedCitationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedCitations ADD CONSTRAINT pkRelatedCitations + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.RelatedCitations.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN odm2.RelatedCitations.CitationID IS 'Foreign key identifier for a Citation'; + +COMMENT ON COLUMN odm2.RelatedCitations.RelationshipTypeCV IS 'CV term describing the relationship between Citations (e.g., IsSupplementTo or IsPartOf), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN odm2.RelatedCitations.RelatedCitationID IS 'Foreign key identifier for a Citation that is related to the Citation identified by CitationID'; + +COMMENT ON TABLE odm2.RelatedCitations IS 'Information about relationships among citations'; + + +/******************** Add Table: odm2.RelatedDatasets ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedDatasets +( + RelationID INTEGER NOT NULL, + DataSetID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedDatasetID INTEGER NOT NULL, + VersionCode VARCHAR(50) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedDatasets ADD CONSTRAINT pkRelatedDatasets + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.RelatedDatasets.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN odm2.RelatedDatasets.DataSetID IS 'Foreign key identifier for a DataSet'; + +COMMENT ON COLUMN odm2.RelatedDatasets.RelationshipTypeCV IS 'CV term describing the relationship between DataSets (e.g., IsNewVersionOf or Continues), largely conforming to CV used by DataCite.org.'; + +COMMENT ON COLUMN odm2.RelatedDatasets.RelatedDatasetID IS 'Foreign key identifier for a DataSet related to the DataSet identified by DataSetID'; + +COMMENT ON COLUMN odm2.RelatedDatasets.VersionCode IS 'Text version number/code that can be specified if the DataSet is an explicit version of another DataSet and where the RelationshipTypeCV = isNewVersionOf.'; + +COMMENT ON TABLE odm2.RelatedDatasets IS 'Information about relationships among DataSets'; + + +/******************** Add Table: odm2.RelatedResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedResults +( + RelationID INTEGER NOT NULL, + ResultID BIGINT NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedResultID BIGINT NOT NULL, + VersionCode VARCHAR(50) NULL, + RelatedResultSequenceNumber INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedResults ADD CONSTRAINT pkRelatedResults + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.RelatedResults.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN odm2.RelatedResults.ResultID IS 'Foreign key identifier for a Result'; + +COMMENT ON COLUMN odm2.RelatedResults.RelationshipTypeCV IS 'Text description of the relationship between the Results from a controlled vocabulary (e.g., isDerivedFrom)'; + +COMMENT ON COLUMN odm2.RelatedResults.RelatedResultID IS 'Foreign key identifier for a Result that is related to the Result identified by ResultID'; + +COMMENT ON COLUMN odm2.RelatedResults.VersionCode IS 'Text version number/code that can be specified if the Result is an explicit version of another Result and where the RelationshipTypeCV = isNewVersionOf.'; + +COMMENT ON COLUMN odm2.RelatedResults.RelatedResultSequenceNumber IS 'Integer sequence number indicating the order in which a RelatedResults appears in a DerivationEquation (i.e. 1 for x1, 2 for x2...) and where a Result isDerivedFrom one or more RelatedResults.'; + +COMMENT ON TABLE odm2.RelatedResults IS 'Information about relationships among Results'; + + +/******************** Add Table: odm2.ResultDerivationEquations ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ResultDerivationEquations +( + ResultID BIGINT NOT NULL, + DerivationEquationID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ResultDerivationEquations ADD CONSTRAINT pkResultDerivationEquations + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.ResultDerivationEquations.ResultID IS 'Foreign key identifier for a Result that was derived using the Equation specified by DerivationEquationID'; + +COMMENT ON COLUMN odm2.ResultDerivationEquations.DerivationEquationID IS 'Foreign key identifier for the DerivationEquation used to derive the Result identified by ResultID'; + +COMMENT ON TABLE odm2.ResultDerivationEquations IS 'Relationship between Results and Equations used to derive them'; + + +/******************** Add Table: odm2.CategoricalResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CategoricalResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue VARCHAR(255) NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CategoricalResultValues ADD CONSTRAINT pkCategoricalResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.CategoricalResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.CategoricalResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + QualityCodeCV BIGINT NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.CategoricalResults ADD CONSTRAINT pkCategoricalResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.MeasurementResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MeasurementResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MeasurementResultValues ADD CONSTRAINT pkMeasurementResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.MeasurementResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.MeasurementResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT pkMeasurementResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.PointCoverageResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.PointCoverageResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue BIGINT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.PointCoverageResultValues ADD CONSTRAINT pkPointCoverageResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.PointCoverageResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.PointCoverageResults +( + ResultID BIGINT NOT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INTEGER NULL, + IntendedYSpacing FLOAT NULL, + IntendedYSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.PointCoverageResults ADD CONSTRAINT pkPointCoverageResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.ProfileResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ProfileResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + ZLocation FLOAT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ProfileResultValues ADD CONSTRAINT pkProfileResultValues + PRIMARY KEY (ValueID); + +/* Add Comments */ +COMMENT ON TABLE odm2.ProfileResultValues IS 'Numeric values of Depth Profile Results.'; + + +/******************** Add Table: odm2.ProfileResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ProfileResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT pkProfileResults + PRIMARY KEY (ResultID); + +/* Add Comments */ +COMMENT ON TABLE odm2.ProfileResults IS 'Information about Profile Results'; + + +/******************** Add Table: odm2.ResultTypeCV ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.ResultTypeCV +( + ResultTypeCV VARCHAR(255) NOT NULL, + ResultTypeCategory VARCHAR(255) NOT NULL, + DataType VARCHAR(255) NOT NULL, + ResultTypeDefinition VARCHAR(500) NOT NULL, + FixedDimensions VARCHAR(255) NOT NULL, + VaryingDimensions VARCHAR(255) NOT NULL, + SpaceMeasurementFramework VARCHAR(255) NOT NULL, + TimeMeasurementFramework VARCHAR(255) NOT NULL, + VariableMeasurementFramework VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.ResultTypeCV ADD CONSTRAINT pkResultTypeCV + PRIMARY KEY (ResultTypeCV); + + +/******************** Add Table: odm2.SectionResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SectionResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue DOUBLE PRECISION NOT NULL, + ValueDateTime BIGINT NOT NULL, + ValueDateTimeUTCOffset BIGINT NOT NULL, + XLocation DOUBLE PRECISION NOT NULL, + XAggregationInterval FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + ZLocation BIGINT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SectionResultValues ADD CONSTRAINT pkSectionResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.SectionResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SectionResults +( + ResultID BIGINT NOT NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INTEGER NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT pkSectionResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.SpectraResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpectraResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + ExcitationWavelength FLOAT NOT NULL, + EmissionWavelength FLOAT NOT NULL, + WavelengthUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval DOUBLE PRECISION NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpectraResultValues ADD CONSTRAINT pkSpectraResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.SpectraResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpectraResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedWavelengthSpacing DOUBLE PRECISION NULL, + IntendedWavelengthSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT pkSpectraResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.TimeSeriesResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TimeSeriesResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TimeSeriesResultValues ADD CONSTRAINT pkTimeSeriesResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.TimeSeriesResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TimeSeriesResults +( + ResultID BIGINT NOT NULL, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT pkTimeSeriesResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.TrajectoryResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TrajectoryResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + ZLocation FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + TrajectoryDistance FLOAT NOT NULL, + TrajectoryDistanceAggregationInterval FLOAT NOT NULL, + TrajectoryDistanceUnitsID INTEGER NOT NULL, + CensorCode VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TrajectoryResultValues ADD CONSTRAINT pkTrajectoryResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.TrajectoryResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TrajectoryResults +( + ResultID BIGINT NOT NULL, + SpatialReferenceID INTEGER NULL, + IntendedTrajectorySpacing FLOAT NULL, + IntendedTrajectorySpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TrajectoryResults ADD CONSTRAINT pkTrajectoryResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.TransectResultValues ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TransectResultValues +( + ValueID BIGINT NOT NULL, + ResultID BIGINT NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime TIMESTAMP NOT NULL, + ValueDateTimeUTCOffset TIMESTAMP NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + TransectDistance FLOAT NOT NULL, + TransectDistanceAggregationInterval FLOAT NOT NULL, + TransectDistanceUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR(255) NOT NULL, + QualityCodeCV VARCHAR(255) NOT NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TransectResultValues ADD CONSTRAINT pkTransectResultValues + PRIMARY KEY (ValueID); + + +/******************** Add Table: odm2.TransectResults ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.TransectResults +( + ResultID BIGINT NOT NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedTransectSpacing FLOAT NULL, + IntendedTransectSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.TransectResults ADD CONSTRAINT pkTransectResults + PRIMARY KEY (ResultID); + + +/******************** Add Table: odm2.RelatedFeatures ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.RelatedFeatures +( + RelationID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR(255) NOT NULL, + RelatedFeatureID INTEGER NOT NULL, + SpatialOffsetID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.RelatedFeatures ADD CONSTRAINT pkRelatedFeatures + PRIMARY KEY (RelationID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.RelatedFeatures.RelationID IS 'Primary key for a relationship table (i.e. named Related...).'; + +COMMENT ON COLUMN odm2.RelatedFeatures.SamplingFeatureID IS 'Foregn key identifier of a Sampling Feature'; + +COMMENT ON COLUMN odm2.RelatedFeatures.RelationshipTypeCV IS 'CV term describing the relationship between SamplingFeatures (e.g., IsChildOf, IsFractionOf or IsCompositeOf).'; + +COMMENT ON COLUMN odm2.RelatedFeatures.RelatedFeatureID IS 'Foreign key identifier of a Sampling Feature that is the parent of the current Sampling Feature'; + +COMMENT ON COLUMN odm2.RelatedFeatures.SpatialOffsetID IS 'Foreign key identifier of a spatial offset from the feature parent'; + +COMMENT ON TABLE odm2.RelatedFeatures IS 'Describes parrent/child relationships among Sampling Features'; + + +/******************** Add Table: odm2.Sites ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Sites +( + SamplingFeatureID INTEGER NOT NULL, + SiteTypeCV VARCHAR(255) NOT NULL, + Latitude FLOAT NOT NULL, + Longitude FLOAT NOT NULL, + LatLonDatumID INTEGER NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Sites ADD CONSTRAINT pkSites + PRIMARY KEY (SamplingFeatureID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Sites.SamplingFeatureID IS 'Foreign key identifier of the Sampling Feature that is the Site'; + +COMMENT ON COLUMN odm2.Sites.SiteTypeCV IS 'A CV term describing the site type'; + +COMMENT ON COLUMN odm2.Sites.Latitude IS 'Latitude of the site'; + +COMMENT ON COLUMN odm2.Sites.Longitude IS 'Longitude of the site'; + +COMMENT ON COLUMN odm2.Sites.LatLonDatumID IS 'Foreign key identifier for the Spatial Reference System that describes the latitude and longitude coordinates'; + +COMMENT ON TABLE odm2.Sites IS 'Describes sampling features that are point sites'; + + +/******************** Add Table: odm2.SpatialOffsets ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpatialOffsets +( + SpatialOffsetID INTEGER NOT NULL, + SpatialOffsetTypeCV VARCHAR(255) NOT NULL, + Offset1Value FLOAT NOT NULL, + Offset1UnitID INTEGER NOT NULL, + Offset2Value FLOAT NULL, + Offset2UnitID INTEGER NULL, + Offset3Value FLOAT NULL, + Offset3UnitID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpatialOffsets ADD CONSTRAINT pkSpatialOffsets + PRIMARY KEY (SpatialOffsetID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SpatialOffsets.SpatialOffsetID IS 'Primary Key of SpatialOffset'; + +COMMENT ON COLUMN odm2.SpatialOffsets.SpatialOffsetTypeCV IS 'Type of SpatialOffset, such as Depth, DepthInterval, HorizaontalRadial'; + +COMMENT ON COLUMN odm2.SpatialOffsets.Offset1Value IS 'Numerical value for 1st SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN odm2.SpatialOffsets.Offset1UnitID IS 'Units for 1st SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN odm2.SpatialOffsets.Offset2Value IS 'Numerical value for 2nd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN odm2.SpatialOffsets.Offset2UnitID IS 'Units for 2nd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN odm2.SpatialOffsets.Offset3Value IS 'Numerical value for 3rd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON COLUMN odm2.SpatialOffsets.Offset3UnitID IS 'Units for 3rd SpatialOffset, which is defined by SpatialOffsetType'; + +COMMENT ON TABLE odm2.SpatialOffsets IS 'An explicit spatial relationship between a sampling feature relative to it''s parent.'; + + +/******************** Add Table: odm2.SpatialReferences ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpatialReferences +( + SpatialReferenceID INTEGER NOT NULL, + SRSCode VARCHAR(50) NULL, + SRSName VARCHAR(255) NOT NULL, + SRSDescription VARCHAR(500) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpatialReferences ADD CONSTRAINT pkSpatialReferences + PRIMARY KEY (SpatialReferenceID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SpatialReferences.SpatialReferenceID IS 'Unique identifier'; + +COMMENT ON COLUMN odm2.SpatialReferences.SRSCode IS 'SRS code for the spatial reference system'; + +COMMENT ON COLUMN odm2.SpatialReferences.SRSName IS 'Text name of the spatial reference system'; + +COMMENT ON COLUMN odm2.SpatialReferences.SRSDescription IS 'Text notes describing the spatial reference system'; + +COMMENT ON TABLE odm2.SpatialReferences IS 'Describes spatial reference systems used to reference the coordinates for sites'; + + +/******************** Add Table: odm2.SpecimenTaxonomicClassifiers ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.SpecimenTaxonomicClassifiers +( + BridgeID INTEGER NOT NULL, + SamplingFeatureID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NOT NULL, + CitationID INTEGER NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.SpecimenTaxonomicClassifiers ADD CONSTRAINT pkSpecimenTaxonomicClassifiers + PRIMARY KEY (BridgeID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.SpecimenTaxonomicClassifiers.BridgeID IS 'Primary key for a bridge table, enabling many-to-many joins.'; + +COMMENT ON COLUMN odm2.SpecimenTaxonomicClassifiers.SamplingFeatureID IS 'Foreign key to SamplingFeatures.Specimens.'; + +COMMENT ON COLUMN odm2.SpecimenTaxonomicClassifiers.TaxonomicClassifierID IS 'Foreign key to TaxonomicClassifiers.'; + +COMMENT ON COLUMN odm2.SpecimenTaxonomicClassifiers.CitationID IS 'Foreign key to the attribution, or Citation, for the classification.'; + +COMMENT ON TABLE odm2.SpecimenTaxonomicClassifiers IS 'This cross-reference table allows Taxonomic Classification of Specimens as an annotation, rather than as a Result.'; + + +/******************** Add Table: odm2.Specimens ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.Specimens +( + SamplingFeatureID INTEGER NOT NULL, + SpecimenTypeCV VARCHAR(255) NOT NULL, + SpecimenMediumCV VARCHAR(255) NOT NULL, + IsFieldSpecimen BOOL NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.Specimens ADD CONSTRAINT pkSpecimens + PRIMARY KEY (SamplingFeatureID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.Specimens.SamplingFeatureID IS 'Foreign key identifier for the Sampling Feature that is the specimen'; + +COMMENT ON COLUMN odm2.Specimens.SpecimenTypeCV IS 'A CV term defining the type of specimen (e.g., aquatic sample, core, etc.)'; + +COMMENT ON COLUMN odm2.Specimens.SpecimenMediumCV IS 'A CV term defining the medium of the specimen (i.e. water, sediment, etc.)'; + +COMMENT ON COLUMN odm2.Specimens.IsFieldSpecimen IS 'A boolean indicating whether the specimen was collected in the field'; + +COMMENT ON TABLE odm2.Specimens IS 'Equivalent to O&M Sampling Feature Type Specimen. Describes physical samples or specimens.'; + + +/******************** Add Table: odm2.DataLoggerFiles ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DataLoggerFiles +( + DataLoggerFileID INTEGER NOT NULL, + ProgramID INTEGER NOT NULL, + DataLoggerFileName VARCHAR(255) NOT NULL, + DataLoggerFileDescription VARCHAR(500) NULL, + DataLoggerFileLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DataLoggerFiles ADD CONSTRAINT pkDataLoggerFiles + PRIMARY KEY (DataLoggerFileID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DataLoggerFiles.DataLoggerFileID IS 'Unique identifier for the datalogger file'; + +COMMENT ON COLUMN odm2.DataLoggerFiles.ProgramID IS 'Foreign key identifier of the datalogger program that created the file'; + +COMMENT ON COLUMN odm2.DataLoggerFiles.DataLoggerFileName IS 'Text name of the datalogger file'; + +COMMENT ON COLUMN odm2.DataLoggerFiles.DataLoggerFileDescription IS 'Text description of the datalogger file'; + +COMMENT ON COLUMN odm2.DataLoggerFiles.DataLoggerFileLink IS 'File path to the datalogger file'; + +COMMENT ON TABLE odm2.DataLoggerFiles IS 'Destibes datalogger files created by a deployment action'; + + +/******************** Add Table: odm2.DataloggerProgramFiles ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DataloggerProgramFiles +( + ProgramID INTEGER NOT NULL, + AffiliationID INTEGER NOT NULL, + ProgramName VARCHAR(255) NOT NULL, + ProgramDescription VARCHAR(500) NULL, + ProgramVersion VARCHAR(50) NULL, + ProgramFileLink VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DataloggerProgramFiles ADD CONSTRAINT pkDataloggerProgramFiles + PRIMARY KEY (ProgramID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DataloggerProgramFiles.ProgramID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.DataloggerProgramFiles.AffiliationID IS 'Foreign key identifier of the person that created the program'; + +COMMENT ON COLUMN odm2.DataloggerProgramFiles.ProgramName IS 'Text name of the datalogger program file'; + +COMMENT ON COLUMN odm2.DataloggerProgramFiles.ProgramDescription IS 'Text description of the datalogger program file'; + +COMMENT ON COLUMN odm2.DataloggerProgramFiles.ProgramVersion IS 'Text description of the version of the datalogger program file'; + +COMMENT ON COLUMN odm2.DataloggerProgramFiles.ProgramFileLink IS 'URL or file path to the datalogger program file'; + +COMMENT ON TABLE odm2.DataloggerProgramFiles IS 'Information about datalogger program files'; + + +/******************** Add Table: odm2.DeploymentActions ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DeploymentActions +( + ActionID INTEGER NOT NULL, + DeploymentTypeCV VARCHAR(255) NOT NULL, + CurrentlyDeployed BOOL NOT NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DeploymentActions ADD CONSTRAINT pkDeploymentActions + PRIMARY KEY (ActionID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DeploymentActions.ActionID IS 'Foreign key identifer for the Action that is the deployment'; + +COMMENT ON COLUMN odm2.DeploymentActions.DeploymentTypeCV IS 'CV term that describes the type of the deployment'; + +COMMENT ON COLUMN odm2.DeploymentActions.CurrentlyDeployed IS 'A boolean indicating whether a piece of equipment is currently deployed'; + +COMMENT ON TABLE odm2.DeploymentActions IS 'Describes actions that are deployment events'; + + +/******************** Add Table: odm2.DeploymentMeasuredVariables ************************/ + +/* Build Table Structure */ +CREATE TABLE odm2.DeploymentMeasuredVariables +( + DeploymentMeasuredVariableID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + InstrumentOutputVariableID INTEGER NOT NULL, + DataloggerFileID INTEGER NOT NULL, + ColumnLabel VARCHAR(50) NULL, + ColumnDescription VARCHAR(500) NULL, + MeasurementEquation VARCHAR(255) NULL, + ScanInterval FLOAT NULL, + ScanIntervalUnitsID INTEGER NULL, + RecordingInterval FLOAT NULL, + RecordingIntervalUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR(255) NULL +); + +/* Add Primary Key */ +ALTER TABLE odm2.DeploymentMeasuredVariables ADD CONSTRAINT pkDeploymentMeasuredVariables + PRIMARY KEY (DeploymentMeasuredVariableID); + +/* Add Comments */ +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.DeploymentMeasuredVariableID IS 'Primary key identifier'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.ActionID IS 'Foreign key identifier of the Deployment Action associated with the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.InstrumentOutputVariableID IS 'Foreign key identifier of the InstrumentOutputVariable that is the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.DataloggerFileID IS 'Foreign key identifier of the DataloggerFile from in which the DeploymentMeasuredVariable is recorded'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.ColumnLabel IS 'Text label of the column within the DataloggerFile that is the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.ColumnDescription IS 'Text description of hte column within the DataloggerFile that is the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.MeasurementEquation IS 'Text string that gives the equation (if any) associated with the DeploymentMeasuredVariable'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.ScanInterval IS 'Numeric value of the scan interval'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.ScanIntervalUnitsID IS 'Foreign key identifier of the units of the scan interval'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.RecordingInterval IS 'Numeric value of the recording interval'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.RecordingIntervalUnitsID IS 'Foreign key identifier of the units for the recording interval'; + +COMMENT ON COLUMN odm2.DeploymentMeasuredVariables.AggregationStatisticCV IS 'Text aggregation statistic of the recorded value - chosen from a CV'; + +COMMENT ON TABLE odm2.DeploymentMeasuredVariables IS 'Inoformation about the variables measured by a deployment'; + + + + + +/************ Add Foreign Keys ***************/ + +/* Add Foreign Key: fk_ActionAnnotations_Actions */ +ALTER TABLE odm2.ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionAnnotations_Annotations */ +ALTER TABLE odm2.ActionAnnotations ADD CONSTRAINT fk_ActionAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Annotations_Citations */ +ALTER TABLE odm2.Annotations ADD CONSTRAINT fk_Annotations_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Annotations_People */ +ALTER TABLE odm2.Annotations ADD CONSTRAINT fk_Annotations_People + FOREIGN KEY (AnnotatorID) REFERENCES odm2.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResultValueAnnotations_Annotations */ +ALTER TABLE odm2.CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResultValueAnnotations_CategoricalResultValues */ +ALTER TABLE odm2.CategoricalResultValueAnnotations ADD CONSTRAINT fk_CategoricalResultValueAnnotations_CategoricalResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.CategoricalResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentAnnotations_Annotations */ +ALTER TABLE odm2.EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentAnnotations_Equipment */ +ALTER TABLE odm2.EquipmentAnnotations ADD CONSTRAINT fk_EquipmentAnnotations_Equipment + FOREIGN KEY (EquipmentID) REFERENCES odm2.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResultValueAnnotations_MeasurementResultValues */ +ALTER TABLE odm2.MeasurementResultValueAnnotations ADD CONSTRAINT fk_MeasurementResultValueAnnotations_MeasurementResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.MeasurementResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultValueAnnotations_Annotations */ +ALTER TABLE odm2.MeasurementResultValueAnnotations ADD CONSTRAINT fk_ResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodAnnotations_Annotations */ +ALTER TABLE odm2.MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodAnnotations_Methods */ +ALTER TABLE odm2.MethodAnnotations ADD CONSTRAINT fk_MethodAnnotations_Methods + FOREIGN KEY (MethodID) REFERENCES odm2.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValueAnnotations_Annotations */ +ALTER TABLE odm2.PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValueAnnotations_PointCoverageResultValues */ +ALTER TABLE odm2.PointCoverageResultValueAnnotations ADD CONSTRAINT fk_PointCoverageResultValueAnnotations_PointCoverageResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.PointCoverageResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValueAnnotations_Annotations */ +ALTER TABLE odm2.ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValueAnnotations_ProfileResultValues */ +ALTER TABLE odm2.ProfileResultValueAnnotations ADD CONSTRAINT fk_ProfileResultValueAnnotations_ProfileResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.ProfileResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultAnnotations_Annotations */ +ALTER TABLE odm2.ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultAnnotations_Results */ +ALTER TABLE odm2.ResultAnnotations ADD CONSTRAINT fk_ResultAnnotations_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureAnnotations_Annotations */ +ALTER TABLE odm2.SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureAnnotations_SamplingFeatures */ +ALTER TABLE odm2.SamplingFeatureAnnotations ADD CONSTRAINT fk_SamplingFeatureAnnotations_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValueAnnotations_Annotations */ +ALTER TABLE odm2.SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValueAnnotations_SectionResultValues */ +ALTER TABLE odm2.SectionResultValueAnnotations ADD CONSTRAINT fk_SectionResultValueAnnotations_SectionResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.SectionResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValueAnnotations_Annotations */ +ALTER TABLE odm2.SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValueAnnotations_SpectraResultValues */ +ALTER TABLE odm2.SpectraResultValueAnnotations ADD CONSTRAINT fk_SpectraResultValueAnnotations_SpectraResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.SpectraResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValueAnnotations_Annotations */ +ALTER TABLE odm2.TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues */ +ALTER TABLE odm2.TimeSeriesResultValueAnnotations ADD CONSTRAINT fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.TimeSeriesResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValueAnnotations_Annotations */ +ALTER TABLE odm2.TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValueAnnotations_TrajectoryResultValues */ +ALTER TABLE odm2.TrajectoryResultValueAnnotations ADD CONSTRAINT fk_TrajectoryResultValueAnnotations_TrajectoryResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.TrajectoryResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResultValueAnnotations_Annotations */ +ALTER TABLE odm2.TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResultValueAnnotations_TransectResultValues */ +ALTER TABLE odm2.TransectResultValueAnnotations ADD CONSTRAINT fk_TransectResultValueAnnotations_TransectResultValues + FOREIGN KEY (ValueID) REFERENCES odm2.TransectResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionPeople_Actions */ +ALTER TABLE odm2.ActionBy ADD CONSTRAINT fk_ActionPeople_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionPeople_Affiliations */ +ALTER TABLE odm2.ActionBy ADD CONSTRAINT fk_ActionPeople_Affiliations + FOREIGN KEY (AffiliationID) REFERENCES odm2.Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Actions_Methods */ +ALTER TABLE odm2.Actions ADD CONSTRAINT fk_Actions_Methods + FOREIGN KEY (MethodID) REFERENCES odm2.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Affiliations_Organizations */ +ALTER TABLE odm2.Affiliations ADD CONSTRAINT fk_Affiliations_Organizations + FOREIGN KEY (OrganizationID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Affiliations_People */ +ALTER TABLE odm2.Affiliations ADD CONSTRAINT fk_Affiliations_People + FOREIGN KEY (PersonID) REFERENCES odm2.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetsResults_DataSets */ +ALTER TABLE odm2.DataSetsResults ADD CONSTRAINT fk_DataSetsResults_DataSets + FOREIGN KEY (DataSetID) REFERENCES odm2.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetsResults_Results */ +ALTER TABLE odm2.DataSetsResults ADD CONSTRAINT fk_DataSetsResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureActions_Actions */ +ALTER TABLE odm2.FeatureActions ADD CONSTRAINT fk_FeatureActions_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureActions_SamplingFeatures */ +ALTER TABLE odm2.FeatureActions ADD CONSTRAINT fk_FeatureActions_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Methods_Organizations */ +ALTER TABLE odm2.Methods ADD CONSTRAINT fk_Methods_Organizations + FOREIGN KEY (OrganizationID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Organizations_Organizations */ +ALTER TABLE odm2.Organizations ADD CONSTRAINT fk_Organizations_Organizations + FOREIGN KEY (ParentOrganizationID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedActions_Actions */ +ALTER TABLE odm2.RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedActions_Actions_AreRelated */ +ALTER TABLE odm2.RelatedActions ADD CONSTRAINT fk_RelatedActions_Actions_AreRelated + FOREIGN KEY (RelatedActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_FeatureActions */ +ALTER TABLE odm2.Results ADD CONSTRAINT fk_Results_FeatureActions + FOREIGN KEY (FeatureActionID) REFERENCES odm2.FeatureActions (FeatureActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_ProcessingLevels */ +ALTER TABLE odm2.Results ADD CONSTRAINT fk_Results_ProcessingLevels + FOREIGN KEY (ProcessingLevelID) REFERENCES odm2.ProcessingLevels (ProcessingLevelID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_ResultTypeCV */ +ALTER TABLE odm2.Results ADD CONSTRAINT fk_Results_ResultTypeCV + FOREIGN KEY (ResultTypeCV) REFERENCES odm2.ResultTypeCV (ResultTypeCV) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_TaxonomicClassifiers */ +ALTER TABLE odm2.Results ADD CONSTRAINT fk_Results_TaxonomicClassifiers + FOREIGN KEY (TaxonomicClassifierID) REFERENCES odm2.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_Units */ +ALTER TABLE odm2.Results ADD CONSTRAINT fk_Results_Units + FOREIGN KEY (UnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Results_Variables */ +ALTER TABLE odm2.Results ADD CONSTRAINT fk_Results_Variables + FOREIGN KEY (VariableID) REFERENCES odm2.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ParentTaxon_Taxon */ +ALTER TABLE odm2.TaxonomicClassifiers ADD CONSTRAINT fk_ParentTaxon_Taxon + FOREIGN KEY (ParentTaxonomicClassifierID) REFERENCES odm2.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataQuality_Units */ +ALTER TABLE odm2.DataQuality ADD CONSTRAINT fk_DataQuality_Units + FOREIGN KEY (DataQualityValueUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_Citations */ +ALTER TABLE odm2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_ReferenceMaterials */ +ALTER TABLE odm2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_ReferenceMaterials + FOREIGN KEY (ReferenceMaterialID) REFERENCES odm2.ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_Units */ +ALTER TABLE odm2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Units + FOREIGN KEY (UnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterialValues_Variables */ +ALTER TABLE odm2.ReferenceMaterialValues ADD CONSTRAINT fk_ReferenceMaterialValues_Variables + FOREIGN KEY (VariableID) REFERENCES odm2.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterials_Organizations */ +ALTER TABLE odm2.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_Organizations + FOREIGN KEY (ReferenceMaterialOrganizationID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ReferenceMaterials_SamplingFeatures */ +ALTER TABLE odm2.ReferenceMaterials ADD CONSTRAINT fk_ReferenceMaterials_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultNormalizationValues_ReferenceMaterialValues */ +ALTER TABLE odm2.ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_ReferenceMaterialValues + FOREIGN KEY (NormalizedByReferenceMaterialValueID) REFERENCES odm2.ReferenceMaterialValues (ReferenceMaterialValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultNormalizationValues_Results */ +ALTER TABLE odm2.ResultNormalizationValues ADD CONSTRAINT fk_ResultNormalizationValues_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultsDataQuality_DataQuality */ +ALTER TABLE odm2.ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_DataQuality + FOREIGN KEY (DataQualityID) REFERENCES odm2.DataQuality (DataQualityID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultsDataQuality_Results */ +ALTER TABLE odm2.ResultsDataQuality ADD CONSTRAINT fk_ResultsDataQuality_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibratedDeploymentVariables_Actions */ +ALTER TABLE odm2.CalibratedDeploymentVariables ADD CONSTRAINT fk_CalibratedDeploymentVariables_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibratedDeploymentVariables_DeploymentMeasuredVariables */ +ALTER TABLE odm2.CalibratedDeploymentVariables ADD CONSTRAINT fk_CalibratedDeploymentVariables_DeploymentMeasuredVariables + FOREIGN KEY (DeploymentMeasuredVariableID) REFERENCES odm2.DeploymentMeasuredVariables (DeploymentMeasuredVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibrationEquations_Actions */ +ALTER TABLE odm2.CalibrationEquations ADD CONSTRAINT fk_CalibrationEquations_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CalibrationEquations_InstrumentOutputVariables */ +ALTER TABLE odm2.CalibrationEquations ADD CONSTRAINT fk_CalibrationEquations_InstrumentOutputVariables + FOREIGN KEY (InstrumentOutputVariableID) REFERENCES odm2.InstrumentOutputVariables (InstrumentOutputVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FieldCalibrationStandards_Actions */ +ALTER TABLE odm2.CalibrationStandards ADD CONSTRAINT fk_FieldCalibrationStandards_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FieldCalibrationStandards_ReferenceMaterials */ +ALTER TABLE odm2.CalibrationStandards ADD CONSTRAINT fk_FieldCalibrationStandards_ReferenceMaterials + FOREIGN KEY (ReferenceMaterialID) REFERENCES odm2.ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Equipment_EquipmentModels */ +ALTER TABLE odm2.Equipment ADD CONSTRAINT fk_Equipment_EquipmentModels + FOREIGN KEY (EquipmentModelID) REFERENCES odm2.EquipmentModels (EquipmentModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Equipment_Organizations */ +ALTER TABLE odm2.Equipment ADD CONSTRAINT fk_Equipment_Organizations + FOREIGN KEY (EquipmentVendorID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Equipment_People */ +ALTER TABLE odm2.Equipment ADD CONSTRAINT fk_Equipment_People + FOREIGN KEY (EquipmentOwnerID) REFERENCES odm2.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentActions_Actions */ +ALTER TABLE odm2.EquipmentActions ADD CONSTRAINT fk_EquipmentActions_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentActions_Equipment */ +ALTER TABLE odm2.EquipmentActions ADD CONSTRAINT fk_EquipmentActions_Equipment + FOREIGN KEY (EquipmentID) REFERENCES odm2.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_EquipmentModels_Organizations */ +ALTER TABLE odm2.EquipmentModels ADD CONSTRAINT fk_EquipmentModels_Organizations + FOREIGN KEY (ModelManufacturerID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_EquipmentModels */ +ALTER TABLE odm2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_EquipmentModels + FOREIGN KEY (ModelID) REFERENCES odm2.EquipmentModels (EquipmentModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_Methods */ +ALTER TABLE odm2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Methods + FOREIGN KEY (InstrumentMethodID) REFERENCES odm2.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_Units */ +ALTER TABLE odm2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Units + FOREIGN KEY (InstrumentRawOutputUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_InstrumentOutputVariables_Variables */ +ALTER TABLE odm2.InstrumentOutputVariables ADD CONSTRAINT fk_InstrumentOutputVariables_Variables + FOREIGN KEY (VariableID) REFERENCES odm2.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MaintenanceActions_Actions */ +ALTER TABLE odm2.MaintenanceActions ADD CONSTRAINT fk_MaintenanceActions_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedEquipment_Equipment */ +ALTER TABLE odm2.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment + FOREIGN KEY (EquipmentID) REFERENCES odm2.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedEquipment_Equipment_AreRelated */ +ALTER TABLE odm2.RelatedEquipment ADD CONSTRAINT fk_RelatedEquipment_Equipment_AreRelated + FOREIGN KEY (RelatedEquipmentID) REFERENCES odm2.Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionExtensionPropertyValues_Actions */ +ALTER TABLE odm2.ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE odm2.ActionExtensionPropertyValues ADD CONSTRAINT fk_ActionExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES odm2.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExtensionPropertyValues_Citations */ +ALTER TABLE odm2.CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE odm2.CitationExtensionPropertyValues ADD CONSTRAINT fk_CitationExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES odm2.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ExtensionProperties_Units */ +ALTER TABLE odm2.ExtensionProperties ADD CONSTRAINT fk_ExtensionProperties_Units + FOREIGN KEY (PropertyUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE odm2.MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES odm2.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExtensionPropertyValues_Methods */ +ALTER TABLE odm2.MethodExtensionPropertyValues ADD CONSTRAINT fk_MethodExtensionPropertyValues_Methods + FOREIGN KEY (MethodID) REFERENCES odm2.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE odm2.ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES odm2.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultExtensionPropertyValues_Results */ +ALTER TABLE odm2.ResultExtensionPropertyValues ADD CONSTRAINT fk_ResultExtensionPropertyValues_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE odm2.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES odm2.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures */ +ALTER TABLE odm2.SamplingFeatureExtensionPropertyValues ADD CONSTRAINT fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExtensionPropertyValues_ExtensionProperties */ +ALTER TABLE odm2.VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_ExtensionProperties + FOREIGN KEY (PropertyID) REFERENCES odm2.ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExtensionPropertyValues_Variables */ +ALTER TABLE odm2.VariableExtensionPropertyValues ADD CONSTRAINT fk_VariableExtensionPropertyValues_Variables + FOREIGN KEY (VariableID) REFERENCES odm2.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExternalIdentifiers_Citations */ +ALTER TABLE odm2.CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CitationExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE odm2.CitationExternalIdentifiers ADD CONSTRAINT fk_CitationExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ExternalIdentifierSystems_Organizations */ +ALTER TABLE odm2.ExternalIdentifierSystems ADD CONSTRAINT fk_ExternalIdentifierSystems_Organizations + FOREIGN KEY (IdentifierSystemOrganizationID) REFERENCES odm2.Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE odm2.MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodExternalIdentifiers_Methods */ +ALTER TABLE odm2.MethodExternalIdentifiers ADD CONSTRAINT fk_MethodExternalIdentifiers_Methods + FOREIGN KEY (MethodID) REFERENCES odm2.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PersonExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE odm2.PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PersonExternalIdentifiers_People */ +ALTER TABLE odm2.PersonExternalIdentifiers ADD CONSTRAINT fk_PersonExternalIdentifiers_People + FOREIGN KEY (PersonID) REFERENCES odm2.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RefMaterialExtIdentifiers_ExtIdentifierSystems */ +ALTER TABLE odm2.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_ExtIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RefMaterialExtIdentifiers_RefMaterials */ +ALTER TABLE odm2.ReferenceMaterialExternalIdentifiers ADD CONSTRAINT fk_RefMaterialExtIdentifiers_RefMaterials + FOREIGN KEY (ReferenceMaterialID) REFERENCES odm2.ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE odm2.SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SamplingFeatureExternalIdentifiers_SamplingFeatures */ +ALTER TABLE odm2.SamplingFeatureExternalIdentifiers ADD CONSTRAINT fk_SamplingFeatureExternalIdentifiers_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE odm2.SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpatialReferenceExternalIdentifiers_SpatialReferences */ +ALTER TABLE odm2.SpatialReferenceExternalIdentifiers ADD CONSTRAINT fk_SpatialReferenceExternalIdentifiers_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TaxonomicClassifierExtIDs_ExtIDSystems */ +ALTER TABLE odm2.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_ExtIDSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers */ +ALTER TABLE odm2.TaxonomicClassifierExternalIdentifiers ADD CONSTRAINT fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers + FOREIGN KEY (TaxonomicClassifierID) REFERENCES odm2.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExternalIdentifiers_ExternalIdentifierSystems */ +ALTER TABLE odm2.VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_ExternalIdentifierSystems + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES odm2.ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_VariableExternalIdentifiers_Variables */ +ALTER TABLE odm2.VariableExternalIdentifiers ADD CONSTRAINT fk_VariableExternalIdentifiers_Variables + FOREIGN KEY (VariableID) REFERENCES odm2.Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionDirectives_Actions */ +ALTER TABLE odm2.ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ActionDirectives_Directives */ +ALTER TABLE odm2.ActionDirectives ADD CONSTRAINT fk_ActionDirectives_Directives + FOREIGN KEY (DirectiveID) REFERENCES odm2.Directives (DirectiveID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpecimenBatchPostions_FeatureActions */ +ALTER TABLE odm2.SpecimenBatchPostions ADD CONSTRAINT fk_SpecimenBatchPostions_FeatureActions + FOREIGN KEY (FeatureActionID) REFERENCES odm2.FeatureActions (FeatureActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_AuthorLists_Citations */ +ALTER TABLE odm2.AuthorLists ADD CONSTRAINT fk_AuthorLists_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_AuthorLists_People */ +ALTER TABLE odm2.AuthorLists ADD CONSTRAINT fk_AuthorLists_People + FOREIGN KEY (PersonID) REFERENCES odm2.People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetCitations_Citations */ +ALTER TABLE odm2.DataSetCitations ADD CONSTRAINT fk_DataSetCitations_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataSetCitations_DataSets */ +ALTER TABLE odm2.DataSetCitations ADD CONSTRAINT fk_DataSetCitations_DataSets + FOREIGN KEY (DataSetID) REFERENCES odm2.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodCitations_Citations */ +ALTER TABLE odm2.MethodCitations ADD CONSTRAINT fk_MethodCitations_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MethodCitations_Methods */ +ALTER TABLE odm2.MethodCitations ADD CONSTRAINT fk_MethodCitations_Methods + FOREIGN KEY (MethodID) REFERENCES odm2.Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedAnnotations_Annotations */ +ALTER TABLE odm2.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations + FOREIGN KEY (AnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedAnnotations_Annotations_AreRelated */ +ALTER TABLE odm2.RelatedAnnotations ADD CONSTRAINT fk_RelatedAnnotations_Annotations_AreRelated + FOREIGN KEY (RelatedAnnotationID) REFERENCES odm2.Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedCitations_Citations */ +ALTER TABLE odm2.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations + FOREIGN KEY (CitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedCitations_Citations_AreRelated */ +ALTER TABLE odm2.RelatedCitations ADD CONSTRAINT fk_RelatedCitations_Citations_AreRelated + FOREIGN KEY (RelatedCitationID) REFERENCES odm2.Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedDatasets_DataSets */ +ALTER TABLE odm2.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets + FOREIGN KEY (DataSetID) REFERENCES odm2.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedDatasets_DataSets_AreRelated */ +ALTER TABLE odm2.RelatedDatasets ADD CONSTRAINT fk_RelatedDatasets_DataSets_AreRelated + FOREIGN KEY (RelatedDatasetID) REFERENCES odm2.DataSets (DataSetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedResults_Results */ +ALTER TABLE odm2.RelatedResults ADD CONSTRAINT fk_RelatedResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_RelatedResults_Results_AreRelated */ +ALTER TABLE odm2.RelatedResults ADD CONSTRAINT fk_RelatedResults_Results_AreRelated + FOREIGN KEY (RelatedResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultDerivationEquations_DerivationEquations */ +ALTER TABLE odm2.ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_DerivationEquations + FOREIGN KEY (DerivationEquationID) REFERENCES odm2.DerivationEquations (DerivationEquationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ResultDerivationEquations_Results */ +ALTER TABLE odm2.ResultDerivationEquations ADD CONSTRAINT fk_ResultDerivationEquations_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResultValues_CategoricalResults */ +ALTER TABLE odm2.CategoricalResultValues ADD CONSTRAINT fk_CategoricalResultValues_CategoricalResults + FOREIGN KEY (ResultID) REFERENCES odm2.CategoricalResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResults_Results */ +ALTER TABLE odm2.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_CategoricalResults_SpatialReferences */ +ALTER TABLE odm2.CategoricalResults ADD CONSTRAINT fk_CategoricalResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResultValues_MeasurementResults */ +ALTER TABLE odm2.MeasurementResultValues ADD CONSTRAINT fk_MeasurementResultValues_MeasurementResults + FOREIGN KEY (ResultID) REFERENCES odm2.MeasurementResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_AIUnits */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_Results */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_SpatialReferences */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_XUnits */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_YUnits */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_MeasurementResults_ZUnits */ +ALTER TABLE odm2.MeasurementResults ADD CONSTRAINT fk_MeasurementResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValues_PointCoverageResults */ +ALTER TABLE odm2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_PointCoverageResults + FOREIGN KEY (ResultID) REFERENCES odm2.PointCoverageResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValues_XUnits */ +ALTER TABLE odm2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResultValues_YUnits */ +ALTER TABLE odm2.PointCoverageResultValues ADD CONSTRAINT fk_PointCoverageResultValues_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_Results */ +ALTER TABLE odm2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_SpatialReferences */ +ALTER TABLE odm2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_XUnits */ +ALTER TABLE odm2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_XUnits + FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_YUnits */ +ALTER TABLE odm2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_YUnits + FOREIGN KEY (IntendedYSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_PointCoverageResults_ZUnits */ +ALTER TABLE odm2.PointCoverageResults ADD CONSTRAINT fk_PointCoverageResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValues_AIUnits */ +ALTER TABLE odm2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValues_DUnits */ +ALTER TABLE odm2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_DUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResultValues_ProfileResults */ +ALTER TABLE odm2.ProfileResultValues ADD CONSTRAINT fk_ProfileResultValues_ProfileResults + FOREIGN KEY (ResultID) REFERENCES odm2.ProfileResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_DUnits */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT fk_ProfileResults_DUnits + FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_Results */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT fk_ProfileResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_SpatialReferences */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT fk_ProfileResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_TUnits */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT fk_ProfileResults_TUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_XUnits */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT fk_ProfileResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_ProfileResults_YUnits */ +ALTER TABLE odm2.ProfileResults ADD CONSTRAINT fk_ProfileResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_AIUnits */ +ALTER TABLE odm2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_SectionResults */ +ALTER TABLE odm2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_SectionResults + FOREIGN KEY (ResultID) REFERENCES odm2.SectionResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_XUnits */ +ALTER TABLE odm2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResultValues_ZUnits */ +ALTER TABLE odm2.SectionResultValues ADD CONSTRAINT fk_SectionResultValues_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_Results */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT fk_SectionResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_SpatialReferences */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT fk_SectionResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_TMUnits */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT fk_SectionResults_TMUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_Units */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT fk_SectionResults_Units + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_XUnits */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT fk_SectionResults_XUnits + FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SectionResults_ZUnits */ +ALTER TABLE odm2.SectionResults ADD CONSTRAINT fk_SectionResults_ZUnits + FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValues_AIUnits */ +ALTER TABLE odm2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValues_SpectraResults */ +ALTER TABLE odm2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_SpectraResults + FOREIGN KEY (ResultID) REFERENCES odm2.SpectraResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResultValues_WUnits */ +ALTER TABLE odm2.SpectraResultValues ADD CONSTRAINT fk_SpectraResultValues_WUnits + FOREIGN KEY (WavelengthUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_Results */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT fk_SpectraResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_SpatialReferences */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT fk_SpectraResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_Units */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT fk_SpectraResults_Units + FOREIGN KEY (IntendedWavelengthSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_XUnits */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT fk_SpectraResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_YUnits */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT fk_SpectraResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpectraResults_ZUnits */ +ALTER TABLE odm2.SpectraResults ADD CONSTRAINT fk_SpectraResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValues_TimeSeriesResults */ +ALTER TABLE odm2.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_TimeSeriesResults + FOREIGN KEY (ResultID) REFERENCES odm2.TimeSeriesResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResultValues_Units */ +ALTER TABLE odm2.TimeSeriesResultValues ADD CONSTRAINT fk_TimeSeriesResultValues_Units + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_Results */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_SpatialReferences */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_TUnits */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_TUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_XUnits */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_YUnits */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TimeSeriesResults_ZUnits */ +ALTER TABLE odm2.TimeSeriesResults ADD CONSTRAINT fk_TimeSeriesResults_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_AIUnits */ +ALTER TABLE odm2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_AIUnits + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_TrajectoryResults */ +ALTER TABLE odm2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_TrajectoryResults + FOREIGN KEY (ResultID) REFERENCES odm2.TrajectoryResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_XUnits */ +ALTER TABLE odm2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_XUnits + FOREIGN KEY (XLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_YUnits */ +ALTER TABLE odm2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_YUnits + FOREIGN KEY (YLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResultValues_ZUnits */ +ALTER TABLE odm2.TrajectoryResultValues ADD CONSTRAINT fk_TrajectoryResultValues_ZUnits + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_Results */ +ALTER TABLE odm2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_SpatialReferences */ +ALTER TABLE odm2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_TSUnits */ +ALTER TABLE odm2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TSUnits + FOREIGN KEY (IntendedTrajectorySpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TrajectoryResults_TUnits */ +ALTER TABLE odm2.TrajectoryResults ADD CONSTRAINT fk_TrajectoryResults_TUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResultValues_TransectResults */ +ALTER TABLE odm2.TransectResultValues ADD CONSTRAINT fk_TransectResultValues_TransectResults + FOREIGN KEY (ResultID) REFERENCES odm2.TransectResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_Results */ +ALTER TABLE odm2.TransectResults ADD CONSTRAINT fk_TransectResults_Results + FOREIGN KEY (ResultID) REFERENCES odm2.Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_SpatialReferences */ +ALTER TABLE odm2.TransectResults ADD CONSTRAINT fk_TransectResults_SpatialReferences + FOREIGN KEY (SpatialReferenceID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_TMUnits */ +ALTER TABLE odm2.TransectResults ADD CONSTRAINT fk_TransectResults_TMUnits + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_TSUnits */ +ALTER TABLE odm2.TransectResults ADD CONSTRAINT fk_TransectResults_TSUnits + FOREIGN KEY (IntendedTransectSpacingUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_TransectResults_Units */ +ALTER TABLE odm2.TransectResults ADD CONSTRAINT fk_TransectResults_Units + FOREIGN KEY (ZLocationUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureParents_FeaturesParent */ +ALTER TABLE odm2.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_FeaturesParent + FOREIGN KEY (RelatedFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureParents_SamplingFeatures */ +ALTER TABLE odm2.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_FeatureParents_SpatialOffsets */ +ALTER TABLE odm2.RelatedFeatures ADD CONSTRAINT fk_FeatureParents_SpatialOffsets + FOREIGN KEY (SpatialOffsetID) REFERENCES odm2.SpatialOffsets (SpatialOffsetID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Sites_SamplingFeatures */ +ALTER TABLE odm2.Sites ADD CONSTRAINT fk_Sites_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Sites_SpatialReferences */ +ALTER TABLE odm2.Sites ADD CONSTRAINT fk_Sites_SpatialReferences + FOREIGN KEY (LatLonDatumID) REFERENCES odm2.SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpecimenTaxonomicClassifiers_Specimens */ +ALTER TABLE odm2.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_Specimens + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.Specimens (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers */ +ALTER TABLE odm2.SpecimenTaxonomicClassifiers ADD CONSTRAINT fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers + FOREIGN KEY (TaxonomicClassifierID) REFERENCES odm2.TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_Specimens_SamplingFeatures */ +ALTER TABLE odm2.Specimens ADD CONSTRAINT fk_Specimens_SamplingFeatures + FOREIGN KEY (SamplingFeatureID) REFERENCES odm2.SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataLoggerFiles_DataloggerProgramFiles */ +ALTER TABLE odm2.DataLoggerFiles ADD CONSTRAINT fk_DataLoggerFiles_DataloggerProgramFiles + FOREIGN KEY (ProgramID) REFERENCES odm2.DataloggerProgramFiles (ProgramID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DataloggerProgramFiles_Affiliations */ +ALTER TABLE odm2.DataloggerProgramFiles ADD CONSTRAINT fk_DataloggerProgramFiles_Affiliations + FOREIGN KEY (AffiliationID) REFERENCES odm2.Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentActions_Actions */ +ALTER TABLE odm2.DeploymentActions ADD CONSTRAINT fk_DeploymentActions_Actions + FOREIGN KEY (ActionID) REFERENCES odm2.Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_DataLoggerFiles */ +ALTER TABLE odm2.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_DataLoggerFiles + FOREIGN KEY (DataloggerFileID) REFERENCES odm2.DataLoggerFiles (DataLoggerFileID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_DeploymentActions */ +ALTER TABLE odm2.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_DeploymentActions + FOREIGN KEY (ActionID) REFERENCES odm2.DeploymentActions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_InstrumentOutputVariables */ +ALTER TABLE odm2.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_InstrumentOutputVariables + FOREIGN KEY (InstrumentOutputVariableID) REFERENCES odm2.InstrumentOutputVariables (InstrumentOutputVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_RI_Units */ +ALTER TABLE odm2.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_RI_Units + FOREIGN KEY (RecordingIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; + +/* Add Foreign Key: fk_DeploymentMeasuredVariables_SI_Units */ +ALTER TABLE odm2.DeploymentMeasuredVariables ADD CONSTRAINT fk_DeploymentMeasuredVariables_SI_Units + FOREIGN KEY (ScanIntervalUnitsID) REFERENCES odm2.Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION; +/* ================================================================ + ================================================================ */ + +/* ** Set up samplingfeatures.featuregeometry as a heterogeneous, 2D PostGIS geom field. */ +ALTER TABLE odm2.samplingfeatures ALTER COLUMN featuregeometry TYPE geometry; +ALTER TABLE odm2.samplingfeatures ADD CONSTRAINT + enforce_dims_featuregeometry CHECK (st_ndims(featuregeometry) = 2); +CREATE INDEX idx_samplingfeature_featuregeom ON odm2.samplingfeatures USING gist (featuregeometry); +-- Populate and tweak geometry_columns +SELECT Populate_Geometry_Columns(); +-- But it assigned a POINT type to odm2.samplingfeatures. Need instead to use the generic +-- 'geometries', to accept any type (point, line, polygon, and collections thereof [multi-polygon, etc]) +UPDATE public.geometry_columns SET type = 'GEOMETRY' WHERE f_table_schema = 'odm2' AND f_table_name = 'samplingfeatures'; diff --git a/tests/schemas/postgresql/olderversions/__init__.py b/tests/schemas/postgresql/olderversions/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/schemas/postgresql/olderversions/readme.md b/tests/schemas/postgresql/olderversions/readme.md new file mode 100644 index 0000000..946aa7a --- /dev/null +++ b/tests/schemas/postgresql/olderversions/readme.md @@ -0,0 +1,3 @@ +This folder contains older versions of a SQL script for generating a blank ODM2 database within PostgreSQL. These were created using an older process. We have a new process for automatically generating the DDL SQL scripts from Python code. + +**Naming conventions:** Note that the ODM2 information model is being designed using a CamelCase naming convention. In this POsgreSQL SQL script, this convention has been changed to result in an all-lower-case convention. diff --git a/tests/schemas/postgresql/readme.md b/tests/schemas/postgresql/readme.md new file mode 100644 index 0000000..aac007d --- /dev/null +++ b/tests/schemas/postgresql/readme.md @@ -0,0 +1 @@ +This folder contains a SQL script for generating a blank ODM2 database within PostgreSQL. diff --git a/tests/schemas/readme.md b/tests/schemas/readme.md new file mode 100644 index 0000000..15e8a6b --- /dev/null +++ b/tests/schemas/readme.md @@ -0,0 +1 @@ +This folder contains SQL scripts for generating blank ODM2 schemas within Microsoft SQL Server, PostgreSQL, MySQL, and SQLite. \ No newline at end of file diff --git a/tests/schemas/sqlite/ODM2_for_SQLite.sql b/tests/schemas/sqlite/ODM2_for_SQLite.sql new file mode 100644 index 0000000..8c593bf --- /dev/null +++ b/tests/schemas/sqlite/ODM2_for_SQLite.sql @@ -0,0 +1,1817 @@ + +/***************************************************************************/ +/************************* CREATE ODM2ANNOTATIONS **************************/ +/***************************************************************************/ + +CREATE TABLE ActionAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Annotations ( + AnnotationID INTEGER NOT NULL PRIMARY KEY, + AnnotationTypeCV VARCHAR (255) NOT NULL, + AnnotationCode VARCHAR (50) NULL, + AnnotationText VARCHAR (500) NOT NULL, + AnnotationDateTime DATETIME NULL, + AnnotationUTCOffset INTEGER NULL, + AnnotationLink VARCHAR (255) NULL, + AnnotatorID INTEGER NULL, + CitationID INTEGER NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AnnotationTypeCV) REFERENCES CV_AnnotationType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AnnotatorID) REFERENCES People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE CategoricalResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES CategoricalResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE EquipmentAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + EquipmentID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE MeasurementResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (ValueID) REFERENCES MeasurementResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE MethodAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + MethodID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE PointCoverageResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES PointCoverageResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ProfileResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES ProfileResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ResultAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + BeginDateTime DATETIME NOT NULL, + EndDateTime DATETIME NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SamplingFeatureAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SectionResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES SectionResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpectraResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES SpectraResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TimeSeriesResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES TimeSeriesResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TrajectoryResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES TrajectoryResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TransectResultValueAnnotations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ValueID INTEGER NOT NULL, + AnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ValueID) REFERENCES TransectResultValues (ValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/***************************** CREATE ODM2CORE *****************************/ +/***************************************************************************/ + +CREATE TABLE ActionBy ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + AffiliationID INTEGER NOT NULL, + IsActionLead BIT NOT NULL, + RoleDescription VARCHAR (500) NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AffiliationID) REFERENCES Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Actions ( + ActionID INTEGER NOT NULL PRIMARY KEY, + ActionTypeCV VARCHAR (255) NOT NULL, + MethodID INTEGER NOT NULL, + BeginDateTime DATETIME NOT NULL, + BeginDateTimeUTCOffset INTEGER NOT NULL, + EndDateTime DATETIME NULL, + EndDateTimeUTCOffset INTEGER NULL, + ActionDescription VARCHAR (500) NULL, + ActionFileLink VARCHAR (255) NULL, + FOREIGN KEY (ActionTypeCV) REFERENCES CV_ActionType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Affiliations ( + AffiliationID INTEGER NOT NULL PRIMARY KEY, + PersonID INTEGER NOT NULL, + OrganizationID INTEGER NULL, + IsPrimaryOrganizationContact BIT NULL, + AffiliationStartDate DATE NOT NULL, + AffiliationEndDate DATE NULL, + PrimaryPhone VARCHAR (50) NULL, + PrimaryEmail VARCHAR (255) NOT NULL, + PrimaryAddress VARCHAR (255) NULL, + PersonLink VARCHAR (255) NULL, + FOREIGN KEY (OrganizationID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (PersonID) REFERENCES People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Datasets ( + DatasetID INTEGER NOT NULL PRIMARY KEY, + DatasetUUID VARCHAR(36) NOT NULL, + DatasetTypeCV VARCHAR (255) NOT NULL, + DatasetCode VARCHAR (50) NOT NULL, + DatasetTitle VARCHAR (255) NOT NULL, + DatasetAbstract VARCHAR (500) NOT NULL, + FOREIGN KEY (DatasetTypeCV) REFERENCES CV_DatasetType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (DatasetCode) +); + +CREATE TABLE DatasetsResults ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + DatasetID INTEGER NOT NULL, + ResultID INTEGER NOT NULL, + FOREIGN KEY (DatasetID) REFERENCES Datasets (DatasetID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE FeatureActions ( + FeatureActionID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureID INTEGER NOT NULL, + ActionID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Methods ( + MethodID INTEGER NOT NULL PRIMARY KEY, + MethodTypeCV VARCHAR (255) NOT NULL, + MethodCode VARCHAR (50) NOT NULL, + MethodName VARCHAR (255) NOT NULL, + MethodDescription VARCHAR (500) NULL, + MethodLink VARCHAR (255) NULL, + OrganizationID INTEGER NULL, + FOREIGN KEY (MethodTypeCV) REFERENCES CV_MethodType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (OrganizationID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (MethodCode) +); + +CREATE TABLE Organizations ( + OrganizationID INTEGER NOT NULL PRIMARY KEY, + OrganizationTypeCV VARCHAR (255) NOT NULL, + OrganizationCode VARCHAR (50) NOT NULL, + OrganizationName VARCHAR (255) NOT NULL, + OrganizationDescription VARCHAR (500) NULL, + OrganizationLink VARCHAR (255) NULL, + ParentOrganizationID INTEGER NULL, + FOREIGN KEY (OrganizationTypeCV) REFERENCES CV_OrganizationType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ParentOrganizationID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (OrganizationCode) +); + +CREATE TABLE People ( + PersonID INTEGER NOT NULL PRIMARY KEY, + PersonFirstName VARCHAR (255) NOT NULL, + PersonMiddleName VARCHAR (255) NULL, + PersonLastName VARCHAR (255) NOT NULL +); + +CREATE TABLE ProcessingLevels ( + ProcessingLevelID INTEGER NOT NULL PRIMARY KEY, + ProcessingLevelCode VARCHAR (50) NOT NULL, + Definition VARCHAR (500) NULL, + Explanation VARCHAR (500) NULL, + UNIQUE (ProcessingLevelCode) +); + +CREATE TABLE RelatedActions ( + RelationID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedActionID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelatedActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Results ( + ResultID INTEGER NOT NULL PRIMARY KEY, + ResultUUID VARCHAR(36) NOT NULL, + FeatureActionID INTEGER NOT NULL, + ResultTypeCV VARCHAR (255) NOT NULL, + VariableID INTEGER NOT NULL, + UnitsID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NULL, + ProcessingLevelID INTEGER NOT NULL, + ResultDateTime DATETIME NULL, + ResultDateTimeUTCOffset INTEGER NULL, + ValidDateTime DATETIME NULL, + ValidDateTimeUTCOffset INTEGER NULL, + StatusCV VARCHAR (255) NULL, + SampledMediumCV VARCHAR (255) NOT NULL, + ValueCount INTEGER NOT NULL, + FOREIGN KEY (SampledMediumCV) REFERENCES CV_Medium (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultTypeCV) REFERENCES CV_ResultType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (StatusCV) REFERENCES CV_Status (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (FeatureActionID) REFERENCES FeatureActions (FeatureActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ProcessingLevelID) REFERENCES ProcessingLevels (ProcessingLevelID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (TaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (UnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SamplingFeatures ( + SamplingFeatureID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureUUID VARCHAR(36) NOT NULL, + SamplingFeatureTypeCV VARCHAR (255) NOT NULL, + SamplingFeatureCode VARCHAR (50) NOT NULL, + SamplingFeatureName VARCHAR (255) NULL, + SamplingFeatureDescription VARCHAR (500) NULL, + SamplingFeatureGeotypeCV VARCHAR (255) NULL, + FeatureGeometry geometry NULL, + FeatureGeometryWKT VARCHAR (8000) NULL, + Elevation_m FLOAT NULL, + ElevationDatumCV VARCHAR (255) NULL, + FOREIGN KEY (ElevationDatumCV) REFERENCES CV_ElevationDatum (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureGeotypeCV) REFERENCES CV_SamplingFeatureGeoType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureTypeCV) REFERENCES CV_SamplingFeatureType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (SamplingFeatureCode) +); + +CREATE TABLE TaxonomicClassifiers ( + TaxonomicClassifierID INTEGER NOT NULL PRIMARY KEY, + TaxonomicClassifierTypeCV VARCHAR (255) NOT NULL, + TaxonomicClassifierName VARCHAR (255) NOT NULL, + TaxonomicClassifierCommonName VARCHAR (255) NULL, + TaxonomicClassifierDescription VARCHAR (500) NULL, + ParentTaxonomicClassifierID INTEGER NULL, + FOREIGN KEY (ParentTaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (TaxonomicClassifierTypeCV) REFERENCES CV_TaxonomicClassifierType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Units ( + UnitsID INTEGER NOT NULL PRIMARY KEY, + UnitsTypeCV VARCHAR (255) NOT NULL, + UnitsAbbreviation VARCHAR (50) NOT NULL, + UnitsName VARCHAR (255) NOT NULL, + UnitsLink VARCHAR (255) NULL, + FOREIGN KEY (UnitsTypeCV) REFERENCES CV_UnitsType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Variables ( + VariableID INTEGER NOT NULL PRIMARY KEY, + VariableTypeCV VARCHAR (255) NOT NULL, + VariableCode VARCHAR (50) NOT NULL, + VariableNameCV VARCHAR (255) NOT NULL, + VariableDefinition VARCHAR (500) NULL, + SpeciationCV VARCHAR (255) NULL, + NoDataValue DOUBLE NOT NULL, + FOREIGN KEY (SpeciationCV) REFERENCES CV_Speciation (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableNameCV) REFERENCES CV_VariableName (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableTypeCV) REFERENCES CV_VariableType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (VariableCode) +); + +/***************************************************************************/ +/****************************** CREATE ODM2CV ******************************/ +/***************************************************************************/ + +CREATE TABLE CV_ActionType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_AggregationStatistic ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_AnnotationType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_CensorCode ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_DataQualityType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_DatasetType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_DirectiveType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_ElevationDatum ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_EquipmentType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_Medium ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_MethodType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_OrganizationType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_PropertyDataType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_QualityCode ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_RelationshipType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_ResultType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SamplingFeatureGeoType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SamplingFeatureType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SiteType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SpatialOffsetType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_Speciation ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_SpecimenType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_Status ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_TaxonomicClassifierType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_UnitsType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_VariableName ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +CREATE TABLE CV_VariableType ( + Term VARCHAR (255) NOT NULL, + Name VARCHAR (255) NOT NULL PRIMARY KEY, + Definition VARCHAR (5000) NULL, + Category VARCHAR (255) NULL, + SourceVocabularyURI VARCHAR (255) NULL +); + +/***************************************************************************/ +/************************* CREATE ODM2DATAQUALITY **************************/ +/***************************************************************************/ + +CREATE TABLE DataQuality ( + DataQualityID INTEGER NOT NULL PRIMARY KEY, + DataQualityTypeCV VARCHAR (255) NOT NULL, + DataQualityCode VARCHAR (255) NOT NULL, + DataQualityValue FLOAT NULL, + DataQualityValueUnitsID INTEGER NULL, + DataQualityDescription VARCHAR (500) NULL, + DataQualityLink VARCHAR (255) NULL, + FOREIGN KEY (DataQualityTypeCV) REFERENCES CV_DataQualityType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (DataQualityValueUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (DataQualityCode) +); + +CREATE TABLE ReferenceMaterials ( + ReferenceMaterialID INTEGER NOT NULL PRIMARY KEY, + ReferenceMaterialMediumCV VARCHAR (255) NOT NULL, + ReferenceMaterialOrganizationID INTEGER NOT NULL, + ReferenceMaterialCode VARCHAR (50) NOT NULL, + ReferenceMaterialLotCode VARCHAR (255) NULL, + ReferenceMaterialPurchaseDate DATETIME NULL, + ReferenceMaterialExpirationDate DATETIME NULL, + ReferenceMaterialCertificateLink VARCHAR (255) NULL, + SamplingFeatureID INTEGER NULL, + FOREIGN KEY (ReferenceMaterialMediumCV) REFERENCES CV_Medium (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ReferenceMaterialOrganizationID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ReferenceMaterialCode) +); + +CREATE TABLE ReferenceMaterialValues ( + ReferenceMaterialValueID INTEGER NOT NULL PRIMARY KEY, + ReferenceMaterialID INTEGER NOT NULL, + ReferenceMaterialValue FLOAT NOT NULL, + ReferenceMaterialAccuracy FLOAT NULL, + VariableID INTEGER NOT NULL, + UnitsID INTEGER NOT NULL, + CitationID INTEGER NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ReferenceMaterialID) REFERENCES ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (UnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ResultNormalizationValues ( + ResultID INTEGER NOT NULL PRIMARY KEY, + NormalizedByReferenceMaterialValueID INTEGER NOT NULL, + FOREIGN KEY (NormalizedByReferenceMaterialValueID) REFERENCES ReferenceMaterialValues (ReferenceMaterialValueID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ResultsDataQuality ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataQualityID INTEGER NOT NULL, + FOREIGN KEY (DataQualityID) REFERENCES DataQuality (DataQualityID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/************************** CREATE ODM2EQUIPMENT ***************************/ +/***************************************************************************/ + +CREATE TABLE CalibrationActions ( + ActionID INTEGER NOT NULL PRIMARY KEY, + CalibrationCheckValue FLOAT NULL, + InstrumentOutputVariableID INTEGER NOT NULL, + CalibrationEquation VARCHAR (255) NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (InstrumentOutputVariableID) REFERENCES InstrumentOutputVariables (InstrumentOutputVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE CalibrationReferenceEquipment ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES CalibrationActions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE CalibrationStandards ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + ReferenceMaterialID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES CalibrationActions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ReferenceMaterialID) REFERENCES ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE DataloggerFileColumns ( + DataloggerFileColumnID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NULL, + DataLoggerFileID INTEGER NOT NULL, + InstrumentOutputVariableID INTEGER NOT NULL, + ColumnLabel VARCHAR (50) NOT NULL, + ColumnDescription VARCHAR (500) NULL, + MeasurementEquation VARCHAR (255) NULL, + ScanInterval FLOAT NULL, + ScanIntervalUnitsID INTEGER NULL, + RecordingInterval FLOAT NULL, + RecordingIntervalUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (DataLoggerFileID) REFERENCES DataLoggerFiles (DataLoggerFileID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (InstrumentOutputVariableID) REFERENCES InstrumentOutputVariables (InstrumentOutputVariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RecordingIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ScanIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE DataLoggerFiles ( + DataLoggerFileID INTEGER NOT NULL PRIMARY KEY, + ProgramID INTEGER NOT NULL, + DataLoggerFileName VARCHAR (255) NOT NULL, + DataLoggerFileDescription VARCHAR (500) NULL, + DataLoggerFileLink VARCHAR (255) NULL, + FOREIGN KEY (ProgramID) REFERENCES DataloggerProgramFiles (ProgramID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE DataloggerProgramFiles ( + ProgramID INTEGER NOT NULL PRIMARY KEY, + AffiliationID INTEGER NOT NULL, + ProgramName VARCHAR (255) NOT NULL, + ProgramDescription VARCHAR (500) NULL, + ProgramVersion VARCHAR (50) NULL, + ProgramFileLink VARCHAR (255) NULL, + FOREIGN KEY (AffiliationID) REFERENCES Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Equipment ( + EquipmentID INTEGER NOT NULL PRIMARY KEY, + EquipmentCode VARCHAR (50) NOT NULL, + EquipmentName VARCHAR (255) NOT NULL, + EquipmentTypeCV VARCHAR (255) NOT NULL, + EquipmentModelID INTEGER NOT NULL, + EquipmentSerialNumber VARCHAR (50) NOT NULL, + EquipmentOwnerID INTEGER NOT NULL, + EquipmentVendorID INTEGER NOT NULL, + EquipmentPurchaseDate DATETIME NOT NULL, + EquipmentPurchaseOrderNumber VARCHAR (50) NULL, + EquipmentDescription VARCHAR (500) NULL, + EquipmentDocumentationLink VARCHAR (255) NULL, + FOREIGN KEY (EquipmentTypeCV) REFERENCES CV_EquipmentType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentModelID) REFERENCES EquipmentModels (EquipmentModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentVendorID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentOwnerID) REFERENCES People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (EquipmentCode) +); + +CREATE TABLE EquipmentModels ( + EquipmentModelID INTEGER NOT NULL PRIMARY KEY, + ModelManufacturerID INTEGER NOT NULL, + ModelPartNumber VARCHAR (50) NULL, + ModelName VARCHAR (255) NOT NULL, + ModelDescription VARCHAR (500) NULL, + IsInstrument BIT NOT NULL, + ModelSpecificationsFileLink VARCHAR (255) NULL, + ModelLink VARCHAR (255) NULL, + FOREIGN KEY (ModelManufacturerID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE EquipmentUsed ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + EquipmentID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE InstrumentOutputVariables ( + InstrumentOutputVariableID INTEGER NOT NULL PRIMARY KEY, + ModelID INTEGER NOT NULL, + VariableID INTEGER NOT NULL, + InstrumentMethodID INTEGER NOT NULL, + InstrumentResolution VARCHAR (255) NULL, + InstrumentAccuracy VARCHAR (255) NULL, + InstrumentRawOutputUnitsID INTEGER NOT NULL, + FOREIGN KEY (ModelID) REFERENCES EquipmentModels (EquipmentModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (InstrumentMethodID) REFERENCES Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (InstrumentRawOutputUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE MaintenanceActions ( + ActionID INTEGER NOT NULL PRIMARY KEY, + IsFactoryService BIT NOT NULL, + MaintenanceCode VARCHAR (50) NULL, + MaintenanceReason VARCHAR (500) NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE RelatedEquipment ( + RelationID INTEGER NOT NULL PRIMARY KEY, + EquipmentID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedEquipmentID INTEGER NOT NULL, + RelationshipStartDateTime DATETIME NOT NULL, + RelationshipStartDateTimeUTCOffset INTEGER NOT NULL, + RelationshipEndDateTime DATETIME NULL, + RelationshipEndDateTimeUTCOffset INTEGER NULL, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (EquipmentID) REFERENCES Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelatedEquipmentID) REFERENCES Equipment (EquipmentID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/********************* CREATE ODM2EXTENSIONPROPERTIES **********************/ +/***************************************************************************/ + +CREATE TABLE ActionExtensionPropertyValues ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR (255) NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE CitationExtensionPropertyValues ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + CitationID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR (255) NOT NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ExtensionProperties ( + PropertyID INTEGER NOT NULL PRIMARY KEY, + PropertyName VARCHAR (255) NOT NULL, + PropertyDescription VARCHAR (500) NULL, + PropertyDataTypeCV VARCHAR (255) NOT NULL, + PropertyUnitsID INTEGER NULL, + FOREIGN KEY (PropertyDataTypeCV) REFERENCES CV_PropertyDataType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (PropertyUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE MethodExtensionPropertyValues ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + MethodID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR (255) NOT NULL, + FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ResultExtensionPropertyValues ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR (255) NOT NULL, + FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SamplingFeatureExtensionPropertyValues ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR (255) NOT NULL, + FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE VariableExtensionPropertyValues ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + VariableID INTEGER NOT NULL, + PropertyID INTEGER NOT NULL, + PropertyValue VARCHAR (255) NOT NULL, + FOREIGN KEY (PropertyID) REFERENCES ExtensionProperties (PropertyID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/********************* CREATE ODM2EXTERNALIDENTIFIERS **********************/ +/***************************************************************************/ + +CREATE TABLE CitationExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + CitationID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + CitationExternalIdentifier VARCHAR (255) NOT NULL, + CitationExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ExternalIdentifierSystems ( + ExternalIdentifierSystemID INTEGER NOT NULL PRIMARY KEY, + ExternalIdentifierSystemName VARCHAR (255) NOT NULL, + IdentifierSystemOrganizationID INTEGER NOT NULL, + ExternalIdentifierSystemDescription VARCHAR (500) NULL, + ExternalIdentifierSystemURL VARCHAR (255) NULL, + FOREIGN KEY (IdentifierSystemOrganizationID) REFERENCES Organizations (OrganizationID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE MethodExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + MethodID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + MethodExternalIdentifier VARCHAR (255) NOT NULL, + MethodExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE PersonExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + PersonID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + PersonExternalIdentifier VARCHAR (255) NOT NULL, + PersonExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (PersonID) REFERENCES People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ReferenceMaterialExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ReferenceMaterialID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + ReferenceMaterialExternalIdentifier VARCHAR (255) NOT NULL, + ReferenceMaterialExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ReferenceMaterialID) REFERENCES ReferenceMaterials (ReferenceMaterialID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SamplingFeatureExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + SamplingFeatureExternalIdentifier VARCHAR (255) NOT NULL, + SamplingFeatureExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpatialReferenceExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + SpatialReferenceID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + SpatialReferenceExternalIdentifier VARCHAR (255) NOT NULL, + SpatialReferenceExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TaxonomicClassifierExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + TaxonomicClassifierID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + TaxonomicClassifierExternalIdentifier VARCHAR (255) NOT NULL, + TaxonomicClassifierExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (TaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE VariableExternalIdentifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + VariableID INTEGER NOT NULL, + ExternalIdentifierSystemID INTEGER NOT NULL, + VariableExternalIdentifer VARCHAR (255) NOT NULL, + VariableExternalIdentifierURI VARCHAR (255) NULL, + FOREIGN KEY (ExternalIdentifierSystemID) REFERENCES ExternalIdentifierSystems (ExternalIdentifierSystemID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (VariableID) REFERENCES Variables (VariableID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/************************* CREATE ODM2LABANALYSES **************************/ +/***************************************************************************/ + +CREATE TABLE ActionDirectives ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + DirectiveID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (DirectiveID) REFERENCES Directives (DirectiveID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Directives ( + DirectiveID INTEGER NOT NULL PRIMARY KEY, + DirectiveTypeCV VARCHAR (255) NOT NULL, + DirectiveDescription VARCHAR (500) NOT NULL, + FOREIGN KEY (DirectiveTypeCV) REFERENCES CV_DirectiveType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpecimenBatchPostions ( + FeatureActionID INTEGER NOT NULL PRIMARY KEY, + BatchPositionNumber INTEGER NOT NULL, + BatchPositionLabel VARCHAR (255) NULL, + FOREIGN KEY (FeatureActionID) REFERENCES FeatureActions (FeatureActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/************************** CREATE ODM2PROVENANCE **************************/ +/***************************************************************************/ + +CREATE TABLE AuthorLists ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + CitationID INTEGER NOT NULL, + PersonID INTEGER NOT NULL, + AuthorOrder INTEGER NOT NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (PersonID) REFERENCES People (PersonID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Citations ( + CitationID INTEGER NOT NULL PRIMARY KEY, + Title VARCHAR (255) NOT NULL, + Publisher VARCHAR (255) NOT NULL, + PublicationYear INTEGER NOT NULL, + CitationLink VARCHAR (255) NULL +); + +CREATE TABLE DatasetCitations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + DataSetID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + CitationID INTEGER NOT NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (DataSetID) REFERENCES Datasets (DatasetID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE DerivationEquations ( + DerivationEquationID INTEGER NOT NULL PRIMARY KEY, + DerivationEquation VARCHAR (255) NOT NULL +); + +CREATE TABLE MethodCitations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + MethodID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + CitationID INTEGER NOT NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (MethodID) REFERENCES Methods (MethodID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE RelatedAnnotations ( + RelationID INTEGER NOT NULL PRIMARY KEY, + AnnotationID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedAnnotationID INTEGER NOT NULL, + FOREIGN KEY (AnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelatedAnnotationID) REFERENCES Annotations (AnnotationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE RelatedCitations ( + RelationID INTEGER NOT NULL PRIMARY KEY, + CitationID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedCitationID INTEGER NOT NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelatedCitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE RelatedDatasets ( + RelationID INTEGER NOT NULL PRIMARY KEY, + DataSetID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedDatasetID INTEGER NOT NULL, + VersionCode VARCHAR (50) NULL, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (DataSetID) REFERENCES Datasets (DatasetID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelatedDatasetID) REFERENCES Datasets (DatasetID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE RelatedResults ( + RelationID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedResultID INTEGER NOT NULL, + VersionCode VARCHAR (50) NULL, + RelatedResultSequenceNumber INTEGER NULL, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelatedResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ResultDerivationEquations ( + ResultID INTEGER NOT NULL PRIMARY KEY, + DerivationEquationID INTEGER NOT NULL, + FOREIGN KEY (DerivationEquationID) REFERENCES DerivationEquations (DerivationEquationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/*************************** CREATE ODM2RESULTS ****************************/ +/***************************************************************************/ + +CREATE TABLE CategoricalResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE CategoricalResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue VARCHAR (255) NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + FOREIGN KEY (ResultID) REFERENCES CategoricalResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +); + +CREATE TABLE MeasurementResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE MeasurementResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + FOREIGN KEY (ResultID) REFERENCES MeasurementResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset) +); + +CREATE TABLE PointCoverageResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INTEGER NULL, + IntendedYSpacing FLOAT NULL, + IntendedYSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedYSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE PointCoverageResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue DOUBLE NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES PointCoverageResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, CensorCodeCV, QualityCodeCV) +); + +CREATE TABLE ProfileResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE ProfileResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + ZLocation FLOAT NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES ProfileResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE SectionResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedXSpacing FLOAT NULL, + IntendedXSpacingUnitsID INTEGER NULL, + IntendedZSpacing FLOAT NULL, + IntendedZSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedXSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedZSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SectionResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue DOUBLE NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation DOUBLE NOT NULL, + XAggregationInterval FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + ZLocation INTEGER NOT NULL, + ZAggregationInterval FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES SectionResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XAggregationInterval, XLocationUnitsID, ZLocation, ZAggregationInterval, ZLocationUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE SpectraResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedWavelengthSpacing DOUBLE NULL, + IntendedWavelengthSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedWavelengthSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpectraResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + ExcitationWavelength FLOAT NOT NULL, + EmissionWavelength FLOAT NOT NULL, + WavelengthUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval DOUBLE NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES SpectraResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (WavelengthUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, ExcitationWavelength, EmissionWavelength, WavelengthUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE TimeSeriesResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + XLocation FLOAT NULL, + XLocationUnitsID INTEGER NULL, + YLocation FLOAT NULL, + YLocationUnitsID INTEGER NULL, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TimeSeriesResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES TimeSeriesResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE TrajectoryResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + SpatialReferenceID INTEGER NULL, + IntendedTrajectorySpacing FLOAT NULL, + IntendedTrajectorySpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTrajectorySpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TrajectoryResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + ZLocation FLOAT NOT NULL, + ZLocationUnitsID INTEGER NOT NULL, + TrajectoryDistance FLOAT NOT NULL, + TrajectoryDistanceAggregationInterval FLOAT NOT NULL, + TrajectoryDistanceUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (TrajectoryDistanceUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES TrajectoryResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, ZLocation, ZLocationUnitsID, TrajectoryDistance, TrajectoryDistanceAggregationInterval, TrajectoryDistanceUnitsID, CensorCodeCV, QualityCodeCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +CREATE TABLE TransectResults ( + ResultID INTEGER NOT NULL PRIMARY KEY, + ZLocation FLOAT NULL, + ZLocationUnitsID INTEGER NULL, + SpatialReferenceID INTEGER NULL, + IntendedTransectSpacing FLOAT NULL, + IntendedTransectSpacingUnitsID INTEGER NULL, + IntendedTimeSpacing FLOAT NULL, + IntendedTimeSpacingUnitsID INTEGER NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES Results (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTimeSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (IntendedTransectSpacingUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ZLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE TransectResultValues ( + ValueID INTEGER NOT NULL PRIMARY KEY, + ResultID INTEGER NOT NULL, + DataValue FLOAT NOT NULL, + ValueDateTime DATETIME NOT NULL, + ValueDateTimeUTCOffset INTEGER NOT NULL, + XLocation FLOAT NOT NULL, + XLocationUnitsID INTEGER NOT NULL, + YLocation FLOAT NOT NULL, + YLocationUnitsID INTEGER NOT NULL, + TransectDistance FLOAT NOT NULL, + TransectDistanceAggregationInterval FLOAT NOT NULL, + TransectDistanceUnitsID INTEGER NOT NULL, + CensorCodeCV VARCHAR (255) NOT NULL, + QualityCodeCV VARCHAR (255) NOT NULL, + AggregationStatisticCV VARCHAR (255) NOT NULL, + TimeAggregationInterval FLOAT NOT NULL, + TimeAggregationIntervalUnitsID INTEGER NOT NULL, + FOREIGN KEY (TimeAggregationIntervalUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (AggregationStatisticCV) REFERENCES CV_AggregationStatistic (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (CensorCodeCV) REFERENCES CV_CensorCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (QualityCodeCV) REFERENCES CV_QualityCode (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (TransectDistanceUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ResultID) REFERENCES TransectResults (ResultID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (XLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (YLocationUnitsID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + UNIQUE (ResultID, DataValue, ValueDateTime, ValueDateTimeUTCOffset, XLocation, XLocationUnitsID, YLocation, YLocationUnitsID, TransectDistance, TransectDistanceAggregationInterval, TransectDistanceUnitsID, CensorCodeCV, QualityCodeCV, AggregationStatisticCV, TimeAggregationInterval, TimeAggregationIntervalUnitsID) +); + +/***************************************************************************/ +/*********************** CREATE ODM2SAMPLINGFEATURES ***********************/ +/***************************************************************************/ + +CREATE TABLE RelatedFeatures ( + RelationID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedFeatureID INTEGER NOT NULL, + SpatialOffsetID INTEGER NULL, + FOREIGN KEY (RelatedFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialOffsetID) REFERENCES SpatialOffsets (SpatialOffsetID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Sites ( + SamplingFeatureID INTEGER NOT NULL PRIMARY KEY, + SiteTypeCV VARCHAR (255) NOT NULL, + Latitude FLOAT NOT NULL, + Longitude FLOAT NOT NULL, + SpatialReferenceID INTEGER NOT NULL, + FOREIGN KEY (SiteTypeCV) REFERENCES CV_SiteType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpatialReferenceID) REFERENCES SpatialReferences (SpatialReferenceID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpatialOffsets ( + SpatialOffsetID INTEGER NOT NULL PRIMARY KEY, + SpatialOffsetTypeCV VARCHAR (255) NOT NULL, + Offset1Value FLOAT NOT NULL, + Offset1UnitID INTEGER NOT NULL, + Offset2Value FLOAT NULL, + Offset2UnitID INTEGER NULL, + Offset3Value FLOAT NULL, + Offset3UnitID INTEGER NULL, + FOREIGN KEY (SpatialOffsetTypeCV) REFERENCES CV_SpatialOffsetType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (Offset1UnitID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (Offset2UnitID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (Offset3UnitID) REFERENCES Units (UnitsID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpatialReferences ( + SpatialReferenceID INTEGER NOT NULL PRIMARY KEY, + SRSCode VARCHAR (50) NULL, + SRSName VARCHAR (255) NOT NULL, + SRSDescription VARCHAR (500) NULL, + SRSLink VARCHAR (255) NULL +); + +CREATE TABLE Specimens ( + SamplingFeatureID INTEGER NOT NULL PRIMARY KEY, + SpecimenTypeCV VARCHAR (255) NOT NULL, + SpecimenMediumCV VARCHAR (255) NOT NULL, + IsFieldSpecimen BIT NOT NULL, + FOREIGN KEY (SpecimenMediumCV) REFERENCES CV_Medium (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SpecimenTypeCV) REFERENCES CV_SpecimenType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES SamplingFeatures (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE SpecimenTaxonomicClassifiers ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + SamplingFeatureID INTEGER NOT NULL, + TaxonomicClassifierID INTEGER NOT NULL, + CitationID INTEGER NULL, + FOREIGN KEY (CitationID) REFERENCES Citations (CitationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (SamplingFeatureID) REFERENCES Specimens (SamplingFeatureID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (TaxonomicClassifierID) REFERENCES TaxonomicClassifiers (TaxonomicClassifierID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +/***************************************************************************/ +/************************** CREATE ODM2SIMULATION **************************/ +/***************************************************************************/ + +CREATE TABLE ModelAffiliations ( + BridgeID INTEGER NOT NULL PRIMARY KEY, + ModelID INTEGER NOT NULL, + AffiliationID INTEGER NOT NULL, + IsPrimary BIT NOT NULL, + RoleDescription VARCHAR (500) NULL, + FOREIGN KEY (AffiliationID) REFERENCES Affiliations (AffiliationID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ModelID) REFERENCES Models (ModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Models ( + ModelID INTEGER NOT NULL PRIMARY KEY, + ModelCode VARCHAR (50) NOT NULL, + ModelName VARCHAR (255) NOT NULL, + ModelDescription VARCHAR (500) NULL, + Version VARCHAR (255) NULL, + ModelLink VARCHAR (255) NULL, + UNIQUE (ModelCode) +); + +CREATE TABLE RelatedModels ( + RelatedID INTEGER NOT NULL PRIMARY KEY, + ModelID INTEGER NOT NULL, + RelationshipTypeCV VARCHAR (255) NOT NULL, + RelatedModelID INTEGER NOT NULL, + FOREIGN KEY (RelationshipTypeCV) REFERENCES CV_RelationshipType (Name) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ModelID) REFERENCES Models (ModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); + +CREATE TABLE Simulations ( + SimulationID INTEGER NOT NULL PRIMARY KEY, + ActionID INTEGER NOT NULL, + SimulationName VARCHAR (255) NOT NULL, + SimulationDescription VARCHAR (500) NULL, + SimulationStartDateTime DATETIME NOT NULL, + SimulationStartDateTimeUTCOffset INTEGER NOT NULL, + SimulationEndDateTime DATETIME NOT NULL, + SimulationEndDateTimeUTCOffset INTEGER NOT NULL, + TimeStepValue FLOAT NOT NULL, + TimeStepUnitsID INTEGER NOT NULL, + InputDataSetID INTEGER NULL, + ModelID INTEGER NOT NULL, + FOREIGN KEY (ActionID) REFERENCES Actions (ActionID) + ON UPDATE NO ACTION ON DELETE NO ACTION, + FOREIGN KEY (ModelID) REFERENCES Models (ModelID) + ON UPDATE NO ACTION ON DELETE NO ACTION +); diff --git a/tests/schemas/sqlite/readme.md b/tests/schemas/sqlite/readme.md new file mode 100644 index 0000000..a80280d --- /dev/null +++ b/tests/schemas/sqlite/readme.md @@ -0,0 +1 @@ +This folder contains a SQL script for generating a blank ODM2 database within SQLite. diff --git a/tests/spatialite/odm2_test.sqlite b/tests/spatialite/odm2_test.sqlite new file mode 100644 index 0000000..3f254c0 Binary files /dev/null and b/tests/spatialite/odm2_test.sqlite differ diff --git a/tests/spatialite/wof2odm/ODM2.sqlite b/tests/spatialite/wof2odm/ODM2.sqlite new file mode 100644 index 0000000..e15ecf9 Binary files /dev/null and b/tests/spatialite/wof2odm/ODM2.sqlite differ diff --git a/tests/test_SessionFactory.py b/tests/test_SessionFactory.py new file mode 100644 index 0000000..ee7b412 --- /dev/null +++ b/tests/test_SessionFactory.py @@ -0,0 +1,72 @@ +__author__ = 'valentine' +from odm2api.ODMconnection import SessionFactory +from odm2api.ODM2.models import * +import pytest +from sqlalchemy.engine import reflection + +# assumes that pytest is being run from ODM2PythonAPI director +# [name, driver, connectionstring ] +dbs_readonly = [ + # ['mysql', 'localhost', 'odm2', 'ODM', 'odm'], + ['mysql:ODM@Localhost/', 'mysql', 'mysql+pymysql://ODM:odm@localhost/'], + ['mysql"root@Localhost/', 'mysql', 'mysql+pymysql://root@localhost/'], + ['mysql:ODM@Localhost/odm2', 'mysql', 'mysql+pymysql://ODM:odm@localhost/odm2'], + ['mysql"root@Localhost/odm2', 'mysql', 'mysql+pymysql://root@localhost/odm2'], + [' mysql + mysqldb:', 'mysql', 'mysql+mysqldb://root@localhost/odm2'], + #'mysql+pymysql://ODM:odm@127.0.0.1/odm2' + ['postgresql_marchantariats_none', 'postgresql', 'postgresql+psycopg2://postgres:None@localhost/marchantariats', 'marchantariats', 'postgres', None], + ['postgresql_marchantariats_empty', 'postgresql', 'postgresql+psycopg2://postgres@localhost/marchantariats', 'marchantariats', 'postgres', None], + #'postgresql+psycopg2://postgres:None@localhost/marchantariats' + + # ["mssql_pyodbc_azure", "mssql", "mssql+pyodbc:///?odbc_connect=DRIVER%3D%7BFreeTDS%7D%3BDSN%3Dazure%3BUID%3Dweb%3BPWD%3D1Forgetit%21%3B" , 'odm2', 'web', '1Forgetit!'], + # ["mssql_pyodbc2_azure", "mssql", "mssql+pyodbc:///?odbc_connect=DRIVER%3DFreeTDS%3BSERVERNAME%3Dnrb8xkgxaj.database.windows.net%3BUID%3Dweb@nrb8xkgxaj%3BPWD%3D1Forgetit!%3BDATABASE%3Dodm2", ], + # ["mssql_pyodbc3_azure", "mssql", "mssql+pyodbc:///?odbc_connect=DRIVER%3D{FreeTDS}%3BSERVERNAME%3Dnrb8xkgxaj.database.windows.net%3BUID%3Dweb%3DPWD%3D1Forgetit!%3BDATABASE%3Dodm2",], + #'mssql+pyodbc:///?odbc_connect=DRIVER%3D%7BFreeTDS%7D%3BDSN%3Dnrb8xkgxaj.database.windows.net%3BUID%3Dweb%3BPWD%3D1Forgetit%21%3B' + # ["mssql_pyodbc_moonstone", "mssql","mssql+pyodbc:///?odbc_connect=DRIVER%3D%7BFreeTDS%7D%3BDSN%3Dmoonstone%3BUID%3Dwebservice%3BPWD%3Dwebservice%21%3BDATABASE=odm2",], + # ["mssql_pyodbc2", "mssql", "mssql+pyodbc:///?odbc_connect=DRIVER={FreeTDS};SERVERNAME=moonstone.ucsd.edu;UID=webservice;PWD=webservice;DATABASE=odm2", ], + # ["pymssql_azre", "mssql", "mssql+pymssql://web@nrb8xkgxaj:1Forgetit!@kyle?charset=utf8", ], + # ["pymssql_azre2", "mssql", "mssql+pymssql://web:1Forgetit!@kyle?charset=utf8",], + # ["pymssql_moonstone", "mssql", "mssql+pymssql://webservice:webservice@moonstone?charset=utf8"], + # ["mssql", "localhost", 'odm2', 'odm', 'odm'], + # ["sqlite", "./tests/spatialite/odm2_test.sqlite", None, None, None], + ["sqlite_wof", "sqlite","sqlite:///./tests/spatialite/wof2odm/ODM2.sqlite", None, None, None] + #'sqlite:///./tests/spatialite/wof2odm/ODM2.sqlite' +] +dbs_test = [ + ["sqlite_test","sqlite" "./tests/spatialite/odm2_test.sqlite", None, None, None] + +] +class aSessionFactory: + def __init__(self, request): + #session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') + db = request.param + print ("dbtype", db[0], db[1] ) + #session_factory = dbconnection.createConnection(db[0],db[1],db[2],db[3],db[4], echo=True) + session_factory = SessionFactory(db[2]) + setSchema(session_factory.engine) + assert session_factory is not None, ("failed to create a session for ", db[0], db[1]) +# assert session_factory.engine is not None, ("failed: session has no engine ", db[0], db[1]) +# + # insp = reflection.Inspector.from_engine(session_factory.engine) +# tables = insp.get_table_names() + + self.session = session_factory.getSession() + + +# +# params=["sqlite+pysqlite:///../../ODM2PythonAPI/tests/spatialite/odm2_test.sqlite", "mail.python.org"]) +@pytest.fixture(scope="session", params = dbs_readonly) +def setup(request): + return aSessionFactory(request) + + +#connect to all 4 database types( mssql, mysql, postgresql, sqlite, mssql on mac) +def test_aSessionFactory(setup): + + q= setup.session.query(CVElevationDatum) + results= q.all() + #print results + assert len(results) > 0 + + + diff --git a/tests/test_connection.py b/tests/test_connection.py index 3f83f03..6aae065 100644 --- a/tests/test_connection.py +++ b/tests/test_connection.py @@ -1,28 +1,57 @@ -__author__ = 'stephanie' +__author__ = 'valentine' +from odm2api.ODMconnection import dbconnection +from odm2api.ODM2.models import * +import pytest +from sqlalchemy.engine import reflection + +# assumes that pytest is being run from ODM2PythonAPI director +# [ name, driver, server, database, user, password ] +dbs_readonly = [ + # ['mysql', 'localhost', 'odm2', 'ODM', 'odm'], + ['mysql_odm2_odm', 'mysql', 'localhost', 'odm2', 'ODM', 'odm'], + ['mysql_odm2_root','mysql', 'localhost', 'odm2', 'root', None], + ['postgresql_marchantariats','postgresql', 'localhost', 'marchantariats', 'postgres', 'iforget'], + +# bet the @ is scrwing thing up + # ["mssql", "nrb8xkgxaj.database.windows.net" , 'odm2', 'web@nrb8xkgxaj', '1Forgetit!'], + # ["mssql_azure", "mssql", "azure", 'odm2', 'web@nrb8xkgxaj', '1Forgetit!'], +# ["mssql", "localhost", 'odm2', 'odm', 'odm'], + # ["sqlite", "./tests/spatialite/odm2_test.sqlite", None, None, None], + ["sqlite_wof","sqlite", "./tests/spatialite/wof2odm/ODM2.sqlite", None, None, None] +] +dbs_test = [ + ["sqlite", "./tests/spatialite/odm2_test.sqlite", None, None, None] + +] +class Connection: + def __init__(self, request): + #session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') + db = request.param + print ("dbtype", db[0], db[1] ) + session_factory = dbconnection.createConnection(db[1],db[2],db[3],db[4],db[5], echo=True) + assert session_factory is not None, ("failed to create a session for ", db[0], db[1]) + assert session_factory.engine is not None, ("failed: session has no engine ", db[0], db[1]) + + insp = reflection.Inspector.from_engine(session_factory.engine) + tables = insp.get_table_names() + self.session = session_factory.getSession() + # self.session = session_factory.test_Session() + + +# +# params=["sqlite+pysqlite:///../../ODM2PythonAPI/tests/spatialite/odm2_test.sqlite", "mail.python.org"]) +@pytest.fixture(scope="session", params = dbs_readonly) +def setup(request): + return Connection(request) + + +#connect to all 4 database types( mssql, mysql, postgresql, sqlite, mssql on mac) +def test_connection(setup): + + q= setup.session.query(CVElevationDatum) + results= q.all() + #print results + assert len(results) > 0 -class TestConnection: - - def setup(self): - pass - - - - - #connect to all 4 database types( mssql, mysql, postgresql, sqlite, mssql on mac) - def test_mssql(self): - #if mac: - #mac_mssql - #if win: - #mssql - pass - - def test_mysql(self): - pass - - def test_postgresql(self): - pass - - def test_sqlite(self): - pass diff --git a/tests/test_odm1/test_odmdata/test_FreeTDS.py b/tests/test_odm1/test_odmdata/test_FreeTDS_1_1.py similarity index 68% rename from tests/test_odm1/test_odmdata/test_FreeTDS.py rename to tests/test_odm1/test_odmdata/test_FreeTDS_1_1.py index 5874f34..294b8df 100644 --- a/tests/test_odm1/test_odmdata/test_FreeTDS.py +++ b/tests/test_odm1/test_odmdata/test_FreeTDS_1_1.py @@ -1,14 +1,19 @@ # -*- coding: utf-8 -*- -from odmtools.odmdata import SessionFactory, variable, series -from odmtools.odmservices import SeriesService -from tests import test_util -import wx -from tests.test_util import build_db +from odm2api.ODM1_1_1.models import Variable, Series +from odm2api.ODM1_1_1.services import SeriesService +from odm2api.ODMconnection import SessionFactory +from tests import test_util1_1_1 as test_util + +#import wx +from tests.test_util1_1_1 import build_db import urllib import sqlalchemy from sqlalchemy.orm import sessionmaker +import pytest -class TestFreeTDS: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestFreeTDS_1_1: def setup(self): # connection string @@ -24,12 +29,12 @@ def setup(self): assert Session session = Session() assert session - q= session.query(variable.Variable).all() + q= session.query(Variable.Variable).all() print "q:", type(q), dir(q) for i in q: print i #conn.close() - q= session.query(series.Series).all() + q= session.query(Series.Series).all() for i in q[:10]: print i assert q diff --git a/tests/test_odm1/test_odmdata/test_data_value.py b/tests/test_odm1/test_odmdata/test_data_value_1_1.py similarity index 84% rename from tests/test_odm1/test_odmdata/test_data_value.py rename to tests/test_odm1/test_odmdata/test_data_value_1_1.py index 794c080..18aa408 100644 --- a/tests/test_odm1/test_odmdata/test_data_value.py +++ b/tests/test_odm1/test_odmdata/test_data_value_1_1.py @@ -1,10 +1,14 @@ -from odmtools.odmdata import * +from odm2api.ODM1_1_1.models import * +from odm2api.ODMconnection import SessionFactory -from tests import test_util +from tests import test_util1_1_1 as test_util +import pytest -class TestDataValue: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestDataValue_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" session_factory = SessionFactory(self.connection_string, echo=False) diff --git a/tests/test_odm1/test_odmdata/test_memory_db.py b/tests/test_odm1/test_odmdata/test_memory_db_1_1.py similarity index 87% rename from tests/test_odm1/test_odmdata/test_memory_db.py rename to tests/test_odm1/test_odmdata/test_memory_db_1_1.py index 6ac4de8..80eefc1 100644 --- a/tests/test_odm1/test_odmdata/test_memory_db.py +++ b/tests/test_odm1/test_odmdata/test_memory_db_1_1.py @@ -1,12 +1,16 @@ import pytest -from odmtools.odmdata import MemoryDatabase -from odmtools.odmservices import SeriesService -from tests import test_util +#from odm2api.ODM1_1_1 import memory_database as MemoryDatabase +from odm2api.ODM1_1_1.services import SeriesService +from tests import test_util1_1_1 as test_util + import datetime +import pytest -class TestMemoryDB: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestMemoryDB_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" self.series_service = SeriesService(connection_string=self.connection_string, debug=False) diff --git a/tests/test_odm1/test_odmdata/test_pandas_memory_db.py b/tests/test_odm1/test_odmdata/test_pandas_memory_db_1_1.py similarity index 71% rename from tests/test_odm1/test_odmdata/test_pandas_memory_db.py rename to tests/test_odm1/test_odmdata/test_pandas_memory_db_1_1.py index 94ef7ee..701f2fa 100644 --- a/tests/test_odm1/test_odmdata/test_pandas_memory_db.py +++ b/tests/test_odm1/test_odmdata/test_pandas_memory_db_1_1.py @@ -1,14 +1,20 @@ -from odmtools.odmdata import SessionFactory, Series -from odmtools.odmservices import SeriesService -from tests import test_util +from odm2api.ODMconnection import SessionFactory + +from odm2api.ODM1_1_1.models import Series +from odm2api.ODM1_1_1.services import SeriesService + +from tests import test_util1_1_1 as test_util __author__ = 'jmeline' """ Sample ODM Database connection and data insertion for unittesting against """ +import pytest -class TestPandasMemoryDB: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestPandasMemoryDB_1_1: """ Test to Load up a series from a dataframe and load it into an in memory database """ diff --git a/tests/test_odm1/test_odmdata/test_series.py b/tests/test_odm1/test_odmdata/test_series_1_1.py similarity index 86% rename from tests/test_odm1/test_odmdata/test_series.py rename to tests/test_odm1/test_odmdata/test_series_1_1.py index 3e5f488..7ac4751 100644 --- a/tests/test_odm1/test_odmdata/test_series.py +++ b/tests/test_odm1/test_odmdata/test_series_1_1.py @@ -1,10 +1,14 @@ -from odmtools.odmdata import * -from odmtools.odmdata import copy_series +from odm2api.ODM1_1_1.models import * +#from odm2api.ODM1_1_1.odmdata import copy_series +from odm2api.ODMconnection import SessionFactory -from tests import test_util +from tests import test_util1_1_1 as test_util +import pytest -class TestSeries: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestSeries_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" session_factory = SessionFactory(self.connection_string, echo=False) diff --git a/tests/test_odm1/test_odmdata/test_session_factory.py b/tests/test_odm1/test_odmdata/test_session_factory_1_1.py similarity index 74% rename from tests/test_odm1/test_odmdata/test_session_factory.py rename to tests/test_odm1/test_odmdata/test_session_factory_1_1.py index 0bfc5f2..6eca74d 100644 --- a/tests/test_odm1/test_odmdata/test_session_factory.py +++ b/tests/test_odm1/test_odmdata/test_session_factory_1_1.py @@ -1,7 +1,10 @@ -from odmtools.odmdata import SessionFactory +from odm2api.ODMconnection import SessionFactory +import pytest -class TestSessionFactory: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestSessionFactory_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" self.session_factory = SessionFactory(self.connection_string, echo=True) diff --git a/tests/test_odm1/test_odmservices/test_cv_service.py b/tests/test_odm1/test_odmservices/test_cv_service_1_1.py similarity index 83% rename from tests/test_odm1/test_odmservices/test_cv_service.py rename to tests/test_odm1/test_odmservices/test_cv_service_1_1.py index 5bfd72a..9dbdad0 100644 --- a/tests/test_odm1/test_odmservices/test_cv_service.py +++ b/tests/test_odm1/test_odmservices/test_cv_service_1_1.py @@ -1,15 +1,17 @@ import pytest import sqlalchemy.orm.exc -from odmtools.odmdata import Qualifier -from odmtools.odmservices import CVService +from odm2api.ODM1_1_1.models import Qualifier +#from odm2api.ODM1_1_1.services import CVService -from tests import test_util +from tests import test_util1_1_1 as test_util session = None -class TestCVService: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestCVService_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" self.cv_service = CVService(self.connection_string, debug=False) @@ -17,14 +19,14 @@ def setup(self): engine = self.cv_service._session_factory.engine test_util.build_db(engine) - def test_get_vertical_datum_cvs(self): + def test_get_vertical_datum_cvs_1_1(self): assert self.cv_service.get_vertical_datum_cvs() == [] vert_dat = test_util.add_vertical_datum_cv(self.session) db_vert_dat = self.cv_service.get_vertical_datum_cvs()[0] assert vert_dat.term == db_vert_dat.term - def test_get_samples(self): + def test_get_samples_1_1(self): assert self.cv_service.get_samples() == [] lab_method = test_util.add_lab_method(self.session) @@ -36,80 +38,80 @@ def test_get_samples(self): - def test_get_site_type_cvs(self): + def test_get_site_type_cvs_1_1(self): assert self.cv_service.get_site_type_cvs() == [] st_cv = test_util.add_site_type_cv(self.session) db_st_cv = self.cv_service.get_site_type_cvs()[0] assert st_cv.term == db_st_cv.term - def test_get_variable_name_cvs(self): + def test_get_variable_name_cvs_1_1(self): assert self.cv_service.get_variable_name_cvs() == [] var_name_cv = test_util.add_variable_name_cv(self.session) db_var_name_cv = self.cv_service.get_variable_name_cvs()[0] assert var_name_cv.term == db_var_name_cv.term - def test_get_offset_type_cvs(self): + def test_get_offset_type_cvs_1_1(self): assert self.cv_service.get_offset_type_cvs() == [] - unit = test_util.add_unit(self.session) + unit = test_util.add_unit_1_1(self.session) offset = test_util.add_offset_type_cv(self.session, unit.id) db_offset = self.cv_service.get_offset_type_cvs()[0] assert offset.id == db_offset.id assert offset.unit_id == db_offset.unit_id - def test_get_speciation_cvs(self): + def test_get_speciation_cvs_1_1(self): assert self.cv_service.get_speciation_cvs() == [] speciation = test_util.add_speciation_cv(self.session) db_speciation = self.cv_service.get_speciation_cvs()[0] assert speciation.term == db_speciation.term - def test_get_sample_medium_cvs(self): + def test_get_sample_medium_cvs_1_1(self): assert self.cv_service.get_sample_medium_cvs() == [] sample_medium = test_util.add_sample_medium_cv(self.session) db_sample_medium = self.cv_service.get_sample_medium_cvs()[0] assert sample_medium.term == db_sample_medium.term - def test_get_value_type_cvs(self): + def test_get_value_type_cvs_1_1(self): assert self.cv_service.get_value_type_cvs() == [] value_type = test_util.add_value_type_cv(self.session) db_val_type = self.cv_service.get_value_type_cvs()[0] assert value_type.term == db_val_type.term - def test_get_data_type_cvs(self): + def test_get_data_type_cvs_1_1(self): assert self.cv_service.get_data_type_cvs() == [] data_type = test_util.add_data_type_cv(self.session) db_data_type = self.cv_service.get_data_type_cvs()[0] assert data_type.term == db_data_type.term - def test_get_general_category_cvs(self): + def test_get_general_category_cvs_1_1(self): assert self.cv_service.get_general_category_cvs() == [] gen_cat = test_util.add_general_category_cv(self.session) db_gen_cat = self.cv_service.get_general_category_cvs()[0] assert gen_cat.term == db_gen_cat.term - def test_get_censor_code_cvs(self): + def test_get_censor_code_cvs_1_1(self): assert self.cv_service.get_censor_code_cvs() == [] censor_code = test_util.add_censor_code_cv(self.session) db_censor_code = self.cv_service.get_censor_code_cvs()[0] assert censor_code.term == db_censor_code.term - def test_get_sample_type_cvs(self): + def test_get_sample_type_cvs_1_1(self): assert self.cv_service.get_sample_type_cvs() == [] sample_type = test_util.add_sample_type_cv(self.session) db_sample_type = self.cv_service.get_sample_type_cvs()[0] assert sample_type.term == db_sample_type.term - def test_get_units(self): + def test_get_units_1_1(self): assert self.cv_service.get_units() == [] unit = test_util.add_unit(self.session) diff --git a/tests/test_odm1/test_odmservices/test_edit_service.py b/tests/test_odm1/test_odmservices/test_edit_service.py deleted file mode 100644 index 8030d77..0000000 --- a/tests/test_odm1/test_odmservices/test_edit_service.py +++ /dev/null @@ -1,43 +0,0 @@ -from odmtools.odmdata import * -from odmtools.odmservices import SeriesService, EditService - -from tests import test_util - - -class TestSeriesService: - def setup(self): - - self.connection_string = "sqlite:///:memory:" - self.series_service = SeriesService(connection_string=self.connection_string, debug=False) - - engine = self.series_service._session_factory.engine - test_util.build_db(engine) - - self.memory_database = MemoryDatabase() - self.memory_database.set_series_service(self.series_service) - self.session = self.memory_database.series_service._session_factory.get_session() - - self.series = test_util.add_series_bulk_data(self.session) - #assert len(self.series.data_values) == 100 - - self.edit_service =EditService(1, connection= self.memory_database) - - - ## TODO Unittest save_series, save_as, save_as_existing - - def test_save_series(self): - assert self.edit_service.save() - - def test_save_as_series(self): - var = test_util.add_variable(self.session) - print var - assert self.edit_service.save_as(var= var) - ##assert self.edit_service.memDB.series_service.series_exists(self.series.site.id, var, self.series.method.id, - # self.series.source.id, self.series.qcl.id) - - - def test_save_as_existing_series(self): - var = test_util.add_variable(self.session) - assert self.edit_service.save_existing(var = var) - - diff --git a/tests/test_odm1/test_odmservices/test_export_service.py b/tests/test_odm1/test_odmservices/test_export_service_1_1.py similarity index 71% rename from tests/test_odm1/test_odmservices/test_export_service.py rename to tests/test_odm1/test_odmservices/test_export_service_1_1.py index acc146f..c952d06 100644 --- a/tests/test_odm1/test_odmservices/test_export_service.py +++ b/tests/test_odm1/test_odmservices/test_export_service_1_1.py @@ -1,10 +1,13 @@ import os.path -from odmtools.odmservices import SeriesService, ExportService +from odm2api.ODM1_1_1.services import SeriesService, ExportService -from tests import test_util +from tests import test_util1_1_1 as test_util +import pytest -class TestExportService: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestExportService_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" self.series_service = SeriesService(self.connection_string, debug=False) @@ -15,7 +18,7 @@ def setup(self): self.export_service = ExportService(self.series_service) - def test_export_series_data(self, tmpdir): + def test_export_series_data_1_1(self, tmpdir): f = tmpdir.join("export.csv") filename = f.dirname + f.basename @@ -23,7 +26,7 @@ def test_export_series_data(self, tmpdir): assert os.path.isfile(filename) == True - def test_export_series_metadata(self, tmpdir): + def test_export_series_metadata_1_1(self, tmpdir): f = tmpdir.join("export.xml") filename = f.dirname + f.basename diff --git a/tests/test_odm1/test_odmservices/test_series_service.py b/tests/test_odm1/test_odmservices/test_series_service_1_1.py similarity index 92% rename from tests/test_odm1/test_odmservices/test_series_service.py rename to tests/test_odm1/test_odmservices/test_series_service_1_1.py index d8416d9..2ee9a7e 100644 --- a/tests/test_odm1/test_odmservices/test_series_service.py +++ b/tests/test_odm1/test_odmservices/test_series_service_1_1.py @@ -1,10 +1,12 @@ -from odmtools.odmdata import * -from odmtools.odmservices import SeriesService +from odm2api.ODM1_1_1.models import * +from odm2api.ODM1_1_1.services import SeriesService -from tests import test_util +from tests import test_util1_1_1 as test_util +import pytest - -class TestSeriesService: +@pytest.mark.skipif(True, + reason="ODM1.1 shim is out of date") +class TestSeriesService_1_1: def setup(self): self.connection_string = "sqlite:///:memory:" self.series_service = SeriesService(self.connection_string, debug=False) @@ -12,17 +14,17 @@ def setup(self): engine = self.series_service._session_factory.engine test_util.build_db(engine) - def test_get_db_version(self): + def test_get_db_version_1_1(self): version = test_util.add_version(self.session) db_version = self.series_service.get_db_version() assert version.version_number == db_version - def test_get_all_sites_empty(self): + def test_get_all_sites_empty_1_1(self): sites = self.series_service.get_used_sites() #assert len(sites) == 0 assert sites is None - def test_create_qualifier(self): + def test_create_qualifier_1_1(self): qual = Qualifier() qual.code = "ABC123" qual.description = "This is a test" @@ -30,7 +32,7 @@ def test_create_qualifier(self): assert qual.id is not None - def test_get_qualifiers(self): + def test_get_qualifiers_1_1(self): assert self.series_service.get_all_qualifiers() == [] qual= self.series_service.create_qualifier("ABC123","This is a test") @@ -39,7 +41,7 @@ def test_get_qualifiers(self): assert qual.id == db_qual.id - def test_get_all_sites(self): + def test_get_all_sites_1_1(self): assert self.series_service.get_used_sites() is None site = test_util.add_site(self.session) @@ -56,27 +58,27 @@ def test_get_all_sites(self): assert site.code == sites[0].code - def test_get_site_by_id_fail(self): + def test_get_site_by_id_fail_1_1(self): assert self.series_service.get_site_by_id(0) == None site = test_util.add_site(self.session) db_site = self.series_service.get_site_by_id(10) assert db_site == None - def test_get_site_by_id(self): + def test_get_site_by_id_1_1(self): site = test_util.add_site(self.session) db_site = self.series_service.get_site_by_id(site.id) assert db_site != None assert site.code == db_site.code - def test_get_all_variables(self): + def test_get_all_variables_1_1(self): assert self.series_service.get_all_variables() == [] variable = test_util.add_variable(self.session) variables = self.series_service.get_all_variables() assert len(variables) == 1 assert variable.code == variables[0].code - def test_get_variable_by_id(self): + def test_get_variable_by_id_1_1(self): assert self.series_service.get_variable_by_id(10) == None variable = test_util.add_variable(self.session) @@ -85,7 +87,7 @@ def test_get_variable_by_id(self): assert db_var != None assert db_var.code == variable.code - def test_get_variables_by_site_code(self): + def test_get_variables_by_site_code_1_1(self): assert self.series_service.get_variables_by_site_code('ABC123') == [] series = test_util.add_series(self.session) @@ -95,7 +97,7 @@ def test_get_variables_by_site_code(self): assert db_variables != None assert variable.code == db_variables[0].code - def test_get_all_units(self): + def test_get_all_units_1_1(self): assert self.series_service.get_all_units() == [] unit = test_util.add_unit(self.session) @@ -104,7 +106,7 @@ def test_get_all_units(self): assert len(units) == 1 assert unit.name == units[0].name - def test_get_unit_by_name(self): + def test_get_unit_by_name_1_1(self): assert self.series_service.get_unit_by_name("FAIL") == None unit = test_util.add_unit(self.session) @@ -112,7 +114,7 @@ def test_get_unit_by_name(self): assert unit.id == db_unit.id - def test_get_unit_by_id(self): + def test_get_unit_by_id_1_1(self): assert self.series_service.get_unit_by_id(10) == None unit = test_util.add_unit(self.session) @@ -120,7 +122,7 @@ def test_get_unit_by_id(self): assert unit.name == db_unit.name - def test_get_all_series(self): + def test_get_all_series_1_1(self): assert self.series_service.get_all_series() == [] series = test_util.add_series(self.session) @@ -129,7 +131,7 @@ def test_get_all_series(self): assert all_series != [] assert series.id == all_series[0].id - def test_get_series_by_id(self): + def test_get_series_by_id_1_1(self): assert self.series_service.get_series_by_id(10) == None series = test_util.add_series(self.session) @@ -137,7 +139,7 @@ def test_get_series_by_id(self): assert series.id == db_series.id - def test_get_series_by_id_quint(self): + def test_get_series_by_id_quint_1_1(self): assert self.series_service.get_series_by_id_quint(10, 10, 10, 10, 10) == None series = test_util.add_series(self.session) @@ -146,7 +148,7 @@ def test_get_series_by_id_quint(self): assert series.id == db_series.id - def test_series_exists(self): + def test_series_exists_1_1(self): assert self.series_service.series_exists_quint(10, 10, 10, 10, 10) == False series = test_util.add_series(self.session) diff --git a/tests/test_odm2/test_model.py b/tests/test_odm2/test_model.py index b4f6974..3ce7e3d 100644 --- a/tests/test_odm2/test_model.py +++ b/tests/test_odm2/test_model.py @@ -2,45 +2,67 @@ # run with 'py.test -s test_example.py' from odm2api.ODMconnection import dbconnection from odm2api.ODM2.models import * +from .. import test_connection as testConnection +import pytest +# class Connection: +# def __init__(self, request): +# #session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') +# db = request.param +# session_factory = dbconnection.createConnection(db[0],db[1],db[2],db[3],) +# self.session = session_factory.getSession() +# assumes that pytest is being run from ODM2PythonAPI directory +dbs = testConnection.dbs_readonly +# dbs = [ +# # ['mysql', 'localhost', 'odm2', 'ODM', 'odm'], +# # ["sqlite", "./tests/spatialite/odm2_test.sqlite",None, None] +# ["sqlite", "../odm2_test.sqlite",None, None, None] +# ] +# +# params=["sqlite+pysqlite:///../../ODM2PythonAPI/tests/spatialite/odm2_test.sqlite", "mail.python.org"]) +@pytest.fixture(scope="session", params = dbs) +def setup(request): + return testConnection.Connection(request) + # #session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') + # db = request.param + # session_factory = dbconnection.createConnection(db[0],db[1],db[2],db[3],) + # self.session = session_factory.getSession() ############ # Fixtures # ############ -class TestODM2: - - def setup(self): - session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') - self.session = session_factory.getSession() - - def test_cvelevationdatum(self): - q= self.session.query(CVElevationDatum) - results= q.all() - #print results - assert len(results) > 0 - - def test_cvsamplingfeatuergeotype(self): - q=self.session.query(CVSamplingFeatureGeoType) - results = q.all() - #print results - assert len(results) > 0 - - def test_cvsamplingfeaturetype(self): - q = self.session.query(CVSamplingFeatureType) - results = q.all() - #print results - assert len(results) > 0 - - def test_sampling_feature(self): - q = self.session.query(SamplingFeatures) - results = q.all() - ''' - for r in results: - print r - print r.SamplingFeatureGeotypeCV - print r.FeatureGeometry - #print results - ''' - assert len(results) > 0 +#class TestODM2: + +# @pytest.fixture(autouse=True) + +def test_cvelevationdatum(setup): + q= setup.session.query(CVElevationDatum) + results= q.all() + #print results + assert len(results) > 0 + +def test_cvsamplingfeatuergeotype(setup): + q=setup.session.query(CVSamplingFeatureGeoType) + results = q.all() + #print results + assert len(results) > 0 + +def test_cvsamplingfeaturetype(setup): + q = setup.session.query(CVSamplingFeatureType) + results = q.all() + #print results + assert len(results) > 0 + +def test_sampling_feature(setup): + q = setup.session.query(SamplingFeatures) + results = q.all() + ''' + for r in results: + print r + print r.SamplingFeatureGeotypeCV + print r.FeatureGeometry + #print results + ''' + assert len(results) > 0 diff --git a/tests/test_switch.py b/tests/test_switch.py deleted file mode 100644 index cb4f60f..0000000 --- a/tests/test_switch.py +++ /dev/null @@ -1,19 +0,0 @@ -__author__ = 'stephanie' - -from odm2api.ODMconnection import dbconnection -from odm2api.versionSwitcher import ODM, refreshDB - -class TestSwitch: - - def setup(self): - session_factory = dbconnection.createConnection('mysql', 'localhost', 'odm2', 'ODM', 'odm') - refreshDB(2.0) - self.session = session_factory.getSession() - - def test_switch(self): - s=self.session.query(ODM.Site).all() - - print type(ODM.Site) - #print ODM.Series.get(self.session) - print s - diff --git a/tests/usecasesql/littlebearriver/README.md b/tests/usecasesql/littlebearriver/README.md new file mode 100644 index 0000000..6b84176 --- /dev/null +++ b/tests/usecasesql/littlebearriver/README.md @@ -0,0 +1,35 @@ +Little Bear River Watershed Hydrology and Water Quality Data Use Case +===================================================================== + +#### ODM2 Data Use Case Implementation #### + +The LBR data have been transferred from an ODM 1.1.1 database to ODM2 using a [SQL script](https://github.com/UCHIC/ODM2/blob/master/usecases/littlebearriver/sqlscripts/ODM1.1.1_to_ODM2_LBRODMFULL.sql). Extensive notes describing the [mapping of the LBR ODM 1.1.1 database to ODM2](https://github.com/UCHIC/ODM2/blob/master/usecases/littlebearriver/littlebearriver_notes.md) are available. Additionally, many use case [SQL queries](https://github.com/UCHIC/ODM2/blob/master/usecases/littlebearriver/sqlscripts/ODM1.1.1_vs_ODM2_Queries_LBRODMFULL.sql) have been written with demonstrations of how the same query can be done in ODM 1.1.1 and in ODM2. + +#### Dataset Description #### +The LBR data consist of time series of hydrologic observations collected at aquatic and weather monitoring sites in the Little Bear River of Northern Utah, USA. Also included are water quality samples collected in the Little Bear River and analyzed for constituents such as suspended sediment and nutrient concentrations. The Little Bear River data are currently stored in a CUAHSI Hydrologic Information System (HIS) ODM Version 1.1.1 database in Microsoft SQL Server. + +#### Data Source Information #### + +**Contact**: Jeff Horsburgh +**Email**: jeff.horsburgh@usu.edu +**Organization**: Utah Water Research Laboratory, Utah State University + +#### Temporal Information #### + +Continuous time series collected every 30 minutes at aquatic sites and every 60 minutes at weather stations. Sporadic and event based, instantaneous water quality samples. Water quality samples were collected by technicians in the field as grab samples or via automated samplers during storm and snowmelt events. + +#### Observation Types #### + +In situ sensor, laboratory sample analysis, field observations, derived data + +#### Measured Variables #### + +Alkalinity; Barometric Pressure; Battery Voltage; Discharge; Distance; Electrical Conductivity; Gage Height; Imaginary dielectric constant; Nitrogen, total; Nitrogen, total dissolved; Oxygen, dissolved; Oxygen, dissolved percent of saturation; pH; Phosphorus, particulate; Phosphorus, total; Phosphorus, total dissolved; Precipitation; Radiation, incoming shortwave; Real dielectric constant; Relative Humidity; Snow Depth; Solids, Total Suspended; Specific Conductance; Temperature; Turbidity; Volumetric Water Content; Wind Direction; Wind Speed + +#### Other Links #### + +Documentation for [ODM 1.1.1](http://hydroserver.codeplex.com/wikipage?title=Observations%20Data%20Model&referringTitle=Documentation) is available online. + +The LBR Data are available via several mechanisms. They can be downloaded from [http://littlebearriver.usu.edu](http://littlebearriver.usu.edu) and they can be accessed via a CUAHSI HIS WaterOneFlow web service at [http://data.iutahepscor.org/LittleBearRiverWOF/](http://data.iutahepscor.org/LittleBearRiverWOF/). + + diff --git a/tests/usecasesql/littlebearriver/littlebearriver_notes.md b/tests/usecasesql/littlebearriver/littlebearriver_notes.md new file mode 100644 index 0000000..9ce8684 --- /dev/null +++ b/tests/usecasesql/littlebearriver/littlebearriver_notes.md @@ -0,0 +1,383 @@ +ODM2 Data Use Case: Little Bear River Hydrology and Water Quality Data +======================================================================= + +The Little Bear River data are currently stored in a CUAHSI Hydrologic Information System (HIS) ODM Version 1.1.1 database in Microsoft SQL Server. The data consist of time series of hydrologic observations collected at aquatic and weather monitoring sites in the Little Bear River of Northern Utah, USA. Also included are water quality samples collected in the Little Bear River and analyzed for constituents such as suspended sediment and nutrient concentrations. + +[Documentation for ODM 1.1.1](http://hydroserver.codeplex.com/wikipage?title=Observations%20Data%20Model&referringTitle=Documentation) is available online. More information about the Little Bear River data is available [here](http://littlebearriver.usu.edu). This implementation exercise is development of a script to map and copy the Little Bear River data from an ODM 1.1.1 database to to an ODM2 database. + +#### Required ODM2 Schemas + +The following ODM2 schemas are required for the Little Bear River data use case: + +1. ODM2Core +2. ODM2SamplingFeatures +3. ODM2Results +4. ODM2Annotations +5. ODMCV + +Eventually I could add the ODM2Equipment and ODM2DataQuality schemas because I have all of the information needed, there was just no place for it in my ODM 1.1.1 database. For now, I have focused on moving what is already in my ODM 1.1.1 database into an ODM2 database. + +## Implementation Notes for Sensor-Based Data ## + +#### SpatialReferences +SpatialReferences in ODM2 are mostly the same as in ODM 1.1.1 except that they are not treated as a Controlled Vocabulary. So, I basically copied them straight across. + +1. Set ODM2.SpatialReferences.SpatialReferenceID = ODM1.SpatialReferences.SpatialReferenceID +2. Set ODM2.SpatialReferences.SRSID = "CUAHSI:" & ODM1.SpatialReferences.SRSID - had to concatenate the CUAHSI string and cast this to VARCHAR(50) to be consistent with the length of the field in ODM2 +3. Set ODM2.SpatialReferences.SRSName = ODM1.SpatialReferences.SRSName +4. Set ODM2.SpatialReferences.SRSDescription = ODM1.SpatialReferences.Notes - had to cast this to VARCHAR(500) to be consistent with the length of the field in ODM2, which might truncate some information +5. Set ODM2.SpatialReferences.SRSLink = "http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences" to indicate that these SpatialReferences came from the CUAHSI HIS list + +But, I also need to create a SpatialReference record for each OffsetType in the ODM 1.1.1 database so I can use it in ODM2 to define how the offsets are being used. In this case I will only fill in the SRSName, which is the only required field in the ODM2.SpatialReferences table. + +1. Set ODM2.SpatialReferences.SRSName = ODM1.OffsetTypes.OffsetDescription + +#### SamplingFeatures and Sites +Sites in ODM2 are essentially the same as in ODM 1.1.1 except that both Sites and SamplingFeatures tables have to be populated and the Site information is split between the two tables. I first have to set the default value of the SamplingFeatureUUID field in the ODM2Core.SamplingFeatures table to be a NEWSEQUENTIALID(). This was done by altering the table to add a default value constraint. + +Adding records to **ODM2.SamplingFeatures**: + +1. Set ODM2.SamplingFeatures.SamplingFeatureID = ODM1.Sites.SiteID - carry the ODM 1.1.1 SiteIDs into the ODM2 database for convenience. +2. ODM2Core.SamplingFeatures.SamplingFeatureUUID = NEWSEQUENTIALID() - this is a SQL Server Function to generate a UUID (i.e., SQL Server generates the UUIDS for me) +3. Set ODM2.SamplingFeatures.SamplingFeatureTypeCV = 'Site' +4. Set ODM2.SamplingFeatures.SamplingFeatureCode = ODM1.Sites.SiteCode +5. Set ODM2.SamplingFeatures.SamplingFeatureName = ODM1.Sites.SiteName +6. Set ODM2.SamplingFeatures.SamplingFeatureDescription = ODM1.Sites.Comments - this is not an 'exact' match, but I will use it for now. This may need to be modified after the fact. +7. Set ODM2.SamplingFeatures.SamplingFeatureGeoTypeCV = 'Point' +8. Set ODM2.SamplingFeatures.FeatureGeometry = geometry::Point(ODM1.Sites.Longitude, ODM1.Sites.Latitude, ODM1.SpatialReferences.SRSID) - this is a Microsoft SQL Server function that creates the geometry from the point coordinates. TODO: This needs to be checked to make sure I am specifying the SRSID correctly. +9. Set ODM2.SamplingFeatures.Elevation_m = ODM1.Sites.Elevation_m +10. Set ODM2.SamplingFeatures.ElevationDatumCV = ODM1.Sites.VerticalDatum + +**NOTE:** When running this on an ODM 1.1.1 database, need to verify that the terms used in the ODM 1.1.1 VerticalDatum field in the Sites table are valid terms from the ODM2 ElevationDatumCV. + +Adding records to **ODM2SamplingFeatures.Sites**: Some of the ODM 1.1.1 Site attributes don't get copied across because they are no longer part of the ODM2 Core schema (e.g., LocalX, LocalY, LocalProjectionID, PosAccuracy_m, State, County, Comments) + +1. Set ODM2.Sites.SamplingFeatureID = ODM1.Sites.SiteID +2. Set ODM2.Sites.SiteTypeCV = ODM1.Sites.SiteType +3. Set ODM2.Sites.Latitude = ODM1.Sites.Latitude +4. Set ODM2.Sites.Longitude = ODM1.Sites.Longitude +5. Set ODM2.Sites.SpatialReferenceID = ODM1.Sites.LatLongDatumID - I can do this because I moved all of the SpatialReferences from ODM1 and preserved the SpatialReferenceIDs + +**NOTE:** When running this on an ODM 1.1.1 database, need to verify that the terms used in the ODM 1.1.1 SiteType field in the Sites table are valid terms from the ODM2 SiteTypeCV. + +#### Units +Units are essentially the same in ODM 1.1.1 and ODM2 except that they are not treated as a controlled vocabulary in ODM2. However, there will still be a list of Units for upload to an ODM2 database and so any Units that are used in an ODM 1.1.1 database need to be matched to whatever is in the ODM2 database by using the UnitsName. For now, I copied the Units straight across from my ODM 1.1.1 database, preserving the UnitsIDs for convenience. + +**TODO**: Modify the code of the script to accommodate a pre-generated list of Units uploaded to an ODM2 database. + +1. Set ODM2.Units.UnitsID = ODM1.Units.UnitsID +2. Set ODM2.Units.UnitsTypeCV = ODM1.Units.UnitsType +3. Set ODM2.Units.UnitsAbbreviation = ODM1.Units.UnitsAbbreviation +4. Set ODM2.Units.UnitsName = ODM1.Units.UnitsName +5. Set ODM2.Units.UnitsLink = 'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units' - set this to indicate that the Units I'm using came from the CUAHSI HIS Units list. + +**NOTE**: Had to ensure that UnitsType terms used in the ODM 1.1.1 Units table matched valid terms from the ODM2 UnitsTypeCV. + +#### ProcessingLevels +ProcessingLevels in ODM2 are the same as QualityControlLevels in ODM 1.1.1. I copied QualityControlLevels straight across from ODM 1.1.1 into the ODM2 ProcessingLevels table, preserving the QualityControlLevelIDs for convenience. + +1. Set ODM2.ProcessingLevels.ProcessingLevelID = ODM1.QualityControlLevels.QualityControlLevelID +2. Set ODM2.ProcessingLevels.ProcessingLevelCode = ODM1.QualityControlLevels.QualityControlLevelCode +3. Set ODM2.ProcessingLevels.Definition = ODM1.QualityControlLevels.Definition +4. Set ODM2.ProcessingLevels.Explanation = ODM1.QualityControlLevels.Explanation + +#### Variables +Variables in ODM2 have fewer attributes because some of the information has been moved to the Result (e.g., Units). Additionally, the CV fields in ODM2.Variables are named with a "CV" at the end. Moved Variables from ODM 1.1.1 to ODM and preserved the VariableIDs for convenience. + +1. Set ODM2.Variables.VariableID = ODM1.Variables.VariableID +2. Set ODM2.Variables.VariableTypeCV = 'Unknown' - It's required, but doesn't exist in ODM 1.1, so set to "Unknown" (see note below). This would need to be modified after the fact. +3. Set ODM2.Variables.VariableCode = ODM1.Variables.VariableCode +4. Set ODM2.Variables.VaribleNameCV = ODM1.Variables.VariableName +5. Set ODM2.Variables.VariableDefinition = "NULL" - does not exist in ODM 1.1 and not required +6. Set ODM2.Variables.SpeciationCV = ODM1.Variables.Speciation +7. Set ODM2.Variables.NoDataValue = ODM1.Variables.NoDataValue + +**NOTE**: ValueType from ODM 1.1.1 is not currently mapped to ODM2. This is most closely related to MethodTypeCV in the ODM2.Methods table, but not exactly the same. Also, could be related to VariableTypeCV? +**NOTE**: DataType is mapped to AggregationStatistic in ODM2 and is no longer in the Variables table. +**NOTE**: Need to ensure that any VariableNames and Speciation used in the ODM 1.1.1 Variables table are valid terms from the ODM2 VariableNameCV and SpeciationCV prior to running this. + +#### Methods +Methods in ODM2 have more attributes than Methods in ODM 1.1.1. But, Methods can essentially be copied straight across using the same MethodIDs for convenience. + +1. Set ODM2.Methods.MethodID = ODM1.Methods.MethodID +2. Set ODM2.Methods.MethodTypeCV = 'Unknown' - this is required, but I have no way of getting this from ODM1 because there is no MethodType in ODM 1.1.1. So, I set this to 'Unknown' since it has to have a value. This is related to the ValueType CV from ODM 1.1.1, but not exactly the same. This would need to be modified after the fact to specify appropriate terms. +3. Set ODM2.Methods.MethodCode = ODM1.Methods.MethodID - MethodCode is required, but doesn't exist in ODM 1.1.1, so I used the MethodID. This would need to be modified after the fact if different MethodCodes are desired. +4. Set ODM2.Methods.MethodName = ODM1.Methods.MethodDescription - there is no MethodName in ODM 1.1.1, so I just used the MethodDescription. +5. Set ODM2.Methods.MethodDescription = ODM1.Methods.MethodDecription - this duplicates information, but only because ODM 1.1.1 doesn't have a MethodName +6. Set ODM2.Methods.MethodLink = ODM1.Methods.MethodLink +7. Set ODM2.Methods.OrganizationID = NULL - ODM 1.1.1 doesn't have the capability to link Methods to Organizations, so this has to be NULL + +#### Organizations +Organizations in ODM2 roughly map to Sources in ODM 1.1.1. However, the attributes aren't quite the same. I created an Organization in ODM2 for each record in the ODM1.Sources table. + +1. Set ODM2.Organizations.OrganizationID = ODM1.Sources.SourceID +2. Set ODM2.Organizations.OrganizationTypeCV = 'Research institute' - *this may not be quite right, and may even be wrong for many types of Sources that people have used in ODM 1.1.1 databases*, but it doesn't exist in ODM 1.1.1, so this was set as the default value +3. Set ODM2.Organizations.OrganizationCode = ODM1.Sources.SourceID - there is no OrganizationCode in ODM 1.1.1, so I just used the SourceID as the OrganizationCode. +4. Set ODM2.Organization.OrganizationName = ODM1.Sources.Organization +5. Set ODM2.Organization.OrganizationDescription = ODM1.Sources.SourceDescription - had to cast this to VARCHAR(500) to fit the ODM2 field length, so some information may be truncated +6. Set ODM2.Organization.OrganizationLink = ODM1.Sources.SourceLink +7. Set ODM2.Organization.ParentOrganizationID = NULL - this attribute doesn't exist in ODM 1.1.1 and so there's nothing for me to move across + +Adding records to the **Organizations** table for ODM 1.1.1 analytical labs: In ODM 1.1.1, there is also a LabMethods table that is linked to Samples. This is where laboratory analytical methods used to analyze samples are stored. In ODM2 we have generalized Methods and so I need to add the LabMethods from ODM 1.1.1 to the Methods table in ODM2. Additionally, LabMethods in ODM 1.1.1 do have Organization information associated with them (e.g., the analytical laboratory) and so I need to create appropriate Organization records in ODM2 and associate them with the ODM1.LabMethods that I add to the ODM2.Methods table. + +First, I created the ODM2 Organizations for the ODM 1.1.1 analytical labs: + +1. Set ODM2.Organizations.OrganizationTypeCV = 'Analytical laboratory' +2. Set ODM2.Organizations.OrganizationCode = ODM1.LabMethods.LabName - there is no OrganizationCode in ODM 1.1.1, so just used the LabName +3. Set ODM2.Organizations.OrganizationName = ODM1.LabMethods.LabName +4. Set ODM2.Organizations.OrganizationDescription = ODM1.LabMethods.LabOrganization +5. Set ODM2.Organizations.OrganizationLink = NULL - doesn't exist for analytical labs in ODM 1.1.1 +6. Set ODM2.Organizations.ParentOrganizationID = NULL - doesn't exist in ODM 1.1.1 + +Then, I added the ODM 1.1.1 LabMethods to the ODM2 Methods table: + +1. Set ODM2.Methods.MethodID = ODM1.LabMethods.LabMethodID + @MaxMethodID + 1 - I started with the maximum MethodID that was already in the ODM2.Methods table and then added it to the LabMethodID from ODM 1.1.1 and added 1 (because there is a LabMethodID of 0 in ODM 1.1.1 for 'Unknown') +2. Set ODM2.Methods.MethodTypeCV = 'Specimen analysis' +3. Set ODM2.Methods.MethodCode = ODM1.LabMethods.LabMethodID + @MaxMethodID + 1 - MethodCode doesn't exist in ODM 1.1.1, so I just set the MethodCode = MethodID +4. Set ODM2.Methods.MethodName = ODM1.LabMethods.LabMethodName +5. Set ODM2.Methods.MethodDescription = ODM1.LabMethods.LabMethodDescription +6. Set ODM2.Methods.MethodLink = ODM1.LabMethods.LabMethodLink +7. Set ODM2.Methods.OrganizationID = ODM2.Organizations.OrganizationID - used the OrganizationIDs for the Analytical Laboratory Organizations that I just created. + +#### People +There is no separate People table in ODM 1.1.1. However, there is a contact person for each organization in the ODM1.Sources table. So, I created a record in the ODM2.People table for each person in the ODM1.Sources table. *I used a substring function that splits the person's name into first and last. This may not work for all names - especially in cases where someone has input a middle name or initial*. The mapping may be imperfect for some ODM 1.1.1 databases and may need to be fixed after the fact. + +1. Set ODM2.People.PersonFirstName = CAST(SUBSTRING(ODM1.Sources.ContactName, 1, CHARINDEX(' ', ODM1.Sources.ContactName) - 1) AS VARCHAR(255)) +2. Set ODM2.People.PersonLastName = CAST(SUBSTRING(ODM1.Sources.ContactName, CHARINDEX(' ', ODM1.Sources.ContactName) + 1, 8000) AS VARCHAR(255)) + +#### Affiliations +There is no Affiliations entity in ODM 1.1.1. So, I just mapped the PersonIDs from the ODM2.People table to the Organizations from which they came in the ODM 1.1.1 database. + +1. Set ODM2.Affiliations.PersonID = ODM2.People.PersonID +2. Set ODM2.Affiliations.OrganizationID = ODM1.Sources.SourceID +3. Set ODM2.Affiliations.IsPrimaryOrganizationContact = 1 - this is essentially what inclusion of this person in the the ODM 1.1.1 Sources table meant (1 = True). +4. Set ODM2.Affiliations.AffiliationStartDate = the current system date. *This is required and ODM 1.1.1 does not have this information. So, it is set to the current system date.* May need to modify after the fact. +5. Set ODM2.Affiliations.AffiliationEndDate = NULL - *ODM 1.1.1 does not have this information, so set to NULL* +6. Set ODM2.Affiliations.PrimaryPhone = ODM1.Sources.Phone +7. Set ODM2.Affiliations.PrimaryEmail = ODM1.Sources.Email +8. Set ODM2.Affiliations.PrimaryAddress = ODM1.Sources.Address + ODM1.Sources.City + ODM1.Sources.State + ODM1.Sources.State + ODM1.Sources.Zipcode - concatenated string +9. Set ODM2.Affiliations.PersonLink = NULL - doesn't exist in ODM 1.1.1 so set to NULL. + +#### Actions for Sensor-Based Data +Since I am not dealing with any of my equipment or field visit data yet, I am just going to add a generic "Observation" Action for each of the sensor-based time series in my ODM 1.1.1 database. This could be a little problematic in the future as I really want my "Instrument deployment" Actions associated with the Results, but for now I'm not going to do this because none of that information is in the ODM 1.1.1 database. Since there is a 1:1 correspondence between Actions and Results for my sensor-based data, I can use the SeriesIDs from the ODM1.SeriesCatalog table for both ActionIDs and ResultIDs in my ODM2 database for convenience. But, I first have to filter out any time series in the ODM 1.1.1 SeriesCatalog table that are for sample based data (e.g., they have DataValues with a SampleID that is not NULL). + +1. Set ODM2.Actions.ActionID = ODM1.SeriesCatalog.SeriesID +2. Set ODM2.Actions.ActionTypeCV = 'Observation' +3. Set ODM2.Actions.BeginDateTime = ODM1.SeriesCatalog.BeginDateTime +4. Calculated ODM2.Actions.BeginDateTimeUTCOffset from ODM1.SeriesCatalog.BeginDateTime and ODM1.SeriesCatalog.BeginDateTimeUTC +5. Set ODM2.Actions.EndDateTime = ODM1.SeriesCatalog.EndDateTime +6. Calculated ODM2.Actions.EndDateTimeUTCOffset from ODM1.SeriesCatalog.EndDateTime and ODM1.SeriesCatalog.EndDateTimeUTC +7. Set ODM2.Actions.ActionDescription = 'Sensor deployment and observation. This is a generic Observation Action created for a Time Series Result loaded into ODM2 from an ODM 1.1.1 database.' - this attribute doesn't exist in ODM 1.1.1 so I created a generic string that describes the Action I am creating for each time series. +8. Set ODM2.Actions.ActionFileLink = NULL - this attribute doesn't exist in ODM 1.1.1 + +#### ActionBy records for Sensor-Based Data +Since there really isn't any information in ODM 1.1.1 about who performed any of the Actions, I have assumed that the contact person from each of the ODM 1.1.1 Sources is the "Observer" and the lead of the ODM2 Observation Action. This part only works correctly because the Observation Actions are the only Actions I have added so far. + +1. Set ODM2.ActionBy.ActionID = ODM2.Actions.ActionID = ODM1.SeriesCatalog.SeriesID +2. Set ODM2.ActionBy.AffiliationID = ODM2.Affiliations.AffiliationID = ODM1.Sources.SourceID +3. Set ODM2.ActionBy.IsActionLead = 1 - (1 = True) +4. Set ODM2.ActionBy.RoleDescription = 'Observer' + +#### FeatureActions for Sensor-Based Data +Since I used the ODM 1.1.1 SiteID as the SamplingFeatureID in ODM2 and the ODM 1.1.1 SeriesID for ActionID in ODM2, I can create this table by just querying the SiteID and SeriesID from the ODM 1.1.1 SeriesCatalog table. But, I have to select DISTINCT time series that do not have DataValues associated with samples (e.g., only sensor-based data) + +1. Set ODM2.FeatureActions.SamplingFeatureID = ODM1.SeriesCatalog.SiteID +2. Set ODM2.FeatureActions.ActionID = ODM1.SeriesCatalog.SeriesID + +#### Results for Sensor-Based Data +Similar to Actions, I can just use the SeriesIDs from the ODM 1.1.1 SeriesCatalog table to identify the Results for sensor-based data from the ODM 1.1.1 database. But, I first have to set the default value of the ResultUUID field in the ODM2Core.Results table to be a NEWSEQUENTIALID(), similar to what I did for the ODM2 SamplingFeatures table. + +1. Set ODM2.Results.ResultID = ODM1.SeriesCatalog.SeriesID +2. Set ODM2.Results.ResultUUID = NEWSEQUENTIALID() - this is a SQL Server Function to generate a UUID (i.e., SQL Server generates the UUIDS for me) +3. Set ODM2.Results.FeatureActionID = ODM2Core.FeatureActions.FeatureActionID - this is set for each combination of SiteID and SeriesID from the SeriesCatalog table in ODM 1.1.1, so have to join on the SeriesCatalog +4. Set ODM2.Results.ResultTypeCV = 'Time series coverage' +5. Set ODM2.Results.VariableID = ODM1.SeriesCatalog.VariableID +6. Set ODM2.Results.UnitsID = ODM2.Units.UnitsID - can't just use the UnitsID from ODM 1.1.1, instead had to match the Units by name +7. Set ODM2.Results.TaxonomicClassifierID = NULL - doesn't exist in ODM 1.1.1 and don't need it for sensor-based data +8. Set ODM2.Results.ProcessingLevelID = ODM1.SeriesCatalog.QualityControlLevelID +9. Set ODM2.Results.ResultDateTime = current system date (e.g., the time the result was added to the database) +10. Calculated the ResultDateTimeUTCOffset from the current system date and the current system date as UTC +11. Set ODM2.Results.ValidDateTime = NULL - Doesn't exist in ODM 1.1.1 +12. Set ODM2.Results.ValidDateTimeUTCOffset = NULL - Doesn't exist in ODM 1.1.1 +13. Set ODM2.Results.StatusCV = 'Unknown' - ODM 1.1.1 doesn't have any information about this, so I set to 'Unknown'. This would need to be updated after the fact. +14. Set ODM2.Results.SampledMediumCV = ODM1.SeriesCatalog.SampleMedium +15. Set ODM2.Results.ValueCount = ODM1.SeriesCatalog.ValueCount +16. Set ODM2.Results.IntendedObservationSpacing = 'Unknown' - this doesn't exist in ODM 1.1.1 and since there is no info, just set to 'Unknown' + +**NOTE**: Need to make sure that the terms in the SampleMedium field in the Variables table of the ODM 1.1.1 database are valid terms in the ODM2 MediumCV. + +#### TimeSeriesResults for Sensor-Based Data +Given that I have used the ODM1.SeriesCatalog.SeriesID to identify the ODM2 Result for each sensor-based time series, I can use the SeriesIDs to create the records in the ODM2 TimeSeriesResult table as well for convenience. Since ODM 1.1.1 only had a single OffsetValue in the DataValues table, I need to create a new SpatialReference that represents the offset and then I will use just the ODM2 ZLocation to represent the ODM1 offset. This may be problematic and may need to be adjusted after the fact. + +1. Set ODM2.TimeSeriesResults.ResultID = ODM1.SeriesCatalog.SeriesID +2. Set ODM2.TimeSeriesResults.XLocation = NULL - doesn't exist in ODM 1.1.1 +3. Set ODM2.TimeSeriesResults.XLocationUnitsID = Null - doesn't exist in ODM 1.1.1 +4. Set ODM2.TimeSeriesResults.YLocation = NULL - doesn't exist in ODM 1.1.1 +5. Set ODM2.TimeSeriesResults.YLocationUnitsID = NULL - doesn't exist in ODM 1.1.1 +6. Set ODM2.TimeSeriesResults.ZLocation = ODM1.DataValues.OffsetValue +7. Set ODM2.TimeSeriesResults.ZLocationUnitsID = ODM2.Units.UnitsID - had to match to ODM 1.1.1 OffsetUnitsID by matching on UnitsName +8. Set ODM2.TimeSeriesResults.SpatialReferenceID = ODM2.SpatialReferences.SpatialReferenceID - Here I have to get the ODM2 SpatialReferenceID for the ODM 1.1.1 OffsetTypes that I added to the ODM2.SpatialReferences table +9. Set ODM2.TimeSeriesResults.IntendedTimeSpacing = NULL - doesn't exist in ODM 1.1.1 +10. Set ODM2.TimeSeriesResults.IntendedTimeSpacingUnitsID = NULL - doesn't exist in ODM 1.1.1 +11. Set ODM2Results.TimeSeriesResults.AggregationStatisticCV = ODM1.SeriesCatalog.DataType + +**NOTE**: Not all ODM 1.1.1 offsets are in the vertical direction and so mapping them all to the ZLocation in the ODM2 TimeSeriesResults table may be incorrect for some Results. This will have to be corrected after the fact because there is no other way to interpret the ODM 1.1.1 Offset, which is one dimensional. + +#### TimeSeriesResultValues for Sensor-Based Data +Given that I have used the ODM1.SeriesCatalog.SeriesID to identify the ODM2 Result for each sensor-based time series, I can use the SeriesIDs to identify the DataValues coming out of my ODM 1.1.1 database. This operation has to filter out any DataValues that have a SampleID associated with them (I only want sensor-based data). But, *while sufficient for my data, this simple filter may not be sufficient for all ODM 1.1.1 databases*. I am also preserving ValueIDs from the ODM 1.1.1 database so I can go back later and add ODM2 Annotations for ODM 1.1.1 Qualifiers. + +1. Set ODM2.TimeSeriesResultValues.ValueID = ODM1.DataValues.ValueID +2. Set ODM2.TimeSeriesResultValues.ResultID = ODM1.SeriesCatalog.SeriesID +3. Set ODM2.TimeSeriesResultValues.DataValue = ODM1.DataValues.DataValue +4. Set ODM2.TimeSeriesResultValues.ValueDateTime = ODM1.DataValues.LocalDateTime +5. Set ODM2.TimeSeriesResultValues.ValueDateTimeUTCOffset = ODM1.DataValues.UTCOffset +6. Set ODM2.TimeSeriesResultValues.CensorCodeCV = ODM1.DataValues.CensorCode +7. Set ODM2.TimeSeriesResultValues.QualityCodeCV = 'Unknown' - doesn't exist in ODM 1.1.1 but is required +12. Set ODM2.TimeSeriesResultValues.TimeAggregationInterval = ODM1.SeriesCatalog.TimeSupport +13. Set ODM2.TimeSeriesResultValues.TimeAggregationIntervalUnitsID = ODM2.Units.UnitsID - had to match this to the TimeUnitsID from the ODM 1.1.1 SeriesCatalog table by UnitsName. + +**NOTE**: Need to ensure that all CensorCodes used in the DataValues table in the ODM 1.1.1 database match valid terms from the ODM2 CensorCodeCV prior to running this. + +## Implementation Notes for Specimen-Based Data ## + +#### SamplingFeatures and Specimens +ODM 1.1.1 has a Samples table that is used to populate ODM2.Specimens. However, in ODM 1.1.1, Samples were linked directly to DataValues. In ODM2, this is not the case. Linking water quality samples to DataValues in ODM2 requires going from Specimens --> SamplingFeatures --> FeatureActions --> Result --> MeasurementResults --> MeasurementResultValues. + +**Specimens in ODM2.SamplingFeatures**: My water quality samples in ODM 1.1.1 are Specimen SamplingFeatures in ODM2. I first need to create records for the water quality samples in ODM2.SamplingFeatures. + +1. Set ODM2.SamplingFeatures.SamplingFeatureID = AutoNumber - assigned by database +2. Set ODM2.SamplingFeatures.SamplingFeatureTypeCV = 'Specimen' +3. Set ODM2.SamplingFeatures.SamplingFeatureCode = ODM1.Samples.LabSampleCode +4. Set ODM2.SamplingFeatures.SamplingFeatureName = NULL - this doesn't exist in ODM 1.1.1, so set as NULL +5. Set ODM2.SamplingFeatures.SamplingFeatureDescription = 'Specimen loaded from an ODM 1.1.1 database.' +6. Set ODM2.SamplingFeatures.SamplingFeatureGeoTypeCV = 'Not applicable' - not applicable for Specimens +7. Set ODM2.SamplingFeatures.FeatureGeometry = NULL - not applicable for Specimens +8. Set ODM2.SamplingFeatures.Elevation_m = NULL - not applicable for Specimens +9. Set ODM2.SamplingFeatures.ElevationDatumCV = NULL - not applicable for Specimens + +**Specimens in ODM2.Specimens**: Next, I need to create records for each water quality sample in the ODM2.Specimens table. + +1. Set ODM2.Specimens.SamplingFeatureID = ODM2.SamplingFeatures.SamplingFeatureID - set to the same SamplingFeatureID as the inserted SamplingFeature +2. Set ODM2.Specimens.SpecimenTypeCV = ODM1.Samples.SampleType +3. Set ODM2S.Specimens.SpecimenMediumCV = ODM1.Variables.SampleMedium +4. Set ODM2.Specimens.IsFieldSpecimen = 1 (1 = True) + +**NOTE**: Need to make sure that the SampleType terms used in the ODM 1.1.1 Samples table are valid terms from the ODM2 SpecimenTypeCV before running this code. +**NOTE**: Need to make sure that the SampleMedium terms used in the ODM 1.1.1 Variables table are valid terms from the ODM2 MediumCV before running this code. + +**Specimens in ODM2.RelatedFeatures**: Once records have been created in both the Specimens and SamplingFeatures tables, I can add records to the ODM2.RelatedFeatures table to record which Site each Specimen was collected at. + +1. Set ODM2.RelatedFeatures.SamplingFeatureID = ODM2.SamplingFeatures.SamplingFeatureID - the SamplingFeatureIDs of the inserted Specimens +2. Set ODM2.RelatedFeatures.RelationshipTypeCV = 'Was collected at' - *This is means that the Specimen recorded in SamplingFeatureID **Was collected at** the SamplingFeature recorded in RelatedFeatureID*. +3. Set ODM2.RelatedFeatures.RelatedFeatureID = ODM1.Sites.SiteID - *I can do this because I used the SiteIDs from the ODM 1.1.1 database as the SamplingFeatureIDs in the ODM2 database. But, I have to link through Samples, DataValues, and Sites* +4. Set ODM2SamplingFeatures.FeatureParents.SpatialOffsetID = NULL - don't need this for any of my samples + +#### Sample Analysis Actions +The "Sample analysis" Actions on the Specimens I just created for my water quality samples are the Actions that create the Measurement Results. So, I need to create a "Sample analysis" Action for each Specimen to link it to its Result(s). I don't have any information about the dates and times at which the "Sample analysis" Actions occurred, and so I am just going to use the dates and times recorded with the DataValues in the ODM 1.1.1 database. This may need to be adjusted after the fact. + +**Populate ODM2.Actions for "Specimen analysis" Actions**: First I created a temporary table so I could get all of the IDs matched up correctly. The temporary table contains one record per Action/Result that need to get inserted, along with their attributes in a single table that I can select from. Then, I selected from the temporary table to populate the others: + +1. Set ODM2.Actions.ActionID = @MaxActionID + the ROW_NUMBER() of the temporary table - starts the ActionIDs to increment from the largest ActionID in the Actions table. +2. Set ODM2.Actions.ActionTypeCV = 'Specimen analysis' +3. Set ODM2.Actions.MethodID = ODM2.Methods.MethodID - this is the MethodID for the appropriate LabMethod from ODM 1.1.1, which I have already added to the database +4. Set ODM2.Actions.BeginDateTime = ODM1.DataValues.LocalDateTime +5. Set ODM2.Actions.BeginDateTimeUTCOffset = ODM1.DataValues.UTCOffset +6. Set ODM2.Actions.EndDateTime = ODM1.DataValues.LocalDateTime - assumes the same time for beginning and ending of the Specimen Analysis Action. +7. Set ODM2.Actions.EndDateTimeUTCOffset = ODM1.DataValues.UTCOffset +8. Set ODM2.Actions.ActionDescription = 'Specimen laboratory analysis.' +9. Set ODM2.Actions.ActionFileLink = NULL + +**Populate ODM2.ActionBy for "Specimen analysis" Actions**: Each "Specimen analysis" action is performed by a person. In ODM 1.1.1, I only have the person that is affiliated with the Source record. So, I arbitrarily use that person as the "Laboratory analyst". + +1. Set ODM2Core.ActionBy.ActionID = ODM2.Actions.ActionID - ActionID of the inserted Action +2. Set ODM2Core.ActionBy.AffiliationID = ODM1.Sources.SourceID - this works because I used the ODM 1.1.1 SourceIDs as the OrganizationIDs in ODM2 +3. Set ODM2Core.ActionBy.IsActionLead = 1 +4. Set ODM2Core.ActionBy.RoleDescription = 'Laboratory analyst' + +**Populate ODM2.FeatureActions for "Specimen analysis" Actions**: Now I need to add records to the FeatureActions table linking the "Specimen analysis" Actions to the Specimen SamplingFeatures that they were performed on. Here I used a temp table to get back the records inserted into FeatureActions, so then I can easily join them to the temporary Action information table to create the Results in the next step. + +1. Set ODM2.FeatureActions.SamplingFeatureID = ODM2.SamplingFeatures.SamplingFeatureID - the SamplingFeatureIDs of the inserted Specimen SamplingFeatures +2. Set ODM2.FeatureActions.ActionID = ODM2.Actions.ActionID - the ActionID of the inserted "Specimen analysis" Actions + +#### Populate ODM2.Results +For my Specimen based data, each Result record will detail a "Measurement" Result that has a single DataValue. I used the temporary tables I created to generate all of the Results information. + +1. Set ODM2.Results.ResultID = @MaxResultID + ODM1.DataValues.ValueID - this makes sure my ResultIDs are unique +2. Set ODM2.Results.FeatureActionID = ODM2.ODM2Core.FeatureActions.FeatureActionID - these are the records I just inserted above +3. Set ODM2.Results.ResultTypeCV = 'Measurement' +4. Set ODM2.Results.VariableID = ODM1.DataValues.VariableID - I can do this because I used the ODM 1.1.1 VariableIDs in ODM2 +5. Set ODM2.Results.UnitsID = ODM2.Units.UnitsID - I need to match the Units in my ODM2 database with the Units in the ODM 1.1.1 database by UnitsName +6. Set ODM2.Results.TaxonomicClassifierID = NULL +7. Set ODM2.Results.ProcessingLevelID = ODM1.DataValues.QualityControlLevelID +8. Set ODM2.Results.ResultDateTime = ODM1.DataValues.LocalDateTime +9. Set ODM2.Results.ResultDateTimeUTCOffset = ODM1.DataValues.UTCOffset +10. Set ODM2.Results.ValidDateTime = NULL +11. Set ODM2.Results.ValidDateTimeUTCOffset = NULL +12. Set ODM2.Results.StatusCV = 'Complete' +13. Set ODM2.Results.SampledMediumCV = ODM1.Variables.SampleMedium +14. Set ODM2.Results.ValueCount = 1 + +**NOTE**: Need to make sure that all of the terms in the SampleMedium field in the +ODM 1.1.1 Variables table match valid terms from the ODM2 MediumCV. + +#### MeasurementResults for Specimen-based Results +Add the records for each Measurement Result to the MeasurementResults table. + +1. Set ODM2.MeasurementResults.ResultID = @MaxResultID + ODM1.DataValues.ValueID - same as Results.ResultID +2. Set ODM2.MeasurementResults.XLocation = NULL +3. Set ODM2.MeasurementResults.XLocationUnitsID = NULL +4. Set ODM2.MeasurementResults.YLocation = NULL +5. Set ODM2.MeasurementResults.YLocationUnitsID = NULL +6. Set ODM2.MeasurementResults.ZLocation = ODM1.DataValues.OffsetValue +7. Set ODM2.MeasurementResults.ZLocationUnitsID = ODM2.Units.UnitsID - had to match up with ODM1.OffsetTypes.OffsetUnitsID bu matching UnitsName +8. Set ODM2.MeasurementResults.SpatialReferenceID = ODM2.SpatialReferences.SpatialReferenceID - Here I have to get the SpatialReferenceID for the ODM 1.1.1 OffsetTypes that I added to ODM2 as SpatialReferences +9. Set ODM2.MeasurementResults.CensorCodeCV = ODM1.DataValues.CensorCode +10. Set ODM2.MeasurementResults.QualityCodeCV = NULL +11. Set ODM2.MeasurementResults.AggregationStatisticCV = ODM1.Variables.DataType +12. Set ODM2.MeasurementResults.TimeAggregationInterval = ODM1.SeriesCatalog.TimeSupport +13. Set ODM2.MeasurementResults.TimeAggregationIntervalUnitsID = ODM2.Units.UnitsID - had to match up with ODM1.SeriesCatalog.TimeUnitsName + +**NOTE**: I handled the ODM 1.1.1 Offset the same as for TimeSeries Results. See the notes above about potential problems. +**NOTE**: Need to make sure that any terms in the CensorCode field of the ODM1.DataValues table match valid terms from the ODM2 CensorCodeCV. +**NOTE**: Need to make sure that any terms in the DataType field of the ODM1.Variables table match valid terms from the ODM2 AggregationStatisticCV. + +#### MeasurementResultValues for Specimen-based Results #### +Add the DataValues from the Specimen-based data in ODM 1.1.1 to ODM2 as ResultValues. + +1. Set ODM2Results.MeasurementResultValues.ValueID = ODM1.DataValues.ValueID +2. Set ODM2Results.MeasurementResultValues.ResultID = @MaxResultID + ODM1.DataValues.ValueID - same as above +3. Set ODM2Results.ResultValues.DataValue = ODM1.DataValues.DataValue +4. Set ODM2Results.ResultValues.ValueDateTime = ODM1.DataValues.LocalDateTime +5. Set ODM2Results.ResultValues.ValueDateTimeUTCOffset = ODM1.DataValues.UTCOffset + +## Implementation Notes for Annotations ## + +### Annotations for ResultValues ### +I need to add the DataValue Qualifiers from ODM 1.1.1 to ODM2. DataValue Qualifiers were the only types of Annotations supported by ODM 1.1.1. + +#### Populate ODM2.Annotations for MeasurementResultValueAnnotations and TimeSeriesResultValueAnnotations #### +I had to run the basically the same query twice, but first for DataValues that have SampleIDs associated with them (which would be MeasurementResultValueAnnotations) and then DataValues that don't have SampleIDs associated with them (which would be TimeSeriesResultValueAnnotations) + +1. Set ODM2.Annotations.AnnotationID = ODM1.Qualifiers.QualifierID - I can do this because DataValue Qualifiers are the only Annotations in ODM1 +2. Set ODM2.Annotations.AnnotationTypeCV = 'Measurement result value annotation' OR 'Time series result value annotation' +3. Set ODM2.Annotations.AnnotationCode = ODM1.Qualifiers.QualifierCode +4. Set ODM2.Annotations.AnnotationText = ODM1.Qualifiers.QualifierDescription - had to truncate this to 500 characters to match ODM2 schema. ODM 1.1.1 allowed more characters. +5. Set ODM2.Annotations.AnnotationDateTime = NULL - I really don't know anything about when these annotations were applied +6. Set ODM2.Annotations.AnnotationUTCOffset = NULL +7. Set ODM2.Annotations.AnnotatorID = NULL + +#### Populate ODM2.TimeSeriesResultValueAnnotations #### + +1. Set ODM2.TimeSeriesResultValueAnnotations.ValueID = ODM1.DataValues.ValueID - I can do this because I preserved the ValueIDs when I moved the data across +2. Set ODM2.TimeSeriesResultValueAnnotations.AnnotationID = ODM1.DataValues.QualifierID - I can do this because I used the QualifierIDs from ODM 1.1.1 as the AnnotationIDs in ODM2 + +#### Populate ODM2.MeasurementResultValueAnnotations #### + +1. Set ODM2.MeasurementResultValueAnnotations.ValueID = ODM1.DataValues.ValueID - I can do this because I preserved the ValueIDs when I moved the data across +2. Set ODM2.MeasurementResultValueAnnotations.AnnotationID = ODM1.DataValues.QualifierID - I can do this because I used the QualifierIDs from ODM1 as the AnnotationIDs in ODM2 + + + + + + diff --git a/tests/usecasesql/littlebearriver/sampledatabases/README.md b/tests/usecasesql/littlebearriver/sampledatabases/README.md new file mode 100644 index 0000000..2d9c5e0 --- /dev/null +++ b/tests/usecasesql/littlebearriver/sampledatabases/README.md @@ -0,0 +1,5 @@ +Little Bear River Test Databases +===================================== +This folder contains multiple versions of the same dataset for multiple relational database management systems. The database contains approximately one month of continuous time series data for two monitoring sites, one water quality station in the Little Bear River and one weather station. Also included are a number of water quality samples and associated results from the water quality station. + +The source database for this use case was an ODM 1.1.1 database containing a small subset of the full dataset available for the Little Bear River. \ No newline at end of file diff --git a/tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/LBR_ODM2_MSSQLDump.sql b/tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/LBR_ODM2_MSSQLDump.sql new file mode 100644 index 0000000..90bbc55 Binary files /dev/null and b/tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/LBR_ODM2_MSSQLDump.sql differ diff --git a/tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/README.md b/tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/README.md new file mode 100644 index 0000000..b7b7894 --- /dev/null +++ b/tests/usecasesql/littlebearriver/sampledatabases/odm2_ms_sql_server/README.md @@ -0,0 +1,32 @@ +Little Bear River Microsoft SQL Server Test Database +==================================================== +This folder contains a Microsoft SQL Server ODM2 database containing a subset of data from the Little Bear River data use case. It contains approximately one month of continuous time series data for two monitoring sites, one water quality station in the Little Bear River and one weather station. Also included are a number of water quality samples and associated results from the water quality station. + +To attach the database to Microsoft SQL Server, do the following: + +1. Download the the .mdf and .ldf files and copy them to the SQL Server data directory on the server to which you want to attach the database +2. Open Microsoft SQL Server Management Studio +3. Connect to the database server to which you want to attach the database +4. In the object explorer, right click on "Databases" and select "Attach" +5. Click the "Add" button near the center of the "Attach Databases" form +6. Navigate to your SQL Server data directory and select "ODM2.mdf" +7. Click the "OK" button on the "Attach Databases" form + +To use the MSQL Dump File (SQL script) instead, do the following: + +1. Download the .sql script file +2. Create a new database called 'ODM2' in your SQL Server instance +3. Open the script and run it on your 'ODM2' database + +**NOTE**: The sample database and SQL dump file in this folder were created using Microsoft SQL Server 2008 R2. + +### Details ### +The database and SQL dump script in this folder were produced using the following steps: + +1. Download the ODM2 for Microsoft SQL Server blank schema script from the GitHub repository +2. Open and execute the script in SQL Server Management Studio - this creates a new database called ODM2 that contains all of the ODM2 structure, but no data +3. Execute the Python script for loading the ODM2 controlled vocabularies into the database +4. Execute the the SQL script from the Little Bear River data use case folder to copy data from a sample ODM 1.1.1 database for the Little Bear River to the new ODM2 database. +5. Script the database to the .sql dump file +6. Detach the database and copy the database files + diff --git a/tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql b/tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql new file mode 100644 index 0000000..73dfc59 --- /dev/null +++ b/tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/LBR_MySQL_SmallExample.sql @@ -0,0 +1,3929 @@ +-- MySQL dump 10.13 Distrib 5.6.24, for osx10.8 (x86_64) +-- +-- Host: 127.0.0.1 Database: ODM2 +-- ------------------------------------------------------ +-- Server version 5.6.26 + +USE odm2; + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Table structure for table `ActionAnnotations` +-- + +DROP TABLE IF EXISTS `ActionAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ActionAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ActionAnnotations_Actions` (`ActionID`), + KEY `fk_ActionAnnotations_Annotations` (`AnnotationID`), + CONSTRAINT `fk_ActionAnnotations_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ActionAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ActionAnnotations` +-- + +/*!40000 ALTER TABLE `ActionAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `ActionAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `ActionBy` +-- + +DROP TABLE IF EXISTS `ActionBy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ActionBy` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `AffiliationID` int(11) NOT NULL, + `IsActionLead` tinyint(1) NOT NULL, + `RoleDescription` varchar(500) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ActionPeople_Actions` (`ActionID`), + KEY `fk_ActionPeople_Affiliations` (`AffiliationID`), + CONSTRAINT `fk_ActionPeople_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ActionPeople_Affiliations` FOREIGN KEY (`AffiliationID`) REFERENCES `Affiliations` (`AffiliationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=870 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ActionBy` +-- + +/*!40000 ALTER TABLE `ActionBy` DISABLE KEYS */; +INSERT INTO `ActionBy` VALUES (1,1,1,1,'Observer'),(2,2,1,1,'Observer'),(3,3,1,1,'Observer'),(4,4,1,1,'Observer'),(5,5,1,1,'Observer'),(6,6,1,1,'Observer'),(7,7,1,1,'Observer'),(8,8,1,1,'Observer'),(9,9,1,1,'Observer'),(10,10,1,1,'Observer'),(11,11,1,1,'Observer'),(12,12,1,1,'Observer'),(13,13,1,1,'Observer'),(14,14,1,1,'Observer'),(15,15,1,1,'Observer'),(16,22,2,1,'Observer'),(17,23,5,1,'Observer'),(18,24,5,1,'Observer'),(19,28,2,1,'Observer'),(20,29,2,1,'Observer'),(21,30,2,1,'Observer'),(22,31,2,1,'Observer'),(23,32,2,1,'Observer'),(24,33,2,1,'Observer'),(25,34,2,1,'Observer'),(26,35,2,1,'Observer'),(27,36,2,1,'Observer'),(28,37,2,1,'Observer'),(29,38,2,1,'Observer'),(30,39,2,1,'Observer'),(31,40,2,1,'Observer'),(32,41,2,1,'Observer'),(33,42,2,1,'Observer'),(34,43,2,1,'Observer'),(35,44,2,1,'Observer'),(36,45,2,1,'Observer'),(37,46,2,1,'Observer'),(38,47,2,1,'Observer'),(39,48,2,1,'Observer'),(40,49,2,1,'Observer'),(41,50,2,1,'Observer'),(42,51,2,1,'Observer'),(43,52,2,1,'Observer'),(44,53,2,1,'Observer'),(45,54,2,1,'Observer'),(46,55,2,1,'Observer'),(47,56,2,1,'Observer'),(48,57,2,1,'Observer'),(49,58,2,1,'Observer'),(50,59,2,1,'Observer'),(51,60,2,1,'Observer'),(52,61,2,1,'Observer'),(53,62,2,1,'Observer'),(54,63,2,1,'Observer'),(55,64,2,1,'Observer'),(56,65,2,1,'Observer'),(57,66,2,1,'Observer'),(58,67,2,1,'Observer'),(59,68,2,1,'Observer'),(60,69,2,1,'Observer'),(61,70,2,1,'Observer'),(62,71,2,1,'Observer'),(63,72,2,1,'Observer'),(64,73,2,1,'Observer'),(65,74,2,1,'Observer'),(66,75,2,1,'Observer'),(67,76,2,1,'Observer'),(68,77,2,1,'Observer'),(69,78,2,1,'Observer'),(70,79,2,1,'Observer'),(71,80,2,1,'Observer'),(72,81,2,1,'Observer'),(73,82,2,1,'Observer'),(74,83,2,1,'Observer'),(75,84,2,1,'Observer'),(76,85,2,1,'Observer'),(77,86,2,1,'Observer'),(78,87,2,1,'Observer'),(79,88,2,1,'Observer'),(80,89,2,1,'Observer'),(81,90,2,1,'Observer'),(82,91,2,1,'Observer'),(83,92,2,1,'Observer'),(84,93,2,1,'Observer'),(85,94,2,1,'Observer'),(86,95,2,1,'Observer'),(87,96,2,1,'Observer'),(88,97,2,1,'Observer'),(89,98,2,1,'Observer'),(90,99,2,1,'Observer'),(91,100,2,1,'Observer'),(92,101,2,1,'Observer'),(93,102,2,1,'Observer'),(94,103,3,1,'Laboratory analyst'),(95,104,3,1,'Laboratory analyst'),(96,105,3,1,'Laboratory analyst'),(97,106,3,1,'Laboratory analyst'),(98,107,3,1,'Laboratory analyst'),(99,108,3,1,'Laboratory analyst'),(100,109,3,1,'Laboratory analyst'),(101,110,3,1,'Laboratory analyst'),(102,111,3,1,'Laboratory analyst'),(103,112,3,1,'Laboratory analyst'),(104,113,3,1,'Laboratory analyst'),(105,114,3,1,'Laboratory analyst'),(106,115,4,1,'Laboratory analyst'),(107,116,4,1,'Laboratory analyst'),(108,117,4,1,'Laboratory analyst'),(109,118,4,1,'Laboratory analyst'),(110,119,4,1,'Laboratory analyst'),(111,120,4,1,'Laboratory analyst'),(112,121,4,1,'Laboratory analyst'),(113,122,4,1,'Laboratory analyst'),(114,123,4,1,'Laboratory analyst'),(115,124,4,1,'Laboratory analyst'),(116,125,4,1,'Laboratory analyst'),(117,126,4,1,'Laboratory analyst'),(118,127,4,1,'Laboratory analyst'),(119,128,4,1,'Laboratory analyst'),(120,129,4,1,'Laboratory analyst'),(121,130,4,1,'Laboratory analyst'),(122,131,4,1,'Laboratory analyst'),(123,132,4,1,'Laboratory analyst'),(124,133,4,1,'Laboratory analyst'),(125,134,4,1,'Laboratory analyst'),(126,135,4,1,'Laboratory analyst'),(127,136,4,1,'Laboratory analyst'),(128,137,4,1,'Laboratory analyst'),(129,138,4,1,'Laboratory analyst'),(130,139,4,1,'Laboratory analyst'),(131,140,4,1,'Laboratory analyst'),(132,141,4,1,'Laboratory analyst'),(133,142,4,1,'Laboratory analyst'),(134,143,4,1,'Laboratory analyst'),(135,144,4,1,'Laboratory analyst'),(136,145,4,1,'Laboratory analyst'),(137,146,4,1,'Laboratory analyst'),(138,147,4,1,'Laboratory analyst'),(139,148,4,1,'Laboratory analyst'),(140,149,4,1,'Laboratory analyst'),(141,150,4,1,'Laboratory analyst'),(142,151,4,1,'Laboratory analyst'),(143,152,4,1,'Laboratory analyst'),(144,153,4,1,'Laboratory analyst'),(145,154,4,1,'Laboratory analyst'),(146,155,4,1,'Laboratory analyst'),(147,156,4,1,'Laboratory analyst'),(148,157,4,1,'Laboratory analyst'),(149,158,4,1,'Laboratory analyst'),(150,159,4,1,'Laboratory analyst'),(151,160,4,1,'Laboratory analyst'),(152,161,4,1,'Laboratory analyst'),(153,162,4,1,'Laboratory analyst'),(154,163,4,1,'Laboratory analyst'),(155,164,4,1,'Laboratory analyst'),(156,165,4,1,'Laboratory analyst'),(157,166,4,1,'Laboratory analyst'),(158,167,4,1,'Laboratory analyst'),(159,168,4,1,'Laboratory analyst'),(160,169,4,1,'Laboratory analyst'),(161,170,4,1,'Laboratory analyst'),(162,171,4,1,'Laboratory analyst'),(163,172,4,1,'Laboratory analyst'),(164,173,4,1,'Laboratory analyst'),(165,174,4,1,'Laboratory analyst'),(166,175,4,1,'Laboratory analyst'),(167,176,4,1,'Laboratory analyst'),(168,177,4,1,'Laboratory analyst'),(169,178,4,1,'Laboratory analyst'),(170,179,4,1,'Laboratory analyst'),(171,180,4,1,'Laboratory analyst'),(172,181,4,1,'Laboratory analyst'),(173,182,4,1,'Laboratory analyst'),(174,183,4,1,'Laboratory analyst'),(175,184,4,1,'Laboratory analyst'),(176,185,4,1,'Laboratory analyst'),(177,186,4,1,'Laboratory analyst'),(178,187,4,1,'Laboratory analyst'),(179,188,4,1,'Laboratory analyst'),(180,189,4,1,'Laboratory analyst'),(181,190,4,1,'Laboratory analyst'),(182,191,4,1,'Laboratory analyst'),(183,192,4,1,'Laboratory analyst'),(184,193,4,1,'Laboratory analyst'),(185,194,4,1,'Laboratory analyst'),(186,195,4,1,'Laboratory analyst'),(187,196,4,1,'Laboratory analyst'),(188,197,4,1,'Laboratory analyst'),(189,198,4,1,'Laboratory analyst'),(190,199,4,1,'Laboratory analyst'),(191,200,4,1,'Laboratory analyst'),(192,201,4,1,'Laboratory analyst'),(193,202,4,1,'Laboratory analyst'),(194,203,4,1,'Laboratory analyst'),(195,204,4,1,'Laboratory analyst'),(196,205,4,1,'Laboratory analyst'),(197,206,4,1,'Laboratory analyst'),(198,207,4,1,'Laboratory analyst'),(199,208,4,1,'Laboratory analyst'),(200,209,4,1,'Laboratory analyst'),(201,210,4,1,'Laboratory analyst'),(202,211,4,1,'Laboratory analyst'),(203,212,4,1,'Laboratory analyst'),(204,213,4,1,'Laboratory analyst'),(205,214,4,1,'Laboratory analyst'),(206,215,4,1,'Laboratory analyst'),(207,216,4,1,'Laboratory analyst'),(208,217,4,1,'Laboratory analyst'),(209,218,4,1,'Laboratory analyst'),(210,219,4,1,'Laboratory analyst'),(211,220,4,1,'Laboratory analyst'),(212,221,4,1,'Laboratory analyst'),(213,222,4,1,'Laboratory analyst'),(214,223,4,1,'Laboratory analyst'),(215,224,4,1,'Laboratory analyst'),(216,225,4,1,'Laboratory analyst'),(217,226,4,1,'Laboratory analyst'),(218,227,4,1,'Laboratory analyst'),(219,228,4,1,'Laboratory analyst'),(220,229,4,1,'Laboratory analyst'),(221,230,4,1,'Laboratory analyst'),(222,231,4,1,'Laboratory analyst'),(223,232,4,1,'Laboratory analyst'),(224,233,4,1,'Laboratory analyst'),(225,234,4,1,'Laboratory analyst'),(226,235,4,1,'Laboratory analyst'),(227,236,4,1,'Laboratory analyst'),(228,237,4,1,'Laboratory analyst'),(229,238,4,1,'Laboratory analyst'),(230,239,4,1,'Laboratory analyst'),(231,240,4,1,'Laboratory analyst'),(232,241,4,1,'Laboratory analyst'),(233,242,4,1,'Laboratory analyst'),(234,243,4,1,'Laboratory analyst'),(235,244,4,1,'Laboratory analyst'),(236,245,4,1,'Laboratory analyst'),(237,246,4,1,'Laboratory analyst'),(238,247,4,1,'Laboratory analyst'),(239,248,4,1,'Laboratory analyst'),(240,249,4,1,'Laboratory analyst'),(241,250,4,1,'Laboratory analyst'),(242,251,4,1,'Laboratory analyst'),(243,252,4,1,'Laboratory analyst'),(244,253,4,1,'Laboratory analyst'),(245,254,4,1,'Laboratory analyst'),(246,255,4,1,'Laboratory analyst'),(247,256,4,1,'Laboratory analyst'),(248,257,4,1,'Laboratory analyst'),(249,258,4,1,'Laboratory analyst'),(250,259,4,1,'Laboratory analyst'),(251,260,4,1,'Laboratory analyst'),(252,261,4,1,'Laboratory analyst'),(253,262,4,1,'Laboratory analyst'),(254,263,4,1,'Laboratory analyst'),(255,264,4,1,'Laboratory analyst'),(256,265,4,1,'Laboratory analyst'),(257,266,4,1,'Laboratory analyst'),(258,267,4,1,'Laboratory analyst'),(259,268,4,1,'Laboratory analyst'),(260,269,4,1,'Laboratory analyst'),(261,270,4,1,'Laboratory analyst'),(262,271,4,1,'Laboratory analyst'),(263,272,4,1,'Laboratory analyst'),(264,273,4,1,'Laboratory analyst'),(265,274,4,1,'Laboratory analyst'),(266,275,4,1,'Laboratory analyst'),(267,276,4,1,'Laboratory analyst'),(268,277,4,1,'Laboratory analyst'),(269,278,4,1,'Laboratory analyst'),(270,279,4,1,'Laboratory analyst'),(271,280,4,1,'Laboratory analyst'),(272,281,4,1,'Laboratory analyst'),(273,282,4,1,'Laboratory analyst'),(274,283,4,1,'Laboratory analyst'),(275,284,4,1,'Laboratory analyst'),(276,285,4,1,'Laboratory analyst'),(277,286,4,1,'Laboratory analyst'),(278,287,4,1,'Laboratory analyst'),(279,288,4,1,'Laboratory analyst'),(280,289,4,1,'Laboratory analyst'),(281,290,4,1,'Laboratory analyst'),(282,291,4,1,'Laboratory analyst'),(283,292,4,1,'Laboratory analyst'),(284,293,4,1,'Laboratory analyst'),(285,294,4,1,'Laboratory analyst'),(286,295,4,1,'Laboratory analyst'),(287,296,4,1,'Laboratory analyst'),(288,297,4,1,'Laboratory analyst'),(289,298,4,1,'Laboratory analyst'),(290,299,4,1,'Laboratory analyst'),(291,300,4,1,'Laboratory analyst'),(292,301,4,1,'Laboratory analyst'),(293,302,4,1,'Laboratory analyst'),(294,303,4,1,'Laboratory analyst'),(295,304,4,1,'Laboratory analyst'),(296,305,4,1,'Laboratory analyst'),(297,306,4,1,'Laboratory analyst'),(298,307,4,1,'Laboratory analyst'),(299,308,4,1,'Laboratory analyst'),(300,309,4,1,'Laboratory analyst'),(301,310,4,1,'Laboratory analyst'),(302,311,4,1,'Laboratory analyst'),(303,312,4,1,'Laboratory analyst'),(304,313,4,1,'Laboratory analyst'),(305,314,4,1,'Laboratory analyst'),(306,315,4,1,'Laboratory analyst'),(307,316,4,1,'Laboratory analyst'),(308,317,4,1,'Laboratory analyst'),(309,318,4,1,'Laboratory analyst'),(310,319,4,1,'Laboratory analyst'),(311,320,4,1,'Laboratory analyst'),(312,321,4,1,'Laboratory analyst'),(313,322,4,1,'Laboratory analyst'),(314,323,4,1,'Laboratory analyst'),(315,324,4,1,'Laboratory analyst'),(316,325,4,1,'Laboratory analyst'),(317,326,4,1,'Laboratory analyst'),(318,327,4,1,'Laboratory analyst'),(319,328,4,1,'Laboratory analyst'),(320,329,4,1,'Laboratory analyst'),(321,330,4,1,'Laboratory analyst'),(322,331,4,1,'Laboratory analyst'),(323,332,4,1,'Laboratory analyst'),(324,333,4,1,'Laboratory analyst'),(325,334,4,1,'Laboratory analyst'),(326,335,4,1,'Laboratory analyst'),(327,336,4,1,'Laboratory analyst'),(328,337,4,1,'Laboratory analyst'),(329,338,4,1,'Laboratory analyst'),(330,339,4,1,'Laboratory analyst'),(331,340,4,1,'Laboratory analyst'),(332,341,4,1,'Laboratory analyst'),(333,342,4,1,'Laboratory analyst'),(334,343,4,1,'Laboratory analyst'),(335,344,4,1,'Laboratory analyst'),(336,345,4,1,'Laboratory analyst'),(337,346,4,1,'Laboratory analyst'),(338,347,4,1,'Laboratory analyst'),(339,348,4,1,'Laboratory analyst'),(340,349,4,1,'Laboratory analyst'),(341,350,4,1,'Laboratory analyst'),(342,351,4,1,'Laboratory analyst'),(343,352,4,1,'Laboratory analyst'),(344,353,4,1,'Laboratory analyst'),(345,354,4,1,'Laboratory analyst'),(346,355,4,1,'Laboratory analyst'),(347,356,4,1,'Laboratory analyst'),(348,357,4,1,'Laboratory analyst'),(349,358,4,1,'Laboratory analyst'),(350,359,4,1,'Laboratory analyst'),(351,360,4,1,'Laboratory analyst'),(352,361,4,1,'Laboratory analyst'),(353,362,4,1,'Laboratory analyst'),(354,363,4,1,'Laboratory analyst'),(355,364,4,1,'Laboratory analyst'),(356,365,4,1,'Laboratory analyst'),(357,366,4,1,'Laboratory analyst'),(358,367,4,1,'Laboratory analyst'),(359,368,4,1,'Laboratory analyst'),(360,369,4,1,'Laboratory analyst'),(361,370,4,1,'Laboratory analyst'),(362,371,4,1,'Laboratory analyst'),(363,372,4,1,'Laboratory analyst'),(364,373,4,1,'Laboratory analyst'),(365,374,4,1,'Laboratory analyst'),(366,375,4,1,'Laboratory analyst'),(367,376,4,1,'Laboratory analyst'),(368,377,4,1,'Laboratory analyst'),(369,378,4,1,'Laboratory analyst'),(370,379,4,1,'Laboratory analyst'),(371,380,4,1,'Laboratory analyst'),(372,381,4,1,'Laboratory analyst'),(373,382,4,1,'Laboratory analyst'),(374,383,4,1,'Laboratory analyst'),(375,384,4,1,'Laboratory analyst'),(376,385,4,1,'Laboratory analyst'),(377,386,4,1,'Laboratory analyst'),(378,387,4,1,'Laboratory analyst'),(379,388,4,1,'Laboratory analyst'),(380,389,4,1,'Laboratory analyst'),(381,390,4,1,'Laboratory analyst'),(382,391,4,1,'Laboratory analyst'),(383,392,4,1,'Laboratory analyst'),(384,393,4,1,'Laboratory analyst'),(385,394,4,1,'Laboratory analyst'),(386,395,4,1,'Laboratory analyst'),(387,396,4,1,'Laboratory analyst'),(388,397,4,1,'Laboratory analyst'),(389,398,4,1,'Laboratory analyst'),(390,399,4,1,'Laboratory analyst'),(391,400,4,1,'Laboratory analyst'),(392,401,4,1,'Laboratory analyst'),(393,402,4,1,'Laboratory analyst'),(394,403,4,1,'Laboratory analyst'),(395,404,4,1,'Laboratory analyst'),(396,405,4,1,'Laboratory analyst'),(397,406,4,1,'Laboratory analyst'),(398,407,4,1,'Laboratory analyst'),(399,408,4,1,'Laboratory analyst'),(400,409,4,1,'Laboratory analyst'),(401,410,4,1,'Laboratory analyst'),(402,411,4,1,'Laboratory analyst'),(403,412,4,1,'Laboratory analyst'),(404,413,4,1,'Laboratory analyst'),(405,414,4,1,'Laboratory analyst'),(406,415,4,1,'Laboratory analyst'),(407,416,4,1,'Laboratory analyst'),(408,417,4,1,'Laboratory analyst'),(409,418,4,1,'Laboratory analyst'),(410,419,4,1,'Laboratory analyst'),(411,420,4,1,'Laboratory analyst'),(412,421,4,1,'Laboratory analyst'),(413,422,4,1,'Laboratory analyst'),(414,423,4,1,'Laboratory analyst'),(415,424,4,1,'Laboratory analyst'),(416,425,4,1,'Laboratory analyst'),(417,426,4,1,'Laboratory analyst'),(418,427,4,1,'Laboratory analyst'),(419,428,4,1,'Laboratory analyst'),(420,429,4,1,'Laboratory analyst'),(421,430,4,1,'Laboratory analyst'),(422,431,4,1,'Laboratory analyst'),(423,432,4,1,'Laboratory analyst'),(424,433,4,1,'Laboratory analyst'),(425,434,4,1,'Laboratory analyst'),(426,435,4,1,'Laboratory analyst'),(427,436,4,1,'Laboratory analyst'),(428,437,4,1,'Laboratory analyst'),(429,438,4,1,'Laboratory analyst'),(430,439,4,1,'Laboratory analyst'),(431,440,4,1,'Laboratory analyst'),(432,441,4,1,'Laboratory analyst'),(433,442,4,1,'Laboratory analyst'),(434,443,4,1,'Laboratory analyst'),(435,444,4,1,'Laboratory analyst'),(436,445,4,1,'Laboratory analyst'),(437,446,4,1,'Laboratory analyst'),(438,447,4,1,'Laboratory analyst'),(439,448,4,1,'Laboratory analyst'),(440,449,4,1,'Laboratory analyst'),(441,450,4,1,'Laboratory analyst'),(442,451,4,1,'Laboratory analyst'),(443,452,4,1,'Laboratory analyst'),(444,453,4,1,'Laboratory analyst'),(445,454,4,1,'Laboratory analyst'),(446,455,4,1,'Laboratory analyst'),(447,456,4,1,'Laboratory analyst'),(448,457,4,1,'Laboratory analyst'),(449,458,4,1,'Laboratory analyst'),(450,459,4,1,'Laboratory analyst'),(451,460,4,1,'Laboratory analyst'),(452,461,4,1,'Laboratory analyst'),(453,462,4,1,'Laboratory analyst'),(454,463,4,1,'Laboratory analyst'),(455,464,4,1,'Laboratory analyst'),(456,465,4,1,'Laboratory analyst'),(457,466,4,1,'Laboratory analyst'),(458,467,4,1,'Laboratory analyst'),(459,468,4,1,'Laboratory analyst'),(460,469,4,1,'Laboratory analyst'),(461,470,4,1,'Laboratory analyst'),(462,471,4,1,'Laboratory analyst'),(463,472,4,1,'Laboratory analyst'),(464,473,4,1,'Laboratory analyst'),(465,474,4,1,'Laboratory analyst'),(466,475,4,1,'Laboratory analyst'),(467,476,4,1,'Laboratory analyst'),(468,477,4,1,'Laboratory analyst'),(469,478,4,1,'Laboratory analyst'),(470,479,4,1,'Laboratory analyst'),(471,480,4,1,'Laboratory analyst'),(472,481,4,1,'Laboratory analyst'),(473,482,4,1,'Laboratory analyst'),(474,483,4,1,'Laboratory analyst'),(475,484,4,1,'Laboratory analyst'),(476,485,4,1,'Laboratory analyst'),(477,486,4,1,'Laboratory analyst'),(478,487,4,1,'Laboratory analyst'),(479,488,4,1,'Laboratory analyst'),(480,489,4,1,'Laboratory analyst'),(481,490,4,1,'Laboratory analyst'),(482,491,4,1,'Laboratory analyst'),(483,492,4,1,'Laboratory analyst'),(484,493,4,1,'Laboratory analyst'),(485,494,4,1,'Laboratory analyst'),(486,495,4,1,'Laboratory analyst'),(487,496,4,1,'Laboratory analyst'),(488,497,4,1,'Laboratory analyst'),(489,498,4,1,'Laboratory analyst'),(490,499,4,1,'Laboratory analyst'),(491,500,4,1,'Laboratory analyst'),(492,501,4,1,'Laboratory analyst'),(493,502,4,1,'Laboratory analyst'),(494,503,4,1,'Laboratory analyst'),(495,504,4,1,'Laboratory analyst'),(496,505,4,1,'Laboratory analyst'),(497,506,4,1,'Laboratory analyst'),(498,507,4,1,'Laboratory analyst'),(499,508,4,1,'Laboratory analyst'),(500,509,4,1,'Laboratory analyst'),(501,510,4,1,'Laboratory analyst'),(502,511,4,1,'Laboratory analyst'),(503,512,4,1,'Laboratory analyst'),(504,513,4,1,'Laboratory analyst'),(505,514,4,1,'Laboratory analyst'),(506,515,4,1,'Laboratory analyst'),(507,516,4,1,'Laboratory analyst'),(508,517,4,1,'Laboratory analyst'),(509,518,4,1,'Laboratory analyst'),(510,519,4,1,'Laboratory analyst'),(511,520,4,1,'Laboratory analyst'),(512,521,4,1,'Laboratory analyst'),(513,522,4,1,'Laboratory analyst'),(514,523,4,1,'Laboratory analyst'),(515,524,4,1,'Laboratory analyst'),(516,525,4,1,'Laboratory analyst'),(517,526,4,1,'Laboratory analyst'),(518,527,4,1,'Laboratory analyst'),(519,528,4,1,'Laboratory analyst'),(520,529,4,1,'Laboratory analyst'),(521,530,4,1,'Laboratory analyst'),(522,531,4,1,'Laboratory analyst'),(523,532,4,1,'Laboratory analyst'),(524,533,4,1,'Laboratory analyst'),(525,534,4,1,'Laboratory analyst'),(526,535,4,1,'Laboratory analyst'),(527,536,4,1,'Laboratory analyst'),(528,537,4,1,'Laboratory analyst'),(529,538,4,1,'Laboratory analyst'),(530,539,4,1,'Laboratory analyst'),(531,540,4,1,'Laboratory analyst'),(532,541,4,1,'Laboratory analyst'),(533,542,4,1,'Laboratory analyst'),(534,543,4,1,'Laboratory analyst'),(535,544,4,1,'Laboratory analyst'),(536,545,4,1,'Laboratory analyst'),(537,546,4,1,'Laboratory analyst'),(538,547,4,1,'Laboratory analyst'),(539,548,3,1,'Laboratory analyst'),(540,549,3,1,'Laboratory analyst'),(541,550,3,1,'Laboratory analyst'),(542,551,3,1,'Laboratory analyst'),(543,552,3,1,'Laboratory analyst'),(544,553,3,1,'Laboratory analyst'),(545,554,3,1,'Laboratory analyst'),(546,555,3,1,'Laboratory analyst'),(547,556,3,1,'Laboratory analyst'),(548,557,3,1,'Laboratory analyst'),(549,558,3,1,'Laboratory analyst'),(550,559,3,1,'Laboratory analyst'),(551,560,3,1,'Laboratory analyst'),(552,561,3,1,'Laboratory analyst'),(553,562,3,1,'Laboratory analyst'),(554,563,3,1,'Laboratory analyst'),(555,564,3,1,'Laboratory analyst'),(556,565,3,1,'Laboratory analyst'),(557,566,3,1,'Laboratory analyst'),(558,567,3,1,'Laboratory analyst'),(559,568,3,1,'Laboratory analyst'),(560,569,3,1,'Laboratory analyst'),(561,570,3,1,'Laboratory analyst'),(562,571,3,1,'Laboratory analyst'),(563,572,3,1,'Laboratory analyst'),(564,573,3,1,'Laboratory analyst'),(565,574,3,1,'Laboratory analyst'),(566,575,3,1,'Laboratory analyst'),(567,576,3,1,'Laboratory analyst'),(568,577,3,1,'Laboratory analyst'),(569,578,3,1,'Laboratory analyst'),(570,579,3,1,'Laboratory analyst'),(571,580,3,1,'Laboratory analyst'),(572,581,3,1,'Laboratory analyst'),(573,582,3,1,'Laboratory analyst'),(574,583,3,1,'Laboratory analyst'),(575,584,3,1,'Laboratory analyst'),(576,585,3,1,'Laboratory analyst'),(577,586,3,1,'Laboratory analyst'),(578,587,3,1,'Laboratory analyst'),(579,588,3,1,'Laboratory analyst'),(580,589,3,1,'Laboratory analyst'),(581,590,3,1,'Laboratory analyst'),(582,591,3,1,'Laboratory analyst'),(583,592,3,1,'Laboratory analyst'),(584,593,3,1,'Laboratory analyst'),(585,594,3,1,'Laboratory analyst'),(586,595,3,1,'Laboratory analyst'),(587,596,3,1,'Laboratory analyst'),(588,597,3,1,'Laboratory analyst'),(589,598,3,1,'Laboratory analyst'),(590,599,3,1,'Laboratory analyst'),(591,600,3,1,'Laboratory analyst'),(592,601,3,1,'Laboratory analyst'),(593,602,3,1,'Laboratory analyst'),(594,603,3,1,'Laboratory analyst'),(595,604,3,1,'Laboratory analyst'),(596,605,3,1,'Laboratory analyst'),(597,606,3,1,'Laboratory analyst'),(598,607,3,1,'Laboratory analyst'),(599,608,3,1,'Laboratory analyst'),(600,609,3,1,'Laboratory analyst'),(601,610,3,1,'Laboratory analyst'),(602,611,3,1,'Laboratory analyst'),(603,612,3,1,'Laboratory analyst'),(604,613,3,1,'Laboratory analyst'),(605,614,3,1,'Laboratory analyst'),(606,615,3,1,'Laboratory analyst'),(607,616,3,1,'Laboratory analyst'),(608,617,3,1,'Laboratory analyst'),(609,618,3,1,'Laboratory analyst'),(610,619,3,1,'Laboratory analyst'),(611,620,3,1,'Laboratory analyst'),(612,621,3,1,'Laboratory analyst'),(613,622,3,1,'Laboratory analyst'),(614,623,3,1,'Laboratory analyst'),(615,624,3,1,'Laboratory analyst'),(616,625,3,1,'Laboratory analyst'),(617,626,3,1,'Laboratory analyst'),(618,627,3,1,'Laboratory analyst'),(619,628,3,1,'Laboratory analyst'),(620,629,3,1,'Laboratory analyst'),(621,630,3,1,'Laboratory analyst'),(622,631,3,1,'Laboratory analyst'),(623,632,3,1,'Laboratory analyst'),(624,633,3,1,'Laboratory analyst'),(625,634,3,1,'Laboratory analyst'),(626,635,3,1,'Laboratory analyst'),(627,636,3,1,'Laboratory analyst'),(628,637,3,1,'Laboratory analyst'),(629,638,3,1,'Laboratory analyst'),(630,639,3,1,'Laboratory analyst'),(631,640,3,1,'Laboratory analyst'),(632,641,3,1,'Laboratory analyst'),(633,642,3,1,'Laboratory analyst'),(634,643,3,1,'Laboratory analyst'),(635,644,3,1,'Laboratory analyst'),(636,645,3,1,'Laboratory analyst'),(637,646,3,1,'Laboratory analyst'),(638,647,3,1,'Laboratory analyst'),(639,648,3,1,'Laboratory analyst'),(640,649,3,1,'Laboratory analyst'),(641,650,3,1,'Laboratory analyst'),(642,651,3,1,'Laboratory analyst'),(643,652,3,1,'Laboratory analyst'),(644,653,3,1,'Laboratory analyst'),(645,654,3,1,'Laboratory analyst'),(646,655,3,1,'Laboratory analyst'),(647,656,3,1,'Laboratory analyst'),(648,657,3,1,'Laboratory analyst'),(649,658,3,1,'Laboratory analyst'),(650,659,3,1,'Laboratory analyst'),(651,660,3,1,'Laboratory analyst'),(652,661,3,1,'Laboratory analyst'),(653,662,3,1,'Laboratory analyst'),(654,663,3,1,'Laboratory analyst'),(655,664,3,1,'Laboratory analyst'),(656,665,3,1,'Laboratory analyst'),(657,666,3,1,'Laboratory analyst'),(658,667,3,1,'Laboratory analyst'),(659,668,3,1,'Laboratory analyst'),(660,669,3,1,'Laboratory analyst'),(661,670,3,1,'Laboratory analyst'),(662,671,3,1,'Laboratory analyst'),(663,672,3,1,'Laboratory analyst'),(664,673,3,1,'Laboratory analyst'),(665,674,3,1,'Laboratory analyst'),(666,675,3,1,'Laboratory analyst'),(667,676,3,1,'Laboratory analyst'),(668,677,3,1,'Laboratory analyst'),(669,678,3,1,'Laboratory analyst'),(670,679,3,1,'Laboratory analyst'),(671,680,3,1,'Laboratory analyst'),(672,681,3,1,'Laboratory analyst'),(673,682,3,1,'Laboratory analyst'),(674,683,3,1,'Laboratory analyst'),(675,684,3,1,'Laboratory analyst'),(676,685,3,1,'Laboratory analyst'),(677,686,3,1,'Laboratory analyst'),(678,687,3,1,'Laboratory analyst'),(679,688,3,1,'Laboratory analyst'),(680,689,3,1,'Laboratory analyst'),(681,690,3,1,'Laboratory analyst'),(682,691,3,1,'Laboratory analyst'),(683,692,3,1,'Laboratory analyst'),(684,693,3,1,'Laboratory analyst'),(685,694,3,1,'Laboratory analyst'),(686,695,3,1,'Laboratory analyst'),(687,696,3,1,'Laboratory analyst'),(688,697,3,1,'Laboratory analyst'),(689,698,3,1,'Laboratory analyst'),(690,699,3,1,'Laboratory analyst'),(691,700,3,1,'Laboratory analyst'),(692,701,3,1,'Laboratory analyst'),(693,702,3,1,'Laboratory analyst'),(694,703,3,1,'Laboratory analyst'),(695,704,3,1,'Laboratory analyst'),(696,705,3,1,'Laboratory analyst'),(697,706,3,1,'Laboratory analyst'),(698,707,3,1,'Laboratory analyst'),(699,708,3,1,'Laboratory analyst'),(700,709,3,1,'Laboratory analyst'),(701,710,3,1,'Laboratory analyst'),(702,711,3,1,'Laboratory analyst'),(703,712,3,1,'Laboratory analyst'),(704,713,3,1,'Laboratory analyst'),(705,714,3,1,'Laboratory analyst'),(706,715,3,1,'Laboratory analyst'),(707,716,3,1,'Laboratory analyst'),(708,717,3,1,'Laboratory analyst'),(709,718,3,1,'Laboratory analyst'),(710,719,3,1,'Laboratory analyst'),(711,720,3,1,'Laboratory analyst'),(712,721,3,1,'Laboratory analyst'),(713,722,3,1,'Laboratory analyst'),(714,723,3,1,'Laboratory analyst'),(715,724,3,1,'Laboratory analyst'),(716,725,3,1,'Laboratory analyst'),(717,726,3,1,'Laboratory analyst'),(718,727,3,1,'Laboratory analyst'),(719,728,3,1,'Laboratory analyst'),(720,729,3,1,'Laboratory analyst'),(721,730,3,1,'Laboratory analyst'),(722,731,3,1,'Laboratory analyst'),(723,732,3,1,'Laboratory analyst'),(724,733,3,1,'Laboratory analyst'),(725,734,3,1,'Laboratory analyst'),(726,735,3,1,'Laboratory analyst'),(727,736,3,1,'Laboratory analyst'),(728,737,3,1,'Laboratory analyst'),(729,738,3,1,'Laboratory analyst'),(730,739,3,1,'Laboratory analyst'),(731,740,3,1,'Laboratory analyst'),(732,741,3,1,'Laboratory analyst'),(733,742,3,1,'Laboratory analyst'),(734,743,3,1,'Laboratory analyst'),(735,744,3,1,'Laboratory analyst'),(736,745,3,1,'Laboratory analyst'),(737,746,3,1,'Laboratory analyst'),(738,747,3,1,'Laboratory analyst'),(739,748,3,1,'Laboratory analyst'),(740,749,3,1,'Laboratory analyst'),(741,750,3,1,'Laboratory analyst'),(742,751,3,1,'Laboratory analyst'),(743,752,3,1,'Laboratory analyst'),(744,753,3,1,'Laboratory analyst'),(745,754,3,1,'Laboratory analyst'),(746,755,3,1,'Laboratory analyst'),(747,756,3,1,'Laboratory analyst'),(748,757,3,1,'Laboratory analyst'),(749,758,3,1,'Laboratory analyst'),(750,759,3,1,'Laboratory analyst'),(751,760,3,1,'Laboratory analyst'),(752,761,3,1,'Laboratory analyst'),(753,762,3,1,'Laboratory analyst'),(754,763,3,1,'Laboratory analyst'),(755,764,3,1,'Laboratory analyst'),(756,765,3,1,'Laboratory analyst'),(757,766,3,1,'Laboratory analyst'),(758,767,3,1,'Laboratory analyst'),(759,768,3,1,'Laboratory analyst'),(760,769,3,1,'Laboratory analyst'),(761,770,3,1,'Laboratory analyst'),(762,771,3,1,'Laboratory analyst'),(763,772,3,1,'Laboratory analyst'),(764,773,3,1,'Laboratory analyst'),(765,774,3,1,'Laboratory analyst'),(766,775,3,1,'Laboratory analyst'),(767,776,3,1,'Laboratory analyst'),(768,777,3,1,'Laboratory analyst'),(769,778,3,1,'Laboratory analyst'),(770,779,3,1,'Laboratory analyst'),(771,780,3,1,'Laboratory analyst'),(772,781,3,1,'Laboratory analyst'),(773,782,3,1,'Laboratory analyst'),(774,783,3,1,'Laboratory analyst'),(775,784,3,1,'Laboratory analyst'),(776,785,3,1,'Laboratory analyst'),(777,786,3,1,'Laboratory analyst'),(778,787,3,1,'Laboratory analyst'),(779,788,3,1,'Laboratory analyst'),(780,789,3,1,'Laboratory analyst'),(781,790,3,1,'Laboratory analyst'),(782,791,3,1,'Laboratory analyst'),(783,792,3,1,'Laboratory analyst'),(784,793,3,1,'Laboratory analyst'),(785,794,3,1,'Laboratory analyst'),(786,795,3,1,'Laboratory analyst'),(787,796,3,1,'Laboratory analyst'),(788,797,3,1,'Laboratory analyst'),(789,798,3,1,'Laboratory analyst'),(790,799,3,1,'Laboratory analyst'),(791,800,3,1,'Laboratory analyst'),(792,801,3,1,'Laboratory analyst'),(793,802,3,1,'Laboratory analyst'),(794,803,3,1,'Laboratory analyst'),(795,804,3,1,'Laboratory analyst'),(796,805,3,1,'Laboratory analyst'),(797,806,3,1,'Laboratory analyst'),(798,807,3,1,'Laboratory analyst'),(799,808,3,1,'Laboratory analyst'),(800,809,3,1,'Laboratory analyst'),(801,810,3,1,'Laboratory analyst'),(802,811,3,1,'Laboratory analyst'),(803,812,3,1,'Laboratory analyst'),(804,813,3,1,'Laboratory analyst'),(805,814,3,1,'Laboratory analyst'),(806,815,3,1,'Laboratory analyst'),(807,816,3,1,'Laboratory analyst'),(808,817,3,1,'Laboratory analyst'),(809,818,3,1,'Laboratory analyst'),(810,819,3,1,'Laboratory analyst'),(811,820,3,1,'Laboratory analyst'),(812,821,3,1,'Laboratory analyst'),(813,822,3,1,'Laboratory analyst'),(814,823,3,1,'Laboratory analyst'),(815,824,3,1,'Laboratory analyst'),(816,825,3,1,'Laboratory analyst'),(817,826,3,1,'Laboratory analyst'),(818,827,3,1,'Laboratory analyst'),(819,828,3,1,'Laboratory analyst'),(820,829,3,1,'Laboratory analyst'),(821,830,3,1,'Laboratory analyst'),(822,831,3,1,'Laboratory analyst'),(823,832,3,1,'Laboratory analyst'),(824,833,3,1,'Laboratory analyst'),(825,834,3,1,'Laboratory analyst'),(826,835,3,1,'Laboratory analyst'),(827,836,3,1,'Laboratory analyst'),(828,837,3,1,'Laboratory analyst'),(829,838,3,1,'Laboratory analyst'),(830,839,3,1,'Laboratory analyst'),(831,840,3,1,'Laboratory analyst'),(832,841,3,1,'Laboratory analyst'),(833,842,3,1,'Laboratory analyst'),(834,843,3,1,'Laboratory analyst'),(835,844,3,1,'Laboratory analyst'),(836,845,3,1,'Laboratory analyst'),(837,846,3,1,'Laboratory analyst'),(838,847,3,1,'Laboratory analyst'),(839,848,3,1,'Laboratory analyst'),(840,849,3,1,'Laboratory analyst'),(841,850,3,1,'Laboratory analyst'),(842,851,3,1,'Laboratory analyst'),(843,852,3,1,'Laboratory analyst'),(844,853,3,1,'Laboratory analyst'),(845,854,3,1,'Laboratory analyst'),(846,855,3,1,'Laboratory analyst'),(847,856,3,1,'Laboratory analyst'),(848,857,3,1,'Laboratory analyst'),(849,858,3,1,'Laboratory analyst'),(850,859,3,1,'Laboratory analyst'),(851,860,3,1,'Laboratory analyst'),(852,861,3,1,'Laboratory analyst'),(853,862,3,1,'Laboratory analyst'),(854,863,3,1,'Laboratory analyst'),(855,864,3,1,'Laboratory analyst'),(856,865,3,1,'Laboratory analyst'),(857,866,3,1,'Laboratory analyst'),(858,867,3,1,'Laboratory analyst'),(859,868,3,1,'Laboratory analyst'),(860,869,3,1,'Laboratory analyst'),(861,870,3,1,'Laboratory analyst'),(862,871,3,1,'Laboratory analyst'),(863,872,3,1,'Laboratory analyst'),(864,873,3,1,'Laboratory analyst'),(865,874,3,1,'Laboratory analyst'),(866,875,3,1,'Laboratory analyst'),(867,876,3,1,'Laboratory analyst'),(868,877,3,1,'Laboratory analyst'),(869,878,3,1,'Laboratory analyst'); +/*!40000 ALTER TABLE `ActionBy` ENABLE KEYS */; + +-- +-- Table structure for table `ActionDirectives` +-- + +DROP TABLE IF EXISTS `ActionDirectives`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ActionDirectives` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `DirectiveID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ActionDirectives_Actions` (`ActionID`), + KEY `fk_ActionDirectives_Directives` (`DirectiveID`), + CONSTRAINT `fk_ActionDirectives_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ActionDirectives_Directives` FOREIGN KEY (`DirectiveID`) REFERENCES `Directives` (`DirectiveID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ActionDirectives` +-- + +/*!40000 ALTER TABLE `ActionDirectives` DISABLE KEYS */; +/*!40000 ALTER TABLE `ActionDirectives` ENABLE KEYS */; + +-- +-- Table structure for table `ActionExtensionPropertyValues` +-- + +DROP TABLE IF EXISTS `ActionExtensionPropertyValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ActionExtensionPropertyValues` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `PropertyID` int(11) NOT NULL, + `PropertyValue` varchar(255) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ActionExtensionPropertyValues_Actions` (`ActionID`), + KEY `fk_ActionExtensionPropertyValues_ExtensionProperties` (`PropertyID`), + CONSTRAINT `fk_ActionExtensionPropertyValues_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ActionExtensionPropertyValues_ExtensionProperties` FOREIGN KEY (`PropertyID`) REFERENCES `ExtensionProperties` (`PropertyID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ActionExtensionPropertyValues` +-- + +/*!40000 ALTER TABLE `ActionExtensionPropertyValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `ActionExtensionPropertyValues` ENABLE KEYS */; + +-- +-- Table structure for table `Actions` +-- + +DROP TABLE IF EXISTS `Actions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Actions` ( + `ActionID` int(11) NOT NULL AUTO_INCREMENT, + `ActionTypeCV` varchar(255) NOT NULL, + `MethodID` int(11) NOT NULL, + `BeginDateTime` datetime NOT NULL, + `BeginDateTimeUTCOffset` int(11) NOT NULL, + `EndDateTime` datetime DEFAULT NULL, + `EndDateTimeUTCOffset` int(11) DEFAULT NULL, + `ActionDescription` varchar(500) DEFAULT NULL, + `ActionFileLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ActionID`), + KEY `fk_Actions_CV_ActionType` (`ActionTypeCV`), + KEY `fk_Actions_Methods` (`MethodID`), + CONSTRAINT `fk_Actions_CV_ActionType` FOREIGN KEY (`ActionTypeCV`) REFERENCES `CV_ActionType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Actions_Methods` FOREIGN KEY (`MethodID`) REFERENCES `Methods` (`MethodID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=879 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Actions` +-- + +/*!40000 ALTER TABLE `Actions` DISABLE KEYS */; +INSERT INTO `Actions` VALUES (1,'Observation',4,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(2,'Observation',2,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(3,'Observation',2,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(4,'Observation',2,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(5,'Observation',2,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(6,'Observation',2,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(7,'Observation',2,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(8,'Observation',1,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(9,'Observation',3,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(10,'Observation',19,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(11,'Observation',19,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(12,'Observation',20,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(13,'Observation',21,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(14,'Observation',18,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(15,'Observation',23,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(22,'Observation',29,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(23,'Observation',31,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(24,'Observation',31,'2007-09-01 00:00:00.000000',-7,'2007-09-30 23:30:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(28,'Observation',5,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(29,'Observation',6,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(30,'Observation',7,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(31,'Observation',22,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(32,'Observation',38,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(33,'Observation',39,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(34,'Observation',39,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(35,'Observation',10,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(36,'Observation',11,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(37,'Observation',4,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(38,'Observation',12,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(39,'Observation',13,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(40,'Observation',13,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(41,'Observation',13,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(42,'Observation',14,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(43,'Observation',15,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(44,'Observation',16,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(45,'Observation',17,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(46,'Observation',41,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(47,'Observation',42,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(48,'Observation',43,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(49,'Observation',41,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(50,'Observation',42,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(51,'Observation',41,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(52,'Observation',42,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(53,'Observation',41,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(54,'Observation',42,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(55,'Observation',43,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(56,'Observation',43,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(57,'Observation',43,'2011-08-01 00:00:00.000000',-7,'2011-08-31 00:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(58,'Observation',44,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(59,'Observation',47,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(60,'Observation',50,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(61,'Observation',53,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(62,'Observation',56,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(63,'Observation',45,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(64,'Observation',46,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(65,'Observation',48,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(66,'Observation',49,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(67,'Observation',51,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(68,'Observation',52,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(69,'Observation',54,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(70,'Observation',55,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(71,'Observation',57,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(72,'Observation',58,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(73,'Observation',44,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(74,'Observation',47,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(75,'Observation',50,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(76,'Observation',53,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(77,'Observation',56,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(78,'Observation',44,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(79,'Observation',47,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(80,'Observation',50,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(81,'Observation',53,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(82,'Observation',56,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(83,'Observation',45,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(84,'Observation',46,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(85,'Observation',48,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(86,'Observation',49,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(87,'Observation',51,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(88,'Observation',52,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(89,'Observation',54,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(90,'Observation',55,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(91,'Observation',57,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(92,'Observation',58,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(93,'Observation',45,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(94,'Observation',46,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(95,'Observation',48,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(96,'Observation',49,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(97,'Observation',51,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(98,'Observation',52,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(99,'Observation',54,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(100,'Observation',55,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(101,'Observation',57,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(102,'Observation',58,'2011-08-01 00:00:00.000000',-7,'2011-08-31 23:00:00.000000',-7,'Sensor deployment and \r\n observation. This is a generic Observation Action created for a Time Series \r\n Result loaded into ODM2 from an ODM 1.1.1 database.',NULL),(103,'Specimen analysis',62,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(104,'Specimen analysis',62,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(105,'Specimen analysis',62,'2007-11-21 14:30:00.000000',-7,'2007-11-21 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(106,'Specimen analysis',62,'2007-11-21 14:30:00.000000',-7,'2007-11-21 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(107,'Specimen analysis',60,'2007-10-04 12:00:00.000000',-7,'2007-10-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(108,'Specimen analysis',60,'2007-10-10 11:30:00.000000',-7,'2007-10-10 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(109,'Specimen analysis',60,'2007-10-17 13:00:00.000000',-7,'2007-10-17 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(110,'Specimen analysis',60,'2007-10-24 12:30:00.000000',-7,'2007-10-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(111,'Specimen analysis',60,'2007-11-01 14:30:00.000000',-7,'2007-11-01 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(112,'Specimen analysis',60,'2007-11-07 13:30:00.000000',-7,'2007-11-07 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(113,'Specimen analysis',60,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(114,'Specimen analysis',60,'2007-11-21 14:30:00.000000',-7,'2007-11-21 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(115,'Specimen analysis',61,'2006-07-26 00:15:00.000000',-7,'2006-07-26 00:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(116,'Specimen analysis',60,'2007-03-08 00:30:00.000000',-7,'2007-03-08 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(117,'Specimen analysis',60,'2007-03-07 13:30:00.000000',-7,'2007-03-07 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(118,'Specimen analysis',60,'2007-03-07 19:30:00.000000',-7,'2007-03-07 19:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(119,'Specimen analysis',61,'2006-07-25 21:15:00.000000',-7,'2006-07-25 21:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(120,'Specimen analysis',61,'2006-07-26 03:15:00.000000',-7,'2006-07-26 03:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(121,'Specimen analysis',61,'2006-10-20 03:30:00.000000',-7,'2006-10-20 03:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(122,'Specimen analysis',61,'2006-10-20 05:30:00.000000',-7,'2006-10-20 05:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(123,'Specimen analysis',61,'2006-10-20 06:30:00.000000',-7,'2006-10-20 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(124,'Specimen analysis',61,'2007-02-08 14:00:00.000000',-7,'2007-02-08 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(125,'Specimen analysis',61,'2006-07-26 06:15:00.000000',-7,'2006-07-26 06:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(126,'Specimen analysis',60,'2007-03-08 09:30:00.000000',-7,'2007-03-08 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(127,'Specimen analysis',60,'2007-03-10 00:43:00.000000',-7,'2007-03-10 00:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(128,'Specimen analysis',61,'2006-10-19 11:30:00.000000',-7,'2006-10-19 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(129,'Specimen analysis',61,'2006-10-19 12:30:00.000000',-7,'2006-10-19 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(130,'Specimen analysis',61,'2006-10-19 13:30:00.000000',-7,'2006-10-19 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(131,'Specimen analysis',60,'2007-03-09 16:43:00.000000',-7,'2007-03-09 16:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(132,'Specimen analysis',61,'2007-02-08 18:00:00.000000',-7,'2007-02-08 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(133,'Specimen analysis',60,'2007-03-09 18:43:00.000000',-7,'2007-03-09 18:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(134,'Specimen analysis',61,'2007-02-09 02:00:00.000000',-7,'2007-02-09 02:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(135,'Specimen analysis',60,'2007-03-09 20:43:00.000000',-7,'2007-03-09 20:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(136,'Specimen analysis',61,'2007-02-08 22:00:00.000000',-7,'2007-02-08 22:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(137,'Specimen analysis',61,'2007-02-09 06:00:00.000000',-7,'2007-02-09 06:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(138,'Specimen analysis',61,'2006-07-26 09:15:00.000000',-7,'2006-07-26 09:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(139,'Specimen analysis',61,'2005-10-30 20:20:00.000000',-7,'2005-10-30 20:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(140,'Specimen analysis',60,'2005-11-14 21:00:00.000000',-7,'2005-11-14 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(141,'Specimen analysis',60,'2006-03-01 12:16:00.000000',-7,'2006-03-01 12:16:00.000000',-7,'Specimen laboratory analysis.',NULL),(142,'Specimen analysis',61,'2005-10-30 21:20:00.000000',-7,'2005-10-30 21:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(143,'Specimen analysis',60,'2006-03-02 11:40:00.000000',-7,'2006-03-02 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(144,'Specimen analysis',61,'2005-10-30 22:20:00.000000',-7,'2005-10-30 22:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(145,'Specimen analysis',60,'2006-03-03 13:30:00.000000',-7,'2006-03-03 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(146,'Specimen analysis',61,'2005-11-13 13:50:00.000000',-7,'2005-11-13 13:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(147,'Specimen analysis',60,'2006-03-04 12:40:00.000000',-7,'2006-03-04 12:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(148,'Specimen analysis',61,'2005-11-13 18:50:00.000000',-7,'2005-11-13 18:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(149,'Specimen analysis',61,'2005-11-14 10:00:00.000000',-7,'2005-11-14 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(150,'Specimen analysis',60,'2006-03-05 10:55:00.000000',-7,'2006-03-05 10:55:00.000000',-7,'Specimen laboratory analysis.',NULL),(151,'Specimen analysis',60,'2006-03-06 18:00:00.000000',-7,'2006-03-06 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(152,'Specimen analysis',61,'2005-11-13 20:50:00.000000',-7,'2005-11-13 20:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(153,'Specimen analysis',61,'2006-03-01 12:16:00.000000',-7,'2006-03-01 12:16:00.000000',-7,'Specimen laboratory analysis.',NULL),(154,'Specimen analysis',60,'2006-03-07 14:00:00.000000',-7,'2006-03-07 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(155,'Specimen analysis',61,'2005-11-14 15:00:00.000000',-7,'2005-11-14 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(156,'Specimen analysis',60,'2006-03-07 17:00:00.000000',-7,'2006-03-07 17:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(157,'Specimen analysis',61,'2005-11-14 18:00:00.000000',-7,'2005-11-14 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(158,'Specimen analysis',61,'2005-11-14 20:00:00.000000',-7,'2005-11-14 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(159,'Specimen analysis',61,'2005-11-14 21:00:00.000000',-7,'2005-11-14 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(160,'Specimen analysis',60,'2006-03-06 21:00:00.000000',-7,'2006-03-06 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(161,'Specimen analysis',60,'2006-03-07 04:00:00.000000',-7,'2006-03-07 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(162,'Specimen analysis',60,'2006-03-07 09:00:00.000000',-7,'2006-03-07 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(163,'Specimen analysis',61,'2007-02-16 00:00:00.000000',-7,'2007-02-16 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(164,'Specimen analysis',61,'2007-02-09 10:00:00.000000',-7,'2007-02-09 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(165,'Specimen analysis',60,'2007-03-13 15:50:00.000000',-7,'2007-03-13 15:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(166,'Specimen analysis',60,'2007-03-13 19:50:00.000000',-7,'2007-03-13 19:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(167,'Specimen analysis',61,'2006-10-20 03:30:00.000000',-7,'2006-10-20 03:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(168,'Specimen analysis',61,'2006-10-20 05:30:00.000000',-7,'2006-10-20 05:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(169,'Specimen analysis',61,'2006-10-20 06:30:00.000000',-7,'2006-10-20 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(170,'Specimen analysis',60,'2007-03-10 06:43:00.000000',-7,'2007-03-10 06:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(171,'Specimen analysis',61,'2007-02-16 07:00:00.000000',-7,'2007-02-16 07:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(172,'Specimen analysis',61,'2007-02-16 10:00:00.000000',-7,'2007-02-16 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(173,'Specimen analysis',61,'2007-02-08 14:00:00.000000',-7,'2007-02-08 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(174,'Specimen analysis',60,'2007-03-14 09:50:00.000000',-7,'2007-03-14 09:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(175,'Specimen analysis',61,'2007-02-16 12:00:00.000000',-7,'2007-02-16 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(176,'Specimen analysis',61,'2007-02-16 15:00:00.000000',-7,'2007-02-16 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(177,'Specimen analysis',61,'2007-02-08 18:00:00.000000',-7,'2007-02-08 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(178,'Specimen analysis',60,'2007-03-14 19:50:00.000000',-7,'2007-03-14 19:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(179,'Specimen analysis',61,'2007-02-08 22:00:00.000000',-7,'2007-02-08 22:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(180,'Specimen analysis',60,'2007-03-15 07:50:00.000000',-7,'2007-03-15 07:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(181,'Specimen analysis',61,'2006-03-02 11:40:00.000000',-7,'2006-03-02 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(182,'Specimen analysis',61,'2006-03-04 12:40:00.000000',-7,'2006-03-04 12:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(183,'Specimen analysis',61,'2006-03-03 13:30:00.000000',-7,'2006-03-03 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(184,'Specimen analysis',61,'2006-03-05 10:55:00.000000',-7,'2006-03-05 10:55:00.000000',-7,'Specimen laboratory analysis.',NULL),(185,'Specimen analysis',60,'2007-03-21 00:30:00.000000',-7,'2007-03-21 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(186,'Specimen analysis',61,'2007-02-09 10:00:00.000000',-7,'2007-02-09 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(187,'Specimen analysis',61,'2007-03-07 13:30:00.000000',-7,'2007-03-07 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(188,'Specimen analysis',61,'2007-02-16 18:00:00.000000',-7,'2007-02-16 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(189,'Specimen analysis',61,'2007-03-07 19:30:00.000000',-7,'2007-03-07 19:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(190,'Specimen analysis',60,'2007-03-20 19:30:00.000000',-7,'2007-03-20 19:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(191,'Specimen analysis',61,'2007-02-09 02:00:00.000000',-7,'2007-02-09 02:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(192,'Specimen analysis',60,'2007-03-20 21:30:00.000000',-7,'2007-03-20 21:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(193,'Specimen analysis',61,'2007-02-09 06:00:00.000000',-7,'2007-02-09 06:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(194,'Specimen analysis',60,'2006-03-28 12:50:00.000000',-7,'2006-03-28 12:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(195,'Specimen analysis',61,'2005-10-30 13:20:00.000000',-7,'2005-10-30 13:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(196,'Specimen analysis',61,'2005-10-30 14:20:00.000000',-7,'2005-10-30 14:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(197,'Specimen analysis',60,'2006-03-28 14:50:00.000000',-7,'2006-03-28 14:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(198,'Specimen analysis',61,'2006-03-06 18:00:00.000000',-7,'2006-03-06 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(199,'Specimen analysis',61,'2006-03-06 21:00:00.000000',-7,'2006-03-06 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(200,'Specimen analysis',61,'2006-03-07 14:00:00.000000',-7,'2006-03-07 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(201,'Specimen analysis',61,'2005-10-30 15:20:00.000000',-7,'2005-10-30 15:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(202,'Specimen analysis',61,'2005-10-30 16:20:00.000000',-7,'2005-10-30 16:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(203,'Specimen analysis',60,'2006-03-28 16:50:00.000000',-7,'2006-03-28 16:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(204,'Specimen analysis',61,'2006-03-07 17:00:00.000000',-7,'2006-03-07 17:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(205,'Specimen analysis',61,'2005-10-30 17:20:00.000000',-7,'2005-10-30 17:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(206,'Specimen analysis',61,'2005-10-30 18:20:00.000000',-7,'2005-10-30 18:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(207,'Specimen analysis',60,'2006-03-28 18:50:00.000000',-7,'2006-03-28 18:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(208,'Specimen analysis',61,'2005-10-30 19:20:00.000000',-7,'2005-10-30 19:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(209,'Specimen analysis',60,'2006-03-29 02:50:00.000000',-7,'2006-03-29 02:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(210,'Specimen analysis',60,'2006-03-28 21:50:00.000000',-7,'2006-03-28 21:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(211,'Specimen analysis',61,'2006-03-07 04:00:00.000000',-7,'2006-03-07 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(212,'Specimen analysis',60,'2006-03-29 04:50:00.000000',-7,'2006-03-29 04:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(213,'Specimen analysis',61,'2006-03-17 08:00:00.000000',-7,'2006-03-17 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(214,'Specimen analysis',61,'2006-03-07 09:00:00.000000',-7,'2006-03-07 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(215,'Specimen analysis',61,'2007-02-16 00:00:00.000000',-7,'2007-02-16 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(216,'Specimen analysis',61,'2007-03-08 00:30:00.000000',-7,'2007-03-08 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(217,'Specimen analysis',61,'2007-02-16 10:00:00.000000',-7,'2007-02-16 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(218,'Specimen analysis',60,'2007-03-27 15:00:00.000000',-7,'2007-03-27 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(219,'Specimen analysis',61,'2007-03-09 16:43:00.000000',-7,'2007-03-09 16:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(220,'Specimen analysis',60,'2007-03-27 20:00:00.000000',-7,'2007-03-27 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(221,'Specimen analysis',60,'2007-03-27 23:00:00.000000',-7,'2007-03-27 23:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(222,'Specimen analysis',61,'2007-02-16 07:00:00.000000',-7,'2007-02-16 07:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(223,'Specimen analysis',61,'2007-03-08 09:30:00.000000',-7,'2007-03-08 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(224,'Specimen analysis',60,'2006-03-29 10:50:00.000000',-7,'2006-03-29 10:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(225,'Specimen analysis',61,'2006-03-28 12:50:00.000000',-7,'2006-03-28 12:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(226,'Specimen analysis',61,'2005-11-13 13:50:00.000000',-7,'2005-11-13 13:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(227,'Specimen analysis',61,'2006-03-18 02:00:00.000000',-7,'2006-03-18 02:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(228,'Specimen analysis',61,'2005-10-30 20:20:00.000000',-7,'2005-10-30 20:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(229,'Specimen analysis',61,'2005-10-30 21:20:00.000000',-7,'2005-10-30 21:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(230,'Specimen analysis',61,'2005-10-30 22:20:00.000000',-7,'2005-10-30 22:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(231,'Specimen analysis',61,'2006-03-18 23:00:00.000000',-7,'2006-03-18 23:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(232,'Specimen analysis',61,'2006-03-19 05:00:00.000000',-7,'2006-03-19 05:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(233,'Specimen analysis',60,'2006-03-29 05:50:00.000000',-7,'2006-03-29 05:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(234,'Specimen analysis',60,'2006-03-29 07:50:00.000000',-7,'2006-03-29 07:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(235,'Specimen analysis',60,'2006-03-29 09:50:00.000000',-7,'2006-03-29 09:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(236,'Specimen analysis',61,'2007-02-16 12:00:00.000000',-7,'2007-02-16 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(237,'Specimen analysis',61,'2007-03-09 18:43:00.000000',-7,'2007-03-09 18:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(238,'Specimen analysis',60,'2007-03-28 05:00:00.000000',-7,'2007-03-28 05:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(239,'Specimen analysis',60,'2006-03-30 00:00:00.000000',-7,'2006-03-30 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(240,'Specimen analysis',60,'2006-03-30 10:00:00.000000',-7,'2006-03-30 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(241,'Specimen analysis',61,'2005-11-14 10:00:00.000000',-7,'2005-11-14 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(242,'Specimen analysis',60,'2006-03-29 11:50:00.000000',-7,'2006-03-29 11:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(243,'Specimen analysis',60,'2006-03-29 14:00:00.000000',-7,'2006-03-29 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(244,'Specimen analysis',61,'2006-03-28 14:50:00.000000',-7,'2006-03-28 14:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(245,'Specimen analysis',61,'2005-11-14 15:00:00.000000',-7,'2005-11-14 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(246,'Specimen analysis',61,'2006-03-28 16:50:00.000000',-7,'2006-03-28 16:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(247,'Specimen analysis',60,'2006-03-29 18:00:00.000000',-7,'2006-03-29 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(248,'Specimen analysis',61,'2005-11-14 18:00:00.000000',-7,'2005-11-14 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(249,'Specimen analysis',61,'2006-03-28 18:50:00.000000',-7,'2006-03-28 18:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(250,'Specimen analysis',61,'2005-11-13 18:50:00.000000',-7,'2005-11-13 18:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(251,'Specimen analysis',61,'2006-03-29 02:50:00.000000',-7,'2006-03-29 02:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(252,'Specimen analysis',61,'2005-11-14 20:00:00.000000',-7,'2005-11-14 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(253,'Specimen analysis',61,'2005-11-13 20:50:00.000000',-7,'2005-11-13 20:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(254,'Specimen analysis',60,'2006-03-29 21:00:00.000000',-7,'2006-03-29 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(255,'Specimen analysis',61,'2005-11-14 21:00:00.000000',-7,'2005-11-14 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(256,'Specimen analysis',61,'2006-03-28 21:50:00.000000',-7,'2006-03-28 21:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(257,'Specimen analysis',60,'2006-03-30 04:00:00.000000',-7,'2006-03-30 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(258,'Specimen analysis',61,'2006-03-29 04:50:00.000000',-7,'2006-03-29 04:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(259,'Specimen analysis',61,'2006-03-29 05:50:00.000000',-7,'2006-03-29 05:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(260,'Specimen analysis',60,'2006-04-05 00:40:00.000000',-7,'2006-04-05 00:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(261,'Specimen analysis',61,'2006-03-29 10:50:00.000000',-7,'2006-03-29 10:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(262,'Specimen analysis',61,'2006-03-29 11:50:00.000000',-7,'2006-03-29 11:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(263,'Specimen analysis',61,'2006-03-28 12:50:00.000000',-7,'2006-03-28 12:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(264,'Specimen analysis',61,'2006-03-29 14:00:00.000000',-7,'2006-03-29 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(265,'Specimen analysis',61,'2006-03-28 14:50:00.000000',-7,'2006-03-28 14:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(266,'Specimen analysis',61,'2006-03-28 16:50:00.000000',-7,'2006-03-28 16:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(267,'Specimen analysis',61,'2006-03-28 18:50:00.000000',-7,'2006-03-28 18:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(268,'Specimen analysis',60,'2006-04-04 20:40:00.000000',-7,'2006-04-04 20:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(269,'Specimen analysis',61,'2006-03-28 21:50:00.000000',-7,'2006-03-28 21:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(270,'Specimen analysis',60,'2006-04-05 03:40:00.000000',-7,'2006-04-05 03:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(271,'Specimen analysis',60,'2006-04-05 06:40:00.000000',-7,'2006-04-05 06:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(272,'Specimen analysis',61,'2006-03-29 07:50:00.000000',-7,'2006-03-29 07:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(273,'Specimen analysis',60,'2006-04-05 08:40:00.000000',-7,'2006-04-05 08:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(274,'Specimen analysis',61,'2006-03-29 09:50:00.000000',-7,'2006-03-29 09:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(275,'Specimen analysis',60,'2006-04-05 11:40:00.000000',-7,'2006-04-05 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(276,'Specimen analysis',60,'2006-04-05 13:40:00.000000',-7,'2006-04-05 13:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(277,'Specimen analysis',61,'2006-03-29 18:00:00.000000',-7,'2006-03-29 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(278,'Specimen analysis',61,'2006-03-29 02:50:00.000000',-7,'2006-03-29 02:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(279,'Specimen analysis',61,'2006-03-29 21:00:00.000000',-7,'2006-03-29 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(280,'Specimen analysis',61,'2006-03-29 04:50:00.000000',-7,'2006-03-29 04:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(281,'Specimen analysis',61,'2006-03-30 00:00:00.000000',-7,'2006-03-30 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(282,'Specimen analysis',61,'2006-03-30 00:00:00.000000',-7,'2006-03-30 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(283,'Specimen analysis',61,'2006-04-05 00:40:00.000000',-7,'2006-04-05 00:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(284,'Specimen analysis',61,'2006-03-30 10:00:00.000000',-7,'2006-03-30 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(285,'Specimen analysis',60,'2006-04-15 10:45:00.000000',-7,'2006-04-15 10:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(286,'Specimen analysis',61,'2006-03-29 10:50:00.000000',-7,'2006-03-29 10:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(287,'Specimen analysis',61,'2006-04-05 11:40:00.000000',-7,'2006-04-05 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(288,'Specimen analysis',61,'2006-03-29 11:50:00.000000',-7,'2006-03-29 11:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(289,'Specimen analysis',60,'2006-07-25 12:15:00.000000',-7,'2006-07-25 12:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(290,'Specimen analysis',61,'2006-04-05 13:40:00.000000',-7,'2006-04-05 13:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(291,'Specimen analysis',61,'2006-03-29 14:00:00.000000',-7,'2006-03-29 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(292,'Specimen analysis',60,'2006-07-25 15:15:00.000000',-7,'2006-07-25 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(293,'Specimen analysis',61,'2006-03-29 18:00:00.000000',-7,'2006-03-29 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(294,'Specimen analysis',60,'2006-07-25 18:15:00.000000',-7,'2006-07-25 18:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(295,'Specimen analysis',60,'2006-04-05 19:40:00.000000',-7,'2006-04-05 19:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(296,'Specimen analysis',61,'2006-04-04 20:40:00.000000',-7,'2006-04-04 20:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(297,'Specimen analysis',61,'2006-03-29 21:00:00.000000',-7,'2006-03-29 21:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(298,'Specimen analysis',60,'2006-07-25 21:15:00.000000',-7,'2006-07-25 21:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(299,'Specimen analysis',60,'2006-04-15 21:45:00.000000',-7,'2006-04-15 21:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(300,'Specimen analysis',60,'2006-04-14 22:45:00.000000',-7,'2006-04-14 22:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(301,'Specimen analysis',61,'2006-04-05 03:40:00.000000',-7,'2006-04-05 03:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(302,'Specimen analysis',60,'2006-04-15 03:45:00.000000',-7,'2006-04-15 03:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(303,'Specimen analysis',61,'2006-03-30 04:00:00.000000',-7,'2006-03-30 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(304,'Specimen analysis',61,'2006-03-30 04:00:00.000000',-7,'2006-03-30 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(305,'Specimen analysis',61,'2006-03-29 05:50:00.000000',-7,'2006-03-29 05:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(306,'Specimen analysis',61,'2006-04-05 06:40:00.000000',-7,'2006-04-05 06:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(307,'Specimen analysis',60,'2006-04-15 06:45:00.000000',-7,'2006-04-15 06:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(308,'Specimen analysis',61,'2006-03-29 07:50:00.000000',-7,'2006-03-29 07:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(309,'Specimen analysis',61,'2006-04-05 08:40:00.000000',-7,'2006-04-05 08:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(310,'Specimen analysis',61,'2006-03-29 09:50:00.000000',-7,'2006-03-29 09:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(311,'Specimen analysis',60,'2006-07-26 00:15:00.000000',-7,'2006-07-26 00:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(312,'Specimen analysis',61,'2006-04-05 00:40:00.000000',-7,'2006-04-05 00:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(313,'Specimen analysis',61,'2006-03-30 10:00:00.000000',-7,'2006-03-30 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(314,'Specimen analysis',61,'2006-04-05 19:40:00.000000',-7,'2006-04-05 19:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(315,'Specimen analysis',61,'2006-04-04 20:40:00.000000',-7,'2006-04-04 20:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(316,'Specimen analysis',61,'2006-04-14 22:45:00.000000',-7,'2006-04-14 22:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(317,'Specimen analysis',60,'2006-07-26 03:15:00.000000',-7,'2006-07-26 03:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(318,'Specimen analysis',61,'2006-04-15 03:45:00.000000',-7,'2006-04-15 03:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(319,'Specimen analysis',60,'2006-07-26 06:15:00.000000',-7,'2006-07-26 06:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(320,'Specimen analysis',61,'2006-04-05 03:40:00.000000',-7,'2006-04-05 03:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(321,'Specimen analysis',61,'2006-04-15 06:45:00.000000',-7,'2006-04-15 06:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(322,'Specimen analysis',60,'2006-07-26 09:15:00.000000',-7,'2006-07-26 09:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(323,'Specimen analysis',61,'2006-04-15 10:45:00.000000',-7,'2006-04-15 10:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(324,'Specimen analysis',60,'2006-10-19 11:30:00.000000',-7,'2006-10-19 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(325,'Specimen analysis',61,'2006-04-05 11:40:00.000000',-7,'2006-04-05 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(326,'Specimen analysis',61,'2006-06-09 12:30:00.000000',-7,'2006-06-09 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(327,'Specimen analysis',60,'2006-10-19 12:30:00.000000',-7,'2006-10-19 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(328,'Specimen analysis',60,'2006-10-19 13:30:00.000000',-7,'2006-10-19 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(329,'Specimen analysis',61,'2006-04-05 13:40:00.000000',-7,'2006-04-05 13:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(330,'Specimen analysis',61,'2006-04-15 21:45:00.000000',-7,'2006-04-15 21:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(331,'Specimen analysis',60,'2006-10-20 03:30:00.000000',-7,'2006-10-20 03:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(332,'Specimen analysis',61,'2006-04-05 06:40:00.000000',-7,'2006-04-05 06:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(333,'Specimen analysis',61,'2006-06-09 07:30:00.000000',-7,'2006-06-09 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(334,'Specimen analysis',61,'2006-04-05 08:40:00.000000',-7,'2006-04-05 08:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(335,'Specimen analysis',60,'2007-03-13 19:50:00.000000',-7,'2007-03-13 19:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(336,'Specimen analysis',60,'2007-03-20 19:30:00.000000',-7,'2007-03-20 19:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(337,'Specimen analysis',60,'2007-03-14 19:50:00.000000',-7,'2007-03-14 19:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(338,'Specimen analysis',60,'2007-03-20 21:30:00.000000',-7,'2007-03-20 21:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(339,'Specimen analysis',60,'2007-03-15 07:50:00.000000',-7,'2007-03-15 07:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(340,'Specimen analysis',60,'2007-03-14 09:50:00.000000',-7,'2007-03-14 09:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(341,'Specimen analysis',61,'2007-03-10 00:43:00.000000',-7,'2007-03-10 00:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(342,'Specimen analysis',61,'2007-03-07 13:30:00.000000',-7,'2007-03-07 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(343,'Specimen analysis',60,'2007-06-07 14:20:00.000000',-7,'2007-06-07 14:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(344,'Specimen analysis',61,'2007-02-16 15:00:00.000000',-7,'2007-02-16 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(345,'Specimen analysis',61,'2007-03-13 15:50:00.000000',-7,'2007-03-13 15:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(346,'Specimen analysis',61,'2007-02-16 18:00:00.000000',-7,'2007-02-16 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(347,'Specimen analysis',61,'2007-03-07 19:30:00.000000',-7,'2007-03-07 19:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(348,'Specimen analysis',61,'2007-03-09 20:43:00.000000',-7,'2007-03-09 20:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(349,'Specimen analysis',60,'2007-06-07 04:20:00.000000',-7,'2007-06-07 04:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(350,'Specimen analysis',61,'2007-03-10 06:43:00.000000',-7,'2007-03-10 06:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(351,'Specimen analysis',60,'2007-06-07 08:20:00.000000',-7,'2007-06-07 08:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(352,'Specimen analysis',60,'2007-06-07 09:20:00.000000',-7,'2007-06-07 09:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(353,'Specimen analysis',61,'2006-04-15 10:45:00.000000',-7,'2006-04-15 10:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(354,'Specimen analysis',61,'2006-07-25 12:15:00.000000',-7,'2006-07-25 12:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(355,'Specimen analysis',60,'2007-02-08 14:00:00.000000',-7,'2007-02-08 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(356,'Specimen analysis',61,'2006-07-25 15:15:00.000000',-7,'2006-07-25 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(357,'Specimen analysis',61,'2006-06-10 16:30:00.000000',-7,'2006-06-10 16:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(358,'Specimen analysis',60,'2007-02-08 18:00:00.000000',-7,'2007-02-08 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(359,'Specimen analysis',61,'2006-06-09 18:30:00.000000',-7,'2006-06-09 18:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(360,'Specimen analysis',61,'2006-04-05 19:40:00.000000',-7,'2006-04-05 19:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(361,'Specimen analysis',60,'2007-02-08 22:00:00.000000',-7,'2007-02-08 22:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(362,'Specimen analysis',61,'2006-04-14 22:45:00.000000',-7,'2006-04-14 22:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(363,'Specimen analysis',61,'2006-04-15 03:45:00.000000',-7,'2006-04-15 03:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(364,'Specimen analysis',60,'2006-10-20 05:30:00.000000',-7,'2006-10-20 05:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(365,'Specimen analysis',61,'2006-06-10 06:30:00.000000',-7,'2006-06-10 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(366,'Specimen analysis',60,'2006-10-20 06:30:00.000000',-7,'2006-10-20 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(367,'Specimen analysis',61,'2006-04-15 06:45:00.000000',-7,'2006-04-15 06:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(368,'Specimen analysis',61,'2006-07-26 00:15:00.000000',-7,'2006-07-26 00:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(369,'Specimen analysis',60,'2007-02-09 10:00:00.000000',-7,'2007-02-09 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(370,'Specimen analysis',61,'2006-06-09 12:30:00.000000',-7,'2006-06-09 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(371,'Specimen analysis',61,'2006-07-25 18:15:00.000000',-7,'2006-07-25 18:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(372,'Specimen analysis',60,'2007-02-09 02:00:00.000000',-7,'2007-02-09 02:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(373,'Specimen analysis',61,'2006-07-25 21:15:00.000000',-7,'2006-07-25 21:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(374,'Specimen analysis',61,'2006-04-15 21:45:00.000000',-7,'2006-04-15 21:45:00.000000',-7,'Specimen laboratory analysis.',NULL),(375,'Specimen analysis',60,'2007-02-09 06:00:00.000000',-7,'2007-02-09 06:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(376,'Specimen analysis',61,'2006-06-09 07:30:00.000000',-7,'2006-06-09 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(377,'Specimen analysis',60,'2007-03-21 00:30:00.000000',-7,'2007-03-21 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(378,'Specimen analysis',60,'2007-03-27 15:00:00.000000',-7,'2007-03-27 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(379,'Specimen analysis',60,'2007-03-27 20:00:00.000000',-7,'2007-03-27 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(380,'Specimen analysis',60,'2007-03-27 23:00:00.000000',-7,'2007-03-27 23:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(381,'Specimen analysis',60,'2007-03-28 05:00:00.000000',-7,'2007-03-28 05:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(382,'Specimen analysis',64,'2005-04-28 00:00:00.000000',-7,'2005-04-28 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(383,'Specimen analysis',63,'2007-03-08 00:30:00.000000',-7,'2007-03-08 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(384,'Specimen analysis',63,'2007-03-10 00:43:00.000000',-7,'2007-03-10 00:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(385,'Specimen analysis',64,'2007-06-07 14:20:00.000000',-7,'2007-06-07 14:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(386,'Specimen analysis',63,'2007-03-13 15:50:00.000000',-7,'2007-03-13 15:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(387,'Specimen analysis',63,'2007-03-09 16:43:00.000000',-7,'2007-03-09 16:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(388,'Specimen analysis',63,'2007-03-09 18:43:00.000000',-7,'2007-03-09 18:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(389,'Specimen analysis',63,'2007-03-13 19:50:00.000000',-7,'2007-03-13 19:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(390,'Specimen analysis',64,'2005-04-28 02:00:00.000000',-7,'2005-04-28 02:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(391,'Specimen analysis',64,'2005-04-27 20:00:00.000000',-7,'2005-04-27 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(392,'Specimen analysis',63,'2007-03-09 20:43:00.000000',-7,'2007-03-09 20:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(393,'Specimen analysis',64,'2005-04-27 22:00:00.000000',-7,'2005-04-27 22:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(394,'Specimen analysis',64,'2005-04-28 04:00:00.000000',-7,'2005-04-28 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(395,'Specimen analysis',64,'2007-06-07 04:20:00.000000',-7,'2007-06-07 04:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(396,'Specimen analysis',63,'2007-03-10 06:43:00.000000',-7,'2007-03-10 06:43:00.000000',-7,'Specimen laboratory analysis.',NULL),(397,'Specimen analysis',64,'2007-06-07 08:20:00.000000',-7,'2007-06-07 08:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(398,'Specimen analysis',64,'2007-06-07 09:20:00.000000',-7,'2007-06-07 09:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(399,'Specimen analysis',63,'2007-03-08 09:30:00.000000',-7,'2007-03-08 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(400,'Specimen analysis',60,'2007-02-16 00:00:00.000000',-7,'2007-02-16 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(401,'Specimen analysis',60,'2007-02-16 10:00:00.000000',-7,'2007-02-16 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(402,'Specimen analysis',61,'2006-06-10 16:30:00.000000',-7,'2006-06-10 16:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(403,'Specimen analysis',61,'2006-06-09 18:30:00.000000',-7,'2006-06-09 18:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(404,'Specimen analysis',61,'2006-07-26 03:15:00.000000',-7,'2006-07-26 03:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(405,'Specimen analysis',61,'2006-07-26 06:15:00.000000',-7,'2006-07-26 06:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(406,'Specimen analysis',61,'2006-06-10 06:30:00.000000',-7,'2006-06-10 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(407,'Specimen analysis',60,'2007-02-16 07:00:00.000000',-7,'2007-02-16 07:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(408,'Specimen analysis',61,'2006-07-26 09:15:00.000000',-7,'2006-07-26 09:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(409,'Specimen analysis',61,'2006-10-19 11:30:00.000000',-7,'2006-10-19 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(410,'Specimen analysis',60,'2007-02-16 12:00:00.000000',-7,'2007-02-16 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(411,'Specimen analysis',61,'2006-07-25 12:15:00.000000',-7,'2006-07-25 12:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(412,'Specimen analysis',61,'2006-10-19 12:30:00.000000',-7,'2006-10-19 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(413,'Specimen analysis',61,'2006-10-19 13:30:00.000000',-7,'2006-10-19 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(414,'Specimen analysis',60,'2007-02-16 15:00:00.000000',-7,'2007-02-16 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(415,'Specimen analysis',61,'2006-07-25 15:15:00.000000',-7,'2006-07-25 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(416,'Specimen analysis',60,'2007-02-16 18:00:00.000000',-7,'2007-02-16 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(417,'Specimen analysis',61,'2006-07-25 18:15:00.000000',-7,'2006-07-25 18:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(418,'Specimen analysis',64,'2005-08-16 15:30:00.000000',-7,'2005-08-16 15:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(419,'Specimen analysis',64,'2005-08-16 18:30:00.000000',-7,'2005-08-16 18:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(420,'Specimen analysis',63,'2007-03-14 19:50:00.000000',-7,'2007-03-14 19:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(421,'Specimen analysis',63,'2007-03-14 09:50:00.000000',-7,'2007-03-14 09:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(422,'Specimen analysis',63,'2005-04-28 00:00:00.000000',-7,'2005-04-28 00:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(423,'Specimen analysis',63,'2007-03-21 00:30:00.000000',-7,'2007-03-21 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(424,'Specimen analysis',63,'2005-10-28 00:30:00.000000',-7,'2005-10-28 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(425,'Specimen analysis',64,'2005-08-17 00:30:00.000000',-7,'2005-08-17 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(426,'Specimen analysis',64,'2005-10-28 00:30:00.000000',-7,'2005-10-28 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(427,'Specimen analysis',63,'2005-08-17 00:30:00.000000',-7,'2005-08-17 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(428,'Specimen analysis',63,'2005-10-28 01:30:00.000000',-7,'2005-10-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(429,'Specimen analysis',64,'2005-10-28 01:30:00.000000',-7,'2005-10-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(430,'Specimen analysis',64,'2005-10-29 10:40:00.000000',-7,'2005-10-29 10:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(431,'Specimen analysis',64,'2005-08-17 11:30:00.000000',-7,'2005-08-17 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(432,'Specimen analysis',63,'2005-08-17 11:30:00.000000',-7,'2005-08-17 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(433,'Specimen analysis',64,'2005-10-29 11:40:00.000000',-7,'2005-10-29 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(434,'Specimen analysis',64,'2005-10-29 12:40:00.000000',-7,'2005-10-29 12:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(435,'Specimen analysis',64,'2005-10-29 13:40:00.000000',-7,'2005-10-29 13:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(436,'Specimen analysis',63,'2007-06-07 14:20:00.000000',-7,'2007-06-07 14:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(437,'Specimen analysis',64,'2005-10-29 14:40:00.000000',-7,'2005-10-29 14:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(438,'Specimen analysis',63,'2007-03-27 15:00:00.000000',-7,'2007-03-27 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(439,'Specimen analysis',63,'2005-08-16 15:30:00.000000',-7,'2005-08-16 15:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(440,'Specimen analysis',64,'2005-10-29 15:40:00.000000',-7,'2005-10-29 15:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(441,'Specimen analysis',63,'2005-08-16 18:30:00.000000',-7,'2005-08-16 18:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(442,'Specimen analysis',63,'2007-03-20 19:30:00.000000',-7,'2007-03-20 19:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(443,'Specimen analysis',63,'2005-04-28 02:00:00.000000',-7,'2005-04-28 02:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(444,'Specimen analysis',63,'2005-10-28 02:30:00.000000',-7,'2005-10-28 02:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(445,'Specimen analysis',64,'2005-10-28 02:30:00.000000',-7,'2005-10-28 02:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(446,'Specimen analysis',63,'2007-03-27 20:00:00.000000',-7,'2007-03-27 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(447,'Specimen analysis',63,'2005-04-27 20:00:00.000000',-7,'2005-04-27 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(448,'Specimen analysis',63,'2007-03-20 21:30:00.000000',-7,'2007-03-20 21:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(449,'Specimen analysis',63,'2005-10-27 21:30:00.000000',-7,'2005-10-27 21:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(450,'Specimen analysis',64,'2005-10-27 21:30:00.000000',-7,'2005-10-27 21:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(451,'Specimen analysis',63,'2005-10-27 21:30:00.000000',-7,'2005-10-27 21:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(452,'Specimen analysis',63,'2005-04-27 22:00:00.000000',-7,'2005-04-27 22:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(453,'Specimen analysis',63,'2005-10-27 22:30:00.000000',-7,'2005-10-27 22:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(454,'Specimen analysis',64,'2005-10-27 22:30:00.000000',-7,'2005-10-27 22:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(455,'Specimen analysis',63,'2005-10-27 22:30:00.000000',-7,'2005-10-27 22:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(456,'Specimen analysis',63,'2007-03-27 23:00:00.000000',-7,'2007-03-27 23:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(457,'Specimen analysis',63,'2005-10-27 23:30:00.000000',-7,'2005-10-27 23:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(458,'Specimen analysis',64,'2005-10-27 23:30:00.000000',-7,'2005-10-27 23:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(459,'Specimen analysis',63,'2005-10-27 23:30:00.000000',-7,'2005-10-27 23:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(460,'Specimen analysis',63,'2005-10-28 03:30:00.000000',-7,'2005-10-28 03:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(461,'Specimen analysis',64,'2005-10-28 03:30:00.000000',-7,'2005-10-28 03:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(462,'Specimen analysis',63,'2005-04-28 04:00:00.000000',-7,'2005-04-28 04:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(463,'Specimen analysis',63,'2007-06-07 04:20:00.000000',-7,'2007-06-07 04:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(464,'Specimen analysis',63,'2005-10-28 04:30:00.000000',-7,'2005-10-28 04:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(465,'Specimen analysis',64,'2005-10-28 04:30:00.000000',-7,'2005-10-28 04:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(466,'Specimen analysis',63,'2007-03-28 05:00:00.000000',-7,'2007-03-28 05:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(467,'Specimen analysis',63,'2005-10-28 05:30:00.000000',-7,'2005-10-28 05:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(468,'Specimen analysis',64,'2005-10-28 05:30:00.000000',-7,'2005-10-28 05:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(469,'Specimen analysis',63,'2005-10-28 06:30:00.000000',-7,'2005-10-28 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(470,'Specimen analysis',64,'2005-10-28 06:30:00.000000',-7,'2005-10-28 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(471,'Specimen analysis',64,'2005-08-17 07:30:00.000000',-7,'2005-08-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(472,'Specimen analysis',64,'2005-10-28 07:30:00.000000',-7,'2005-10-28 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(473,'Specimen analysis',63,'2005-08-17 07:30:00.000000',-7,'2005-08-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(474,'Specimen analysis',63,'2007-03-15 07:50:00.000000',-7,'2007-03-15 07:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(475,'Specimen analysis',63,'2007-06-07 08:20:00.000000',-7,'2007-06-07 08:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(476,'Specimen analysis',64,'2005-10-28 08:30:00.000000',-7,'2005-10-28 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(477,'Specimen analysis',63,'2007-06-07 09:20:00.000000',-7,'2007-06-07 09:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(478,'Specimen analysis',64,'2005-10-29 09:40:00.000000',-7,'2005-10-29 09:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(479,'Specimen analysis',63,'2005-10-28 00:30:00.000000',-7,'2005-10-28 00:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(480,'Specimen analysis',63,'2005-10-28 01:30:00.000000',-7,'2005-10-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(481,'Specimen analysis',63,'2005-10-29 10:40:00.000000',-7,'2005-10-29 10:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(482,'Specimen analysis',63,'2005-10-29 10:40:00.000000',-7,'2005-10-29 10:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(483,'Specimen analysis',64,'2005-10-30 11:20:00.000000',-7,'2005-10-30 11:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(484,'Specimen analysis',63,'2005-10-29 11:40:00.000000',-7,'2005-10-29 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(485,'Specimen analysis',63,'2005-10-29 11:40:00.000000',-7,'2005-10-29 11:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(486,'Specimen analysis',64,'2005-10-30 12:20:00.000000',-7,'2005-10-30 12:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(487,'Specimen analysis',63,'2005-10-29 12:40:00.000000',-7,'2005-10-29 12:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(488,'Specimen analysis',64,'2005-10-30 13:20:00.000000',-7,'2005-10-30 13:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(489,'Specimen analysis',63,'2005-10-29 13:40:00.000000',-7,'2005-10-29 13:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(490,'Specimen analysis',64,'2005-10-30 14:20:00.000000',-7,'2005-10-30 14:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(491,'Specimen analysis',63,'2005-10-29 14:40:00.000000',-7,'2005-10-29 14:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(492,'Specimen analysis',64,'2005-10-30 15:20:00.000000',-7,'2005-10-30 15:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(493,'Specimen analysis',63,'2005-10-29 15:40:00.000000',-7,'2005-10-29 15:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(494,'Specimen analysis',63,'2005-10-29 16:40:00.000000',-7,'2005-10-29 16:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(495,'Specimen analysis',64,'2005-10-29 16:40:00.000000',-7,'2005-10-29 16:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(496,'Specimen analysis',64,'2005-10-30 17:20:00.000000',-7,'2005-10-30 17:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(497,'Specimen analysis',63,'2005-10-29 17:40:00.000000',-7,'2005-10-29 17:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(498,'Specimen analysis',64,'2005-10-29 17:40:00.000000',-7,'2005-10-29 17:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(499,'Specimen analysis',64,'2005-10-30 18:20:00.000000',-7,'2005-10-30 18:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(500,'Specimen analysis',63,'2005-10-29 18:40:00.000000',-7,'2005-10-29 18:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(501,'Specimen analysis',64,'2005-10-29 18:40:00.000000',-7,'2005-10-29 18:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(502,'Specimen analysis',64,'2005-10-29 19:40:00.000000',-7,'2005-10-29 19:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(503,'Specimen analysis',63,'2005-10-28 02:30:00.000000',-7,'2005-10-28 02:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(504,'Specimen analysis',64,'2005-10-29 20:40:00.000000',-7,'2005-10-29 20:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(505,'Specimen analysis',63,'2005-10-28 03:30:00.000000',-7,'2005-10-28 03:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(506,'Specimen analysis',63,'2005-10-28 04:30:00.000000',-7,'2005-10-28 04:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(507,'Specimen analysis',63,'2005-10-28 05:30:00.000000',-7,'2005-10-28 05:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(508,'Specimen analysis',63,'2005-10-28 06:30:00.000000',-7,'2005-10-28 06:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(509,'Specimen analysis',63,'2005-10-28 07:30:00.000000',-7,'2005-10-28 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(510,'Specimen analysis',63,'2005-10-28 07:30:00.000000',-7,'2005-10-28 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(511,'Specimen analysis',63,'2005-10-28 08:30:00.000000',-7,'2005-10-28 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(512,'Specimen analysis',63,'2005-10-28 08:30:00.000000',-7,'2005-10-28 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(513,'Specimen analysis',63,'2005-10-29 09:40:00.000000',-7,'2005-10-29 09:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(514,'Specimen analysis',63,'2005-10-29 09:40:00.000000',-7,'2005-10-29 09:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(515,'Specimen analysis',63,'2005-10-30 11:20:00.000000',-7,'2005-10-30 11:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(516,'Specimen analysis',63,'2005-10-29 12:40:00.000000',-7,'2005-10-29 12:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(517,'Specimen analysis',63,'2005-10-29 13:40:00.000000',-7,'2005-10-29 13:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(518,'Specimen analysis',63,'2005-10-29 14:40:00.000000',-7,'2005-10-29 14:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(519,'Specimen analysis',64,'2005-10-30 19:20:00.000000',-7,'2005-10-30 19:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(520,'Specimen analysis',63,'2005-10-29 19:40:00.000000',-7,'2005-10-29 19:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(521,'Specimen analysis',64,'2005-10-30 20:20:00.000000',-7,'2005-10-30 20:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(522,'Specimen analysis',63,'2005-10-29 20:40:00.000000',-7,'2005-10-29 20:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(523,'Specimen analysis',64,'2005-10-30 21:20:00.000000',-7,'2005-10-30 21:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(524,'Specimen analysis',64,'2005-11-14 10:00:00.000000',-7,'2005-11-14 10:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(525,'Specimen analysis',63,'2005-10-30 11:20:00.000000',-7,'2005-10-30 11:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(526,'Specimen analysis',63,'2005-10-30 12:20:00.000000',-7,'2005-10-30 12:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(527,'Specimen analysis',63,'2005-10-30 12:20:00.000000',-7,'2005-10-30 12:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(528,'Specimen analysis',63,'2005-10-30 13:20:00.000000',-7,'2005-10-30 13:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(529,'Specimen analysis',64,'2005-11-13 13:50:00.000000',-7,'2005-11-13 13:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(530,'Specimen analysis',63,'2005-10-30 14:20:00.000000',-7,'2005-10-30 14:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(531,'Specimen analysis',64,'2005-11-14 15:00:00.000000',-7,'2005-11-14 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(532,'Specimen analysis',63,'2005-10-30 15:20:00.000000',-7,'2005-10-30 15:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(533,'Specimen analysis',63,'2005-10-29 15:40:00.000000',-7,'2005-10-29 15:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(534,'Specimen analysis',63,'2005-10-30 16:20:00.000000',-7,'2005-10-30 16:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(535,'Specimen analysis',63,'2005-10-29 16:40:00.000000',-7,'2005-10-29 16:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(536,'Specimen analysis',63,'2005-10-30 17:20:00.000000',-7,'2005-10-30 17:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(537,'Specimen analysis',63,'2005-10-29 17:40:00.000000',-7,'2005-10-29 17:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(538,'Specimen analysis',64,'2005-11-14 18:00:00.000000',-7,'2005-11-14 18:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(539,'Specimen analysis',63,'2005-10-30 18:20:00.000000',-7,'2005-10-30 18:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(540,'Specimen analysis',63,'2005-10-29 18:40:00.000000',-7,'2005-10-29 18:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(541,'Specimen analysis',64,'2005-11-13 18:50:00.000000',-7,'2005-11-13 18:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(542,'Specimen analysis',63,'2005-10-30 19:20:00.000000',-7,'2005-10-30 19:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(543,'Specimen analysis',63,'2005-10-29 19:40:00.000000',-7,'2005-10-29 19:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(544,'Specimen analysis',64,'2005-11-14 20:00:00.000000',-7,'2005-11-14 20:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(545,'Specimen analysis',63,'2005-10-29 20:40:00.000000',-7,'2005-10-29 20:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(546,'Specimen analysis',64,'2005-11-13 20:50:00.000000',-7,'2005-11-13 20:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(547,'Specimen analysis',64,'2005-10-30 22:20:00.000000',-7,'2005-10-30 22:20:00.000000',-7,'Specimen laboratory analysis.',NULL),(548,'Specimen analysis',62,'2008-04-10 13:30:00.000000',-7,'2008-04-10 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(549,'Specimen analysis',62,'2008-01-03 14:00:00.000000',-7,'2008-01-03 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(550,'Specimen analysis',60,'2008-01-03 14:00:00.000000',-7,'2008-01-03 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(551,'Specimen analysis',62,'2008-01-03 14:00:00.000000',-7,'2008-01-03 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(552,'Specimen analysis',62,'2009-01-06 15:00:00.000000',-7,'2009-01-06 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(553,'Specimen analysis',60,'2009-01-06 15:00:00.000000',-7,'2009-01-06 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(554,'Specimen analysis',65,'2009-01-06 15:00:00.000000',-7,'2009-01-06 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(555,'Specimen analysis',62,'2009-01-06 15:00:00.000000',-7,'2009-01-06 15:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(556,'Specimen analysis',62,'2008-01-17 15:05:00.000000',-7,'2008-01-17 15:05:00.000000',-7,'Specimen laboratory analysis.',NULL),(557,'Specimen analysis',60,'2008-01-17 15:05:00.000000',-7,'2008-01-17 15:05:00.000000',-7,'Specimen laboratory analysis.',NULL),(558,'Specimen analysis',62,'2008-01-17 15:05:00.000000',-7,'2008-01-17 15:05:00.000000',-7,'Specimen laboratory analysis.',NULL),(559,'Specimen analysis',62,'2008-01-17 15:05:00.000000',-7,'2008-01-17 15:05:00.000000',-7,'Specimen laboratory analysis.',NULL),(560,'Specimen analysis',62,'2009-01-22 13:30:00.000000',-7,'2009-01-22 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(561,'Specimen analysis',60,'2009-01-22 13:30:00.000000',-7,'2009-01-22 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(562,'Specimen analysis',65,'2009-01-22 13:30:00.000000',-7,'2009-01-22 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(563,'Specimen analysis',62,'2009-01-22 13:30:00.000000',-7,'2009-01-22 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(564,'Specimen analysis',62,'2008-01-31 14:00:00.000000',-7,'2008-01-31 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(565,'Specimen analysis',62,'2008-01-31 14:00:00.000000',-7,'2008-01-31 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(566,'Specimen analysis',60,'2008-01-31 14:00:00.000000',-7,'2008-01-31 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(567,'Specimen analysis',62,'2008-01-31 14:00:00.000000',-7,'2008-01-31 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(568,'Specimen analysis',62,'2008-01-31 14:00:00.000000',-7,'2008-01-31 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(569,'Specimen analysis',62,'2009-02-05 13:00:00.000000',-7,'2009-02-05 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(570,'Specimen analysis',60,'2009-02-05 13:00:00.000000',-7,'2009-02-05 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(571,'Specimen analysis',65,'2009-02-05 13:00:00.000000',-7,'2009-02-05 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(572,'Specimen analysis',60,'2009-02-05 13:00:00.000000',-7,'2009-02-05 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(573,'Specimen analysis',62,'2009-02-05 13:00:00.000000',-7,'2009-02-05 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(574,'Specimen analysis',62,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(575,'Specimen analysis',66,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(576,'Specimen analysis',60,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(577,'Specimen analysis',62,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(578,'Specimen analysis',66,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(579,'Specimen analysis',62,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(580,'Specimen analysis',66,'2008-02-12 15:15:00.000000',-7,'2008-02-12 15:15:00.000000',-7,'Specimen laboratory analysis.',NULL),(581,'Specimen analysis',62,'2009-02-19 09:30:00.000000',-7,'2009-02-19 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(582,'Specimen analysis',60,'2009-02-19 09:30:00.000000',-7,'2009-02-19 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(583,'Specimen analysis',65,'2009-02-19 09:30:00.000000',-7,'2009-02-19 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(584,'Specimen analysis',60,'2009-02-19 09:30:00.000000',-7,'2009-02-19 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(585,'Specimen analysis',62,'2009-02-19 09:30:00.000000',-7,'2009-02-19 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(586,'Specimen analysis',62,'2008-02-28 09:30:00.000000',-7,'2008-02-28 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(587,'Specimen analysis',60,'2008-02-28 09:30:00.000000',-7,'2008-02-28 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(588,'Specimen analysis',62,'2008-02-28 09:30:00.000000',-7,'2008-02-28 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(589,'Specimen analysis',62,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(590,'Specimen analysis',66,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(591,'Specimen analysis',60,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(592,'Specimen analysis',65,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(593,'Specimen analysis',62,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(594,'Specimen analysis',66,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(595,'Specimen analysis',62,'2009-03-05 13:30:00.000000',-7,'2009-03-05 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(596,'Specimen analysis',62,'2008-03-06 13:30:00.000000',-7,'2008-03-06 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(597,'Specimen analysis',60,'2008-03-06 13:30:00.000000',-7,'2008-03-06 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(598,'Specimen analysis',62,'2008-03-06 13:30:00.000000',-7,'2008-03-06 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(599,'Specimen analysis',62,'2008-03-13 12:00:00.000000',-7,'2008-03-13 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(600,'Specimen analysis',60,'2008-03-13 12:00:00.000000',-7,'2008-03-13 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(601,'Specimen analysis',62,'2008-03-13 12:00:00.000000',-7,'2008-03-13 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(602,'Specimen analysis',62,'2009-03-19 12:00:00.000000',-7,'2009-03-19 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(603,'Specimen analysis',60,'2009-03-19 12:00:00.000000',-7,'2009-03-19 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(604,'Specimen analysis',65,'2009-03-19 12:00:00.000000',-7,'2009-03-19 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(605,'Specimen analysis',62,'2009-03-19 12:00:00.000000',-7,'2009-03-19 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(606,'Specimen analysis',62,'2008-03-20 08:50:00.000000',-7,'2008-03-20 08:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(607,'Specimen analysis',62,'2008-03-20 08:50:00.000000',-7,'2008-03-20 08:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(608,'Specimen analysis',60,'2008-03-20 08:50:00.000000',-7,'2008-03-20 08:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(609,'Specimen analysis',62,'2008-03-20 08:50:00.000000',-7,'2008-03-20 08:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(610,'Specimen analysis',62,'2008-03-27 12:30:00.000000',-7,'2008-03-27 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(611,'Specimen analysis',60,'2008-03-27 12:30:00.000000',-7,'2008-03-27 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(612,'Specimen analysis',62,'2008-03-27 12:30:00.000000',-7,'2008-03-27 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(613,'Specimen analysis',62,'2009-03-27 10:30:00.000000',-7,'2009-03-27 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(614,'Specimen analysis',60,'2009-03-27 10:30:00.000000',-7,'2009-03-27 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(615,'Specimen analysis',65,'2009-03-27 10:30:00.000000',-7,'2009-03-27 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(616,'Specimen analysis',62,'2009-03-27 10:30:00.000000',-7,'2009-03-27 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(617,'Specimen analysis',62,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(618,'Specimen analysis',66,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(619,'Specimen analysis',60,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(620,'Specimen analysis',65,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(621,'Specimen analysis',60,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(622,'Specimen analysis',62,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(623,'Specimen analysis',66,'2009-04-01 12:30:00.000000',-7,'2009-04-01 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(624,'Specimen analysis',62,'2008-04-03 09:30:00.000000',-7,'2008-04-03 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(625,'Specimen analysis',60,'2008-04-03 09:30:00.000000',-7,'2008-04-03 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(626,'Specimen analysis',62,'2008-04-03 09:30:00.000000',-7,'2008-04-03 09:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(627,'Specimen analysis',62,'2009-04-08 11:00:00.000000',-7,'2009-04-08 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(628,'Specimen analysis',60,'2009-04-08 11:00:00.000000',-7,'2009-04-08 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(629,'Specimen analysis',65,'2009-04-08 11:00:00.000000',-7,'2009-04-08 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(630,'Specimen analysis',62,'2009-04-08 11:00:00.000000',-7,'2009-04-08 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(631,'Specimen analysis',66,'2009-04-08 11:00:00.000000',-7,'2009-04-08 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(632,'Specimen analysis',60,'2008-04-10 13:30:00.000000',-7,'2008-04-10 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(633,'Specimen analysis',62,'2008-04-10 13:30:00.000000',-7,'2008-04-10 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(634,'Specimen analysis',62,'2008-04-10 13:30:00.000000',-7,'2008-04-10 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(635,'Specimen analysis',62,'2008-04-14 12:30:00.000000',-7,'2008-04-14 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(636,'Specimen analysis',60,'2008-04-14 12:30:00.000000',-7,'2008-04-14 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(637,'Specimen analysis',62,'2008-04-14 12:30:00.000000',-7,'2008-04-14 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(638,'Specimen analysis',62,'2009-04-16 08:00:00.000000',-7,'2009-04-16 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(639,'Specimen analysis',66,'2009-04-16 08:00:00.000000',-7,'2009-04-16 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(640,'Specimen analysis',60,'2009-04-16 08:00:00.000000',-7,'2009-04-16 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(641,'Specimen analysis',65,'2009-04-16 08:00:00.000000',-7,'2009-04-16 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(642,'Specimen analysis',62,'2009-04-16 08:00:00.000000',-7,'2009-04-16 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(643,'Specimen analysis',66,'2009-04-16 08:00:00.000000',-7,'2009-04-16 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(644,'Specimen analysis',62,'2009-04-23 11:30:00.000000',-7,'2009-04-23 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(645,'Specimen analysis',60,'2009-04-23 11:30:00.000000',-7,'2009-04-23 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(646,'Specimen analysis',65,'2009-04-23 11:30:00.000000',-7,'2009-04-23 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(647,'Specimen analysis',62,'2009-04-23 11:30:00.000000',-7,'2009-04-23 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(648,'Specimen analysis',62,'2009-04-23 11:30:00.000000',-7,'2009-04-23 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(649,'Specimen analysis',62,'2008-04-24 12:00:00.000000',-7,'2008-04-24 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(650,'Specimen analysis',60,'2008-04-24 12:00:00.000000',-7,'2008-04-24 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(651,'Specimen analysis',62,'2008-04-24 12:00:00.000000',-7,'2008-04-24 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(652,'Specimen analysis',62,'2009-04-30 11:30:00.000000',-7,'2009-04-30 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(653,'Specimen analysis',62,'2009-04-30 11:30:00.000000',-7,'2009-04-30 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(654,'Specimen analysis',60,'2009-04-30 11:30:00.000000',-7,'2009-04-30 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(655,'Specimen analysis',65,'2009-04-30 11:30:00.000000',-7,'2009-04-30 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(656,'Specimen analysis',60,'2009-04-30 11:30:00.000000',-7,'2009-04-30 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(657,'Specimen analysis',62,'2009-04-30 11:30:00.000000',-7,'2009-04-30 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(658,'Specimen analysis',62,'2008-05-01 11:50:00.000000',-7,'2008-05-01 11:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(659,'Specimen analysis',60,'2008-05-01 11:50:00.000000',-7,'2008-05-01 11:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(660,'Specimen analysis',62,'2008-05-01 11:50:00.000000',-7,'2008-05-01 11:50:00.000000',-7,'Specimen laboratory analysis.',NULL),(661,'Specimen analysis',62,'2009-05-05 12:30:00.000000',-7,'2009-05-05 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(662,'Specimen analysis',60,'2009-05-05 12:30:00.000000',-7,'2009-05-05 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(663,'Specimen analysis',65,'2009-05-05 12:30:00.000000',-7,'2009-05-05 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(664,'Specimen analysis',62,'2009-05-05 12:30:00.000000',-7,'2009-05-05 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(665,'Specimen analysis',62,'2008-05-07 08:00:00.000000',-7,'2008-05-07 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(666,'Specimen analysis',60,'2008-05-07 08:00:00.000000',-7,'2008-05-07 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(667,'Specimen analysis',62,'2008-05-07 08:00:00.000000',-7,'2008-05-07 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(668,'Specimen analysis',62,'2009-05-12 07:30:00.000000',-7,'2009-05-12 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(669,'Specimen analysis',66,'2009-05-12 07:30:00.000000',-7,'2009-05-12 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(670,'Specimen analysis',60,'2009-05-12 07:30:00.000000',-7,'2009-05-12 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(671,'Specimen analysis',65,'2009-05-12 07:30:00.000000',-7,'2009-05-12 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(672,'Specimen analysis',62,'2009-05-12 07:30:00.000000',-7,'2009-05-12 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(673,'Specimen analysis',66,'2009-05-12 07:30:00.000000',-7,'2009-05-12 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(674,'Specimen analysis',62,'2008-05-15 08:30:00.000000',-7,'2008-05-15 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(675,'Specimen analysis',60,'2008-05-15 08:30:00.000000',-7,'2008-05-15 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(676,'Specimen analysis',62,'2008-05-15 08:30:00.000000',-7,'2008-05-15 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(677,'Specimen analysis',62,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(678,'Specimen analysis',66,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(679,'Specimen analysis',60,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(680,'Specimen analysis',65,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(681,'Specimen analysis',60,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(682,'Specimen analysis',62,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(683,'Specimen analysis',66,'2009-05-21 11:30:00.000000',-7,'2009-05-21 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(684,'Specimen analysis',62,'2008-05-23 08:30:00.000000',-7,'2008-05-23 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(685,'Specimen analysis',60,'2008-05-23 08:30:00.000000',-7,'2008-05-23 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(686,'Specimen analysis',62,'2008-05-23 08:30:00.000000',-7,'2008-05-23 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(687,'Specimen analysis',62,'2008-05-23 08:30:00.000000',-7,'2008-05-23 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(688,'Specimen analysis',62,'2009-05-28 01:30:00.000000',-7,'2009-05-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(689,'Specimen analysis',66,'2009-05-28 01:30:00.000000',-7,'2009-05-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(690,'Specimen analysis',60,'2009-05-28 01:30:00.000000',-7,'2009-05-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(691,'Specimen analysis',65,'2009-05-28 01:30:00.000000',-7,'2009-05-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(692,'Specimen analysis',62,'2009-05-28 01:30:00.000000',-7,'2009-05-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(693,'Specimen analysis',66,'2009-05-28 01:30:00.000000',-7,'2009-05-28 01:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(694,'Specimen analysis',62,'2008-05-29 08:30:00.000000',-7,'2008-05-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(695,'Specimen analysis',62,'2008-05-29 08:30:00.000000',-7,'2008-05-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(696,'Specimen analysis',60,'2008-05-29 08:30:00.000000',-7,'2008-05-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(697,'Specimen analysis',62,'2008-05-29 08:30:00.000000',-7,'2008-05-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(698,'Specimen analysis',62,'2009-06-04 12:00:00.000000',-7,'2009-06-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(699,'Specimen analysis',66,'2009-06-04 12:00:00.000000',-7,'2009-06-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(700,'Specimen analysis',60,'2009-06-04 12:00:00.000000',-7,'2009-06-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(701,'Specimen analysis',65,'2009-06-04 12:00:00.000000',-7,'2009-06-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(702,'Specimen analysis',62,'2009-06-04 12:00:00.000000',-7,'2009-06-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(703,'Specimen analysis',66,'2009-06-04 12:00:00.000000',-7,'2009-06-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(704,'Specimen analysis',62,'2008-06-06 10:30:00.000000',-7,'2008-06-06 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(705,'Specimen analysis',60,'2008-06-06 10:30:00.000000',-7,'2008-06-06 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(706,'Specimen analysis',62,'2008-06-06 10:30:00.000000',-7,'2008-06-06 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(707,'Specimen analysis',62,'2008-06-10 12:00:00.000000',-7,'2008-06-10 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(708,'Specimen analysis',60,'2008-06-10 12:00:00.000000',-7,'2008-06-10 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(709,'Specimen analysis',62,'2008-06-10 12:00:00.000000',-7,'2008-06-10 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(710,'Specimen analysis',62,'2009-06-11 11:30:00.000000',-7,'2009-06-11 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(711,'Specimen analysis',60,'2009-06-11 11:30:00.000000',-7,'2009-06-11 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(712,'Specimen analysis',65,'2009-06-11 11:30:00.000000',-7,'2009-06-11 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(713,'Specimen analysis',62,'2009-06-11 11:30:00.000000',-7,'2009-06-11 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(714,'Specimen analysis',62,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(715,'Specimen analysis',66,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(716,'Specimen analysis',60,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(717,'Specimen analysis',65,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(718,'Specimen analysis',62,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(719,'Specimen analysis',66,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(720,'Specimen analysis',62,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(721,'Specimen analysis',66,'2009-06-17 07:30:00.000000',-7,'2009-06-17 07:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(722,'Specimen analysis',62,'2008-06-19 08:00:00.000000',-7,'2008-06-19 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(723,'Specimen analysis',60,'2008-06-19 08:00:00.000000',-7,'2008-06-19 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(724,'Specimen analysis',60,'2008-06-19 08:00:00.000000',-7,'2008-06-19 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(725,'Specimen analysis',62,'2008-06-19 08:00:00.000000',-7,'2008-06-19 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(726,'Specimen analysis',62,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(727,'Specimen analysis',66,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(728,'Specimen analysis',67,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(729,'Specimen analysis',60,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(730,'Specimen analysis',65,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(731,'Specimen analysis',62,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(732,'Specimen analysis',66,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(733,'Specimen analysis',67,'2009-06-25 12:00:00.000000',-7,'2009-06-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(734,'Specimen analysis',62,'2008-06-26 08:00:00.000000',-7,'2008-06-26 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(735,'Specimen analysis',60,'2008-06-26 08:00:00.000000',-7,'2008-06-26 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(736,'Specimen analysis',62,'2008-06-26 08:00:00.000000',-7,'2008-06-26 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(737,'Specimen analysis',62,'2008-07-03 11:30:00.000000',-7,'2008-07-03 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(738,'Specimen analysis',60,'2008-07-03 11:30:00.000000',-7,'2008-07-03 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(739,'Specimen analysis',62,'2008-07-03 11:30:00.000000',-7,'2008-07-03 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(740,'Specimen analysis',62,'2009-07-09 12:00:00.000000',-7,'2009-07-09 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(741,'Specimen analysis',60,'2009-07-09 12:00:00.000000',-7,'2009-07-09 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(742,'Specimen analysis',65,'2009-07-09 12:00:00.000000',-7,'2009-07-09 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(743,'Specimen analysis',62,'2009-07-09 12:00:00.000000',-7,'2009-07-09 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(744,'Specimen analysis',62,'2008-07-10 08:00:00.000000',-7,'2008-07-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(745,'Specimen analysis',60,'2008-07-10 08:00:00.000000',-7,'2008-07-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(746,'Specimen analysis',60,'2008-07-10 08:00:00.000000',-7,'2008-07-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(747,'Specimen analysis',62,'2008-07-10 08:00:00.000000',-7,'2008-07-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(748,'Specimen analysis',62,'2009-07-23 11:00:00.000000',-7,'2009-07-23 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(749,'Specimen analysis',60,'2009-07-23 11:00:00.000000',-7,'2009-07-23 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(750,'Specimen analysis',65,'2009-07-23 11:00:00.000000',-7,'2009-07-23 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(751,'Specimen analysis',62,'2009-07-23 11:00:00.000000',-7,'2009-07-23 11:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(752,'Specimen analysis',62,'2008-07-25 12:00:00.000000',-7,'2008-07-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(753,'Specimen analysis',60,'2008-07-25 12:00:00.000000',-7,'2008-07-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(754,'Specimen analysis',62,'2008-07-25 12:00:00.000000',-7,'2008-07-25 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(755,'Specimen analysis',62,'2008-08-04 09:00:00.000000',-7,'2008-08-04 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(756,'Specimen analysis',60,'2008-08-04 09:00:00.000000',-7,'2008-08-04 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(757,'Specimen analysis',62,'2008-08-04 09:00:00.000000',-7,'2008-08-04 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(758,'Specimen analysis',67,'2009-08-05 08:00:00.000000',-7,'2009-08-05 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(759,'Specimen analysis',60,'2009-08-05 08:00:00.000000',-7,'2009-08-05 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(760,'Specimen analysis',65,'2009-08-05 08:00:00.000000',-7,'2009-08-05 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(761,'Specimen analysis',67,'2009-08-05 08:00:00.000000',-7,'2009-08-05 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(762,'Specimen analysis',67,'2009-08-20 14:00:00.000000',-7,'2009-08-20 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(763,'Specimen analysis',60,'2009-08-20 14:00:00.000000',-7,'2009-08-20 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(764,'Specimen analysis',65,'2009-08-20 14:00:00.000000',-7,'2009-08-20 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(765,'Specimen analysis',67,'2009-08-20 14:00:00.000000',-7,'2009-08-20 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(766,'Specimen analysis',62,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(767,'Specimen analysis',66,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(768,'Specimen analysis',62,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(769,'Specimen analysis',66,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(770,'Specimen analysis',60,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(771,'Specimen analysis',65,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(772,'Specimen analysis',60,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(773,'Specimen analysis',62,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(774,'Specimen analysis',66,'2008-08-21 14:00:00.000000',-7,'2008-08-21 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(775,'Specimen analysis',67,'2009-09-02 12:30:00.000000',-7,'2009-09-02 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(776,'Specimen analysis',60,'2009-09-02 12:30:00.000000',-7,'2009-09-02 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(777,'Specimen analysis',65,'2009-09-02 12:30:00.000000',-7,'2009-09-02 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(778,'Specimen analysis',67,'2009-09-02 12:30:00.000000',-7,'2009-09-02 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(779,'Specimen analysis',67,'2009-09-02 12:30:00.000000',-7,'2009-09-02 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(780,'Specimen analysis',62,'2008-09-12 12:00:00.000000',-7,'2008-09-12 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(781,'Specimen analysis',60,'2008-09-12 12:00:00.000000',-7,'2008-09-12 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(782,'Specimen analysis',65,'2008-09-12 12:00:00.000000',-7,'2008-09-12 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(783,'Specimen analysis',60,'2008-09-12 12:00:00.000000',-7,'2008-09-12 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(784,'Specimen analysis',62,'2008-09-12 12:00:00.000000',-7,'2008-09-12 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(785,'Specimen analysis',67,'2009-09-17 08:30:00.000000',-7,'2009-09-17 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(786,'Specimen analysis',67,'2009-09-17 08:30:00.000000',-7,'2009-09-17 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(787,'Specimen analysis',60,'2009-09-17 08:30:00.000000',-7,'2009-09-17 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(788,'Specimen analysis',65,'2009-09-17 08:30:00.000000',-7,'2009-09-17 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(789,'Specimen analysis',60,'2009-09-17 08:30:00.000000',-7,'2009-09-17 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(790,'Specimen analysis',67,'2009-09-17 08:30:00.000000',-7,'2009-09-17 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(791,'Specimen analysis',62,'2008-09-26 12:30:00.000000',-7,'2008-09-26 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(792,'Specimen analysis',60,'2008-09-26 12:30:00.000000',-7,'2008-09-26 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(793,'Specimen analysis',65,'2008-09-26 12:30:00.000000',-7,'2008-09-26 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(794,'Specimen analysis',60,'2008-09-26 12:30:00.000000',-7,'2008-09-26 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(795,'Specimen analysis',62,'2008-09-26 12:30:00.000000',-7,'2008-09-26 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(796,'Specimen analysis',67,'2009-10-01 11:30:00.000000',-7,'2009-10-01 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(797,'Specimen analysis',60,'2009-10-01 11:30:00.000000',-7,'2009-10-01 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(798,'Specimen analysis',65,'2009-10-01 11:30:00.000000',-7,'2009-10-01 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(799,'Specimen analysis',67,'2009-10-01 11:30:00.000000',-7,'2009-10-01 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(800,'Specimen analysis',62,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(801,'Specimen analysis',66,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(802,'Specimen analysis',60,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(803,'Specimen analysis',65,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(804,'Specimen analysis',60,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(805,'Specimen analysis',62,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(806,'Specimen analysis',66,'2008-10-10 08:00:00.000000',-7,'2008-10-10 08:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(807,'Specimen analysis',67,'2009-10-15 11:30:00.000000',-7,'2009-10-15 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(808,'Specimen analysis',60,'2009-10-15 11:30:00.000000',-7,'2009-10-15 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(809,'Specimen analysis',65,'2009-10-15 11:30:00.000000',-7,'2009-10-15 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(810,'Specimen analysis',60,'2009-10-15 11:30:00.000000',-7,'2009-10-15 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(811,'Specimen analysis',67,'2009-10-15 11:30:00.000000',-7,'2009-10-15 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(812,'Specimen analysis',62,'2008-10-24 08:30:00.000000',-7,'2008-10-24 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(813,'Specimen analysis',60,'2008-10-24 08:30:00.000000',-7,'2008-10-24 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(814,'Specimen analysis',65,'2008-10-24 08:30:00.000000',-7,'2008-10-24 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(815,'Specimen analysis',62,'2008-10-24 08:30:00.000000',-7,'2008-10-24 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(816,'Specimen analysis',67,'2009-10-29 08:30:00.000000',-7,'2009-10-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(817,'Specimen analysis',60,'2009-10-29 08:30:00.000000',-7,'2009-10-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(818,'Specimen analysis',65,'2009-10-29 08:30:00.000000',-7,'2009-10-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(819,'Specimen analysis',67,'2009-10-29 08:30:00.000000',-7,'2009-10-29 08:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(820,'Specimen analysis',62,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(821,'Specimen analysis',66,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(822,'Specimen analysis',60,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(823,'Specimen analysis',65,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(824,'Specimen analysis',60,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(825,'Specimen analysis',62,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(826,'Specimen analysis',66,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(827,'Specimen analysis',62,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(828,'Specimen analysis',66,'2008-11-07 13:00:00.000000',-7,'2008-11-07 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(829,'Specimen analysis',67,'2009-11-12 12:30:00.000000',-7,'2009-11-12 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(830,'Specimen analysis',60,'2009-11-12 12:30:00.000000',-7,'2009-11-12 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(831,'Specimen analysis',65,'2009-11-12 12:30:00.000000',-7,'2009-11-12 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(832,'Specimen analysis',67,'2009-11-12 12:30:00.000000',-7,'2009-11-12 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(833,'Specimen analysis',62,'2008-11-17 09:00:00.000000',-7,'2008-11-17 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(834,'Specimen analysis',62,'2008-11-17 09:00:00.000000',-7,'2008-11-17 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(835,'Specimen analysis',60,'2008-11-17 09:00:00.000000',-7,'2008-11-17 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(836,'Specimen analysis',65,'2008-11-17 09:00:00.000000',-7,'2008-11-17 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(837,'Specimen analysis',60,'2008-11-17 09:00:00.000000',-7,'2008-11-17 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(838,'Specimen analysis',62,'2008-11-17 09:00:00.000000',-7,'2008-11-17 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(839,'Specimen analysis',67,'2009-11-24 12:30:00.000000',-7,'2009-11-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(840,'Specimen analysis',60,'2009-11-24 12:30:00.000000',-7,'2009-11-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(841,'Specimen analysis',65,'2009-11-24 12:30:00.000000',-7,'2009-11-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(842,'Specimen analysis',67,'2009-11-24 12:30:00.000000',-7,'2009-11-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(843,'Specimen analysis',62,'2008-12-04 12:30:00.000000',-7,'2008-12-04 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(844,'Specimen analysis',60,'2008-12-04 12:30:00.000000',-7,'2008-12-04 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(845,'Specimen analysis',65,'2008-12-04 12:30:00.000000',-7,'2008-12-04 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(846,'Specimen analysis',62,'2008-12-04 12:30:00.000000',-7,'2008-12-04 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(847,'Specimen analysis',62,'2007-12-05 10:30:00.000000',-7,'2007-12-05 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(848,'Specimen analysis',62,'2007-12-05 10:30:00.000000',-7,'2007-12-05 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(849,'Specimen analysis',62,'2007-12-05 10:30:00.000000',-7,'2007-12-05 10:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(850,'Specimen analysis',67,'2009-12-10 14:00:00.000000',-7,'2009-12-10 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(851,'Specimen analysis',60,'2009-12-10 14:00:00.000000',-7,'2009-12-10 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(852,'Specimen analysis',65,'2009-12-10 14:00:00.000000',-7,'2009-12-10 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(853,'Specimen analysis',67,'2009-12-10 14:00:00.000000',-7,'2009-12-10 14:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(854,'Specimen analysis',62,'2008-12-18 09:00:00.000000',-7,'2008-12-18 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(855,'Specimen analysis',60,'2008-12-18 09:00:00.000000',-7,'2008-12-18 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(856,'Specimen analysis',65,'2008-12-18 09:00:00.000000',-7,'2008-12-18 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(857,'Specimen analysis',62,'2008-12-18 09:00:00.000000',-7,'2008-12-18 09:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(858,'Specimen analysis',62,'2007-12-20 14:40:00.000000',-7,'2007-12-20 14:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(859,'Specimen analysis',60,'2007-12-20 14:40:00.000000',-7,'2007-12-20 14:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(860,'Specimen analysis',62,'2007-12-20 14:40:00.000000',-7,'2007-12-20 14:40:00.000000',-7,'Specimen laboratory analysis.',NULL),(861,'Specimen analysis',61,'2007-10-04 12:00:00.000000',-7,'2007-10-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(862,'Specimen analysis',61,'2007-10-04 12:00:00.000000',-7,'2007-10-04 12:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(863,'Specimen analysis',61,'2007-10-10 11:30:00.000000',-7,'2007-10-10 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(864,'Specimen analysis',61,'2007-10-10 11:30:00.000000',-7,'2007-10-10 11:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(865,'Specimen analysis',61,'2007-10-17 13:00:00.000000',-7,'2007-10-17 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(866,'Specimen analysis',61,'2007-10-17 13:00:00.000000',-7,'2007-10-17 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(867,'Specimen analysis',61,'2007-10-24 12:30:00.000000',-7,'2007-10-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(868,'Specimen analysis',61,'2007-10-24 12:30:00.000000',-7,'2007-10-24 12:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(869,'Specimen analysis',61,'2007-11-01 14:30:00.000000',-7,'2007-11-01 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(870,'Specimen analysis',61,'2007-11-01 14:30:00.000000',-7,'2007-11-01 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(871,'Specimen analysis',61,'2007-11-07 13:30:00.000000',-7,'2007-11-07 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(872,'Specimen analysis',61,'2007-11-07 13:30:00.000000',-7,'2007-11-07 13:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(873,'Specimen analysis',61,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(874,'Specimen analysis',61,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(875,'Specimen analysis',61,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(876,'Specimen analysis',61,'2007-11-13 13:00:00.000000',-7,'2007-11-13 13:00:00.000000',-7,'Specimen laboratory analysis.',NULL),(877,'Specimen analysis',61,'2007-11-21 14:30:00.000000',-7,'2007-11-21 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL),(878,'Specimen analysis',61,'2007-11-21 14:30:00.000000',-7,'2007-11-21 14:30:00.000000',-7,'Specimen laboratory analysis.',NULL); +/*!40000 ALTER TABLE `Actions` ENABLE KEYS */; + +-- +-- Table structure for table `Affiliations` +-- + +DROP TABLE IF EXISTS `Affiliations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Affiliations` ( + `AffiliationID` int(11) NOT NULL AUTO_INCREMENT, + `PersonID` int(11) NOT NULL, + `OrganizationID` int(11) DEFAULT NULL, + `IsPrimaryOrganizationContact` tinyint(1) DEFAULT NULL, + `AffiliationStartDate` date NOT NULL, + `AffiliationEndDate` date DEFAULT NULL, + `PrimaryPhone` varchar(50) DEFAULT NULL, + `PrimaryEmail` varchar(255) NOT NULL, + `PrimaryAddress` varchar(255) DEFAULT NULL, + `PersonLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`AffiliationID`), + KEY `fk_Affiliations_Organizations` (`OrganizationID`), + KEY `fk_Affiliations_People` (`PersonID`), + CONSTRAINT `fk_Affiliations_Organizations` FOREIGN KEY (`OrganizationID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Affiliations_People` FOREIGN KEY (`PersonID`) REFERENCES `People` (`PersonID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Affiliations` +-- + +/*!40000 ALTER TABLE `Affiliations` DISABLE KEYS */; +INSERT INTO `Affiliations` VALUES (1,1,1,1,'2015-10-09',NULL,'1-435-797-2946','jeff.horsburgh@usu.edu','8200 Old Main Hill, Logan, UT, 84322-8200',NULL),(2,1,2,1,'2015-10-09',NULL,'1-435-797-2946','jeff.horsburgh@usu.edu','8200 Old Main Hill, Logan, Utah, 84322-8200',NULL),(3,3,3,1,'2015-10-09',NULL,'1-435-797-0045','amber.s@aggiemail.usu.edu','8200 Old Main Hill, Logan, Utah, 84322-8200',NULL),(4,2,4,1,'2015-10-09',NULL,'1-435-797-7541','nancy.mesner@usu.edu','5200 Old Main Hill, Logan, Utah, 84322-5200',NULL),(5,3,6,1,'2015-10-09',NULL,'1-435-797-0045','amber.s@aggiemail.usu.edu','8200 Old Main Hill, Logan, Utah, 84322-8200',NULL); +/*!40000 ALTER TABLE `Affiliations` ENABLE KEYS */; + +-- +-- Table structure for table `Annotations` +-- + +DROP TABLE IF EXISTS `Annotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Annotations` ( + `AnnotationID` int(11) NOT NULL AUTO_INCREMENT, + `AnnotationTypeCV` varchar(255) NOT NULL, + `AnnotationCode` varchar(50) DEFAULT NULL, + `AnnotationText` varchar(500) NOT NULL, + `AnnotationDateTime` datetime DEFAULT NULL, + `AnnotationUTCOffset` int(11) DEFAULT NULL, + `AnnotationLink` varchar(255) DEFAULT NULL, + `AnnotatorID` int(11) DEFAULT NULL, + `CitationID` int(11) DEFAULT NULL, + PRIMARY KEY (`AnnotationID`), + KEY `fk_Annotations_Citations` (`CitationID`), + KEY `fk_Annotations_CV_AnnotationType` (`AnnotationTypeCV`), + KEY `fk_Annotations_People` (`AnnotatorID`), + CONSTRAINT `fk_Annotations_CV_AnnotationType` FOREIGN KEY (`AnnotationTypeCV`) REFERENCES `CV_AnnotationType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Annotations_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Annotations_People` FOREIGN KEY (`AnnotatorID`) REFERENCES `People` (`PersonID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Annotations` +-- + +/*!40000 ALTER TABLE `Annotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `Annotations` ENABLE KEYS */; + +-- +-- Table structure for table `AuthorLists` +-- + +DROP TABLE IF EXISTS `AuthorLists`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `AuthorLists` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `CitationID` int(11) NOT NULL, + `PersonID` int(11) NOT NULL, + `AuthorOrder` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_AuthorLists_Citations` (`CitationID`), + KEY `fk_AuthorLists_People` (`PersonID`), + CONSTRAINT `fk_AuthorLists_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_AuthorLists_People` FOREIGN KEY (`PersonID`) REFERENCES `People` (`PersonID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `AuthorLists` +-- + +/*!40000 ALTER TABLE `AuthorLists` DISABLE KEYS */; +/*!40000 ALTER TABLE `AuthorLists` ENABLE KEYS */; + +-- +-- Table structure for table `CV_ActionType` +-- + +DROP TABLE IF EXISTS `CV_ActionType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_ActionType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_ActionType` +-- + +/*!40000 ALTER TABLE `CV_ActionType` DISABLE KEYS */; +INSERT INTO `CV_ActionType` VALUES ('cruise','Cruise','A specialized form of an expedition action that involves an ocean-going vessel. Cruise actions are typically parents to other related Actions.','FieldActivity','http://vocabulary.odm2.org/actiontype/cruise'),('dataRetrieval','Data retrieval','The act of retrieving data from a datalogger deployed at a monitoring site.','Equipment','http://vocabulary.odm2.org/actiontype/dataRetrieval'),('derivation','Derivation','The act of creating results by deriving them from other results.','Observation','http://vocabulary.odm2.org/actiontype/derivation'),('equipmentDeployment','Equipment deployment','The act of placing equipment that will not make observations at or within a sampling feature. Actions involving the deployment of instruments should use the more specific term Instrument deployment.','Equipment','http://vocabulary.odm2.org/actiontype/equipmentDeployment'),('equipmentMaintenance','Equipment maintenance','The act of performing regular or periodic upkeep or servicing of field or laboratory equipment. Maintenance may be performed in the field, in a laboratory, or at a factory maintenance center.','Equipment','http://vocabulary.odm2.org/actiontype/equipmentMaintenance'),('equipmentProgramming','Equipment programming','The act of creating or modifying the data collection program running on a datalogger or other equipment deployed at a monitoring site.','Equipment','http://vocabulary.odm2.org/actiontype/equipmentProgramming'),('equipmentRetrieval','Equipment retrieval','The act of recovering a piece of equipment that made no observations from a deployment at a sampling feature or other location. For instruments, the more specific term Instrument retrieval should be used.','Equipment','http://vocabulary.odm2.org/actiontype/equipmentRetrieval'),('estimation','Estimation','The act of creating results by estimation or professional judgement.','Observation','http://vocabulary.odm2.org/actiontype/estimation'),('expedition','Expedition','A field visit action in which many sites are visited over a continguous period of time, often involving serveral investigators, and typically having a specific purpose. Expedition actions are typically parents to other related Actions.','FieldActivity','http://vocabulary.odm2.org/actiontype/expedition'),('fieldActivity','Field activity','A generic, non-specific action type performed in the field at or on a sampling feature.','FieldActivity','http://vocabulary.odm2.org/actiontype/fieldActivity'),('genericNonObservation','Generic non-observation','A generic, non-specific action type that does not produce a result.','Other','http://vocabulary.odm2.org/actiontype/genericNonObservation'),('instrumentCalibration','Instrument calibration','The act of calibrating an instrument either in the field or in a laboratory. The instrument may be an in situ field sensor or a laboratory instrument. An instrument is the subclass of equipment that is capable of making an observation to produce a result.','Equipment','http://vocabulary.odm2.org/actiontype/instrumentCalibration'),('instrumentDeployment','Instrument deployment','The act of deploying an in situ instrument or sensor that creates an observation result. This term is a specific form of the Observation actions category of actions, which is the only category of actions that can produce observation results.','Observation','http://vocabulary.odm2.org/actiontype/instrumentDeployment'),('instrumentRetrieval','Instrument retrieval','The act of recovering an in situ instrument (which made observations) from a sampling feature. This action ends an instrument deployment action.','Equipment','http://vocabulary.odm2.org/actiontype/instrumentRetrieval'),('observation','Observation','The general act of making an observation. This term should be used when a Result is generated but the more specific terms of Instrument deployment or Specimen analysis are not applicable.','Observation','http://vocabulary.odm2.org/actiontype/observation'),('simulation','Simulation','The act of calculating results through the use of a simulation model.','Observation','http://vocabulary.odm2.org/actiontype/simulation'),('siteVisit','Site visit','A field visit action in which a single site is visited for one or more other possible actions (i.e., specimen collection, equipment maintenance, etc.). Site visit actions are typically parents to other related actions.','FieldActivity','http://vocabulary.odm2.org/actiontype/siteVisit'),('specimenAnalysis','Specimen analysis','The analysis of a specimen ex situ using an instrument, typically in a laboratory, for the purpose of measuring properties of that specimen.','Observation','http://vocabulary.odm2.org/actiontype/specimenAnalysis'),('specimenCollection','Specimen collection','The collection of a specimen in the field.','SamplingFeature','http://vocabulary.odm2.org/actiontype/specimenCollection'),('specimenFractionation','Specimen fractionation','The process of separating a specimen into multiple different fractions or size classes.','SamplingFeature','http://vocabulary.odm2.org/actiontype/specimenFractionation'),('specimenPreparation','Specimen preparation','The processing of a specimen collected in the field to produce a sample suitable for analysis using a particular analytical procedure.','SamplingFeature','http://vocabulary.odm2.org/actiontype/specimenPreparation'),('specimenPreservation','Specimen preservation','The act of preserving a specimen collected in the field to produce a sample suitable for analysis using a particular analytical procedure.','SamplingFeature','http://vocabulary.odm2.org/actiontype/specimenPreservation'),('submersibleLaunch','Submersible launch','The act of deploying a submersible from a vessel or ship.','FieldActivity','http://vocabulary.odm2.org/actiontype/submersibleLaunch'); +/*!40000 ALTER TABLE `CV_ActionType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_AggregationStatistic` +-- + +DROP TABLE IF EXISTS `CV_AggregationStatistic`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_AggregationStatistic` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_AggregationStatistic` +-- + +/*!40000 ALTER TABLE `CV_AggregationStatistic` DISABLE KEYS */; +INSERT INTO `CV_AggregationStatistic` VALUES ('average','Average','The values represent the average over a time interval, such as daily mean discharge or daily mean temperature.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/average'),('bestEasySystematicEstimator','Best easy systematic estimator','Best Easy Systematic Estimator BES = (Q1 +2Q2 +Q3)/4. Q1, Q2, and Q3 are first, second, and third quartiles. See Woodcock, F. and Engel, C., 2005: Operational Consensus Forecasts.Weather and Forecasting, 20, 101-111. (http://www.bom.gov.au/nmoc/bulletins/60/article_by_Woodcock_in_Weather_and_Forecasting.pdf) and Wonnacott, T. H., and R. J. Wonnacott, 1972: Introductory Statistics. Wiley, 510 pp.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/bestEasySystematicEstimator'),('categorical','Categorical','The values are categorical rather than continuous valued quantities.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/categorical'),('constantOverInterval','Constant over interval','The values are quantities that can be interpreted as constant for all time, or over the time interval to a subsequent measurement of the same variable at the same site.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/constantOverInterval'),('continuous','Continuous','A quantity specified at a particular instant in time measured with sufficient frequency (small spacing) to be interpreted as a continuous record of the phenomenon.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/continuous'),('cumulative','Cumulative','The values represent the cumulative value of a variable measured or calculated up to a given instant of time, such as cumulative volume of flow or cumulative precipitation.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/cumulative'),('incremental','Incremental','The values represent the incremental value of a variable over a time interval, such as the incremental volume of flow or incremental precipitation.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/incremental'),('maximum','Maximum','The values are the maximum values occurring at some time during a time interval, such as annual maximum discharge or a daily maximum air temperature.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/maximum'),('median','Median','The values represent the median over a time interval, such as daily median discharge or daily median temperature.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/median'),('minimum','Minimum','The values are the minimum values occurring at some time during a time interval, such as 7-day low flow for a year or the daily minimum temperature.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/minimum'),('mode','Mode','The values are the most frequent values occurring at some time during a time interval, such as annual most frequent wind direction.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/mode'),('sporadic','Sporadic','The phenomenon is sampled at a particular instant in time but with a frequency that is too coarse for interpreting the record as continuous. This would be the case when the spacing is significantly larger than the support and the time scale of fluctuation of the phenomenon, such as for example infrequent water quality samples.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/sporadic'),('standardDeviation','Standard deviation','The values represent the standard deviation of a set of observations made over a time interval. Standard deviation computed using the unbiased formula SQRT(SUM((Xi-mean)^2)/(n-1)) are preferred. The specific formula used to compute variance can be noted in the methods description.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/standardDeviation'),('standardErrorOfMean','Standard error of mean','The standard error of the mean (SEM) quantifies the precision of the mean. It is a measure of how far your sample mean is likely to be from the true population mean. It is expressed in the same units as the data.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/standardErrorOfMean'),('standardErrorOfTheMean','Standard error of the mean','The standard error of the mean (SEM) quantifies the precision of the mean. It is a measure of how far your sample mean is likely to be from the true population mean. It is expressed in the same units as the data.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/standardErrorOfTheMean'),('unknown','Unknown','The aggregation statistic is unknown.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/unknown'),('variance','Variance','The values represent the variance of a set of observations made over a time interval. Variance computed using the unbiased formula SUM((Xi-mean)^2)/(n-1) are preferred. The specific formula used to compute variance can be noted in the methods description.',NULL,'http://vocabulary.odm2.org/aggregationstatistic/variance'); +/*!40000 ALTER TABLE `CV_AggregationStatistic` ENABLE KEYS */; + +-- +-- Table structure for table `CV_AnnotationType` +-- + +DROP TABLE IF EXISTS `CV_AnnotationType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_AnnotationType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_AnnotationType` +-- + +/*!40000 ALTER TABLE `CV_AnnotationType` DISABLE KEYS */; +INSERT INTO `CV_AnnotationType` VALUES ('actionAnnotation','Action annotation','An annotation or qualifying comment about an Action','Annotation','http://vocabulary.odm2.org/annotationtype/actionAnnotation'),('actionGroup','Action group','A group of actions such as those that are part of a cruise, expedition, experiment, project, etc.','Group','http://vocabulary.odm2.org/annotationtype/actionGroup'),('categoricalResultValueAnnotation','Categorical result value annotation','An annotation or data qualifying comment applied to a data value from a categorical Result','Annotation','http://vocabulary.odm2.org/annotationtype/categoricalResultValueAnnotation'),('dataSetAnnotation','Dataset annotation','An annotation or qualifying comment about a DataSet','Annotation','http://vocabulary.odm2.org/annotationtype/dataSetAnnotation'),('equipmentAnnotation','Equipment annotation','An annotation or qualifying comment about a piece of Equipment','Annotation','http://vocabulary.odm2.org/annotationtype/equipmentAnnotation'),('measurementResultValueAnnotation','Measurement result value annotation','An annotation or data qualifying comment applied to a data value from a measurement Result','Annotation','http://vocabulary.odm2.org/annotationtype/measurementResultValueAnnotation'),('methodAnnotation','Method annotation','An annotation or qualifiying comment about a Method','Annotation','http://vocabulary.odm2.org/annotationtype/methodAnnotation'),('organizationAnnotation','Organization annotation','An annotation or qualifiying comment about an Organization','Annotation','http://vocabulary.odm2.org/annotationtype/organizationAnnotation'),('personAnnotation','Person annotation','An annotation or qualifying comment about a Person','Annotation','http://vocabulary.odm2.org/annotationtype/personAnnotation'),('personGroup','Person group','A group of people such as a research team, project team, etc.','Group','http://vocabulary.odm2.org/annotationtype/personGroup'),('pointCoverageResultValueAnnotation','Point coverage result value annotation','An annotation or data qualifying comment applied to a data value from a point coverage Result','Annotation','http://vocabulary.odm2.org/annotationtype/pointCoverageResultValueAnnotation'),('profileResultValueAnnotation','Profile result value annotation','An annotation or data qualifying comment applied to a data value from a profile Result','Annotation','http://vocabulary.odm2.org/annotationtype/profileResultValueAnnotation'),('resultAnnotation','Result annotation','An annotation or qualifying comment about a Result','Annotation','http://vocabulary.odm2.org/annotationtype/resultAnnotation'),('samplingFeatureAnnotation','Sampling feature annotation','An annotation or qualifiying comment about a SamplingFeature','Annotation','http://vocabulary.odm2.org/annotationtype/samplingFeatureAnnotation'),('sectionResultValueAnnotation','Section result value annotation','An annotation or data qualifying comment applied to a data value from a section Result','Annotation','http://vocabulary.odm2.org/annotationtype/sectionResultValueAnnotation'),('siteAnnotation','Site annotation','An annotation or qualifying comment about a Site','Annotation','http://vocabulary.odm2.org/annotationtype/siteAnnotation'),('siteGroup','Site group','A group of sites such as a transect, station, observatory, monitoring collection, etc.','Group','http://vocabulary.odm2.org/annotationtype/siteGroup'),('specimenAnnotation','Specimen annotation','An annotation or qualifying comment about a Specimen','Annotation','http://vocabulary.odm2.org/annotationtype/specimenAnnotation'),('specimenGroup','Specimen group','A group of specimens such as an analysis batch, profile, experiment, etc.','Group','http://vocabulary.odm2.org/annotationtype/specimenGroup'),('spectraResultValueAnnotation','Spectra result value annotation','An annotation or data qualifying comment applied to a data value from a spectra Result','Annotation','http://vocabulary.odm2.org/annotationtype/spectraResultValueAnnotation'),('timeSeriesResultValueAnnotation','Time series result value annotation','An annotation or data qualifying comment applied to a data value from a time series Result','Annotation','http://vocabulary.odm2.org/annotationtype/timeSeriesResultValueAnnotation'),('trajectoryResultValueAnnotation','Trajectory result value annotation','An annotation or data qualifying comment applied to a data value from a trajectory Result','Annotation','http://vocabulary.odm2.org/annotationtype/trajectoryResultValueAnnotation'),('transectResultValueAnnotation','Transect result value annotation','An annotation or data qualifying comment applied to a data value from a transect Result','Annotation','http://vocabulary.odm2.org/annotationtype/transectResultValueAnnotation'),('valueGroup','Value group','A group of data values such as those from a profile, analysis, spectra, publication table, dataset, incident reports, etc.','Group','http://vocabulary.odm2.org/annotationtype/valueGroup'),('variableAnnotation','Variable annotation','An annotation or qualifying comment about a Variable','Annotation','http://vocabulary.odm2.org/annotationtype/variableAnnotation'); +/*!40000 ALTER TABLE `CV_AnnotationType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_CensorCode` +-- + +DROP TABLE IF EXISTS `CV_CensorCode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_CensorCode` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_CensorCode` +-- + +/*!40000 ALTER TABLE `CV_CensorCode` DISABLE KEYS */; +INSERT INTO `CV_CensorCode` VALUES ('greaterThan','Greater than','The value is known to be greater than the recorded value.',NULL,'http://vocabulary.odm2.org/censorcode/greaterThan'),('lessThan','Less than','The value is known to be less than the recorded value.',NULL,'http://vocabulary.odm2.org/censorcode/lessThan'),('nonDetect','Non-detect','The value was reported as a non-detect. The recorded value represents the level at which the anlalyte can be detected.',NULL,'http://vocabulary.odm2.org/censorcode/nonDetect'),('notCensored','Not censored','The reported value is not censored.',NULL,'http://vocabulary.odm2.org/censorcode/notCensored'),('presentButNotQuantified','Present but not quantified','The anlayte is known to be present, but was not quantified. The recorded value represents the level below which the analyte can no longer be quantified.',NULL,'http://vocabulary.odm2.org/censorcode/presentButNotQuantified'); +/*!40000 ALTER TABLE `CV_CensorCode` ENABLE KEYS */; + +-- +-- Table structure for table `CV_DataQualityType` +-- + +DROP TABLE IF EXISTS `CV_DataQualityType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_DataQualityType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_DataQualityType` +-- + +/*!40000 ALTER TABLE `CV_DataQualityType` DISABLE KEYS */; +/*!40000 ALTER TABLE `CV_DataQualityType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_DatasetType` +-- + +DROP TABLE IF EXISTS `CV_DatasetType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_DatasetType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_DatasetType` +-- + +/*!40000 ALTER TABLE `CV_DatasetType` DISABLE KEYS */; +INSERT INTO `CV_DatasetType` VALUES ('multiTimeSeries','Multi-time series','A Dataset that contains multiple time series Results. This corresponds to the YAML Observations Data Archive (YODA) multi-time series profile.',NULL,'http://vocabulary.odm2.org/datasettype/multiTimeSeries'),('multiVariableSpecimenMeasurements','Multi-variable specimen measurements','A dataset that contains multiple measurement Results derived from Specimens. This corresponds to the YAML Observations Data Archive (YODA) specimen time series profile.',NULL,'http://vocabulary.odm2.org/datasettype/multiVariableSpecimenMeasurements'),('other','Other','A set of Results that has been grouped into a Dataset because they are logically related. The group does not conform to any particular profile.',NULL,'http://vocabulary.odm2.org/datasettype/other'),('singleTimeSeries','Single time series','A Dataset that contains a single time series Result. This corresponds to the YAML Observations Data Archive (YODA) singe time series profile.',NULL,'http://vocabulary.odm2.org/datasettype/singleTimeSeries'),('specimenTimeSeries','Specimen time series','A dataset that contains multiple measurement Results derived from Specimens. This corresponds to the YAML Observations Data Archive (YODA) specimen time series profile.',NULL,'http://vocabulary.odm2.org/datasettype/specimenTimeSeries'); +/*!40000 ALTER TABLE `CV_DatasetType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_DirectiveType` +-- + +DROP TABLE IF EXISTS `CV_DirectiveType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_DirectiveType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_DirectiveType` +-- + +/*!40000 ALTER TABLE `CV_DirectiveType` DISABLE KEYS */; +INSERT INTO `CV_DirectiveType` VALUES ('fieldCampaign','Field campaign','A sampling event conducted in the field during which instruments may be deployed and during which samples may be collected. Field campaigns typically have a focus such as characterizing a particular environment, quantifying a particular phenomenon, answering a particular research question, etc. and may last for hours, days, weeks, months, or even longer.',NULL,'http://vocabulary.odm2.org/directivetype/fieldCampaign'),('monitoringProgram','Monitoring program','Environmental monitoring that is conducted according to a formal plan that may reflect the overall objectives of an organization, references specific strategies that help deliver the objectives and details of specific projects or tasks, and that contains a listing of what is being monitored, how that monitoring is taking place, and the time-scale over which monitoring should take place.',NULL,'http://vocabulary.odm2.org/directivetype/monitoringProgram'),('project','Project','A collaborative enterprise, involving research or design, the is carefully planned to achieve a particular aim.',NULL,'http://vocabulary.odm2.org/directivetype/project'); +/*!40000 ALTER TABLE `CV_DirectiveType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_ElevationDatum` +-- + +DROP TABLE IF EXISTS `CV_ElevationDatum`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_ElevationDatum` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_ElevationDatum` +-- + +/*!40000 ALTER TABLE `CV_ElevationDatum` DISABLE KEYS */; +INSERT INTO `CV_ElevationDatum` VALUES ('MSL','MSL','Mean Sea Level',NULL,'http://vocabulary.odm2.org/elevationdatum/MSL'),('NAVD88','NAVD88','North American Vertical Datum of 1988',NULL,'http://vocabulary.odm2.org/elevationdatum/NAVD88'),('NGVD29','NGVD29','National Geodetic Vertical Datum of 1929',NULL,'http://vocabulary.odm2.org/elevationdatum/NGVD29'),('Unknown','Unknown','The vertical datum is unknown',NULL,'http://vocabulary.odm2.org/elevationdatum/Unknown'); +/*!40000 ALTER TABLE `CV_ElevationDatum` ENABLE KEYS */; + +-- +-- Table structure for table `CV_EquipmentType` +-- + +DROP TABLE IF EXISTS `CV_EquipmentType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_EquipmentType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_EquipmentType` +-- + +/*!40000 ALTER TABLE `CV_EquipmentType` DISABLE KEYS */; +INSERT INTO `CV_EquipmentType` VALUES ('antenna','Antenna','An electrical device that converts electric power into radio waves and vice versa.','Communications component','http://vocabulary.odm2.org/equipmenttype/antenna'),('automaticLevel','Automatic level','A survey level that makes use of a compensator that ensures the line of sight remains horizontal once the operator has roughly leveled the instrument.','Instrument','http://vocabulary.odm2.org/equipmenttype/automaticLevel'),('battery','Battery','A device consisting of one or more electrochemical cells that convert stored chemical energy into electrical energy.','Power component','http://vocabulary.odm2.org/equipmenttype/battery'),('cable','Cable','Two or more wires running side by side and bonded, twisted, or braided together to form a single assembly.','Peripheral component','http://vocabulary.odm2.org/equipmenttype/cable'),('camera','Camera','A device used to create photographic images',NULL,'http://vocabulary.odm2.org/equipmenttype/camera'),('chargeRegulator','Charge regulator','An electroinic device that limits the rate at which electric current is added to or drawn from electric batteries.','Power component','http://vocabulary.odm2.org/equipmenttype/chargeRegulator'),('datalogger','Datalogger','An electronic device that records data over time or in relation to location either with a built in instrument or sensor or via external instruments and sensors.','Datalogger','http://vocabulary.odm2.org/equipmenttype/datalogger'),('electronicDevice','Electronic device','A generic electronic device',NULL,'http://vocabulary.odm2.org/equipmenttype/electronicDevice'),('enclosure','Enclosure','A cabinet or box within which electrical or electronic equipment are mounted to protect them from the environment.','Platform','http://vocabulary.odm2.org/equipmenttype/enclosure'),('fluorometer','Fluorometer','A device used to measure paramters of flouroescence, including its intensity and wavelength distribution of emission spectrum after excitation by a certain spectrum of light.','Sensor','http://vocabulary.odm2.org/equipmenttype/fluorometer'),('globalPositioningSystemReceiver','Global positioning system receiver','A device that accurately calculates geographical location by receiving information from Global Positioning System satellites.','Sensor','http://vocabulary.odm2.org/equipmenttype/globalPositioningSystemReceiver'),('interface','Interface','A device used to couple multiple other devices.',NULL,'http://vocabulary.odm2.org/equipmenttype/interface'),('laboratoryInstrument','Laboratory instrument','Any type of equipment, apparatus or device designed, constructed and refined to use well proven physical principles, relationships or technology to facilitate or enable the pursuit, acquisition, transduction and storage of repeatable, verifiable data, usually consisting of sets numerical measurements made upon otherwise unknown, unproven quantities, properties, phenomena, materials, forces or etc.','Instrument','http://vocabulary.odm2.org/equipmenttype/laboratoryInstrument'),('levelStaff','Level staff','A graduate wooden, fiberglass, or aluminum rod used to determine differences in elevation.','Instrument','http://vocabulary.odm2.org/equipmenttype/levelStaff'),('mast','Mast','A pole that supports sensors, instruments, or measurement peripherals.','Observation platform','http://vocabulary.odm2.org/equipmenttype/mast'),('measurementTower','Measurement tower','A free standing tower that supports measuring instruments or sensors.','Observation platform','http://vocabulary.odm2.org/equipmenttype/measurementTower'),('multiplexer','Multiplexer','A device that selects one of several analog or digital input signals and forwards the selected input into a single line.',NULL,'http://vocabulary.odm2.org/equipmenttype/multiplexer'),('powerSupply','Power supply','An electronic device that supplies electric energy to an electrical load. The primary function of a power supply is to convert one form of electrical energy to another (e.g., solar to chemical).','Power component','http://vocabulary.odm2.org/equipmenttype/powerSupply'),('pressureTransducer','Pressure transducer','A sensor that measures pressure, typically of gases or liquids.','Sensor','http://vocabulary.odm2.org/equipmenttype/pressureTransducer'),('radio','Radio','A device that transfers information via electromagnetic signals through the atmosphere or free space.','Communications component','http://vocabulary.odm2.org/equipmenttype/radio'),('sampler','Sampler','A device used to collect specimens for later ex situ analysis.','Sampling device','http://vocabulary.odm2.org/equipmenttype/sampler'),('sensor','Sensor','A device that detects events or changes in quantities and provides a corresponding output, generally as an electrical or optical signal.','Sensor','http://vocabulary.odm2.org/equipmenttype/sensor'),('solarPanel','Solar panel','A photovoltaic module that is electrically connected and mounted on a supporting structure. Used to generate and supply electricity.','Power component','http://vocabulary.odm2.org/equipmenttype/solarPanel'),('stormBox','Storm box','An enclosure used to protect electronic equipment used for stormwater sampling.','Platform','http://vocabulary.odm2.org/equipmenttype/stormBox'),('totalStation','Total station','An electronic and optical instrument used in modern surveying and building construction. A total station is an electronic theodoloite integrated with an electronic distance meter to read slope distances from the instrument to a particular point.','Instrument','http://vocabulary.odm2.org/equipmenttype/totalStation'),('tripod','Tripod','A portable, three-legged frame used as a platform for supporting the weight and maintaining the stability of some other object. Typically used as a data collection platform to which sensors are attached.','Observation platform','http://vocabulary.odm2.org/equipmenttype/tripod'),('turbidimeter','Turbidimeter','A water quality sensor that monitors light reflected off the particles suspended in water.','Sensor','http://vocabulary.odm2.org/equipmenttype/turbidimeter'),('waterQualitySonde','Water quality sonde','A water quality monitoring instrument having multiple attached sensors.','Sensor','http://vocabulary.odm2.org/equipmenttype/waterQualitySonde'); +/*!40000 ALTER TABLE `CV_EquipmentType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_Medium` +-- + +DROP TABLE IF EXISTS `CV_Medium`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_Medium` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_Medium` +-- + +/*!40000 ALTER TABLE `CV_Medium` DISABLE KEYS */; +INSERT INTO `CV_Medium` VALUES ('air','Air','Specimen collection of ambient air or sensor emplaced to measure properties of ambient air.',NULL,'http://vocabulary.odm2.org/medium/air'),('gas','Gas','Gas phase specimen or sensor emplaced to measure properties of a gas.',NULL,'http://vocabulary.odm2.org/medium/gas'),('ice','Ice','Sample collected as frozen water or sensor emplaced to measure properties of ice.',NULL,'http://vocabulary.odm2.org/medium/ice'),('liquidAqueous','Liquid aqueous','Specimen collected as liquid water or sensor emplaced to measure properties of water in sampled environment.',NULL,'http://vocabulary.odm2.org/medium/liquidAqueous'),('liquidOrganic','Liquid organic','Specimen collected as an organic liquid.',NULL,'http://vocabulary.odm2.org/medium/liquidOrganic'),('mineral','Mineral','Specimen collected as a mineral.',NULL,'http://vocabulary.odm2.org/medium/mineral'),('notApplicable','Not applicable','There is no applicable sampled medium.',NULL,'http://vocabulary.odm2.org/medium/notApplicable'),('organism','Organism','Data collected about a species at organism level.',NULL,'http://vocabulary.odm2.org/medium/organism'),('other','Other','Other.',NULL,'http://vocabulary.odm2.org/medium/other'),('particulate','Particulate','Specimen collected from particulates suspended in a paticulate-fluid mixture. Examples include particulates in water or air.',NULL,'http://vocabulary.odm2.org/medium/particulate'),('rock','Rock','Specimen collected from a naturally occuring solid aggregate of one or more minerals.',NULL,'http://vocabulary.odm2.org/medium/rock'),('sediment','Sediment','Specimen collected from material broken down by processes of weathering and erosion and subsequently transported by the action of wind, water, or ice, and/or by the force of gravity acting on the particles. Sensors may also be emplaced to measure sediment properties.',NULL,'http://vocabulary.odm2.org/medium/sediment'),('snow','Snow','Observation in, of or sample taken from snow.',NULL,'http://vocabulary.odm2.org/medium/snow'),('soil','Soil','Specimen collected from soil or sensor emplaced to measure properties of soil. Soil includes the mixture of minerals, organic matter, gasses, liquids, and organisms that make up the upper layer of earth in which plants grow. ',NULL,'http://vocabulary.odm2.org/medium/soil'),('tissue','Tissue','Sample of a living organism\'s tissue or sensor emplaced to measure property of tissue.',NULL,'http://vocabulary.odm2.org/medium/tissue'),('unknown','Unknown','The sampled medium is unknown.',NULL,'http://vocabulary.odm2.org/medium/unknown'); +/*!40000 ALTER TABLE `CV_Medium` ENABLE KEYS */; + +-- +-- Table structure for table `CV_MethodType` +-- + +DROP TABLE IF EXISTS `CV_MethodType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_MethodType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_MethodType` +-- + +/*!40000 ALTER TABLE `CV_MethodType` DISABLE KEYS */; +INSERT INTO `CV_MethodType` VALUES ('cruise','Cruise','A method for performing a cruise action.','FieldActivity','http://vocabulary.odm2.org/methodtype/cruise'),('dataRetrieval','Data retrieval','A method for retrieving data from a datalogger deployed at a monitoring site.','Equipment','http://vocabulary.odm2.org/methodtype/dataRetrieval'),('derivation','Derivation','A method for creating results by deriving them from other results.','Observation','http://vocabulary.odm2.org/methodtype/derivation'),('equipmentDeployment','Equipment deployment','A method for deploying a piece of equipment that will not make observations at a sampling feature.','Observation','http://vocabulary.odm2.org/methodtype/equipmentDeployment'),('equipmentMaintenance','Equipment maintenance','A method for performing periodic upkeep or servicing of field or laboratory equipment. Maintenance may be performed in the field, in a laboratory, or at a factory maintenance center.','Equipment','http://vocabulary.odm2.org/methodtype/equipmentMaintenance'),('equipmentProgramming','Equipment programming','A method for creating or modifying the data collection program running on a datalogger or other equipment deployed at a monitoring site. ',NULL,'http://vocabulary.odm2.org/methodtype/equipmentProgramming'),('equipmentRetrieval','Equipment retrieval','A method for retrieving equipment from a sampling feature at which or on which it was deployed.','Equipment','http://vocabulary.odm2.org/methodtype/equipmentRetrieval'),('estimation','Estimation','A method for creating results by estimation or professional judgement.','Observation','http://vocabulary.odm2.org/methodtype/estimation'),('expedition','Expedition','A method for performing an expedition action.','FieldActivity','http://vocabulary.odm2.org/methodtype/expedition'),('fieldActivity','Field activity','A method for performing an activity in the field at or on a sampling feature.','FieldActivity','http://vocabulary.odm2.org/methodtype/fieldActivity'),('genericNonObservation','Generic non-observation','A method for completing a non-specific action that does not produce a result.','Other','http://vocabulary.odm2.org/methodtype/genericNonObservation'),('instrumentCalibration','Instrument calibration','A method for calibrating an instrument either in the field or in the laboratory. ','Equipment','http://vocabulary.odm2.org/methodtype/instrumentCalibration'),('instrumentDeployment','Instrument deployment','A method for deploying an instrument to make observations at a sampling feature.','Observation','http://vocabulary.odm2.org/methodtype/instrumentDeployment'),('instrumentRetrieval','Instrument retrieval','A method for retrieving or recovering an instrument that has been deployed at a smpling feature.','Equipment','http://vocabulary.odm2.org/methodtype/instrumentRetrieval'),('observation','Observation','A method for creating observation results. This term should be used when a Result is generated but the more specific terms of Instrument deployment or Specimen analysis are not applicable.','Observation','http://vocabulary.odm2.org/methodtype/observation'),('simulation','Simulation','A method for creating results by running a simulation model.','Observation','http://vocabulary.odm2.org/methodtype/simulation'),('siteVisit','Site visit','A method for performing a site visit action.','FieldActivity','http://vocabulary.odm2.org/methodtype/siteVisit'),('specimenAnalysis','Specimen analysis','A method for ex situ analysis of a specimen using an instrument, typically in a laboratory, for the purpose of measuring properties of a specimen.','Observation','http://vocabulary.odm2.org/methodtype/specimenAnalysis'),('specimenCollection','Specimen collection','A method for collecting a specimen for ex situ analysis.','SamplingFeature','http://vocabulary.odm2.org/methodtype/specimenCollection'),('specimenFractionation','Specimen fractionation','A method for separating a specimen into multiple different fractions or size classes.','SamplingFeature','http://vocabulary.odm2.org/methodtype/specimenFractionation'),('specimenPreparation','Specimen preparation','A method for processing a specimen collected in the field to produce a sample suitable for analysis using a particular analytical procedure.','SamplingFeature','http://vocabulary.odm2.org/methodtype/specimenPreparation'),('specimenPreservation','Specimen preservation','A method for preserving a specimen either in the field or in a laboratory prior to ex situ analysis.','SamplingFeature','http://vocabulary.odm2.org/methodtype/specimenPreservation'),('submersibleLaunch','Submersible launch','A method for launching a submersible from a vessel or ship.','FieldActivity','http://vocabulary.odm2.org/methodtype/submersibleLaunch'),('unknown','Unknown','The method type is unknown.','Other','http://vocabulary.odm2.org/methodtype/unknown'); +/*!40000 ALTER TABLE `CV_MethodType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_OrganizationType` +-- + +DROP TABLE IF EXISTS `CV_OrganizationType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_OrganizationType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_OrganizationType` +-- + +/*!40000 ALTER TABLE `CV_OrganizationType` DISABLE KEYS */; +INSERT INTO `CV_OrganizationType` VALUES ('analyticalLaboratory','Analytical laboratory','A laboratory within which ex situ analysis of of environmental samples is performed.',NULL,'http://vocabulary.odm2.org/organizationtype/analyticalLaboratory'),('association','Association','A group of persons associated for a common purpose.',NULL,'http://vocabulary.odm2.org/organizationtype/association'),('center','Center','A place where some function or activity occurs.',NULL,'http://vocabulary.odm2.org/organizationtype/center'),('college','College','An institution of higher education.',NULL,'http://vocabulary.odm2.org/organizationtype/college'),('company','Company','An business entity that provides services.',NULL,'http://vocabulary.odm2.org/organizationtype/company'),('consortium','Consortium','An association of individuals or organizations for the purpose of engaging in a joint venture.',NULL,'http://vocabulary.odm2.org/organizationtype/consortium'),('department','Department','A subdivision or unit within a university, institution, or agency.',NULL,'http://vocabulary.odm2.org/organizationtype/department'),('division','Division','A section of a large company, agency, or organization.',NULL,'http://vocabulary.odm2.org/organizationtype/division'),('foundation','Foundation','An institution or organization supported by a donation or legacy appropriation.',NULL,'http://vocabulary.odm2.org/organizationtype/foundation'),('fundingOrganization','Funding organization','An organization that funds research or creative works.',NULL,'http://vocabulary.odm2.org/organizationtype/fundingOrganization'),('governmentAgency','Government agency','A department or other administrative unit of a government.',NULL,'http://vocabulary.odm2.org/organizationtype/governmentAgency'),('institute','Institute','An organization founded to promote a cause.',NULL,'http://vocabulary.odm2.org/organizationtype/institute'),('laboratory','Laboratory','A room, building, or institution equipped for scientific research, experimentation, or analysis.',NULL,'http://vocabulary.odm2.org/organizationtype/laboratory'),('library','Library','An institution that holds books and or other forms of stored information for use by the public or other experts.',NULL,'http://vocabulary.odm2.org/organizationtype/library'),('manufacturer','Manufacturer','A person or company that makes a product.',NULL,'http://vocabulary.odm2.org/organizationtype/manufacturer'),('museum','Museum','A building or institution dedicated to the acquisition, conservation, study, exhibition, and educational interpretation of objects having scientific, historical, cultural, or artistic value.',NULL,'http://vocabulary.odm2.org/organizationtype/museum'),('program','Program','A set of structured activities.',NULL,'http://vocabulary.odm2.org/organizationtype/program'),('publisher','Publisher','An organization that publishes data.',NULL,'http://vocabulary.odm2.org/organizationtype/publisher'),('researchAgency','Research agency','A department or other administrative unit of a government with the express purpose of conducting research.',NULL,'http://vocabulary.odm2.org/organizationtype/researchAgency'),('researchInstitute','Research institute','An organization founded to conduct research.',NULL,'http://vocabulary.odm2.org/organizationtype/researchInstitute'),('researchOrganization','Research organization','A group of cooperating researchers.',NULL,'http://vocabulary.odm2.org/organizationtype/researchOrganization'),('school','School','An educational institution providing primary or secondary education.',NULL,'http://vocabulary.odm2.org/organizationtype/school'),('studentOrganization','Student organization','A group of students who associate for a particular purpose. ',NULL,'http://vocabulary.odm2.org/organizationtype/studentOrganization'),('university','University','An institution of higher education.',NULL,'http://vocabulary.odm2.org/organizationtype/university'),('unknown','Unknown','The organization type is unknown.',NULL,'http://vocabulary.odm2.org/organizationtype/unknown'),('vendor','Vendor','A person or company that sells a product.',NULL,'http://vocabulary.odm2.org/organizationtype/vendor'); +/*!40000 ALTER TABLE `CV_OrganizationType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_PropertyDataType` +-- + +DROP TABLE IF EXISTS `CV_PropertyDataType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_PropertyDataType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_PropertyDataType` +-- + +/*!40000 ALTER TABLE `CV_PropertyDataType` DISABLE KEYS */; +INSERT INTO `CV_PropertyDataType` VALUES ('boolean','Boolean','A boolean type is typically a logical type that can be either \"true\" or \"false\".',NULL,'http://vocabulary.odm2.org/propertydatatype/boolean'),('floatingPointNumber','Floading point number','A floating-point number represents a limited-precision rational number that may have a fractional part. ',NULL,'http://vocabulary.odm2.org/propertydatatype/floatingPointNumber'),('integer','Integer','An integer data type can hold a whole number, but no fraction. Integers may be either signed (allowing negative values) or unsigned (nonnegative values only). ',NULL,'http://vocabulary.odm2.org/propertydatatype/integer'),('string','String','An array of characters including letters, digits, punctuation marks, symbols, etc.',NULL,'http://vocabulary.odm2.org/propertydatatype/string'); +/*!40000 ALTER TABLE `CV_PropertyDataType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_QualityCode` +-- + +DROP TABLE IF EXISTS `CV_QualityCode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_QualityCode` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_QualityCode` +-- + +/*!40000 ALTER TABLE `CV_QualityCode` DISABLE KEYS */; +INSERT INTO `CV_QualityCode` VALUES ('bad','Bad','A quality assessment has been made and enough of the data quality objectives have not been met that the observation has been assessed to be of bad quality.',NULL,'http://vocabulary.odm2.org/qualitycode/bad'),('good','Good','A quality assessment has been made and all data quality objectives have been met.',NULL,'http://vocabulary.odm2.org/qualitycode/good'),('marginal','Marginal','A quality assessment has been made and one or more data quality objectives has not been met. The observation may be suspect and has been assessed to be of marginal quality.',NULL,'http://vocabulary.odm2.org/qualitycode/marginal'),('none','None','No data quality assessment has been made.',NULL,'http://vocabulary.odm2.org/qualitycode/none'),('unknown','Unknown','The quality of the observation is unknown.',NULL,'http://vocabulary.odm2.org/qualitycode/unknown'); +/*!40000 ALTER TABLE `CV_QualityCode` ENABLE KEYS */; + +-- +-- Table structure for table `CV_RelationshipType` +-- + +DROP TABLE IF EXISTS `CV_RelationshipType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_RelationshipType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_RelationshipType` +-- + +/*!40000 ALTER TABLE `CV_RelationshipType` DISABLE KEYS */; +INSERT INTO `CV_RelationshipType` VALUES ('cites','Cites','Use to indicate a relation to the work that the resource is citing/quoting.',NULL,'http://vocabulary.odm2.org/relationshiptype/cites'),('compiles','Compiles','Use to indicate the resource is used for creating another resource or dataset.',NULL,'http://vocabulary.odm2.org/relationshiptype/compiles'),('continues','Continues','Use to indicate the resource is a continuation of the work referenced by the related identifier.',NULL,'http://vocabulary.odm2.org/relationshiptype/continues'),('documents','Documents','Use to indicate the relation to the work which is documentation.',NULL,'http://vocabulary.odm2.org/relationshiptype/documents'),('hasPart','Has part','Use to indicate the resource is a container of another resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/hasPart'),('isAttachedTo','Is attached to','Used to indicate that one entity is attached to another. For example this term can be used to express the fact that a piece of equipment is attached to a related piece of equipment.',NULL,'http://vocabulary.odm2.org/relationshiptype/isAttachedTo'),('isChildOf','Is child of','Used to indicate that one entity is an immediate child of another entity. For example, this term can be used to express the fact that an instrument deployment Action is the child of a site visit Action.',NULL,'http://vocabulary.odm2.org/relationshiptype/isChildOf'),('isCitationFor','Is citation for','Used to indicate the relationship between a Citation and the entity for which it is the Citation.',NULL,'http://vocabulary.odm2.org/relationshiptype/isCitationFor'),('isCitedBy','Is cited by','Use to indicate the relation to a work that cites/quotes this data.',NULL,'http://vocabulary.odm2.org/relationshiptype/isCitedBy'),('isCompiledBy','Is compiled by','Use to indicate the resource or data is compiled/created by using another resource or dataset.',NULL,'http://vocabulary.odm2.org/relationshiptype/isCompiledBy'),('isContinuedBy','Is continued by','Use to indicate the resource is continued by the work referenced by the related identifier.',NULL,'http://vocabulary.odm2.org/relationshiptype/isContinuedBy'),('isDerivedFrom','Is derived from','Used to indicate the relation to the works from which the resource was derived.',NULL,'http://vocabulary.odm2.org/relationshiptype/isDerivedFrom'),('isDocumentedBy','Is documented by','Use to indicate the work is documentation about/explaining the resource referenced by the related identifier.',NULL,'http://vocabulary.odm2.org/relationshiptype/isDocumentedBy'),('isIdenticalTo','Is identical to','Used to indicate the relation to a work that is identical to the resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isIdenticalTo'),('isNewVersionOf','Is new version of','Use to indicate the resource is a new edition of an old resource, where the new edition has been modified or updated.',NULL,'http://vocabulary.odm2.org/relationshiptype/isNewVersionOf'),('isOriginalFormOf','Is original form of','Use to indicate the relation to the works which are variant or different forms of the resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isOriginalFormOf'),('isPartOf','Is part of','Use to indicate the resource is a portion of another resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isPartOf'),('isPreviousVersionOf','Is previous version of','Use to indicate the resource is a previous edition of a newer resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isPreviousVersionOf'),('isReferencedBy','Is referenced by','Use to indicate the resource is used as a source of information by another resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isReferencedBy'),('isRelatedTo','Is related to','Used to indicate that one entity has a complex relationship with another entity that is not a simple, hierarchical parent-child relationship. For example, this term can be used to express the fact that an instrument cleaning Action is related to an instrument deployment action even though it may be performed as part of a separate site visit.',NULL,'http://vocabulary.odm2.org/relationshiptype/isRelatedTo'),('isRetrievalfor','Is retrieval for','Use to indicate the action is a retrieval of a previous deployment.','Action','http://vocabulary.odm2.org/relationshiptype/isRetrievalfor'),('isReviewedBy','Is reviewed by','Used to indicate that the work is reviewed by another resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isReviewedBy'),('isSourceOf','Is source of','Used to indicate the relation to the works that were the source of the resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isSourceOf'),('isSupplementTo','Is supplement to','Use to indicate the relation to the work to which the resource is a supplement.',NULL,'http://vocabulary.odm2.org/relationshiptype/isSupplementTo'),('isSupplementedBy','Is supplemented by','Use to indicate the relation to the work(s) which are supplements of the resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/isSupplementedBy'),('isVariantFormOf','Is variant form of','Use to indicate the resource is a variant or different form of another resource, e.g. calculated or calibrated form or different packaging.',NULL,'http://vocabulary.odm2.org/relationshiptype/isVariantFormOf'),('references','References','Use to indicate the relation to the work which is used as a source of information of the resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/references'),('Reviews','Reviews','Used to indicate that the work reviews another resource.',NULL,'http://vocabulary.odm2.org/relationshiptype/Reviews'),('wasCollectedAt','Was collected at','Used to indicate that one entity was collected at the location of another entity. For example, thirs term can be used to express the fact that a specimen SamplingFeature was collected at a site SamplingFeature.',NULL,'http://vocabulary.odm2.org/relationshiptype/wasCollectedAt'); +/*!40000 ALTER TABLE `CV_RelationshipType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_ResultType` +-- + +DROP TABLE IF EXISTS `CV_ResultType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_ResultType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_ResultType` +-- + +/*!40000 ALTER TABLE `CV_ResultType` DISABLE KEYS */; +INSERT INTO `CV_ResultType` VALUES ('categoryObservation','Category observation','A single ResultValue for a single Variable, measured on or at a single SamplingFeature, using a single Method.','Measurement','http://vocabulary.odm2.org/resulttype/categoryObservation'),('countObservation','Count observation','A single ResultValue for a single Variable, counted on or at a single SamplingFeature, using a single Method, and having a specific ProcessingLevel.','Measurement','http://vocabulary.odm2.org/resulttype/countObservation'),('measurement','Measurement','A single ResultValue for a single Variable, measured on or at a SamplingFeature, using a single Method, with specific Units, and having a specific ProcessingLevel.','Measurement','http://vocabulary.odm2.org/resulttype/measurement'),('pointCoverage','Point coverage','A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, with a fixed ValueDateTime, but measured over varying X,Y locations, where X and Y are horizontal coordinates.','Coverage','http://vocabulary.odm2.org/resulttype/pointCoverage'),('profileCoverage','Profile coverage','A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over multiple locations along a depth profile with only one varying location dimension (e.g., Z, where Z is depth). ValueDateTime may be fixed or controlled.','Coverage','http://vocabulary.odm2.org/resulttype/profileCoverage'),('sectionCoverage','Section coverage','A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over varying X (horizontal) and Z (depth) coordinates. ValueDateTime may be fixed or controlled.','Coverage','http://vocabulary.odm2.org/resulttype/sectionCoverage'),('spectraCoverage','Spectra coverage','A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over multiple wavelengths of light. ValueDateTime may be fixed or controlled.','Coverage','http://vocabulary.odm2.org/resulttype/spectraCoverage'),('temporalObservation','Temporal observation','A single ResultValue for a single Variable, measured on or at a SamplingFeature, using a single Method, with specific Units, and having a specific ProcessingLevel.','Measurement','http://vocabulary.odm2.org/resulttype/temporalObservation'),('timeSeriesCoverage','Time series coverage','A series of ResultValues for a single Variable, measured on or at a single SamplingFeature of fixed location, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over time.','Coverage','http://vocabulary.odm2.org/resulttype/timeSeriesCoverage'),('trajectoryCoverage','Trajectory coverage','A series of ResultValues for a single Variable, measured on a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over varying X,Y, Z, and D locations, where X and Y are horizontal coordinates, Z is a vertical coordinate, and D is the distance along the trajectory. ValueDateTime may be fixed (DTS Temperature) or controlled (glider).','Coverage','http://vocabulary.odm2.org/resulttype/trajectoryCoverage'),('transectCoverage','Transect coverage','A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over multiple locations along a transect having varying location dimensions (e.g., X and/or Y, where X and Y are horizontal coordintes). ValueDateTime may be fixed or controlled.','Coverage','http://vocabulary.odm2.org/resulttype/transectCoverage'),('truthObservation','Truth observation','A single ResultValue for a single Variable, measured on or at a single SamplingFeature, using a single Method.','Measurement','http://vocabulary.odm2.org/resulttype/truthObservation'); +/*!40000 ALTER TABLE `CV_ResultType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_SamplingFeatureGeoType` +-- + +DROP TABLE IF EXISTS `CV_SamplingFeatureGeoType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_SamplingFeatureGeoType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_SamplingFeatureGeoType` +-- + +/*!40000 ALTER TABLE `CV_SamplingFeatureGeoType` DISABLE KEYS */; +INSERT INTO `CV_SamplingFeatureGeoType` VALUES ('lineString','Line string','A subclass of a Curve using linear interpolation between points. A Curve is a 1-dimensional geometric object usually stored as a sequence of Points. Represented in 2D coordinates by FeatureGeometry.','2D','http://vocabulary.odm2.org/samplingfeaturegeotype/lineString'),('multiLineString','Multi line string','A collection of individual lines, used as a single feature. Represented in 2D coordinates by FeatureGeometry.','2D','http://vocabulary.odm2.org/samplingfeaturegeotype/multiLineString'),('multiPoint','Multi point','A collection of individual points, used as a single feature. Represented in 2D coordinates by FeatureGeometry.','2D','http://vocabulary.odm2.org/samplingfeaturegeotype/multiPoint'),('multiPolygon','Multi polygon','A collection of individual polygons, used as a single feature. Represented in 2D coordinates by FeatureGeometry.','2D','http://vocabulary.odm2.org/samplingfeaturegeotype/multiPolygon'),('notApplicable','Not applicable','The sampling feature has no applicable geospatial feature type','Non-spatial','http://vocabulary.odm2.org/samplingfeaturegeotype/notApplicable'),('point','Point','Topological 0-dimensional geometric primitive representing a position. Represented in 2D coordinates by FeatureGeometry.','2D','http://vocabulary.odm2.org/samplingfeaturegeotype/point'),('polygon','Polygon','A planar Surface defined by 1 exterior boundary and 0 or more interior boundaries. Each interior boundary defines a hole in the Polygon. Polygons are topologically closed. Polygons are a subclass of Surface that is planar. A Surface is a 2-dimensonal geometric object. Represented in 2D coordinates by FeatureGeometry.','2D','http://vocabulary.odm2.org/samplingfeaturegeotype/polygon'),('volume','Volume','A three dimensional space enclosed by some closed boundary.','3D','http://vocabulary.odm2.org/samplingfeaturegeotype/volume'); +/*!40000 ALTER TABLE `CV_SamplingFeatureGeoType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_SamplingFeatureType` +-- + +DROP TABLE IF EXISTS `CV_SamplingFeatureType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_SamplingFeatureType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_SamplingFeatureType` +-- + +/*!40000 ALTER TABLE `CV_SamplingFeatureType` DISABLE KEYS */; +INSERT INTO `CV_SamplingFeatureType` VALUES ('borehole','Borehole','A narrow shaft bored into the ground, either vertically or horizontally. A borehole includes the hole cavity and walls surrounding that cavity. ','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/borehole'),('crossSection','Cross section','The intersection of a body in three-dimensional space with a plane. Represented as a polygon. ','SamplingSurface','http://vocabulary.odm2.org/samplingfeaturetype/crossSection'),('CTD','CTD','A CTD (Conductivity, Temperature, and Depth) cast is a water column depth profile collected over a specific and relatively short date-time range, that can be considered as a parent specimen.','Specimen','http://vocabulary.odm2.org/samplingfeaturetype/CTD'),('depthInterval','Depth interval','A discrete segment along a longer vertical path, such as a borehole, soil profile or other depth profile, in which an observation or specimen is collected over the distance between the upper and lower depth limits of the interval. A Depth Interval is a sub-type of Interval.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/depthInterval'),('excavation','Excavation','An artificially constructed cavity in the earth that is deeper than the soil, larger than a well bore, and substantially open to the atmosphere. The diameter of an excavation is typically similar or larger than the depth. Excavations include building-foundation diggings, roadway cuts, and surface mines.','SamplingSolid','http://vocabulary.odm2.org/samplingfeaturetype/excavation'),('fieldArea','Field area','A location at which field experiments or observations of ambient conditions are conducted. A field area may contain many sites and has a geographical footprint that can be represented by a polygon.','SamplingSurface','http://vocabulary.odm2.org/samplingfeaturetype/fieldArea'),('flightline','Flightline','A path along which an aircraft travels while measuring a phenomena of study.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/flightline'),('interval','Interval','A discrete segment along a longer path in which an observation or specimen is collected over the distance between the upper and lower bounds of the interval. A Depth Interval is a sub-type of Interval.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/interval'),('observationWell','Observation well','A hole or shaft constructed in the earth intended to be used to locate, sample, or develop groundwater, oil, gas, or some other subsurface material. The diameter of a well is typically much smaller than the depth. Wells are also used to artificially recharge groundwater or to pressurize oil and gas production zones. Specific kinds of wells should be specified in the SamplingFeature description. For example, underground waste-disposal wells should be classified as waste injection wells.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/observationWell'),('profile','Profile','A one-dimensional grid at fixed (x, y, t) coordinates within a four-dimensional (x, y, z, t) coordinate reference system. The grid axis is aligned with the coordinate reference system z-axis. Typically used to characterize or measure phenomena as a function of depth.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/profile'),('quadrat','Quadrat','A small plot used to isolate a standard unit of area for study of the distribution of an item over a large area.','SamplingSurface','http://vocabulary.odm2.org/samplingfeaturetype/quadrat'),('scene','Scene','A two-dimensional visual extent within a physical environment.','SamplingSurface','http://vocabulary.odm2.org/samplingfeaturetype/scene'),('shipsTrack','Ships track','A path along which a ship or vessel travels while measuring a phenomena of study. Represented as a line connecting the ship\'s consecutive positions on the surface of the earth.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/shipsTrack'),('site','Site','A facility or location at which observations have been collected. A site may have instruments or equipment installed and may contain multiple other sampling features (e.g., a stream gage, weather station, observation well, etc.). Additionally, many specimen sampling features may be collected at a site. Sites are also often referred to as stations. A site is represented as a point, but it may have a geographical footprint that is not a point. The site coordinates serve as a reference for the site and offsets may be specified from this reference location.','SamplingPoint','http://vocabulary.odm2.org/samplingfeaturetype/site'),('soilPitSection','Soil pit section','Two-dimensional vertical face of a soil pit that is described and sampled.','SamplingSurface','http://vocabulary.odm2.org/samplingfeaturetype/soilPitSection'),('specimen','Specimen','A physical sample (object or entity) obtained for observations, typically performed ex situ, often in a laboratory. ','Specimen','http://vocabulary.odm2.org/samplingfeaturetype/specimen'),('streamGage','Stream gage','A location used to monitor and test terrestrial bodies of water. Hydrometric measurements of water level, surface elevation (\"stage\") and/or volumetric discharge (flow) are generally taken, and observations of biota and water quality may also be made. ','SamplingPoint','http://vocabulary.odm2.org/samplingfeaturetype/streamGage'),('trajectory','Trajectory','The path that a moving object follows through space as a function of time. A trajectory can be described by the geometry of the path or as the position of the object over time. ','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/trajectory'),('transect','Transect','A path along which ocurrences of a phenomena of study are counted or measured.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/transect'),('traverse','Traverse','A field control network consisting of survey stations placed along a line or path of travel.','SamplingCurve','http://vocabulary.odm2.org/samplingfeaturetype/traverse'),('waterQualityStation','Water quality station','A location used to monitor and test the quality of terrestrial bodies of water. Water quality stations may be locations at which physical water samples are collected for ex situ analysis. Water qulaity stations may also have instruments and equipment for continuous, in situ measurement of water quality variables. ','SamplingPoint','http://vocabulary.odm2.org/samplingfeaturetype/waterQualityStation'),('weatherStation','Weather station','A facility, either on land or sea, with instruments and equipment for measuring atmospheric conditions to provide information for weather forecasts and to study weather and climate.','SamplingPoint','http://vocabulary.odm2.org/samplingfeaturetype/weatherStation'); +/*!40000 ALTER TABLE `CV_SamplingFeatureType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_SiteType` +-- + +DROP TABLE IF EXISTS `CV_SiteType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_SiteType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_SiteType` +-- + +/*!40000 ALTER TABLE `CV_SiteType` DISABLE KEYS */; +INSERT INTO `CV_SiteType` VALUES ('aggregateGroundwaterUse','Aggregate groundwater use','An Aggregate Groundwater Withdrawal/Return site represents an aggregate of specific sites where groundwater is withdrawn or returned which is defined by a geographic area or some other common characteristic. An aggregate groundwater site type is used when it is not possible or practical to describe the specific sites as springs or as any type of well including \'multiple wells\', or when water-use information is only available for the aggregate. ','Aggregated Use Sites','http://vocabulary.odm2.org/sitetype/aggregateGroundwaterUse'),('aggregateSurfaceWaterUse','Aggregate surface-water-use','An Aggregate Surface-Water Diversion/Return site represents an aggregate of specific sites where surface water is diverted or returned which is defined by a geographic area or some other common characteristic. An aggregate surface-water site type is used when it is not possible or practical to describe the specific sites as diversions, outfalls, or land application sites, or when water-use information is only available for the aggregate. ','Aggregated Use Sites','http://vocabulary.odm2.org/sitetype/aggregateSurfaceWaterUse'),('aggregateWaterUseEstablishment','Aggregate water-use establishment','An Aggregate Water-Use Establishment represents an aggregate class of water-using establishments or individuals that are associated with a specific geographic location and water-use category, such as all the industrial users located within a county or all self-supplied domestic users in a county. An aggregate water-use establishment site type is used when specific information needed to create sites for the individual facilities or users is not available or when it is not desirable to store the site-specific information in the database. ','Aggregated Use Sites','http://vocabulary.odm2.org/sitetype/aggregateWaterUseEstablishment'),('animalWasteLagoon','Animal waste lagoon','A facility for storage and/or biological treatment of wastes from livestock operations. Animal-waste lagoons are earthen structures ranging from pits to large ponds, and contain manure which has been diluted with building washwater, rainfall, and surface runoff. In treatment lagoons, the waste becomes partially liquefied and stabilized by bacterial action before the waste is disposed of on the land and the water is discharged or re-used.','Facility Sites','http://vocabulary.odm2.org/sitetype/animalWasteLagoon'),('atmosphere','Atmosphere','A site established primarily to measure meteorological properties or atmospheric deposition.','Atmospheric Sites','http://vocabulary.odm2.org/sitetype/atmosphere'),('canal','Canal','An artificial watercourse designed for navigation, drainage, or irrigation by connecting two or more bodies of water; it is larger than a ditch.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/canal'),('cave','Cave','A natural open space within a rock formation large enough to accommodate a human. A cave may have an opening to the outside, is always underground, and sometimes submerged. Caves commonly occur by the dissolution of soluble rocks, generally limestone, but may also be created within the voids of large-rock aggregations, in openings along seismic faults, and in lava formations.','Groundwater Sites','http://vocabulary.odm2.org/sitetype/cave'),('cistern','Cistern','An artificial, non-pressurized reservoir filled by gravity flow and used for water storage. The reservoir may be located above, at, or below ground level. The water may be supplied from diversion of precipitation, surface, or groundwater sources.','Water Infrastructure Sites','http://vocabulary.odm2.org/sitetype/cistern'),('coastal','Coastal','An oceanic site that is located off-shore beyond the tidal mixing zone (estuary) but close enough to the shore that the investigator considers the presence of the coast to be important. Coastal sites typically are within three nautical miles of the shore.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/coastal'),('combinedSewer','Combined sewer','An underground conduit created to convey storm drainage and waste products into a wastewater-treatment plant, stream, reservoir, or disposal site.','Water Infrastructure Sites','http://vocabulary.odm2.org/sitetype/combinedSewer'),('composite','Composite','A Composite site represents an aggregation of specific sites defined by a geographic location at which multiple sampling features have been installed. For example, a composite site might consist of a location on a stream where a streamflow gage, weather station, and shallow groundwater well have been installed.','Composite Sites','http://vocabulary.odm2.org/sitetype/composite'),('ditch','Ditch','An excavation artificially dug in the ground, either lined or unlined, for conveying water for drainage or irrigation; it is smaller than a canal.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/ditch'),('diversion','Diversion','A site where water is withdrawn or diverted from a surface-water body (e.g. the point where the upstream end of a canal intersects a stream, or point where water is withdrawn from a reservoir). Includes sites where water is pumped for use elsewhere.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/diversion'),('estuary','Estuary','A coastal inlet of the sea or ocean; esp. the mouth of a river, where tide water normally mixes with stream water (modified, Webster). Salinity in estuaries typically ranges from 1 to 25 Practical Salinity Units (psu), as compared oceanic values around 35-psu. See also: tidal stream and coastal.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/estuary'),('facility','Facility','A non-ambient location where environmental measurements are expected to be strongly influenced by current or previous activities of humans. *Sites identified with a \"facility\" primary site type must be further classified with one of the applicable secondary site types.','Facility Sites','http://vocabulary.odm2.org/sitetype/facility'),('fieldPastureOrchardOrNursery','Field, Pasture, Orchard, or Nursery','A water-using facility characterized by an area where plants are grown for transplanting, for use as stocks for budding and grafting, or for sale. Irrigation water may or may not be applied.','Facility Sites','http://vocabulary.odm2.org/sitetype/fieldPastureOrchardOrNursery'),('glacier','Glacier','Body of land ice that consists of recrystallized snow accumulated on the surface of the ground and moves slowly downslope (WSP-1541A) over a period of years or centuries. Since glacial sites move, the lat-long precision for these sites is usually coarse.','Glacier Sites','http://vocabulary.odm2.org/sitetype/glacier'),('golfCourse','Golf course','A place-of-use, either public or private, where the game of golf is played. A golf course typically uses water for irrigation purposes. Should not be used if the site is a specific hydrologic feature or facility; but can be used especially for the water-use sites.','Facility Sites','http://vocabulary.odm2.org/sitetype/golfCourse'),('groundwaterDrain','Groundwater drain','An underground pipe or tunnel through which groundwater is artificially diverted to surface water for the purpose of reducing erosion or lowering the water table. A drain is typically open to the atmosphere at the lowest elevation, in contrast to a well which is open at the highest point.','Groundwater Sites','http://vocabulary.odm2.org/sitetype/groundwaterDrain'),('hydroelectricPlant','Hydroelectric plant','A facility that generates electric power by converting potential energy of water into kinetic energy. Typically, turbine generators are turned by falling water.','Facility Sites','http://vocabulary.odm2.org/sitetype/hydroelectricPlant'),('laboratoryOrSamplePreparationArea','Laboratory or sample-preparation area','A site where some types of quality-control samples are collected, and where equipment and supplies for environmental sampling are prepared. Equipment blank samples are commonly collected at this site type, as are samples of locally produced deionized water. This site type is typically used when the data are either not associated with a unique environmental data-collection site, or where blank water supplies are designated by Center offices with unique station IDs.','Facility Sites','http://vocabulary.odm2.org/sitetype/laboratoryOrSamplePreparationArea'),('lakeReservoirImpoundment','Lake, Reservoir, Impoundment','An inland body of standing fresh or saline water that is generally too deep to permit submerged aquatic vegetation to take root across the entire body (cf: wetland). This site type includes an expanded part of a river, a reservoir behind a dam, and a natural or excavated depression containing a water body without surface-water inlet and/or outlet.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/lakeReservoirImpoundment'),('land','Land','A location on the surface of the earth that is not normally saturated with water. Land sites are appropriate for sampling vegetation, overland flow of water, or measuring land-surface properties such as temperature. (See also: Wetland).','Land Sites','http://vocabulary.odm2.org/sitetype/land'),('landfill','Landfill','A typically dry location on the surface of the land where primarily solid waste products are currently, or previously have been, aggregated and sometimes covered with a veneer of soil. See also: Wastewater disposal and waste-injection well.','Facility Sites','http://vocabulary.odm2.org/sitetype/landfill'),('networkInfrastructure','Network infrastructure','A site that is primarily associated with monitoring or telemetry network infrastructure. For example a radio repeater or remote radio base station.','infrastructure','http://vocabulary.odm2.org/sitetype/networkInfrastructure'),('ocean','Ocean','Site in the open ocean, gulf, or sea. (See also: Coastal, Estuary, and Tidal stream).','Surface Water Sites','http://vocabulary.odm2.org/sitetype/ocean'),('outcrop','Outcrop','The part of a rock formation that appears at the surface of the surrounding land.','Land Sites','http://vocabulary.odm2.org/sitetype/outcrop'),('outfall','Outfall','A site where water or wastewater is returned to a surface-water body, e.g. the point where wastewater is returned to a stream. Typically, the discharge end of an effluent pipe.','Facility Sites','http://vocabulary.odm2.org/sitetype/outfall'),('pavement','Pavement','A surface site where the land surface is covered by a relatively impermeable material, such as concrete or asphalt. Pavement sites are typically part of transportation infrastructure, such as roadways, parking lots, or runways.','Land Sites','http://vocabulary.odm2.org/sitetype/pavement'),('playa','Playa','A dried-up, vegetation-free, flat-floored area composed of thin, evenly stratified sheets of fine clay, silt or sand, and represents the bottom part of a shallow, completely closed or undrained desert lake basin in which water accumulates and is quickly evaporated, usually leaving deposits of soluble salts.','Land Sites','http://vocabulary.odm2.org/sitetype/playa'),('septicSystem','Septic system','A site within or in close proximity to a subsurface sewage disposal system that generally consists of: (1) a septic tank where settling of solid material occurs, (2) a distribution system that transfers fluid from the tank to (3) a leaching system that disperses the effluent into the ground.','Water Infrastructure Sites','http://vocabulary.odm2.org/sitetype/septicSystem'),('shore','Shore','The land along the edge of the sea, a lake, or a wide river where the investigator considers the proximity of the water body to be important. Land adjacent to a reservoir, lake, impoundment, or oceanic site type is considered part of the shore when it includes a beach or bank between the high and low water marks.','Land Sites','http://vocabulary.odm2.org/sitetype/shore'),('sinkhole','Sinkhole','A crater formed when the roof of a cavern collapses; usually found in limestone areas. Surface water and precipitation that enters a sinkhole usually evaporates or infiltrates into the ground, rather than draining into a stream.','Land Sites','http://vocabulary.odm2.org/sitetype/sinkhole'),('soilHole','Soil hole','A small excavation into soil at the top few meters of earth surface. Soil generally includes some organic matter derived from plants. Soil holes are created to measure soil composition and properties. Sometimes electronic probes are inserted into soil holes to measure physical properties, and (or) the extracted soil is analyzed.','Land Sites','http://vocabulary.odm2.org/sitetype/soilHole'),('spring','Spring','A location at which the water table intersects the land surface, resulting in a natural flow of groundwater to the surface. Springs may be perennial, intermittent, or ephemeral.','Spring Sites','http://vocabulary.odm2.org/sitetype/spring'),('stormSewer','Storm sewer','An underground conduit created to convey storm drainage into a stream channel or reservoir. If the sewer also conveys liquid waste products, then the \"combined sewer\" secondary site type should be used.','Water Infrastructure Sites','http://vocabulary.odm2.org/sitetype/stormSewer'),('stream','Stream','A body of running water moving under gravity flow in a defined channel. The channel may be entirely natural, or altered by engineering practices through straightening, dredging, and (or) lining. An entirely artificial channel should be qualified with the \"canal\" or \"ditch\" secondary site type.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/stream'),('subsurface','Subsurface','A location below the land surface, but not a well, soil hole, or excavation.','Groundwater Sites','http://vocabulary.odm2.org/sitetype/subsurface'),('thermoelectricPlant','Thermoelectric plant','A facility that uses water in the generation of electricity from heat. Typically turbine generators are driven by steam. The heat may be caused by various means, including combustion, nuclear reactions, and geothermal processes.','Facility Sites','http://vocabulary.odm2.org/sitetype/thermoelectricPlant'),('tidalStream','Tidal stream','A stream reach where the flow is influenced by the tide, but where the water chemistry is not normally influenced. A site where ocean water typically mixes with stream water should be coded as an estuary.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/tidalStream'),('tunnelShaftMine','Tunnel, shaft, or mine','A constructed subsurface open space large enough to accommodate a human that is not substantially open to the atmosphere and is not a well. The excavation may have been for minerals, transportation, or other purposes. See also: Excavation.','Groundwater Sites','http://vocabulary.odm2.org/sitetype/tunnelShaftMine'),('unknown','Unknown','Site type is unknown.','Unknown','http://vocabulary.odm2.org/sitetype/unknown'),('unsaturatedZone','Unsaturated zone','A site equipped to measure conditions in the subsurface deeper than a soil hole, but above the water table or other zone of saturation.','Groundwater Sites','http://vocabulary.odm2.org/sitetype/unsaturatedZone'),('volcanicVent','Volcanic vent','Vent from which volcanic gases escape to the atmosphere. Also known as fumarole.','Geologic Sites','http://vocabulary.odm2.org/sitetype/volcanicVent'),('wastewaterLandApplication','Wastewater land application','A site where the disposal of waste water on land occurs. Use \"waste-injection well\" for underground waste-disposal sites.','Land Sites','http://vocabulary.odm2.org/sitetype/wastewaterLandApplication'),('wastewaterSewer','Wastewater sewer','An underground conduit created to convey liquid and semisolid domestic, commercial, or industrial waste into a treatment plant, stream, reservoir, or disposal site. If the sewer also conveys storm water, then the \"combined sewer\" secondary site type should be used.','Water Infrastructure Sites','http://vocabulary.odm2.org/sitetype/wastewaterSewer'),('wastewaterTreatmentPlant','Wastewater-treatment plant','A facility where wastewater is treated to reduce concentrations of dissolved and (or) suspended materials prior to discharge or reuse.','Facility Sites','http://vocabulary.odm2.org/sitetype/wastewaterTreatmentPlant'),('waterDistributionSystem','Water-distribution system','A site located somewhere on a networked infrastructure that distributes treated or untreated water to multiple domestic, industrial, institutional, and (or) commercial users. May be owned by a municipality or community, a water district, or a private concern.','Water Infrastructure Sites','http://vocabulary.odm2.org/sitetype/waterDistributionSystem'),('waterSupplyTreatmentPlant','Water-supply treatment plant','A facility where water is treated prior to use for consumption or other purpose.','Facility Sites','http://vocabulary.odm2.org/sitetype/waterSupplyTreatmentPlant'),('waterUseEstablishment','Water-use establishment','A place-of-use (a water using facility that is associated with a specific geographical point location, such as a business or industrial user) that cannot be specified with any other facility secondary type. Water-use place-of-use sites are establishments such as a factory, mill, store, warehouse, farm, ranch, or bank. See also: Aggregate water-use-establishment.','Facility Sites','http://vocabulary.odm2.org/sitetype/waterUseEstablishment'),('wetland','Wetland','Land where saturation with water is the dominant factor determining the nature of soil development and the types of plant and animal communities living in the soil and on its surface (Cowardin, December 1979). Wetlands are found from the tundra to the tropics and on every continent except Antarctica. Wetlands are areas that are inundated or saturated by surface or groundwater at a frequency and duration sufficient to support, and that under normal circumstances do support, a prevalence of vegetation typically adapted for life in saturated soil conditions. Wetlands generally include swamps, marshes, bogs and similar areas. Wetlands may be forested or unforested, and naturally or artificially created.','Surface Water Sites','http://vocabulary.odm2.org/sitetype/wetland'); +/*!40000 ALTER TABLE `CV_SiteType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_SpatialOffsetType` +-- + +DROP TABLE IF EXISTS `CV_SpatialOffsetType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_SpatialOffsetType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_SpatialOffsetType` +-- + +/*!40000 ALTER TABLE `CV_SpatialOffsetType` DISABLE KEYS */; +INSERT INTO `CV_SpatialOffsetType` VALUES ('cartesianOffset','Cartesian offset','Offset expressed using cartesian coordinates where X is distance along axis aligned with true north, Y is distace aligned with true east, and Z is distance aligned straight up. Depths are expressed a negative numbers. The origin of the coordinate system is typically defined in the site description. ','3D','http://vocabulary.odm2.org/spatialoffsettype/cartesianOffset'),('depth','Depth','Depth below the earth or water surface. Values are expressed as negative numbers and become more negative in the downward direction.','1D','http://vocabulary.odm2.org/spatialoffsettype/depth'),('depthInterval','Depth interval','Depth interval below the earth or water surface. The mininum depth value is expressed first and then maximum depth value. Values are expresssed as negative numbers and become more negative in the downward direction.','2D','http://vocabulary.odm2.org/spatialoffsettype/depthInterval'),('depthDirectional','Depth, directional','Depth below the earth or water surface along a non-vertical line. The first coordinate is the angle of the ray from north expressed in degrees. The second coordinate is the angle of the ray from horizontal expressed in negative degrees. The distance along the ray is expressed as a positive number that increases with distance along the ray. ','3D','http://vocabulary.odm2.org/spatialoffsettype/depthDirectional'),('height','Height','Height above the earth or water surface. Values are positive and increase in the upward direction.','1D','http://vocabulary.odm2.org/spatialoffsettype/height'),('heightInterval','Height interval','Height interval above the earth or water surface. The minimum height value is expressed first and then the maximum height value. Values increase in the upward direction.','2D','http://vocabulary.odm2.org/spatialoffsettype/heightInterval'),('heightDirectional','Height, directional','Height above the earth or water surface along a non-vertical line. The first coordinate is the angle of the ray from north expressed in degrees. The second coordinate is the angle of the ray from horizontal expressed in positive degrees. The distance along the ray is expressed as a positive number that increases with distance along the ray. ','3D','http://vocabulary.odm2.org/spatialoffsettype/heightDirectional'),('longitudinalInterval','Longitudinal interval','Interval along a horizontal or longitudinal ray. The first coordinate is the angle from north expressed in degrees of the longitudinal array. The second coordinate is the minimum distance along the ray at which the longitudinal interval begins. The third coordinate is the maximium distance along the ray at which the longitudinal interval ends.','3D','http://vocabulary.odm2.org/spatialoffsettype/longitudinalInterval'),('radialHorizontalOffset','Radial horizontal offset','Offset expressed as a distance along a ray that originates from a central point. The angle of the ray is expressed as the first offset coordinate in degrees. The distance along the ray is expressed as the second offset coordinate.','2D','http://vocabulary.odm2.org/spatialoffsettype/radialHorizontalOffset'),('radialHorizontalOffsetWithDepth','Radial horizontal offset with depth','Offset expressed as a distance along a ray that originates from a central point with a third coordinate that indicates the depth below the earth or water surface. The angle of the ray is expressed as the first offset coordinate in degrees. The distance along the ray is expressed as the second offset coordinate. The depth below the earth or water surface is expressed as the third coordinate.','3D','http://vocabulary.odm2.org/spatialoffsettype/radialHorizontalOffsetWithDepth'),('radialHorizontalOffsetWithHeight','Radial horizontal offset with height','Offset expressed as a distance along a ray that originates from a central point with a third coordinate that indicates the height above the earth or water surface. The angle of the ray is expressed as the first offset coordinate in degrees. The distance along the ray is expressed as the second offset coordinate. The height above the earth or water surface is expressed as the third coordinate.','3D','http://vocabulary.odm2.org/spatialoffsettype/radialHorizontalOffsetWithHeight'); +/*!40000 ALTER TABLE `CV_SpatialOffsetType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_Speciation` +-- + +DROP TABLE IF EXISTS `CV_Speciation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_Speciation` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_Speciation` +-- + +/*!40000 ALTER TABLE `CV_Speciation` DISABLE KEYS */; +INSERT INTO `CV_Speciation` VALUES ('Ag','Ag','Expressed as silver',NULL,'http://vocabulary.odm2.org/speciation/Ag'),('Al','Al','Expressed as aluminium',NULL,'http://vocabulary.odm2.org/speciation/Al'),('As','As','Expressed as arsenic',NULL,'http://vocabulary.odm2.org/speciation/As'),('B','B','Expressed as boron',NULL,'http://vocabulary.odm2.org/speciation/B'),('Ba','Ba','Expressed as barium',NULL,'http://vocabulary.odm2.org/speciation/Ba'),('Be','Be','Expressed as beryllium',NULL,'http://vocabulary.odm2.org/speciation/Be'),('Br','Br','Expressed as bromine',NULL,'http://vocabulary.odm2.org/speciation/Br'),('C','C','Expressed as carbon',NULL,'http://vocabulary.odm2.org/speciation/C'),('C10H10O4','C10H10O4','Expressed as dimethyl terephthalate',NULL,'http://vocabulary.odm2.org/speciation/C10H10O4'),('C10H4_CH3_4','C10H4(CH3)4','Expressed as tetramethylnaphthalene',NULL,'http://vocabulary.odm2.org/speciation/C10H4_CH3_4'),('C10H5_CH3_3','C10H5(CH3)3','Expressed as trimethylnaphthalene',NULL,'http://vocabulary.odm2.org/speciation/C10H5_CH3_3'),('C10H6_CH3_2','C10H6(CH3)2','Expressed as dimethylnaphthalene',NULL,'http://vocabulary.odm2.org/speciation/C10H6_CH3_2'),('C10H7C2H5','C10H7C2H5','Expressed as ethylnaphthalene',NULL,'http://vocabulary.odm2.org/speciation/C10H7C2H5'),('C10H7CH3','C10H7CH3','Expressed as methylnaphthalene',NULL,'http://vocabulary.odm2.org/speciation/C10H7CH3'),('C10H8','C10H8','Expressed as naphthalene',NULL,'http://vocabulary.odm2.org/speciation/C10H8'),('C12H10','C12H10','Expressed as C12H10, e.g., acenaphthene, biphenyl',NULL,'http://vocabulary.odm2.org/speciation/C12H10'),('C12H14O4','C12H14O4','Expressed as diethyl phthalate',NULL,'http://vocabulary.odm2.org/speciation/C12H14O4'),('C12H8','C12H8','Expressed as acenaphthylene',NULL,'http://vocabulary.odm2.org/speciation/C12H8'),('C12H8O','C12H8O','Expressed as dibenzofuran',NULL,'http://vocabulary.odm2.org/speciation/C12H8O'),('C12H8S','C12H8S','Expressed as dibenzothiophene',NULL,'http://vocabulary.odm2.org/speciation/C12H8S'),('C12H9N','C12H9N','Expressed as carbazole',NULL,'http://vocabulary.odm2.org/speciation/C12H9N'),('C13H10','C13H10','Expressed as fluorene',NULL,'http://vocabulary.odm2.org/speciation/C13H10'),('C13H10S','C13H10S','Expressed as methyldibenzothiophene',NULL,'http://vocabulary.odm2.org/speciation/C13H10S'),('C14H10','C14H10','Expressed as phenanthrene',NULL,'http://vocabulary.odm2.org/speciation/C14H10'),('C14H12','C14H12','Expressed as methylfluorene',NULL,'http://vocabulary.odm2.org/speciation/C14H12'),('C15H12','C15H12','Expressed as C15H12, e.g., methylphenanthrene, Methylanthracene',NULL,'http://vocabulary.odm2.org/speciation/C15H12'),('C15H32','C15H32','Expressed as C15 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C15H32'),('C16H10','C16H10','Expressed as C16H10, e.g., fluoranthene, pyrene',NULL,'http://vocabulary.odm2.org/speciation/C16H10'),('C16H14','C16H14','Expressed as dimethylphenanthrene',NULL,'http://vocabulary.odm2.org/speciation/C16H14'),('C16H34','C16H34','Expressed as C16 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C16H34'),('C17H12','C17H12','Expressed as C17H12, e.g., benzo(a)fluorene, methylfluoranthene, methylpyrene',NULL,'http://vocabulary.odm2.org/speciation/C17H12'),('C17H36','C17H36','Expressed as C17 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C17H36'),('C18H12','C18H12','Expressed as C18H12, e.g., benz(a)anthracene, chrysene, triphenylene',NULL,'http://vocabulary.odm2.org/speciation/C18H12'),('C18H18','C18H18','Expressed as retene',NULL,'http://vocabulary.odm2.org/speciation/C18H18'),('C18H38','C18H38','Expressed as C18 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C18H38'),('C19H14','C19H14','Expressed as methylchrysene',NULL,'http://vocabulary.odm2.org/speciation/C19H14'),('C19H20O4','C19H20O4','Expressed as benzyl butyl pththalate',NULL,'http://vocabulary.odm2.org/speciation/C19H20O4'),('C19H40','C19H40','Expressed as C19 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C19H40'),('C20H12','C20H12','Expressed as C20H12, e.g., benzo(b)fluoranthene, benzo(e)pyrene, perylene',NULL,'http://vocabulary.odm2.org/speciation/C20H12'),('C20H42','C20H42','Expressed as C20 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C20H42'),('C21H44','C21H44','Expressed as C21 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C21H44'),('C22H14','C22H14','Expressed as Dibenz(a,h)anthracene',NULL,'http://vocabulary.odm2.org/speciation/C22H14'),('C22H46','C22H46','Expressed as C22 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C22H46'),('C23H48','C23H48','Expressed as C23 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C23H48'),('C24H50','C24H50','Expressed as C24 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C24H50'),('C25H52','C25H52','Expressed as C25 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C25H52'),('C26H54','C26H54','Expressed as C26 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C26H54'),('C27H56','C27H56','Expressed as C27 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C27H56'),('C28H58','C28H58','Expressed as C28 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C28H58'),('C29H60','C29H60','Expressed as C29 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C29H60'),('C2Cl4','C2Cl4','Expressed as tetrachloroethylene',NULL,'http://vocabulary.odm2.org/speciation/C2Cl4'),('C2Cl6','C2Cl6','Expressed as hexachloroethane',NULL,'http://vocabulary.odm2.org/speciation/C2Cl6'),('C2H2Cl4','C2H2Cl4','Expressed as tetrachloroethane',NULL,'http://vocabulary.odm2.org/speciation/C2H2Cl4'),('C2H3Cl','C2H3Cl','Expressed as vinyl chloride',NULL,'http://vocabulary.odm2.org/speciation/C2H3Cl'),('C2H3Cl3','C2H3Cl3','Expressed as trichloroethane',NULL,'http://vocabulary.odm2.org/speciation/C2H3Cl3'),('C2H4Cl2','C2H4Cl2','Expressed as dichloroethane',NULL,'http://vocabulary.odm2.org/speciation/C2H4Cl2'),('C2H5Cl','C2H5Cl','Expressed as chloroethane',NULL,'http://vocabulary.odm2.org/speciation/C2H5Cl'),('C2H6','C2H6','Expressed as ethane',NULL,'http://vocabulary.odm2.org/speciation/C2H6'),('C2H6O2','C2H6O2','Expressed as Ethylene glycol',NULL,'http://vocabulary.odm2.org/speciation/C2H6O2'),('C2HCl3','C2HCl3','Expressed as trichloroethylene',NULL,'http://vocabulary.odm2.org/speciation/C2HCl3'),('C31H64','C31H64','Expressed as C31 n-alkane',NULL,'http://vocabulary.odm2.org/speciation/C31H64'),('C3H6O','C3H6O','Expressed as acetone',NULL,'http://vocabulary.odm2.org/speciation/C3H6O'),('C4Cl6','C4Cl6','Expressed as hexchlorobutadiene',NULL,'http://vocabulary.odm2.org/speciation/C4Cl6'),('C4H8Cl2O','C4H8Cl2O','Expressed as bis(chloroethyl) ether',NULL,'http://vocabulary.odm2.org/speciation/C4H8Cl2O'),('C4H8O','C4H8O','Expressed as butanone',NULL,'http://vocabulary.odm2.org/speciation/C4H8O'),('C5Cl6','C5Cl6','Expressed as hexachlorocyclopentadiene',NULL,'http://vocabulary.odm2.org/speciation/C5Cl6'),('C6Cl6','C6Cl6','Expressed as hexachlorobenzene',NULL,'http://vocabulary.odm2.org/speciation/C6Cl6'),('C6H3Cl3','C6H3Cl3','Expressed as trichlorobenzene',NULL,'http://vocabulary.odm2.org/speciation/C6H3Cl3'),('C6H4_CH3_2','C6H4(CH3)2','Expressed as xylenes',NULL,'http://vocabulary.odm2.org/speciation/C6H4_CH3_2'),('C6H4Cl2','C6H4Cl2','Expressed as dichlorobenzene',NULL,'http://vocabulary.odm2.org/speciation/C6H4Cl2'),('C6H4N2O5','C6H4N2O5','Expressed as dinitrophenol',NULL,'http://vocabulary.odm2.org/speciation/C6H4N2O5'),('C6H5Cl','C6H5Cl','Expressed as chlorobenzene',NULL,'http://vocabulary.odm2.org/speciation/C6H5Cl'),('C6H5NH2','C6H5NH2','Expressed as aniline',NULL,'http://vocabulary.odm2.org/speciation/C6H5NH2'),('C6H5NO2','C6H5NO2','Expressed as nitrobenzene',NULL,'http://vocabulary.odm2.org/speciation/C6H5NO2'),('C6H5OH','C6H5OH','Expressed as phenol',NULL,'http://vocabulary.odm2.org/speciation/C6H5OH'),('C6H6','C6H6','Expressed as benzene',NULL,'http://vocabulary.odm2.org/speciation/C6H6'),('C6HCl5O','C6HCl5O','Expressed as pentachlorophenol',NULL,'http://vocabulary.odm2.org/speciation/C6HCl5O'),('C7H6N2O4','C7H6N2O4','Expressed as dinitrotoluene',NULL,'http://vocabulary.odm2.org/speciation/C7H6N2O4'),('C7H8','C7H8','Expressed as Toluene',NULL,'http://vocabulary.odm2.org/speciation/C7H8'),('C8H10','C8H10','Expressed as ethylbenzene',NULL,'http://vocabulary.odm2.org/speciation/C8H10'),('C8H8','C8H8','Expressed as styrene',NULL,'http://vocabulary.odm2.org/speciation/C8H8'),('C9H14O','C9H14O','Expressed as isophorone',NULL,'http://vocabulary.odm2.org/speciation/C9H14O'),('Ca','Ca','Expressed as calcium',NULL,'http://vocabulary.odm2.org/speciation/Ca'),('CaCO3','CaCO3','Expressed as calcium carbonate',NULL,'http://vocabulary.odm2.org/speciation/CaCO3'),('Cd','Cd','Expressed as cadmium',NULL,'http://vocabulary.odm2.org/speciation/Cd'),('CH2Cl2','CH2Cl2','Expressed as dichloromethane',NULL,'http://vocabulary.odm2.org/speciation/CH2Cl2'),('CH3Br','CH3Br','Expressed as bromomethane',NULL,'http://vocabulary.odm2.org/speciation/CH3Br'),('CH3Cl','CH3Cl','Expressed as chloromethane',NULL,'http://vocabulary.odm2.org/speciation/CH3Cl'),('CH3Hg','CH3Hg','Expressed at methylmercury',NULL,'http://vocabulary.odm2.org/speciation/CH3Hg'),('CH4','CH4','Expressed as methane',NULL,'http://vocabulary.odm2.org/speciation/CH4'),('CHBr2Cl','CHBr2Cl','Expressed as dibromochloromethane',NULL,'http://vocabulary.odm2.org/speciation/CHBr2Cl'),('CHBr3','CHBr3','Expressed as bromoform',NULL,'http://vocabulary.odm2.org/speciation/CHBr3'),('CHBrCl2','CHBrCl2','Expressed as bromodichloromethane',NULL,'http://vocabulary.odm2.org/speciation/CHBrCl2'),('CHCl3','CHCl3','Expressed as chloroform',NULL,'http://vocabulary.odm2.org/speciation/CHCl3'),('Cl','Cl','Expressed as chlorine',NULL,'http://vocabulary.odm2.org/speciation/Cl'),('CN-','CN-','Expressed as cyanide',NULL,'http://vocabulary.odm2.org/speciation/CN-'),('Co','Co','Expressed as cobalt',NULL,'http://vocabulary.odm2.org/speciation/Co'),('CO2','CO2','Expressed as carbon dioxide',NULL,'http://vocabulary.odm2.org/speciation/CO2'),('CO3','CO3','Expressed as carbonate',NULL,'http://vocabulary.odm2.org/speciation/CO3'),('Cr','Cr','Expressed as chromium',NULL,'http://vocabulary.odm2.org/speciation/Cr'),('Cu','Cu','Expressed as copper',NULL,'http://vocabulary.odm2.org/speciation/Cu'),('delta2H','delta 2H','Expressed as deuterium',NULL,'http://vocabulary.odm2.org/speciation/delta2H'),('deltaN15','delta N15','Expressed as nitrogen-15',NULL,'http://vocabulary.odm2.org/speciation/deltaN15'),('deltaO18','delta O18','Expressed as oxygen-18',NULL,'http://vocabulary.odm2.org/speciation/deltaO18'),('EC','EC','Expressed as electrical conductivity',NULL,'http://vocabulary.odm2.org/speciation/EC'),('F','F','Expressed as fluorine',NULL,'http://vocabulary.odm2.org/speciation/F'),('Fe','Fe','Expressed as iron',NULL,'http://vocabulary.odm2.org/speciation/Fe'),('H2O','H2O','Expressed as water',NULL,'http://vocabulary.odm2.org/speciation/H2O'),('HCO3','HCO3','Expressed as hydrogen carbonate',NULL,'http://vocabulary.odm2.org/speciation/HCO3'),('Hg','Hg','Expressed as mercury',NULL,'http://vocabulary.odm2.org/speciation/Hg'),('K','K','Expressed as potassium',NULL,'http://vocabulary.odm2.org/speciation/K'),('Mg','Mg','Expressed as magnesium',NULL,'http://vocabulary.odm2.org/speciation/Mg'),('Mn','Mn','Expressed as manganese',NULL,'http://vocabulary.odm2.org/speciation/Mn'),('Mo','Mo','Expressed as molybdenum',NULL,'http://vocabulary.odm2.org/speciation/Mo'),('N','N','Expressed as nitrogen',NULL,'http://vocabulary.odm2.org/speciation/N'),('Na','Na','Expressed as sodium',NULL,'http://vocabulary.odm2.org/speciation/Na'),('NH4','NH4','Expressed as ammonium',NULL,'http://vocabulary.odm2.org/speciation/NH4'),('Ni','Ni','Expressed as nickel',NULL,'http://vocabulary.odm2.org/speciation/Ni'),('NO2','NO2','Expressed as nitrite',NULL,'http://vocabulary.odm2.org/speciation/NO2'),('NO3','NO3','Expressed as nitrate',NULL,'http://vocabulary.odm2.org/speciation/NO3'),('notApplicable','Not Applicable','Speciation is not applicable',NULL,'http://vocabulary.odm2.org/speciation/notApplicable'),('O2','O2','Expressed as oxygen (O2)',NULL,'http://vocabulary.odm2.org/speciation/O2'),('P','P','Expressed as phosphorus',NULL,'http://vocabulary.odm2.org/speciation/P'),('Pb','Pb','Expressed as lead',NULL,'http://vocabulary.odm2.org/speciation/Pb'),('pH','pH','Expressed as pH',NULL,'http://vocabulary.odm2.org/speciation/pH'),('PO4','PO4','Expressed as phosphate',NULL,'http://vocabulary.odm2.org/speciation/PO4'),('Ra','Ra','Expressed as Radium. Also known as \"radium equivalent.\" The radium equivalent concept allows a single index or number to describe the gamma output from different mixtures of uranium (i.e., radium), thorium, and 40K in a material.',NULL,'http://vocabulary.odm2.org/speciation/Ra'),('Re','Re','Expressed as rhenium',NULL,'http://vocabulary.odm2.org/speciation/Re'),('S','S','Expressed as Sulfur',NULL,'http://vocabulary.odm2.org/speciation/S'),('Sb','Sb','Expressed as antimony',NULL,'http://vocabulary.odm2.org/speciation/Sb'),('Se','Se','Expressed as selenium',NULL,'http://vocabulary.odm2.org/speciation/Se'),('Si','Si','Expressed as silicon',NULL,'http://vocabulary.odm2.org/speciation/Si'),('SiO2','SiO2','Expressed as silicate',NULL,'http://vocabulary.odm2.org/speciation/SiO2'),('Sn','Sn','Expressed as tin',NULL,'http://vocabulary.odm2.org/speciation/Sn'),('SO4','SO4','Expressed as Sulfate',NULL,'http://vocabulary.odm2.org/speciation/SO4'),('Sr','Sr','Expressed as strontium',NULL,'http://vocabulary.odm2.org/speciation/Sr'),('TA','TA','Expressed as total alkalinity',NULL,'http://vocabulary.odm2.org/speciation/TA'),('Th','Th','Expressed as thorium',NULL,'http://vocabulary.odm2.org/speciation/Th'),('Ti','Ti','Expressed as titanium',NULL,'http://vocabulary.odm2.org/speciation/Ti'),('Tl','Tl','Expressed as thallium',NULL,'http://vocabulary.odm2.org/speciation/Tl'),('U','U','Expressed as uranium',NULL,'http://vocabulary.odm2.org/speciation/U'),('unknown','Unknown','Speciation is unknown',NULL,'http://vocabulary.odm2.org/speciation/unknown'),('V','V','Expressed as vanadium',NULL,'http://vocabulary.odm2.org/speciation/V'),('Zn','Zn','Expressed as zinc',NULL,'http://vocabulary.odm2.org/speciation/Zn'),('Zr','Zr','Expressed as zirconium',NULL,'http://vocabulary.odm2.org/speciation/Zr'); +/*!40000 ALTER TABLE `CV_Speciation` ENABLE KEYS */; + +-- +-- Table structure for table `CV_SpecimenType` +-- + +DROP TABLE IF EXISTS `CV_SpecimenType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_SpecimenType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_SpecimenType` +-- + +/*!40000 ALTER TABLE `CV_SpecimenType` DISABLE KEYS */; +INSERT INTO `CV_SpecimenType` VALUES ('automated','Automated','Sample collected using an automated sampler.',NULL,'http://vocabulary.odm2.org/specimentype/automated'),('core','Core','Long cylindrical cores',NULL,'http://vocabulary.odm2.org/specimentype/core'),('coreHalfRound','Core half round','Half-cylindrical products of along-axis split of a whole round',NULL,'http://vocabulary.odm2.org/specimentype/coreHalfRound'),('corePiece','Core piece','Material occurring between unambiguous [as curated] breaks in recovery.',NULL,'http://vocabulary.odm2.org/specimentype/corePiece'),('coreQuarterRound','Core quarter round','Quarter-cylindrical products of along-axis split of a half round.',NULL,'http://vocabulary.odm2.org/specimentype/coreQuarterRound'),('coreSection','Core section','Arbitrarily cut segments of a \"core\"',NULL,'http://vocabulary.odm2.org/specimentype/coreSection'),('coreSectionHalf','Core section half','Half-cylindrical products of along-axis split of a section or its component fragments through a selected diameter.',NULL,'http://vocabulary.odm2.org/specimentype/coreSectionHalf'),('coreSub-Piece','Core sub-piece','Unambiguously mated portion of a larger piece noted for curatorial management of the material.',NULL,'http://vocabulary.odm2.org/specimentype/coreSub-Piece'),('coreWholeRound','Core whole round','Cylindrical segments of core or core section material.',NULL,'http://vocabulary.odm2.org/specimentype/coreWholeRound'),('cuttings','Cuttings','Loose, coarse, unconsolidated material suspended in drilling fluid.',NULL,'http://vocabulary.odm2.org/specimentype/cuttings'),('dredge','Dredge','A group of rocks collected by dragging a dredge along the seafloor.',NULL,'http://vocabulary.odm2.org/specimentype/dredge'),('foliageDigestion','Foliage digestion','Sample that consists of a digestion of plant foliage',NULL,'http://vocabulary.odm2.org/specimentype/foliageDigestion'),('foliageLeaching','Foliage leaching','Sample that consists of leachate from foliage',NULL,'http://vocabulary.odm2.org/specimentype/foliageLeaching'),('forestFloorDigestion','Forest floor digestion','Sample that consists of a digestion of forest floor material',NULL,'http://vocabulary.odm2.org/specimentype/forestFloorDigestion'),('grab','Grab','A sample (sometimes mechanically collected) from a deposit or area, not intended to be representative of the deposit or area.',NULL,'http://vocabulary.odm2.org/specimentype/grab'),('individualSample','Individual sample','A sample that is an individual unit, including rock hand samples, a biological specimen, or a bottle of fluid.',NULL,'http://vocabulary.odm2.org/specimentype/individualSample'),('litterFallDigestion','Litter fall digestion','Sample that consists of a digestion of litter fall',NULL,'http://vocabulary.odm2.org/specimentype/litterFallDigestion'),('orientedCore','Oriented core','Core that can be positioned on the surface in the same way that it was arranged in the borehole before extraction.',NULL,'http://vocabulary.odm2.org/specimentype/orientedCore'),('other','Other','Sample does not fit any of the existing type designations. It is expected that further detailed description of the particular sample be provided.',NULL,'http://vocabulary.odm2.org/specimentype/other'),('petriDishDryDeposition','Petri dish (dry deposition)','Sample from dry deposition in a petri dish',NULL,'http://vocabulary.odm2.org/specimentype/petriDishDryDeposition'),('precipitationBulk','Precipitation bulk','Sample from bulk precipitation',NULL,'http://vocabulary.odm2.org/specimentype/precipitationBulk'),('rockPowder','Rock powder','A sample created from pulverizing a rock to powder.',NULL,'http://vocabulary.odm2.org/specimentype/rockPowder'),('standardReferenceSpecimen','Standard reference specimen','Standard reference specimen',NULL,'http://vocabulary.odm2.org/specimentype/standardReferenceSpecimen'),('terrestrialSection','Terrestrial section','A sample of a section of the near-surface Earth, generally in the critical zone.',NULL,'http://vocabulary.odm2.org/specimentype/terrestrialSection'),('theSpecimenTypeIsUnknown','The specimen type is unknown','The specimen type is unknown',NULL,'http://vocabulary.odm2.org/specimentype/theSpecimenTypeIsUnknown'),('thinSection','Thin section','Thin section',NULL,'http://vocabulary.odm2.org/specimentype/thinSection'); +/*!40000 ALTER TABLE `CV_SpecimenType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_Status` +-- + +DROP TABLE IF EXISTS `CV_Status`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_Status` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_Status` +-- + +/*!40000 ALTER TABLE `CV_Status` DISABLE KEYS */; +INSERT INTO `CV_Status` VALUES ('complete','Complete','Data collection is complete. No new data values will be added.',NULL,'http://vocabulary.odm2.org/status/complete'),('ongoing','Ongoing','Data collection is ongoing. New data values will be added periodically.',NULL,'http://vocabulary.odm2.org/status/ongoing'),('planned','Planned','Data collection is planned. Resulting data values do not yet exist, but will eventually.',NULL,'http://vocabulary.odm2.org/status/planned'),('unknown','Unknown','The status of data collection is unknown.',NULL,'http://vocabulary.odm2.org/status/unknown'); +/*!40000 ALTER TABLE `CV_Status` ENABLE KEYS */; + +-- +-- Table structure for table `CV_TaxonomicClassifierType` +-- + +DROP TABLE IF EXISTS `CV_TaxonomicClassifierType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_TaxonomicClassifierType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_TaxonomicClassifierType` +-- + +/*!40000 ALTER TABLE `CV_TaxonomicClassifierType` DISABLE KEYS */; +INSERT INTO `CV_TaxonomicClassifierType` VALUES ('biology','Biology','A taxonomy containing terms associated with biological organisms.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/biology'),('chemistry','Chemistry','A taxonomy containing terms associated with chemistry, chemical analysis or processes.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/chemistry'),('climate','Climate','A taxonomy containing terms associated with the climate, weather, or atmospheric processes.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/climate'),('geology','Geology','A taxonomy containing terms associated with geology or geological processes.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/geology'),('hydrology','Hydrology','A taxonomy containing terms associated with hydrologic variables or processes.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/hydrology'),('instrumentation','Instrumentation','A taxonomy containing terms associated with instrumentation and instrument properties such as battery voltages, data logger temperatures, often useful for diagnosis.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/instrumentation'),('lithology','Lithology','A taxonomy containing terms associated with lithology.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/lithology'),('rock','Rock','A taxonomy containing terms describing rocks.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/rock'),('soil','Soil','A taxonomy containing terms associated with soil variables or processes',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/soil'),('soilColor','Soil color','A taxonomy containing terms describing soil color.','Soil','http://vocabulary.odm2.org/taxonomicclassifiertype/soilColor'),('soilHorizon','Soil horizon','A taxonomy containing terms describing soil horizons.','Soil','http://vocabulary.odm2.org/taxonomicclassifiertype/soilHorizon'),('soilStructure','Soil structure','A taxonomy containing terms describing soil structure.','Soil','http://vocabulary.odm2.org/taxonomicclassifiertype/soilStructure'),('soilTexture','Soil texture','A taxonomy containing terms describing soil texture.','Soil','http://vocabulary.odm2.org/taxonomicclassifiertype/soilTexture'),('waterQuality','Water quality','A taxonomy containing terms associated with water quality variables or processes.',NULL,'http://vocabulary.odm2.org/taxonomicclassifiertype/waterQuality'); +/*!40000 ALTER TABLE `CV_TaxonomicClassifierType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_UnitsType` +-- + +DROP TABLE IF EXISTS `CV_UnitsType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_UnitsType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_UnitsType` +-- + +/*!40000 ALTER TABLE `CV_UnitsType` DISABLE KEYS */; +INSERT INTO `CV_UnitsType` VALUES ('absorbedDose','Absorbed dose','Absorbed dose (also known as Total Ionizing Dose, TID) is a measure of the energy deposited in a medium by ionizing radiation. It is equal to the energy deposited per unit mass of medium, and so has the unit J/kg, which is given the special name Gray (Gy). Note that the absorbed dose is not a good indicator of the likely biological effect. 1 Gy of alpha radiation would be much more biologically damaging than 1 Gy of photon radiation for example. Appropriate weighting factors can be applied reflecting the different relative biological effects to find the equivalent dose. The risk of stoctic effects due to radiation exposure can be quantified using the effective dose, which is a weighted average of the equivalent dose to each organ depending upon its radiosensitivity. When ionising radiation is used to treat cancer, the doctor will usually prescribe the radiotherapy treatment in Gy. When risk from ionising radiation is being discussed, a related unit, the Sievert is used.','Radiology','http://vocabulary.odm2.org/unitstype/absorbedDose'),('absorbedDoseRate','Absorbed dose rate','Absorbed dose per unit time.','Radiology','http://vocabulary.odm2.org/unitstype/absorbedDoseRate'),('amountOfInformation','Amount of Information','In computing and telecommunications, a unit of information is the capacity of some standard data storage system or communication channel, used to measure the capacities of other systems and channels. In information theory, units of information are also used to measure the information contents or entropy of random variables.','Information','http://vocabulary.odm2.org/unitstype/amountOfInformation'),('angle','Angle','In geometry, an angle (or plane angle) is the figure formed by two rays or line segments, called the sides of the angle, sharing a common endpoint, called the vertex of the angle. Euclid defines a plane angle as the inclination to each other, in a plane, of two lines which meet each other, and do not lie straight with respect to each other.','Space and Time','http://vocabulary.odm2.org/unitstype/angle'),('angularAcceleration','Angular acceleration','Angular acceleration is the rate of change of angular velocity over time. Measurement of the change made in the rate of change of an angle that a spinning object undergoes per unit time. It is a vector quantity. Also called Rotational acceleration. In SI units, it is measured in radians per second squared (rad/s^2), and is usually denoted by the Greek letter alpha.','Space and Time','http://vocabulary.odm2.org/unitstype/angularAcceleration'),('angularMass','Angular mass','The units of angular mass have dimensions of mass * area. They are used to measure the moment of inertia or rotational inertia.','Space and Time','http://vocabulary.odm2.org/unitstype/angularMass'),('angularMomentum','Angular momentum','Quantity of rotational motion. Linear momentum is the quantity obtained by multiplying the mass of a body by its linear velocity. Angular momentum is the quantity obtained by multiplying the moment of inertia of a body by its angular velocity. The momentum of a system of particles is given by the sum of the momenta of the individual particles which make up the system or by the product of the total mass of the system and the velocity of the center of gravity of the system. The momentum of a continuous medium is given by the integral of the velocity over the mass of the medium or by the product of the total mass of the medium and the velocity of the center of gravity of the medium. In physics, the angular momentum of an object rotating about some reference point is the measure of the extent to which the object will continue to rotate about that point unless acted upon by an external torque. In particular, if a point mass rotates about an axis, then the angular momentum with respect to a point on the axis is related to the mass of the object, the velocity and the distance of the mass to the axis. While the motion associated with linear momentum has no absolute frame of reference, the rotation associated with angular momentum is sometimes spoken of as being measured relative to the fixed stars. The physical quantity \"action\" has the same units as angular momentum.','Mechanics','http://vocabulary.odm2.org/unitstype/angularMomentum'),('angularVelocityOrFrequency','Angular velocity or frequency','The change of angle per unit time; specifically, in celestial mechanics, the change in angle of the radius vector per unit time. Angular frequency is a scalar measure of rotation rate. It is the magnitude of the vector quantity angular velocity.','Space and Time','http://vocabulary.odm2.org/unitstype/angularVelocityOrFrequency'),('area','Area','Area is a quantity expressing the two-dimensional size of a defined part of a surface, typically a region bounded by a closed curve.','Space and Time','http://vocabulary.odm2.org/unitstype/area'),('areaAngle','Area angle',NULL,'Space and Time','http://vocabulary.odm2.org/unitstype/areaAngle'),('areaPerLength','Area per length','A type of Linear Density.','Space and Time','http://vocabulary.odm2.org/unitstype/areaPerLength'),('areaTemperature','Area temperature',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/areaTemperature'),('areaThermalExpansion','Area thermal expansion','When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: * linear thermal expansion * area thermal expansion * volumetric thermal expansion These characteristics are closely related. The volumetric thermal expansion coefficient can be defined for both liquids and solids. The linear thermal expansion can only be defined for solids, and is common in engineering applications. Some substances expand when cooled, such as freezing water, so they have negative thermal expansion coefficients. [Wikipedia: https://en.wikipedia.org/wiki/Thermal_expansion]','Thermodynamics','http://vocabulary.odm2.org/unitstype/areaThermalExpansion'),('areaTime','Area time',NULL,'Space and Time','http://vocabulary.odm2.org/unitstype/areaTime'),('areaTimeTemperature','Area time temperature',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/areaTimeTemperature'),('biologicalActivity','Biological activity','Units used mainly in chemical and biochemical laboratories.','Chemistry','http://vocabulary.odm2.org/unitstype/biologicalActivity'),('catalyticActivity','Catalytic activity','Catalytic activity is usually denoted by the symbol z and measured in mol/s, a unit which was called katal and defined the SI unit for catalytic activity since 1999. Catalytic activity is not a kind of reaction rate, but a property of the catalyst under certain conditions, in relation to a specific chemical reaction. Catalytic activity of one katal (Symbol 1 kat = 1mol/s) of a catalyst means an amount of that catalyst (substance, in Mol) that leads to a net reaction of one Mol per second of the reactants to the resulting reagents or other outcome which was intended for this chemical reaction. A catalyst may and usually will have different catalytic activity for distinct reactions. [Wikipedia: https://en.wikipedia.org/wiki/Catalysis]','Chemistry','http://vocabulary.odm2.org/unitstype/catalyticActivity'),('color','Color','Units used to describe hue and coloration.','Dimensionless','http://vocabulary.odm2.org/unitstype/color'),('concentrationCountPerCount','Concentration count per count','The count of one substance per unit count of another substance, also known as mole fraction or numeric concentration.','Dimensionless Ratio','http://vocabulary.odm2.org/unitstype/concentrationCountPerCount'),('concentrationCountPerMass','Concentration count per mass','Amount of substance or a count/number of items per unit mass. This is most often called molality or molal concentration. This contrasts with the definition of molarity which is based on a specified volume of solution. A commonly used unit for molality used in chemistry is mol/kg. A solution of concentration 1 mol/kg is also sometimes denoted as 1 molal.','Chemistry','http://vocabulary.odm2.org/unitstype/concentrationCountPerMass'),('concentrationCountPerVolume','Concentration count per volume','Amount of substance or a count/number of items per unit volume. Concentration impliles the amount of one substance/item within another substance.','Chemistry','http://vocabulary.odm2.org/unitstype/concentrationCountPerVolume'),('concentrationOrDensityMassPerVolume','Concentration or density mass per volume','The mass of one substance per unit volume of another substance. These units are commonly used in both density and concentration measurements','Chemistry','http://vocabulary.odm2.org/unitstype/concentrationOrDensityMassPerVolume'),('concentrationVolumePerVolume','Concentration volume per volume','The volume of one substance per unit volume of another substance. This is used for volume percents or the ppm of a gas mixture.','Dimensionless Ratio','http://vocabulary.odm2.org/unitstype/concentrationVolumePerVolume'),('count','Count','Count or amount of substance is a standards-defined quantity that measures the size of an ensemble of elementary entities, such as atoms, molecules, electrons, and other particles. It is a macroscopic property and it is sometimes referred to as chemical amount. The International System of Units (SI) defines the amount of substance to be proportional to the number of elementary entities present. The SI unit for amount of substance is the mole. It has the unit symbol mol.','Base Quantity','http://vocabulary.odm2.org/unitstype/count'),('countPerArea','Count per area','The areal density of a given amount of a substance. This unit group is also used for pixel densities (often incorrectly called resolution).','Space and Time','http://vocabulary.odm2.org/unitstype/countPerArea'),('countPerLength','Count per length','The length density of a given amount of a substance. This unit group is also used for image and TV resolutions measured in lines. This is distinct from \"inverse length\" in that there is something specific being counted per unit length, that is, the numerator is not dimensionless.','Space and Time','http://vocabulary.odm2.org/unitstype/countPerLength'),('currency','Currency','A currency (from Middle English: curraunt, \"in circulation\", from Latin: currens, -entis) in the most specific use of the word refers to money in any form when in actual use or circulation as a medium of exchange, especially circulating banknotes and coins. A more general definition is that a currency is a system of money (monetary units) in common use, especially in a nation. [Wikipedia; https://en.wikipedia.org/wiki/Currency]','Financial','http://vocabulary.odm2.org/unitstype/currency'),('dataRate','Data rate','The frequency derived from the period of time required to transmit one bit. This represents the amount of data transferred per second by a communications channel or a computing or storage device. Data rate is measured in units of bits per second (written \"b/s\" or \"bps\"), bytes per second (Bps), or baud. When applied to data rate, the multiplier prefixes \"kilo-\", \"mega-\", \"giga-\", etc. (and their abbreviations, \"k\", \"M\", \"G\", etc.) always denote powers of 1000. For example, 64 kbps is 64,000 bits per second. This contrasts with units of storage which use different prefixes to denote multiplication by powers of 1024, e.g. 1 kibibit = 1024 bits.','Information','http://vocabulary.odm2.org/unitstype/dataRate'),('diffusivity','Diffusivity','Used for kinematic viscosity (also known as momentum diffusivity) and thermal diffusivity. The Kinematic Viscosity of a fluid is the dynamic viscosity divided by the fluid density. In heat transfer analysis, thermal diffusivity (usually denoted α but a, κ, and D are also used) is the thermal conductivity divided by density and specific heat capacity at constant pressure. It measures the ability of a material to conduct thermal energy relative to its ability to store thermal energy.','Fluid Mechanics','http://vocabulary.odm2.org/unitstype/diffusivity'),('dimensionless','Dimensionless','Any unit or combination of units that has no dimensions. A Dimensionless Unit is a quantity for which all the exponents of the factors corresponding to the base quantities in its quantity dimension are zero.','Dimensionless','http://vocabulary.odm2.org/unitstype/dimensionless'),('doseEquivalent','Dose equivalent','Equivalent dose or radiation dosage is a dose quantity used in radiological protection to represent the stochastic health effects (probability of cancer induction and genetic damage) of low levels of ionizing radiation on the human body. It is based on the physical quantity absorbed dose, but takes into account the biological effectiveness of the radiation, which is dependent on the radiation type and energy. [Wikipedia: https://en.wikipedia.org/wiki/Absorbed_dose]','Radiology','http://vocabulary.odm2.org/unitstype/doseEquivalent'),('dynamicViscosity','Dynamic viscosity','The dynamic (shear) viscosity of a fluid expresses its resistance to shearing flows, where adjacent layers move parallel to each other with different speeds. Both the physical unit of dynamic viscosity in SI Poiseuille (Pl) and the cgs units Poise (P) come from Jean Léonard Marie Poiseuille. The poiseuille, which is never used, is equivalent to the pascal-second (Pa·s), or (N·s)/m2, or kg/(m·s).','Fluid Mechanics','http://vocabulary.odm2.org/unitstype/dynamicViscosity'),('electricalCapacitance','Electrical capacitance','Capacitance is the ability of a body to store an electrical charge.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalCapacitance'),('electricalCharge','Electrical charge','Electric charge is the physical property of matter that causes it to experience a force when placed in an electromagnetic field. The SI derived unit of electric charge is the coulomb (C), although in electrical engineering it is also common to use the ampere-hour (Ah), and in chemistry it is common to use the elementary charge (e) as a unit. The symbol Q is often used to denote charge. [Wikipedia: https://en.wikipedia.org/wiki/Electric_charge]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalCharge'),('electricalChargeLineDensity','Electrical charge line density','The linear charge density is the amount of electric charge in a line. It is measured in coulombs per metre (C/m). Since there are positive as well as negative charges, the charge density can take on negative values. [Wikipedia]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalChargeLineDensity'),('electricalChargePerCount','Electrical charge per count','The amount of electrical charge within a given count of something.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalChargePerCount'),('electricalChargePerMass','Electrical charge per mass','Unit group for radiation exposure and gyromagnetic ratios','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalChargePerMass'),('electricalChargeVolumeDensity','Electrical charge volume density','In electromagnetism, charge density is a measure of electric charge per unit volume of space, in one, two or three dimensions. More specifically: the linear, surface, or volume charge density is the amount of electric charge per unit length, surface area, or volume, respectively. The respective SI units are C·m−1, C·m−2 or C·m−3.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalChargeVolumeDensity'),('electricalConductance','Electrical conductance','Conductance is the reciprocal of resistance and is different from conductivitiy (specific conductance). Conductance is the ease with which an electric current passes through a conductor. The SI unit of electrical resistance is the ohm (Ω), while electrical conductance is measured in siemens (S). [Wikipedia: https://en.wikipedia.org/wiki/Electrical_resistance_and_conductance]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalConductance'),('electricalConductivity','Electrical conductivity','Electrical conductivity or specific conductance is the reciprocal of electrical resistivity, and measures a material\'s ability to conduct an electric current. It is commonly represented by the Greek letter σ (sigma), but κ (kappa) (especially in electrical engineering) or γ (gamma) are also occasionally used. Its SI unit is siemens per metre (S/m) and CGSE unit is reciprocal second (s−1). [Wikipedia: https://en.wikipedia.org/wiki/Electrical_resistivity_and_conductivity]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalConductivity'),('electricalCurrent','Electrical current','An electric current is a flow of electric charge. In electric circuits this charge is often carried by moving electrons in a wire. It can also be carried by ions in an electrolyte, or by both ions and electrons such as in a plasma. The SI unit for measuring an electric current is the ampere, which is the flow of electric charge across a surface at the rate of one coulomb per second. [Wikipedia: https://en.wikipedia.org/wiki/Electric_current]','Base Quantity','http://vocabulary.odm2.org/unitstype/electricalCurrent'),('electricalCurrentDensity','Electrical current density','Electric current density is a measure of the density of flow of electric charge; it is the electric current per unit area of cross section. Electric current density is a vector-valued quantity.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalCurrentDensity'),('electricalCurrentPerAngle','Electrical current per angle',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalCurrentPerAngle'),('electricalCurrentPerEnergy','Electrical current per energy',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalCurrentPerEnergy'),('electricalDipoleMoment','Electrical dipole moment','In physics, the electric dipole moment is a measure of the separation of positive and negative electrical charges in a system of electric charges, that is, a measure of the charge system\'s overall polarity. The SI units are Coulomb-meter (C m). [Wikipedia: https://en.wikipedia.org/wiki/Electric_dipole_moment]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalDipoleMoment'),('electricalFieldStrength','Electrical field strength','The strength of the electric field at a given point is defined as the force that would be exerted on a positive test charge of +1 coulomb placed at that point; the direction of the field is given by the direction of that force. Electric fields contain electrical energy with energy density proportional to the square of the field intensity. The electric field is to charge as gravitational acceleration is to mass and force density is to volume.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalFieldStrength'),('electricalFlux','Electrical flux','The Electric Flux through an area is defined as the electric field multiplied by the area of the surface projected in a plane perpendicular to the field. Electric Flux is a scalar-valued quantity.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalFlux'),('electricalFluxDensity','Electrical flux density','In physics, the electric flux density (or electric displacement field), denoted by D, is a vector field that appears in Maxwell\'s equations. It accounts for the effects of free and bound charge within materials. \"D\" stands for \"displacement\", as in the related concept of displacement current in dielectrics. In free space, the electric displacement field is equivalent to flux density, a concept that lends understanding to Gauss\'s law.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalFluxDensity'),('electricalPermittivity','Electrical permittivity','In electromagnetism, absolute permittivity is the measure of the resistance that is encountered when forming an electric field in a medium. In other words, permittivity is a measure of how an electric field affects, and is affected by, a dielectric medium. The permittivity of a medium describes how much electric field (more correctly, flux) is \'generated\' per unit charge in that medium. More electric flux exists in a medium with a low permittivity (per unit charge) because of polarization effects. Permittivity is directly related to electric susceptibility, which is a measure of how easily a dielectric polarizes in response to an electric field. Thus, permittivity relates to a material\'s ability to resist an electric field and \"permit\" is a misnomer. In SI units, permittivity ε is measured in farads per meter (F/m)','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalPermittivity'),('electricalQuadrupoleMoment','Electrical quadrupole moment','The Electric Quadrupole Moment is a quantity which describes the effective shape of the ellipsoid of nuclear charge distribution. A non-zero quadrupole moment Q indicates that the charge distribution is not spherically symmetric. By convention, the value of Q is taken to be positive if the ellipsoid is prolate and negative if it is oblate. In general, the electric quadrupole moment is tensor-valued.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalQuadrupoleMoment'),('electricalResistance','Electrical resistance','Electrical resistance is a ratio of the degree to which an object opposes an electric current through it, measured in ohms. Its reciprocal quantity is electrical conductance measured in siemens.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalResistance'),('electricalResistivity','Electrical resistivity','Electrical resistivity (also known as resistivity, specific electrical resistance, or volume resistivity) is an intrinsic property that quantifies how strongly a given material opposes the flow of electric current. A low resistivity indicates a material that readily allows the movement of electric charge. Resistivity is commonly represented by the Greek letter ρ (rho). The SI unit of electrical resistivity is the ohmâ‹…metre (Ω⋅m)[1][2][3] although other units like ohmâ‹…centimetre (Ω⋅cm) are also in use. [Wikipedia: https://en.wikipedia.org/wiki/Electrical_resistivity_and_conductivity]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electricalResistivity'),('electromotiveForce','Electromotive force','In physics, electromotive force, or most commonly emf (seldom capitalized), voltage, or (occasionally) electromotance is \"that which tends to cause current (actual electrons and ions) to flow.\". More formally, emf is the external work expended per unit of charge to produce an electric potential difference across two open-circuited terminals.[2][3] The electric potential difference is created by separating positive and negative charges, thereby generating an electric field.[4][5] The created electrical potential difference drives current flow if a circuit is attached to the source of emf. When current flows, however, the voltage across the terminals of the source of emf is no longer the open-circuit value, due to voltage drops inside the device due to its internal resistance. [Wikipedia: https://en.wikipedia.org/wiki/Electromotive_force]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/electromotiveForce'),('energy','Energy','In physics, energy is a property of objects which can be transferred to other objects or converted into different forms, but cannot be created or destroyed. Energy, work, and heat all have identical units.','Space and Time','http://vocabulary.odm2.org/unitstype/energy'),('energyDensity','Energy density','Energy density is the amount of energy stored in a given system or region of space per unit volume or mass, though the latter is more accurately termed specific energy.','Mechanics','http://vocabulary.odm2.org/unitstype/energyDensity'),('energyFlux','Energy flux','Energy flux is the rate of transfer of energy through a surface. The quantity is defined in two different ways, depending on the context. In the first context, it is the rate of energy transfer per unit area (SI units: W·m−2 = J·m−2·s−1). This is a vector quantity, its components being determined in terms of the normal (perpendicular) direction to the surface of measurement. This is sometimes called energy flux density, to distinguish it from the second definition. Radiative flux, heat flux, and sound energy flux are specific cases of energy flux density. In the second context, it is the total rate of energy transfer (SI units: W = J·s−1). This is sometimes informally called energy current.',NULL,'http://vocabulary.odm2.org/unitstype/energyFlux'),('energyPerArea','Energy per area','Energy per area density is the amount of energy stored in a given system or region of space per unit area. Has the same dimensionality as force per unit length.','Mechanics','http://vocabulary.odm2.org/unitstype/energyPerArea'),('energyPerAreaElectricalCharge','Energy per area electrical charge',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/energyPerAreaElectricalCharge'),('energyPerSquareMagneticFluxDensity','Energy per square magnetic flux density',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/energyPerSquareMagneticFluxDensity'),('fluidPermeance','Fluid permeance','Permeance is closely related to permeability, but it refers to the extent of penetration of a specific object with given thickness by a liquid or a gas. It is the degee to which a materal or membrane transmits another substance. Units of permeance are volumetric output per unit membrane area per unit trans-membrane pressure. Permeance is also referred to as pressure-normalized flux.','Fluid Mechanics','http://vocabulary.odm2.org/unitstype/fluidPermeance'),('fluidResistance','Fluid resistance','In fluid dynamics, drag (sometimes called air resistance, a type of friction, or fluid resistance, another type of friction or fluid friction) refers to forces acting opposite to the relative motion of any object moving with respect to a surrounding fluid. [Wikipedia: https://en.wikipedia.org/wiki/Drag_%28physics%29]','Fluid Mechanics','http://vocabulary.odm2.org/unitstype/fluidResistance'),('fluidity','Fluidity','The reciprocal of viscosity is fluidity, usually symbolized by φ = 1 / μ or F = 1 / μ, depending on the convention used, measured in reciprocal poise (cm·s·g−1), sometimes called the rhe. Fluidity is seldom used in engineering practice. [Wikipedia: https://en.wikipedia.org/wiki/Viscosity]','Fluid Mechanics','http://vocabulary.odm2.org/unitstype/fluidity'),('fluorescence','Fluorescence','Fluorescence is the emission of light by a substance that has absorbed light or other electromagnetic radiation.','Dimensionless','http://vocabulary.odm2.org/unitstype/fluorescence'),('force','Force','Force is an influence that causes mass to accelerate. It may be experienced as a lift, a push, or a pull. Force is defined by Newton\'s Second Law as F = m · a, where F is force, m is mass and a is acceleration. Net force is mathematically equal to the time rate of change of the momentum of the body on which it acts. Since momentum is a vector quantity (has both a magnitude and direction), force also is a vector quantity.','Mechanics','http://vocabulary.odm2.org/unitstype/force'),('forcePerLength','Force per length','The amount of force applied per unit length. Frequenty used for surface tension.','Mechanics','http://vocabulary.odm2.org/unitstype/forcePerLength'),('frequency','Frequency','Frequency is the number of occurrences of a repeating event per unit time. The repetition of the events may be periodic (i.e. the length of time between event repetitions is fixed) or aperiodic (i.e. the length of time between event repetitions varies). Therefore, we distinguish between periodic and aperiodic frequencies. In the SI system, periodic frequency is measured in hertz (Hz) or multiples of hertz, while aperiodic frequency is measured in becquerel (Bq).','Space and Time','http://vocabulary.odm2.org/unitstype/frequency'),('gravitationalAttraction','Gravitational attraction','Gravity or gravitation is a natural phenomenon by which all things attract one another including stars, planets, galaxies and even light and sub-atomic particles. Gravity is responsible for the formation of the universe (e.g. creating spheres of hydrogen, igniting them under pressure to form stars and grouping them in to galaxies). Without gravity, the universe would be without thermal energy and composed only of equally spaced particles. On Earth, gravity gives weight to physical objects and causes the tides. Gravity has an infinite range, and it cannot be absorbed, transformed, or shielded against. [Wikipedia: https://en.wikipedia.org/wiki/Gravity]','Mechanics','http://vocabulary.odm2.org/unitstype/gravitationalAttraction'),('heatCapacity','Heat capacity','Heat capacity, or thermal capacity, is a measurable physical quantity equal to the ratio of the heat added to (or removed from) an object to the resulting temperature change. The SI unit of heat capacity is joule per kelvin and the dimensional form is L2MT−2Θ−1. [Wikipedia: https://en.wikipedia.org/wiki/Heat_capacity]','Thermodynamics','http://vocabulary.odm2.org/unitstype/heatCapacity'),('heatTransferCoefficient','Heat transfer Coefficient','The heat transfer coefficient or film coefficient, in thermodynamics and in mechanics is the proportionality coefficient between the heat flux and the thermodynamic driving force for the flow of heat (i.e., the temperature difference, ΔT)','Thermodynamics','http://vocabulary.odm2.org/unitstype/heatTransferCoefficient'),('Hyperpolarizability','Hyperpolarizability','The hyperpolarizability, a nonlinear-optical property of a molecule, is the second-order electric susceptibility per unit volume. [Wikipedia: https://en.wikipedia.org/wiki/Hyperpolarizability]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/Hyperpolarizability'),('illuminance','Illuminance','Illuminance (also know as luminous emittance or luminous flux per area), is the total luminous flux incident on a surface, per unit area. It is a measure of the intensity of the incident light, wavelength-weighted by the luminosity function to correlate with human brightness perception.','Photometry','http://vocabulary.odm2.org/unitstype/illuminance'),('inductance','Inductance','Inductance is an electromagentic quantity that characterizes a circuit\'s resistance to any change of electric current; a change in the electric current through induces an opposing electromotive force (EMF). Quantitatively, inductance is proportional to the magnetic flux per unit of electric current.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/inductance'),('inverseCount','Inverse count',NULL,'Chemistry','http://vocabulary.odm2.org/unitstype/inverseCount'),('inverseEnergy','Inverse energy',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/inverseEnergy'),('inverseLength','Inverse length','The inverse of length - frequently used for absorption or attenuation coefficients and wave numbers. This can also be used to for extrinsic curvature where the unit \'diopter\' is used.','Space and Time','http://vocabulary.odm2.org/unitstype/inverseLength'),('inverseLengthTemperature','Inverse length temperature',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/inverseLengthTemperature'),('inverseMagneticFlux','Inverse magnetic flux',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/inverseMagneticFlux'),('inversePermittivity','Inverse permittivity',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/inversePermittivity'),('inverseSquareEnergy','Inverse square energy',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/inverseSquareEnergy'),('inverseTimeTemperature','Inverse time temperature',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/inverseTimeTemperature'),('inverseVolume','Inverse volume',NULL,'Space and Time','http://vocabulary.odm2.org/unitstype/inverseVolume'),('jerk','Jerk','In physics, jerk, also known as jolt, surge, or lurch, is the rate of change of acceleration; that is, the derivative of acceleration with respect to time, and as such the second derivative of velocity, or the third derivative of position. [Wikipedia: https://en.wikipedia.org/wiki/Jerk_%28physics%29]','Mechanics','http://vocabulary.odm2.org/unitstype/jerk'),('length','Length','In the International System of Quantities, length is any quantity with dimension distance. [Wikipedia: https://en.wikipedia.org/wiki/Length]','Base Quantity','http://vocabulary.odm2.org/unitstype/length'),('lengthEnergy','Length energy',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/lengthEnergy'),('lengthFraction','Length fraction','The ratio or two lengths, often used to measure slope or scale.','Space and Time','http://vocabulary.odm2.org/unitstype/lengthFraction'),('lengthIntegratedMassConcentration','Length integrated mass concentration','A mass concentration per unit length. These units can be used to measure concentration inputs of a chemical along the length of a waterway.','Chemistry','http://vocabulary.odm2.org/unitstype/lengthIntegratedMassConcentration'),('lengthMass','Length mass',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/lengthMass'),('lengthMolarEnergy','Length molar energy',NULL,'Chemistry','http://vocabulary.odm2.org/unitstype/lengthMolarEnergy'),('lengthPerMagneticFlux','Length per magnetic flux',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/lengthPerMagneticFlux'),('lengthTemperature','Length temperature',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/lengthTemperature'),('lengthTemperatureTime','Length temperature time',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/lengthTemperatureTime'),('level','Level','\"Psuedo Units\" defined from a log ratio. This includes any number of units like deciBels where the unit is derived as a log ratio of two other units. The logarithm distinguishes these from other dimensionless ratios.','Dimensionless Ratio','http://vocabulary.odm2.org/unitstype/level'),('linearAcceleration','Linear acceleration','Linear acceleration, in physics, is the rate at which the velocity of an object changes over time. Velocity and acceleration are vector quantities, with magnitude and direction that add according to the parallelogram law. The SI unit for acceleration is the metre per second squared (m/s2).','Mechanics','http://vocabulary.odm2.org/unitstype/linearAcceleration'),('linearEnergyTransfer','Linear energy transfer','Linear energy transfer (LET) is a term used in dosimetry. It describes the action of radiation upon matter. It is identical to the retarding force acting on a charged ionizing particle travelling through the matter. It describes how much energy an ionising particle transfers to the material transversed per unit distance. By definition, LET is a positive quantity. LET depends on the nature of the radiation as well as on the material traversed. [Wikipedia: https://en.wikipedia.org/wiki/Linear_energy_transfer]','Atomic Physics','http://vocabulary.odm2.org/unitstype/linearEnergyTransfer'),('linearMomentum','Linear momentum','In classical mechanics, linear momentum or translational momentum (pl. momenta; SI unit kg m/s, or equivalently, N s) is the product of the mass and velocity of an object.','Mechanics','http://vocabulary.odm2.org/unitstype/linearMomentum'),('linearThermalExpansion','Linear thermal expansion','When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: * linear thermal expansion * area thermal expansion * volumetric thermal expansion These characteristics are closely related. The volumetric thermal expansion coefficient can be defined for both liquids and solids. The linear thermal expansion can only be defined for solids, and is common in engineering applications. Some substances expand when cooled, such as freezing water, so they have negative thermal expansion coefficients. [Wikipedia: https://en.wikipedia.org/wiki/Thermal_expansion]','Thermodynamics','http://vocabulary.odm2.org/unitstype/linearThermalExpansion'),('linearVelocity','Linear velocity','Velocity is the rate of change of the position of an object, equivalent to a specification of its speed and direction of motion.Velocity is an important concept in kinematics, the branch of classical mechanics which describes the motion of bodies.Velocity is a vector physical quantity; both magnitude and direction are required to define it. The scalar absolute value (magnitude) of velocity is called \"speed\", a quantity that is measured in metres per second (m/s or m·s−1) in the SI (metric) system.','Mechanics','http://vocabulary.odm2.org/unitstype/linearVelocity'),('luminance','Luminance','Luminance is a photometric measure of the luminous intensity per unit area of light travelling in a given direction. It describes the amount of light that passes through or is emitted from a particular area, and falls within a given solid angle.','Photometry','http://vocabulary.odm2.org/unitstype/luminance'),('luminousEfficacy','Luminous efficacy','Luminous Efficacy is the ratio of luminous flux (in lumens) to power (usually measured in watts). Depending on context, the power can be either the radiant flux of the source\'s output, or it can be the total electric power consumed by the source.','Photometry','http://vocabulary.odm2.org/unitstype/luminousEfficacy'),('luminousEnergy','Luminous Energy','In photometry, luminous energy is the perceived energy of light. This is sometimes called the quantity of light. Luminous energy is not the same as radiant energy, the corresponding objective physical quantity. This is because the human eye can only see light in the visible spectrum and has different sensitivities to light of different wavelengths within the spectrum. When adapted for bright conditions (photopic vision), the eye is most sensitive to light at a wavelength of 555 nm. Light with a given amount of radiant energy will have more luminous energy if the wavelength is 555 nm than if the wavelength is longer or shorter. Light whose wavelength is well outside the visible spectrum has a luminous energy of zero, regardless of the amount of radiant energy present.','Photometry','http://vocabulary.odm2.org/unitstype/luminousEnergy'),('luminousFlux','Luminous flux','Luminous Flux or Luminous Power is the measure of the perceived power of light. It differs from radiant flux, the measure of the total power of light emitted, in that luminous flux is adjusted to reflect the varying sensitivity of the human eye to different wavelengths of light.','Photometry','http://vocabulary.odm2.org/unitstype/luminousFlux'),('luminousIntensity','Luminous intensity','Luminous Intensity is a measure of the wavelength-weighted power emitted by a light source in a particular direction per unit solid angle. The weighting is determined by the luminosity function, a standardized model of the sensitivity of the human eye to different wavelengths.','Base Quantity','http://vocabulary.odm2.org/unitstype/luminousIntensity'),('magneticDipoleMoment','Magnetic dipole moment','The magnetic moment of a system is a measure of the magnitude and the direction of its magnetism. Magnetic moment usually refers to its Magnetic Dipole Moment, and quantifies the contribution of the system\'s internal magnetism to the external dipolar magnetic field produced by the system (that is, the component of the external magnetic field that is inversely proportional to the cube of the distance to the observer). The Magnetic Dipole Moment is a vector-valued quantity.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magneticDipoleMoment'),('magneticFieldStrength','Magnetic field strength','The magnetic field strength, H (also called magnetic field intensity, magnetizing field, or magnetic field), characterizes how the true Magnetic Field B influences the organization of magnetic dipoles in a given medium.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magneticFieldStrength'),('magneticFlux','Magnetic flux','Magnetic Flux is the product of the average magnetic field times the perpendicular area that it penetrates.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magneticFlux'),('magneticFluxDensity','Magnetic flux density','The Magnetic flux density, B (also called magnetic induction or magnetic field), is a fundamental field in electrodynamics which characterizes the magnetic force exerted by electric currents. It is closely related to the auxillary magnetic field H.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magneticFluxDensity'),('magneticFluxPerLength','Magnetic flux per length','Magnetic Flux Per Unit Length','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magneticFluxPerLength'),('magneticPermeability','Magnetic permeability','Permeability is the degree of magnetization of a material that responds linearly to an applied magnetic field. In general permeability is a tensor-valued quantity.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magneticPermeability'),('magnetomotiveForce','Magnetomotive force','Magnetomotive force is any physical cause that produces magnetic flux. In other words, it is a field of magnetism (measured in tesla) that has area (measured in square meters), so that (Tesla)(Area)= Flux. It is analogous to electromotive force or voltage in electricity. MMF usually describes electric wire coils in a way so scientists can measure or predict the actual force a wire coil can generate. [Wikipedia: https://en.wikipedia.org/wiki/Magnetomotive_force]','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/magnetomotiveForce'),('mass','Mass','In physics, mass is a property of a physical body which determines the strength of its mutual gravitational attraction to other bodies, its resistance to being accelerated by a force, and in the theory of relativity gives the mass–energy content of a system. The SI unit of mass is the kilogram (kg).','Base Quantity','http://vocabulary.odm2.org/unitstype/mass'),('massCount','Mass count',NULL,'Chemistry','http://vocabulary.odm2.org/unitstype/massCount'),('massCountTemperature','Mass count temperature',NULL,'Chemistry','http://vocabulary.odm2.org/unitstype/massCountTemperature'),('massFlux','Mass flux','In physics and engineering, mass flux is the rate of mass flow per unit area, perfectly overlapping with the momentum density, the momentum per unit volume. The common symbols are j, J, q, Q, φ, or Φ (Greek lower or capital Phi), sometimes with subscript m to indicate mass is the flowing quantity. Its SI units are kg s−1 m−2. Mass flux can also refer to an alternate form of flux in Fick\'s law that includes the molecular mass, or in Darcy\'s law that includes the mass density. [Wikipedia: https://en.wikipedia.org/wiki/Mass_flux]','Chemistry','http://vocabulary.odm2.org/unitstype/massFlux'),('massFraction','Mass fraction','In chemistry, the mass fraction is the ratio of one substance with mass to the mass of the total mixture , defined asThe sum of all the mass fractions is equal to 1:Mass fraction can also be expressed, with a denominator of 100, as percentage by weight (wt%). It is one way of expressing the composition of a mixture in a dimensionless size; mole fraction (percentage by moles, mol%) and volume fraction (percentage by volume, vol%) are others. For elemental analysis, mass fraction (or \"mass percent composition\") can also refer to the ratio of the mass of one element to the total mass of a compound. It can be calculated for any compound using its empirical formula. or its chemical formula','Dimensionless Ratio','http://vocabulary.odm2.org/unitstype/massFraction'),('massNormalizedParticleLoading','Mass normalized particle loading','The number of particles or organisms per unit time per unit mass.','Chemistry','http://vocabulary.odm2.org/unitstype/massNormalizedParticleLoading'),('massPerArea','Mass per area',NULL,'Chemistry','http://vocabulary.odm2.org/unitstype/massPerArea'),('massPerElectricalCharge','Mass per electrical charge',NULL,'Chemistry','http://vocabulary.odm2.org/unitstype/massPerElectricalCharge'),('massPerLength','Mass per length',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/massPerLength'),('massPerTime','Mass per time','In physics and engineering, mass flow rate is the mass of a substance which passes per unit of time. [Wikipedia: https://en.wikipedia.org/wiki/Mass_flow_rate]','Mechanics','http://vocabulary.odm2.org/unitstype/massPerTime'),('massTemperature','Mass temperature',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/massTemperature'),('molarAngularMomentum','Molar angular momentum','The angular momentum per mole of substance. Used for measuring electron orbitals.','Chemistry','http://vocabulary.odm2.org/unitstype/molarAngularMomentum'),('molarConductivity','Molar conductivity','Molar conductivity is defined as the conductivity of an electrolyte solution divided by the molar concentration of the electrolyte, and so measures the efficiency with which a given electrolyte conducts electricity in solution. Its units are siemens per meter per molarity, or siemens meter-squared per mole. The usual symbol is a capital lambda, Λ, or Λm. Or Molar conductivity of a solution at a given concentration is the conductance of the volume (V) of the solution containing one mole of electrolyte kept between two electrodes with area of cross section (A) and at a distance of unit length. [Wikipedia: https://en.wikipedia.org/wiki/Molar_conductivity]','Chemistry','http://vocabulary.odm2.org/unitstype/molarConductivity'),('molarEnergy','Molar energy','The amount of energy per mole of substance','Chemistry','http://vocabulary.odm2.org/unitstype/molarEnergy'),('molarHeatCapacity','Molar heat capacity','The molar heat capacity is the heat capacity per unit amount of a pure substance. [Wikipedia: https://en.wikipedia.org/wiki/Heat_capacity]','Thermodynamics','http://vocabulary.odm2.org/unitstype/molarHeatCapacity'),('molarMass','Molar mass','In chemistry, the molar mass M is a physical property defined as the mass of a given substance (chemical element or chemical compound) divided by its amount of substance. The base SI unit for molar mass is kg/mol. However, for historical reasons, molar masses are almost always expressed in g/mol. [Wikipedia: https://en.wikipedia.org/wiki/Molar_mass]','Chemistry','http://vocabulary.odm2.org/unitstype/molarMass'),('molarVolume','Molar volume','The molar volume, symbol Vm, is the volume occupied by one mole of a substance (chemical element or chemical compound) at a given temperature and pressure. It is equal to the molar mass (M) divided by the mass density (ρ). [Wikipedia: https://en.wikipedia.org/wiki/Molar_volume]','Chemistry','http://vocabulary.odm2.org/unitstype/molarVolume'),('other','Other','A unit that does not belong in any of the other groups. These units have dimensionality, but are generally strangely compounded or calculated','Dimensionless','http://vocabulary.odm2.org/unitstype/other'),('particleFlux','Particle flux','The number of particles, organisms, or moles of substance going through a specific area in a given amount of time.','Chemistry','http://vocabulary.odm2.org/unitstype/particleFlux'),('particleLoading','Particle loading','The number of particles, organisms, or moles of substance appearing in a given amount of time.','Chemistry','http://vocabulary.odm2.org/unitstype/particleLoading'),('pH','pH','In chemistry, pH (/piːˈeɪtʃ/) is a numeric scale used to specify the acidity or alkalinity of an aqueous solution. It is the negative of the logarithm to base 10 of the activity of the hydrogen ion. Solutions with a pH less than 7 are acidic and solutions with a pH greater than 7 are alkaline or basic. Pure water is neutral, being neither an acid nor a base. Contrary to popular belief, the pH value can be less than 0 or greater than 14 for very strong acids and bases respectively. [Wikipedia: https://en.wikipedia.org/wiki/PH]','Chemistry','http://vocabulary.odm2.org/unitstype/pH'),('polarizability','Polarizability','Polarizability is the relative tendency of a charge distribution, like the electron cloud of an atom or molecule, to be distorted from its normal shape by an external electric field, which may be caused by the presence of a nearby ion or dipole. The electronic polarizability α is defined as the ratio of the induced dipole moment of an atom to the electric field that produces this dipole moment. Polarizability is often a scalar valued quantity, however in the general case it is tensor-valued.','Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/polarizability'),('potentialVorticity','Potential vorticity','Potential vorticity (PV) is a quantity which is proportional to the dot product of vorticity and stratification that, following a parcel of air or water, can only be changed by diabatic or frictional processes. It is a useful concept for understanding the generation of vorticity in cyclogenesis (the birth and development of a cyclone), especially along the polar front, and in analyzing flow in the ocean. [Wikipedia: https://en.wikipedia.org/wiki/Potential_vorticity]','Fluid Mechanics','http://vocabulary.odm2.org/unitstype/potentialVorticity'),('power','Power','Power is the rate at which work is performed or energy is transmitted, or the amount of energy required or expended for a given unit of time. As a rate of change of work done or the energy of a subsystem, power is: P = W/t where P is power W is work t is time. Heat flow rate follows identical units to Power','Mechanics','http://vocabulary.odm2.org/unitstype/power'),('powerArea','Power area',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/powerArea'),('powerAreaPerSolidAngle','Power area per solid angle',NULL,'Mechanics','http://vocabulary.odm2.org/unitstype/powerAreaPerSolidAngle'),('powerPerArea','Power per area','A general term for heat flow rate per unit area, power per unit area, irradiance, radient emmitance, and radiosity. All these terms are sometimes referred to as \"intensity.\"','Mechanics','http://vocabulary.odm2.org/unitstype/powerPerArea'),('powerPerAreaQuarticTemperature','Power per area quartic temperature','The units of the Stefan-Boltzmann constant. The Stefan–Boltzmann law states that the total energy radiated per unit surface area of a black body across all wavelengths per unit time (also known as the black-body radiant exitance or emissive power), j*, is directly proportional to the fourth power of the black body\'s thermodynamic temperature. The constant of proportionality σ, called the Stefan–Boltzmann constant or Stefan\'s constant, derives from other known constants of nature. The value of the constant is5.670373 x 10^8 Wm^-2K^-4. [Wikipedia: https://en.wikipedia.org/wiki/Stefan%E2%80%93Boltzmann_constant]','Thermodynamics','http://vocabulary.odm2.org/unitstype/powerPerAreaQuarticTemperature'),('powerPerElectricalCharge','Power per electrical charge',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/powerPerElectricalCharge'),('pressureOrStress','Pressure or stress','Pressure is an effect which occurs when a force is applied on a surface. Pressure is the amount of force acting on a unit area. Pressure is distinct from stress, as the former is the ratio of the component of force normal to a surface to the surface area. Stress is a tensor that relates the vector force to the vector area.','Space and Time','http://vocabulary.odm2.org/unitstype/pressureOrStress'),('pressureOrStressRate','Pressure or stress rate',NULL,'Space and Time','http://vocabulary.odm2.org/unitstype/pressureOrStressRate'),('quarticElectricDipoleMomentPerCubicEnergy','Quartic electrical dipole moment per cubic energy',NULL,'Electricity and Magnetism','http://vocabulary.odm2.org/unitstype/quarticElectricDipoleMomentPerCubicEnergy'),('radiance','Radiance','In radiometry, radiance is the radiant flux emitted, reflected, transmitted or received by a surface, per unit solid angle per unit projected area. Radiance is used to characterize diffuse emission and reflection of electromagnetic radiation, or to quantify emission of neutrinos and other particles. This is a directional quantity. Historically, radiance is called \"intensity\" and spectral radiance is called \"specific intensity\". [Wikipedia: https://en.wikipedia.org/wiki/Radiance]','Radiology','http://vocabulary.odm2.org/unitstype/radiance'),('radiantIntensity','Radiant Intensity','Radiant flux emitted, reflected, transmitted or received, per unit solid angle. This is a directional quantity. [Wikipedia: https://en.wikipedia.org/wiki/Radiant_intensity]','Radiology','http://vocabulary.odm2.org/unitstype/radiantIntensity'),('radioactivity','Radioactivity','Activity is the term used to characterise the number of nuclei which disintegrate in a radioactive substance per unit time. Activity is usually measured in Becquerels (Bq), where 1 Bq is 1 disintegration per second.','Quantum Mechanics','http://vocabulary.odm2.org/unitstype/radioactivity'),('radioactivityPerVolume','Radioactivity per volume','The amount of radioactivity per unit volume','Quantum Mechanics','http://vocabulary.odm2.org/unitstype/radioactivityPerVolume'),('salinity','Salinity','Salinity is the saltiness or dissolved salt content of a body of water. Salinity is an important factor in determining many aspects of the chemistryof natural waters and of biological processes within it, and is a thermodynamic state variable that, along with temperature and pressure, governs physical characteristics like the density and heat capacity of the water. The use of electrical conductivity measurements to estimate the ionic content of seawater led to the development of the so-called practical salinity scale 1978 (PSS-78). Salinities measured using PSS-78 do not have units. The \'unit\' of PSU (denoting practical salinity unit) is sometimes added to PSS-78 measurements, however this is officially discouraged.','Chemistry','http://vocabulary.odm2.org/unitstype/salinity'),('satelliteResolution','Satellite resolution','In remote sensing, a satellite\'s resolution is defined as the size on the earth of the smallest individual component or dot (called a pixel) from which the image is constituted. This is also reffered to as the ground sample distance.','Space and Time','http://vocabulary.odm2.org/unitstype/satelliteResolution'),('snap','Snap','In physics, jounce or snap is the fourth derivative of the position vector with respect to time, with the first, second, and third derivatives being velocity, acceleration, and jerk, respectively; hence, the jounce is the rate of change of the jerk with respect to time. [Wikipedia: https://en.wikipedia.org/wiki/Jounce]','Mechanics','http://vocabulary.odm2.org/unitstype/snap'),('solidAngle','Solid angle','The solid angle subtended by a surface S is defined as the surface area of a unit sphere covered by the surface S\'s projection onto the sphere. A solid angle is related to the surface of a sphere in the same way an ordinary angle is related to the circumference of a circle. Since the total surface area of the unit sphere is 4*pi, the measure of solid angle will always be between 0 and 4*pi.','Space and Time','http://vocabulary.odm2.org/unitstype/solidAngle'),('specificEnergy','Specific energy','Specific energy is energy per unit mass. (It is also sometimes called \"energy density,\" though \"energy density\" more precisely means energy per unit volume.) The SI unit for specific energy is the joule per kilogram (J/kg). Other units still in use in some contexts are the kilocalorie per gram (Cal/g or kcal/g), mostly in food-related topics, watt hours per kilogram in the field of batteries, and the Imperial unit BTU per pound (BTU/lb), in some engineering and applied technical fields.','Mechanics','http://vocabulary.odm2.org/unitstype/specificEnergy'),('specificHeatCapacity','Specific heat capacity','The specific heat capacity, often simply called specific heat, is the heat capacity per unit mass of a material. It is the amount of heat needed to raise the temperature of a certain mass 1 degree Celsius.','Thermodynamics','http://vocabulary.odm2.org/unitstype/specificHeatCapacity'),('specificHeatPressure','Specific heat pressure','Specific heat at a constant pressure.','Thermodynamics','http://vocabulary.odm2.org/unitstype/specificHeatPressure'),('specificHeatVolume','Specific heat volume','Specific heat per constant volume.','Thermodynamics','http://vocabulary.odm2.org/unitstype/specificHeatVolume'),('specificRadioactivity','Specific radioactivity','Specific activity is the activity per mass quantity of a radionuclide and is a physical property of that radionuclide. [Wikipedia: https://en.wikipedia.org/wiki/Specific_activity]','Quantum Mechanics','http://vocabulary.odm2.org/unitstype/specificRadioactivity'),('specificSurfaceArea','Specific surface area','Specific surface area \"SSA\" is a property of solids which is the total surface area of a material per unit of mass. It is a derived scientific value that can be used to determine the type and properties of a material (e.g. soil, snow). It is defined by surface area divided by mass (with units of m²/kg).','Mechanics','http://vocabulary.odm2.org/unitstype/specificSurfaceArea'),('specificVolume','Specific volume','Specific volume (ν) is the volume occupied by a unit of mass of a material. It is equal to the inverse of density.','Mechanics','http://vocabulary.odm2.org/unitstype/specificVolume'),('stableIsotopeDelta','Stable isotope delta','For stable isotopes, isotope ratios are typically reported using the delta (δ) notation where δ represents the ratio of heavy isotope to light isotope in the sample over the same ratio of a standard reference material, reported using units of in \"per mil\" (‰, parts per thousand) and reported relative to the specific standard reference material.','Chemistry','http://vocabulary.odm2.org/unitstype/stableIsotopeDelta'),('standardGravitationalParameter','Standard gravitational parameter','In celestial mechanics, the standard gravitational parameter μ of a celestial body is the product of the gravitational constant G and the mass M of the body. [Wikipedia: https://en.wikipedia.org/wiki/Standard_gravitational_parameter]','Mechanics','http://vocabulary.odm2.org/unitstype/standardGravitationalParameter'),('temperature','Temperature','A temperature is a numerical measure of hot and cold. Its measurement is by detection of heat radiation or particle velocity or kinetic energy, or by the bulk behavior of a thermometric material. It may be calibrated in any of various temperature scales, Celsius, Fahrenheit, Kelvin, etc. The fundamental physical definition of temperature is provided by thermodynamics.','Base Quantity','http://vocabulary.odm2.org/unitstype/temperature'),('temperatureCount','Temperature count',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/temperatureCount'),('temperaturePerMagneticFluxDensity','Temperature per magnetic flux density',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/temperaturePerMagneticFluxDensity'),('temperaturePerTime','Temperature per time',NULL,'Thermodynamics','http://vocabulary.odm2.org/unitstype/temperaturePerTime'),('thermalConductivity','Thermal conductivity','In physics, thermal conductivity (often denoted k, λ, or κ) is the property of a material to conduct heat. Thermal conductivity of materials is temperature dependent. The reciprocal of thermal conductivity is called thermal resistivity.','Thermodynamics','http://vocabulary.odm2.org/unitstype/thermalConductivity'),('thermalInsulance','Thermal insulance','The inverse of the heat transfer coefficient.','Thermodynamics','http://vocabulary.odm2.org/unitstype/thermalInsulance'),('thermalResistance','Thermal resistance','Thermal resistance is a heat property and a measurement of a temperature difference by which an object or material resists a heat flow. Thermal resistance is the reciprocal of thermal conductance. (Absolute) thermal resistance R in K/W is a property of a particular component. For example, a characteristic of a heat sink. Specific thermal resistance or specific thermal resistivity Rλ in (K·m)/W is a material constant.','Thermodynamics','http://vocabulary.odm2.org/unitstype/thermalResistance'),('thermalResistivity','Thermal resistivity','The reciprocal of thermal conductivity is thermal resistivity, measured in kelvin-metres per watt (K*m/W). Also called Specific Thermal Resistance.','Thermodynamics','http://vocabulary.odm2.org/unitstype/thermalResistivity'),('thrustToMassRatio','Thrust to mass ratio','Thrust-to-weight ratio is a dimensionless ratio of thrust to weight of a rocket, jet engine, propeller engine, or a vehicle propelled by such an engine that indicates the performance of the engine or vehicle. [Wikipedia: https://en.wikipedia.org/wiki/Thrust-to-weight_ratio]','Mechanics','http://vocabulary.odm2.org/unitstype/thrustToMassRatio'),('time','Time','Time is a basic component of the measuring system used to sequence events, to compare the durations of events and the intervals between them, and to quantify the motions of objects.','Base Quantity','http://vocabulary.odm2.org/unitstype/time'),('timeSquared','Time squared',NULL,'Space and Time','http://vocabulary.odm2.org/unitstype/timeSquared'),('torque','Torque','In physics, a torque (Ï„) is a vector that measures the tendency of a force to rotate an object about some axis [1]. The magnitude of a torque is defined as force times its lever arm [2]. Just as a force is a push or a pull, a torque can be thought of as a twist. The SI unit for torque is newton meters (N m). In U.S. customary units, it is measured in foot pounds (ft lbf) (also known as \'pounds feet\'). Mathematically, the torque on a particle (which has the position r in some reference frame) can be defined as the cross product: Ï„ = r x F where r is the particle\'s position vector relative to the fulcrum F is the force acting on the particles, or, more generally, torque can be defined as the rate of change of angular momentum, Ï„ = dL/dt where L is the angular momentum vector t stands for time.','Mechanics','http://vocabulary.odm2.org/unitstype/torque'),('turbidity','Turbidity','Turbidity is the cloudiness or haziness of a fluid, or of air, caused by individual particles (suspended solids) that are generally invisible to the naked eye, similar to smoke in air. Turbidity in open water is often caused by phytoplankton and the measurement of turbidity is a key test of water quality. The higher the turbidity, the higher the risk of the drinkers developing gastrointestinal diseases, especially for immune-compromised people, because contaminants like virus or bacteria can become attached to the suspended solid. The suspended solids interfere with water disinfection with chlorine because the particles act as shields for the virus and bacteria. Similarly suspended solids can protect bacteria from UV sterilisation of water. Fluids can contain suspended solid matter consisting of particles of many different sizes. While some suspended material will be large enough and heavy enough to settle rapidly to the bottom container if a liquid sample is left to stand (the settleable solids), very small particles will settle only very slowly or not at all if the sample is regularly agitated or the particles are colloidal. These small solid particles cause the liquid to appear turbid.','Chemistry','http://vocabulary.odm2.org/unitstype/turbidity'),('volume','Volume',NULL,'Space and Time','http://vocabulary.odm2.org/unitstype/volume'),('volumeThermalExpansion','Volume thermal expansion','When the temperature of a substance changes, the energy that is stored in the intermolecular bonds between atoms changes. When the stored energy increases, so does the length of the molecular bonds. As a result, solids typically expand in response to heating and contract on cooling; this dimensional response to temperature change is expressed by its coefficient of thermal expansion. Different coefficients of thermal expansion can be defined for a substance depending on whether the expansion is measured by: * linear thermal expansion * area thermal expansion * volumetric thermal expansion These characteristics are closely related. The volumetric thermal expansion coefficient can be defined for both liquids and solids. The linear thermal expansion can only be defined for solids, and is common in engineering applications. Some substances expand when cooled, such as freezing water, so they have negative thermal expansion coefficients.','Thermodynamics','http://vocabulary.odm2.org/unitstype/volumeThermalExpansion'),('volumetricFlowRate','Volumetric flow rate','Volume Per Unit Time, or Volumetric flow rate, is the volume of fluid that passes through a given surface per unit of time (as opposed to a unit surface).','Mechanics','http://vocabulary.odm2.org/unitstype/volumetricFlowRate'),('volumetricFlux','Volumetric flux','In fluid dynamics, the volumetric flux is the rate of volume flow across a unit area (m3·s−1·m−2). Volumetric flux = liters/(second*area). The density of a particular property in a fluid\'s volume, multiplied with the volumetric flux of the fluid, thus defines the advective flux of that property. The volumetric flux through a porous medium is often modelled using Darcy\'s law. Volumetric flux is not to be confused with volumetric flow rate, which is the volume of fluid that passes through a given surface per unit of time (as opposed to a unit surface). [Wikipedia: https://en.wikipedia.org/wiki/Volumetric_flux] Also used for hydraulic conductivity.','Mechanics','http://vocabulary.odm2.org/unitstype/volumetricFlux'),('volumetricHeatCapacity','Volumetric heat capacity','Volumetric heat capacity (VHC), also termed volume-specific heat capacity, describes the ability of a given volume of a substance to store internal energy while undergoing a given temperature change, but without undergoing a phase transition. It is different from specific heat capacity in that the VHC is a \'per unit volume\' measure of the relationship between thermal energy and temperature of a material, while the specific heat is a \'per unit mass\' measure (or occasionally per molar quantity of the material).','Thermodynamics','http://vocabulary.odm2.org/unitstype/volumetricHeatCapacity'),('volumetricProductivity','Volumetric productivity','In ecology, productivity or production refers to the rate of generation of biomass in an ecosystem. It is usually expressed in units of mass per unit surface (or volume) per unit time, for instance grams per square metre per day (g m−2 d−1). The mass unit may relate to dry matter or to the mass of carbon generated. Productivity of autotrophs such as plants is called primary productivity, while that of heterotrophs such as animals is called secondary productivity. [Wikipedia: https://en.wikipedia.org/wiki/Productivity_%28ecology%29]','Chemistry','http://vocabulary.odm2.org/unitstype/volumetricProductivity'),('yank','Yank','Yank is the rate of change of force.','Mechanics','http://vocabulary.odm2.org/unitstype/yank'); +/*!40000 ALTER TABLE `CV_UnitsType` ENABLE KEYS */; + +-- +-- Table structure for table `CV_VariableName` +-- + +DROP TABLE IF EXISTS `CV_VariableName`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_VariableName` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_VariableName` +-- + +/*!40000 ALTER TABLE `CV_VariableName` DISABLE KEYS */; +INSERT INTO `CV_VariableName` VALUES ('1_1_1_Trichloroethane','1,1,1-Trichloroethane','1,1,1-Trichloroethane (C2H3Cl3)',NULL,'http://vocabulary.odm2.org/variablename/1_1_1_Trichloroethane'),('1_1_2_2_Tetrachloroethane','1,1,2,2-Tetrachloroethane','1,1,2,2-Tetrachloroethane (C2H2Cl4)',NULL,'http://vocabulary.odm2.org/variablename/1_1_2_2_Tetrachloroethane'),('1_1_2_Trichloroethane','1,1,2-Trichloroethane','1,1,2-Trichloroethane (C2H3Cl3)',NULL,'http://vocabulary.odm2.org/variablename/1_1_2_Trichloroethane'),('1_1_Dichloroethane','1,1-Dichloroethane','1,1-Dichloroethane (C2H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_1_Dichloroethane'),('1_1_Dichloroethene','1,1-Dichloroethene','1,1-Dichloroethene (C2H2Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_1_Dichloroethene'),('1_2_3_Trimethylbenzene','1,2,3-Trimethylbenzene','1,2,3-Trimethylbenzene (C9H12)',NULL,'http://vocabulary.odm2.org/variablename/1_2_3_Trimethylbenzene'),('1_2_4_5_Tetrachlorobenzene','1,2,4,5-tetrachlorobenzene','1,2,4,5-tetrachlorobenzene (C6H2Cl4)',NULL,'http://vocabulary.odm2.org/variablename/1_2_4_5_Tetrachlorobenzene'),('1_2_4_Trichlorobenzene','1,2,4-Trichlorobenzene','1,2,4-Trichlorobenzene (C6H3Cl3)',NULL,'http://vocabulary.odm2.org/variablename/1_2_4_Trichlorobenzene'),('1_2_4_Trimethylbenzene','1,2,4-Trimethylbenzene','1,2,4-Trimethylbenzene',NULL,'http://vocabulary.odm2.org/variablename/1_2_4_Trimethylbenzene'),('1_2_Dibromo_3_Chloropropane','1,2-Dibromo-3-chloropropane','1,2-Dibromo-3-chloropropane (C3H5Br2Cl)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Dibromo_3_Chloropropane'),('1_2_Dichlorobenzene','1,2-Dichlorobenzene','1,2-Dichlorobenzene (C6H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Dichlorobenzene'),('1_2_Dichloroethane','1,2-Dichloroethane','1,2-Dichloroethane (C2H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Dichloroethane'),('1_2_Dichloropropane','1,2-Dichloropropane','1,2-Dichloropropane (C3H6Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Dichloropropane'),('1_2_Dimethylnaphthalene','1,2-Dimethylnaphthalene','1,2-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Dimethylnaphthalene'),('1_2_Dinitrobenzene','1,2-Dinitrobenzene','1,2-Dinitrobenzene (C6H4N2O4)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Dinitrobenzene'),('1_2_Diphenylhydrazine','1,2-Diphenylhydrazine','1,2-Diphenylhydrazine (C12H12N2)',NULL,'http://vocabulary.odm2.org/variablename/1_2_Diphenylhydrazine'),('1_3_5_Trimethylbenzene','1,3,5-Trimethylbenzene','1,3,5-Trimethylbenzene (C6H3(CH3)3)',NULL,'http://vocabulary.odm2.org/variablename/1_3_5_Trimethylbenzene'),('1_3_Dichlorobenzene','1,3-Dichlorobenzene','1,3-Dichlorobenzene (C6H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_3_Dichlorobenzene'),('1_3_Dimethyladamantane','1,3-Dimethyladamantane','1,3-Dimethyladamantane (C12H20).',NULL,'http://vocabulary.odm2.org/variablename/1_3_Dimethyladamantane'),('1_3_Dimethylnaphthalene','1,3-Dimethylnaphthalene','1,3-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_3_Dimethylnaphthalene'),('1_3_Dinitrobenzene','1,3-Dinitrobenzene','1,3-Dinitrobenzene (C6H4N2O4)',NULL,'http://vocabulary.odm2.org/variablename/1_3_Dinitrobenzene'),('1_4_5_8_Tetramethylnaphthalene','1,4,5,8-Tetramethylnaphthalene','1,4,5,8-Tetramethylnaphthalene (C14H16), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_4_5_8_Tetramethylnaphthalene'),('1_4_5_Trimethylnaphthalene','1,4,5-Trimethylnaphthalene','1,4,5-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_4_5_Trimethylnaphthalene'),('1_4_6_Trimethylnaphthalene','1,4,6-Trimethylnaphthalene','1,4,6-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_4_6_Trimethylnaphthalene'),('1_4_Dichlorobenzene','1,4-Dichlorobenzene','1,4-Dichlorobenzene (C6H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/1_4_Dichlorobenzene'),('1_4_Dimethylnaphthalene','1,4-Dimethylnaphthalene','1,4-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_4_Dimethylnaphthalene'),('1_4_Dinitrobenzene','1,4-Dinitrobenzene','1,4-Dinitrobenzene (C6H4N2O4)',NULL,'http://vocabulary.odm2.org/variablename/1_4_Dinitrobenzene'),('1_5_Dimethylnaphthalene','1,5-Dimethylnaphthalene','1,5-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_5_Dimethylnaphthalene'),('1_6_7_Trimethylnaphthalene','1,6,7-Trimethylnaphthalene','1,6,7-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_6_7_Trimethylnaphthalene'),('1_6_Dimethylnaphthalene','1,6-Dimethylnaphthalene','1,6-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_6_Dimethylnaphthalene'),('1_8_Dimethylnaphthalene','1,8-Dimethylnaphthalene','1,8-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_8_Dimethylnaphthalene'),('1_Chloronaphthalene','1-Chloronaphthalene','1-Chloronaphthalene (C10H7Cl)',NULL,'http://vocabulary.odm2.org/variablename/1_Chloronaphthalene'),('1_Ethylnaphthalene','1-Ethylnaphthalene','1-Ethylnaphthalene (C10H7C2H5), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_Ethylnaphthalene'),('1_Methylanthracene','1-Methylanthracene','1-Methylanthracene (C15H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_Methylanthracene'),('1_Methyldibenzothiophene','1-Methyldibenzothiophene','1-Methyldibenzothiophene (C13H10S)',NULL,'http://vocabulary.odm2.org/variablename/1_Methyldibenzothiophene'),('1_Methylfluorene','1-Methylfluorene','1-Methylfluorene (C14H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_Methylfluorene'),('1_Methylnaphthalene','1-Methylnaphthalene','1-Methylnaphthalene (C10H7CH3), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_Methylnaphthalene'),('1_Methylphenanthrene','1-Methylphenanthrene','1-Methylphenanthrene (C15H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/1_Methylphenanthrene'),('1_NaphthalenolMethylcarbamate','1-Naphthalenol methylcarbamate','1-Naphthalenol methylcarbamate (C12H11NO2)',NULL,'http://vocabulary.odm2.org/variablename/1_NaphthalenolMethylcarbamate'),('19_Hexanoyloxyfucoxanthin','19-Hexanoyloxyfucoxanthin','The phytoplankton pigment 19-Hexanoyloxyfucoxanthin',NULL,'http://vocabulary.odm2.org/variablename/19_Hexanoyloxyfucoxanthin'),('2_2_DichlorovinylDimethylPhosphate','2,2-dichlorovinyl dimethyl phosphate','2,2-dichlorovinyl dimethyl phosphate (C4H7Cl2O4P)',NULL,'http://vocabulary.odm2.org/variablename/2_2_DichlorovinylDimethylPhosphate'),('2_3_4_6_Tetrachlorophenol','2,3,4,6-Tetrachlorophenol','2,3,4,6-Tetrachlorophenol (C6H2Cl4O)',NULL,'http://vocabulary.odm2.org/variablename/2_3_4_6_Tetrachlorophenol'),('2_3_5_Trimethylnaphthalene','2,3,5-Trimethylnaphthalene','2,3,5-Trimethylnaphthalene (C13H14), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_3_5_Trimethylnaphthalene'),('2_3_6_Trimethylnaphthalene','2,3,6-Trimethylnaphthalene','2,3,6-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_3_6_Trimethylnaphthalene'),('2_3_Dimethylnaphthalene','2,3-Dimethylnaphthalene','2,3-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_3_Dimethylnaphthalene'),('2_4_5_Trichlorophenol','2,4,5-Trichlorophenol','2,4,5-Trichlorophenol (C6H3Cl3O)',NULL,'http://vocabulary.odm2.org/variablename/2_4_5_Trichlorophenol'),('2_4_6_Trichlorophenol','2,4,6-Trichlorophenol','2,4,6-Trichlorophenol (TCP) (C6H2Cl3OH)',NULL,'http://vocabulary.odm2.org/variablename/2_4_6_Trichlorophenol'),('2_4_Dichlorophenol','2,4-Dichlorophenol','2,4-Dichlorophenol (C6H4Cl2O)',NULL,'http://vocabulary.odm2.org/variablename/2_4_Dichlorophenol'),('2_4_Dimethylphenol','2,4-Dimethylphenol','2,4-Dimethylphenol (C8H10O)',NULL,'http://vocabulary.odm2.org/variablename/2_4_Dimethylphenol'),('2_4_Dinitrophenol','2,4-Dinitrophenol','2,4-Dinitrophenol (C6H4N2O5)',NULL,'http://vocabulary.odm2.org/variablename/2_4_Dinitrophenol'),('2_4_Dinitrotoluene','2,4-Dinitrotoluene','2,4-Dinitrotoluene (C7H6N2O4)',NULL,'http://vocabulary.odm2.org/variablename/2_4_Dinitrotoluene'),('2_6_Dichlorophenol','2,6-Dichlorophenol','2,6-Dichlorophenol (C6H4Cl2O)',NULL,'http://vocabulary.odm2.org/variablename/2_6_Dichlorophenol'),('2_6_Dinitrotoluene','2,6-Dinitrotoluene','2,6-Dinitrotoluene (C7H6N2O4)',NULL,'http://vocabulary.odm2.org/variablename/2_6_Dinitrotoluene'),('2_7_Dimethylnaphthalene','2,7-Dimethylnaphthalene','2,7-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_7_Dimethylnaphthalene'),('2_Butanone_MEK','2-Butanone (MEK)','2-Butanone (MEK) (C4H8O)',NULL,'http://vocabulary.odm2.org/variablename/2_Butanone_MEK'),('2_Butoxyethanol','2-Butoxyethanol','2-Butoxyethanol (CH3(CH2)2CH2OCH2OH)',NULL,'http://vocabulary.odm2.org/variablename/2_Butoxyethanol'),('2_Chloronaphthalene','2-Chloronaphthalene','2-Chloronaphthalene (C10H7Cl)',NULL,'http://vocabulary.odm2.org/variablename/2_Chloronaphthalene'),('2_Chlorophenol','2-Chlorophenol','2-Chlorophenol (C6H5ClO)',NULL,'http://vocabulary.odm2.org/variablename/2_Chlorophenol'),('2_Hexanone','2-Hexanone','2-Hexanone (C6H12O)',NULL,'http://vocabulary.odm2.org/variablename/2_Hexanone'),('2_Methylanthracene','2-Methylanthracene','2-Methylanthracene (C15H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_Methylanthracene'),('2_Methyldibenzothiophene','2-Methyldibenzothiophene','2-Methyldibenzothiophene (C13H10S), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_Methyldibenzothiophene'),('2_Methylnaphthalene','2-Methylnaphthalene','2-Methylnaphthalene (C10H7CH3), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_Methylnaphthalene'),('2_Methylphenanthrene','2-Methylphenanthrene','2-Methylphenanthrene (C15H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/2_Methylphenanthrene'),('2_Methylphenol','2-Methylphenol','2-Methylphenol (C7H8O)',NULL,'http://vocabulary.odm2.org/variablename/2_Methylphenol'),('2_Nitroaniline','2-Nitroaniline','2-Nitroaniline (C6H6N2O2)',NULL,'http://vocabulary.odm2.org/variablename/2_Nitroaniline'),('2_Nitrophenol','2-Nitrophenol','2-Nitrophenol (C6H5NO3)',NULL,'http://vocabulary.odm2.org/variablename/2_Nitrophenol'),('3_3_Dichlorobenzidine','3,3-Dichlorobenzidine','3,3-Dichlorobenzidine (C12H10Cl2N2)',NULL,'http://vocabulary.odm2.org/variablename/3_3_Dichlorobenzidine'),('3_6_Dimethylphenanthrene','3,6-Dimethylphenanthrene','3,6-Dimethylphenanthrene (C16H14), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/3_6_Dimethylphenanthrene'),('3_Nitroaniline','3-Nitroaniline','3-Nitroaniline (C6H6N2O2)',NULL,'http://vocabulary.odm2.org/variablename/3_Nitroaniline'),('4_4_DDD','4,4-DDD','Dichlorodiphenyldichloroethane (C14H10Cl4)',NULL,'http://vocabulary.odm2.org/variablename/4_4_DDD'),('4_4_DDE','4,4-DDE','Dichlorodiphenyldichloroethylene (C14H8Cl4)',NULL,'http://vocabulary.odm2.org/variablename/4_4_DDE'),('4_4_DDT','4,4-DDT','Dichlorodiphenyltrichloroethane (C14H9Cl5)',NULL,'http://vocabulary.odm2.org/variablename/4_4_DDT'),('4_4_Methylenebis_2_Chloroaniline','4,4-Methylenebis(2-chloroaniline)','4,4\'-Methylenebis(2-chloroaniline) (C13H12Cl2N2)',NULL,'http://vocabulary.odm2.org/variablename/4_4_Methylenebis_2_Chloroaniline'),('4_4_Methylenebis_N_N_Dimethylaniline','4,4-Methylenebis(N,N-dimethylaniline)','4,4\'-Methylenebis(N,N-dimethylaniline) (C17H22N2)',NULL,'http://vocabulary.odm2.org/variablename/4_4_Methylenebis_N_N_Dimethylaniline'),('4_6_Dinitro_2_Methylphenol','4,6-Dinitro-2-methylphenol','4,6-Dinitro-2-methylphenol (C7H6N2O5)',NULL,'http://vocabulary.odm2.org/variablename/4_6_Dinitro_2_Methylphenol'),('4_BromophenylphenylEther','4-Bromophenylphenyl ether','4-Bromophenylphenyl ether (C12H9BrO)',NULL,'http://vocabulary.odm2.org/variablename/4_BromophenylphenylEther'),('4_Chloro_3_Methylphenol','4-Chloro-3-methylphenol','4-Chloro-3-methylphenol (C7H7ClO)',NULL,'http://vocabulary.odm2.org/variablename/4_Chloro_3_Methylphenol'),('4_Chloroaniline','4-Chloroaniline','4-Chloroaniline (C6H6ClN)',NULL,'http://vocabulary.odm2.org/variablename/4_Chloroaniline'),('4_ChlorophenylphenylEther','4-Chlorophenylphenyl ether','4-Chlorophenylphenyl ether (C12H9ClO)',NULL,'http://vocabulary.odm2.org/variablename/4_ChlorophenylphenylEther'),('4_Methylchrysene','4-Methylchrysene','4-Methylchrysene (C19H14), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/4_Methylchrysene'),('4_Methyldibenzothiophene','4-Methyldibenzothiophene','4-Methyldibenzothiophene (C13H10S), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/4_Methyldibenzothiophene'),('4_Methylphenol','4-Methylphenol','4-Methylphenol (C7H8O)',NULL,'http://vocabulary.odm2.org/variablename/4_Methylphenol'),('4_Nitroaniline','4-Nitroaniline','4-Nitroaniline (C6H6N2O2)',NULL,'http://vocabulary.odm2.org/variablename/4_Nitroaniline'),('4_Nitrophenol','4-Nitrophenol','4-Nitrophenol (C6H5NO3)',NULL,'http://vocabulary.odm2.org/variablename/4_Nitrophenol'),('9_cis_Neoxanthin','9 cis-Neoxanthin','The phytoplankton pigment 9 cis-Neoxanthin',NULL,'http://vocabulary.odm2.org/variablename/9_cis_Neoxanthin'),('9_10_Dimethylanthracene','9,10-Dimethylanthracene','9,10-Dimethylanthracene (C16H14), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/9_10_Dimethylanthracene'),('absorbance','Absorbance','The amount of radiation absorbed by a material',NULL,'http://vocabulary.odm2.org/variablename/absorbance'),('abundance','Abundance','The relative representation of a species in a particular ecosystem. If this generic term is used, the publisher should specify/qualify the species, class, etc. being measured in the method, qualifier, or other appropriate field.',NULL,'http://vocabulary.odm2.org/variablename/abundance'),('acenaphthene','Acenaphthene','Acenaphthene (C12H10)',NULL,'http://vocabulary.odm2.org/variablename/acenaphthene'),('acenaphthylene','Acenaphthylene','Acenaphthylene (C12H8), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/acenaphthylene'),('acetate','Acetate','Acetate',NULL,'http://vocabulary.odm2.org/variablename/acetate'),('aceticAcid','Acetic Acid','Acetic Acid (C2H4O2)',NULL,'http://vocabulary.odm2.org/variablename/aceticAcid'),('acetone','Acetone','Acetone (C3H6O)',NULL,'http://vocabulary.odm2.org/variablename/acetone'),('acetophenone','Acetophenone','Acetophenone (C6H5C(O)CH3)',NULL,'http://vocabulary.odm2.org/variablename/acetophenone'),('acidNeutralizingCapacity','Acid neutralizing capacity','Acid neutralizing capacity',NULL,'http://vocabulary.odm2.org/variablename/acidNeutralizingCapacity'),('acidityCO2Acidity','Acidity, CO2 acidity','CO2 acidity',NULL,'http://vocabulary.odm2.org/variablename/acidityCO2Acidity'),('acidityExchange','Acidity, exchange','The total amount of the Cation Exchange Capacity (CEC) of a soil that is due to H+ and Al3+ ions. It is a proportion of the total acidity and it is dependent on the type of soil and the percentage of the CEC that is composed of exchangeable bases (Ca2+, Mg2+, K+).',NULL,'http://vocabulary.odm2.org/variablename/acidityExchange'),('acidityHot','Acidity, hot','Hot Acidity',NULL,'http://vocabulary.odm2.org/variablename/acidityHot'),('acidityMineralAcidity','Acidity, mineral acidity','Mineral Acidity',NULL,'http://vocabulary.odm2.org/variablename/acidityMineralAcidity'),('acidityTotalAcidity','Acidity, total acidity','Total acidity',NULL,'http://vocabulary.odm2.org/variablename/acidityTotalAcidity'),('adamantane','Adamantane','Adamantane (C10H16)',NULL,'http://vocabulary.odm2.org/variablename/adamantane'),('agencyCode','Agency code','Code for the agency which analyzed the sample',NULL,'http://vocabulary.odm2.org/variablename/agencyCode'),('albedo','Albedo','The ratio of reflected to incident light.',NULL,'http://vocabulary.odm2.org/variablename/albedo'),('aldrin','Aldrin','Aldrin (C12H8Cl6)',NULL,'http://vocabulary.odm2.org/variablename/aldrin'),('alkalinityBicarbonate','Alkalinity, bicarbonate','Bicarbonate Alkalinity',NULL,'http://vocabulary.odm2.org/variablename/alkalinityBicarbonate'),('alkalinityCarbonate','Alkalinity, carbonate','Carbonate Alkalinity',NULL,'http://vocabulary.odm2.org/variablename/alkalinityCarbonate'),('alkalinityCarbonatePlusBicarbonate','Alkalinity, carbonate plus bicarbonate','Alkalinity, carbonate plus bicarbonate',NULL,'http://vocabulary.odm2.org/variablename/alkalinityCarbonatePlusBicarbonate'),('alkalinityHydroxide','Alkalinity, hydroxide','Hydroxide Alkalinity',NULL,'http://vocabulary.odm2.org/variablename/alkalinityHydroxide'),('alkalinityTotal','Alkalinity, total','Total Alkalinity',NULL,'http://vocabulary.odm2.org/variablename/alkalinityTotal'),('alloxanthin','Alloxanthin','The phytoplankton pigment Alloxanthin',NULL,'http://vocabulary.odm2.org/variablename/alloxanthin'),('aluminumDissolved','Aluminum, dissolved','Dissolved Aluminum (Al)',NULL,'http://vocabulary.odm2.org/variablename/aluminumDissolved'),('aluminumParticulate','Aluminum, particulate','Particulate aluminum in suspension',NULL,'http://vocabulary.odm2.org/variablename/aluminumParticulate'),('aluminumTotal','Aluminum, total','Aluminum (Al). Total indicates was measured on a whole water sample.',NULL,'http://vocabulary.odm2.org/variablename/aluminumTotal'),('ammoniumFlux','Ammonium flux','Ammonium (NH4) flux',NULL,'http://vocabulary.odm2.org/variablename/ammoniumFlux'),('aniline','Aniline','Aniline (C6H7N)',NULL,'http://vocabulary.odm2.org/variablename/aniline'),('anthracene','Anthracene','Anthracene (C14H10), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/anthracene'),('antimonyDissolved','Antimony, dissolved','Dissolved antimony (Sb).\"Dissolved\" indicates measurement was on a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/antimonyDissolved'),('antimonyDistributionCoefficient','Antimony, distribution coefficient','Ratio of concentrations of antimony in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/antimonyDistributionCoefficient'),('antimonyParticulate','Antimony, particulate','Particulate antimony (Sb) in suspension',NULL,'http://vocabulary.odm2.org/variablename/antimonyParticulate'),('antimonyTotal','Antimony, total','Total antimony (Sb). \"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/antimonyTotal'),('area','Area','Area of a measurement location',NULL,'http://vocabulary.odm2.org/variablename/area'),('argon','Argon','Argon',NULL,'http://vocabulary.odm2.org/variablename/argon'),('argonDissolved','Argon, dissolved','Dissolved Argon',NULL,'http://vocabulary.odm2.org/variablename/argonDissolved'),('aroclor_1016','Aroclor-1016','Aroclor-1016 (C24H13Cl7), a PCB mixture',NULL,'http://vocabulary.odm2.org/variablename/aroclor_1016'),('aroclor_1242','Aroclor-1242','Aroclor-1242 (C12H6Cl4), a PCB mixture',NULL,'http://vocabulary.odm2.org/variablename/aroclor_1242'),('aroclor_1254','Aroclor-1254','Aroclor-1254 (C12H5Cl5), a PCB mixture',NULL,'http://vocabulary.odm2.org/variablename/aroclor_1254'),('aroclor_1260','Aroclor-1260','Aroclor-1260 (C12H3Cl7), a PCB mixture',NULL,'http://vocabulary.odm2.org/variablename/aroclor_1260'),('arsenicDissolved','Arsenic, dissolved','Dissolved Arsenic. For chemical terms, dissolved represents a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/arsenicDissolved'),('arsenicDistributionCoefficient','Arsenic, distribution coefficient','Ratio of concentrations of arsenic in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/arsenicDistributionCoefficient'),('arsenicParticulate','Arsenic, particulate','Particulate arsenic (As) in suspension',NULL,'http://vocabulary.odm2.org/variablename/arsenicParticulate'),('arsenicTotal','Arsenic, total','Total arsenic (As). Total indicates was measured on a whole water sample.',NULL,'http://vocabulary.odm2.org/variablename/arsenicTotal'),('asteridaeCoverage','Asteridae coverage','Areal coverage of the plant Asteridae',NULL,'http://vocabulary.odm2.org/variablename/asteridaeCoverage'),('bariumDissolved','Barium, dissolved','Dissolved Barium (Ba)',NULL,'http://vocabulary.odm2.org/variablename/bariumDissolved'),('bariumDistributionCoefficient','Barium, distribution coefficient','Ratio of concentrations of barium in two phases in equilibrium with each other. Phases must be specified',NULL,'http://vocabulary.odm2.org/variablename/bariumDistributionCoefficient'),('bariumParticulate','Barium, particulate','Particulate barium (Ba) in suspension',NULL,'http://vocabulary.odm2.org/variablename/bariumParticulate'),('bariumTotal','Barium, total','Total Barium (Ba). For chemical terms, \"total\" indicates an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/bariumTotal'),('barometricPressure','Barometric pressure','Barometric pressure',NULL,'http://vocabulary.odm2.org/variablename/barometricPressure'),('baseflow','Baseflow','The portion of streamflow (discharge) that is supplied by groundwater sources.',NULL,'http://vocabulary.odm2.org/variablename/baseflow'),('batisMaritimaCoverage','Batis maritima Coverage','Areal coverage of the plant Batis maritima',NULL,'http://vocabulary.odm2.org/variablename/batisMaritimaCoverage'),('batteryTemperature','Battery temperature','The battery temperature of a datalogger or sensing system',NULL,'http://vocabulary.odm2.org/variablename/batteryTemperature'),('batteryVoltage','Battery voltage','The battery voltage of a datalogger or sensing system, often recorded as an indicator of data reliability',NULL,'http://vocabulary.odm2.org/variablename/batteryVoltage'),('benthos','Benthos','Benthic species',NULL,'http://vocabulary.odm2.org/variablename/benthos'),('benz_a_anthracene','Benz(a)anthracene','Benz(a)anthracene (C18H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benz_a_anthracene'),('benzene','Benzene','Benzene (C6H6)',NULL,'http://vocabulary.odm2.org/variablename/benzene'),('benzo_a_pyrene','Benzo(a)pyrene','Benzo(a)pyrene (C20H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benzo_a_pyrene'),('benzo_b_fluoranthene','Benzo(b)fluoranthene','Benzo(b)fluoranthene (C20H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benzo_b_fluoranthene'),('benzo_b_fluorene','Benzo(b)fluorene','Benzo(b)fluorene (C17H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benzo_b_fluorene'),('benzo_e_pyrene','Benzo(e)pyrene','Benzo(e)pyrene (C20H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benzo_e_pyrene'),('benzo_g_h_i_perylene','Benzo(g,h,i)perylene','Benzo(g,h,i)perylene (C22H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benzo_g_h_i_perylene'),('benzo_k_fluoranthene','Benzo(k)fluoranthene','Benzo(k)fluoranthene (C20H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/benzo_k_fluoranthene'),('benzoicAcid','Benzoic acid','Benzoic acid (C7H6O2)',NULL,'http://vocabulary.odm2.org/variablename/benzoicAcid'),('benzylAlcohol','Benzyl alcohol','Benzyl alcohol (C7H8O)',NULL,'http://vocabulary.odm2.org/variablename/benzylAlcohol'),('berylliumDissolved','Beryllium, dissolved','Dissolved Beryllium (Be) . For chemical terms, \"dissolved\"indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/berylliumDissolved'),('berylliumTotal','Beryllium, total','Total Beryllium (Be). For chemical terms, \"total\" indicates an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/berylliumTotal'),('bicarbonate','Bicarbonate','Bicarbonate (HCO3-)',NULL,'http://vocabulary.odm2.org/variablename/bicarbonate'),('bifenthrin','Bifenthrin','Bifenthrin (C23H22ClF3O2)',NULL,'http://vocabulary.odm2.org/variablename/bifenthrin'),('biogenicSilica','Biogenic silica','Hydrated silica (SiO2 nH20)',NULL,'http://vocabulary.odm2.org/variablename/biogenicSilica'),('biomass','Biomass','Mass of living biological organisms in a given area or ecosystem at a given time. If this generic term is used, the publisher should specify/qualify the species, class, etc. being measured in the method, qualifier, or other appropriate field.',NULL,'http://vocabulary.odm2.org/variablename/biomass'),('biomassPhytoplankton','Biomass, phytoplankton','Total mass of phytoplankton, per unit area or volume',NULL,'http://vocabulary.odm2.org/variablename/biomassPhytoplankton'),('biomassTotal','Biomass, total','Total biomass',NULL,'http://vocabulary.odm2.org/variablename/biomassTotal'),('biphenyl','Biphenyl','Biphenyl ((C6H5)2), a polycyclic aromatic hydrocarbon (PAH), also known as diphenyl or phenylbenzene or 1,1\'-biphenyl or lemonene',NULL,'http://vocabulary.odm2.org/variablename/biphenyl'),('bis_2_Chloroethoxy_Methane','Bis(2-chloroethoxy)methane','Bis(2-chloroethoxy)methane (C5H10Cl2O2)',NULL,'http://vocabulary.odm2.org/variablename/bis_2_Chloroethoxy_Methane'),('bis_2_Chloroethyl_Ether','bis(2-Chloroethyl)ether','bis(2-Chloroethyl)ether (C4H8Cl2O)',NULL,'http://vocabulary.odm2.org/variablename/bis_2_Chloroethyl_Ether'),('bis_2_Ethylhexyl_Phthalate','Bis-(2-ethylhexyl) phthalate','Bis-(2-ethylhexyl) phthalate (C6H4(C8H17COO)2)',NULL,'http://vocabulary.odm2.org/variablename/bis_2_Ethylhexyl_Phthalate'),('bis_2_ChloroisopropylEther','bis-2-chloroisopropyl ether','bis-2-chloroisopropyl ether (C6H12Cl2O)',NULL,'http://vocabulary.odm2.org/variablename/bis_2_ChloroisopropylEther'),('blue_GreenAlgae_Cyanobacteria_Phycocyanin','Blue-green algae (cyanobacteria), phycocyanin','Blue-green algae (cyanobacteria) with phycocyanin pigments',NULL,'http://vocabulary.odm2.org/variablename/blue_GreenAlgae_Cyanobacteria_Phycocyanin'),('BOD1','BOD1','1-day Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD1'),('BOD2Carbonaceous','BOD2, carbonaceous','2-day Carbonaceous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD2Carbonaceous'),('BOD20','BOD20','20-day Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD20'),('BOD20Carbonaceous','BOD20, carbonaceous','20-day Carbonaceous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD20Carbonaceous'),('BOD20Nitrogenous','BOD20, nitrogenous','20-day Nitrogenous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD20Nitrogenous'),('BOD3Carbonaceous','BOD3, carbonaceous','3-day Carbonaceous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD3Carbonaceous'),('BOD4Carbonaceous','BOD4, carbonaceous','4-day Carbonaceous Biological Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD4Carbonaceous'),('BOD5','BOD5','5-day Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD5'),('BOD5Carbonaceous','BOD5, carbonaceous','5-day Carbonaceous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD5Carbonaceous'),('BOD5Nitrogenous','BOD5, nitrogenous','5-day Nitrogenous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD5Nitrogenous'),('BOD6Carbonaceous','BOD6, carbonaceous','6-day Carbonaceous Biological Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD6Carbonaceous'),('BOD7Carbonaceous','BOD7, carbonaceous','7-day Carbonaceous Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BOD7Carbonaceous'),('BODu','BODu','Ultimate Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BODu'),('BODuCarbonaceous','BODu, carbonaceous','Carbonaceous Ultimate Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BODuCarbonaceous'),('BODuNitrogenous','BODu, nitrogenous','Nitrogenous Ultimate Biochemical Oxygen Demand',NULL,'http://vocabulary.odm2.org/variablename/BODuNitrogenous'),('bodyLength','Body length','Length of the body of an organism',NULL,'http://vocabulary.odm2.org/variablename/bodyLength'),('boreholeLogMaterialClassification','Borehole log material classification','Classification of material encountered by a driller at various depths during the drilling of a well and recorded in the borehole log.',NULL,'http://vocabulary.odm2.org/variablename/boreholeLogMaterialClassification'),('boronDissolved','Boron, dissolved','dissolved boron',NULL,'http://vocabulary.odm2.org/variablename/boronDissolved'),('boronTotal','Boron, total','Total Boron (B)',NULL,'http://vocabulary.odm2.org/variablename/boronTotal'),('borrichiaFrutescensCoverage','Borrichia frutescens Coverage','Areal coverage of the plant Borrichia frutescens',NULL,'http://vocabulary.odm2.org/variablename/borrichiaFrutescensCoverage'),('bromideDissolved','Bromide, dissolved','Dissolved Bromide (Br-)',NULL,'http://vocabulary.odm2.org/variablename/bromideDissolved'),('bromideTotal','Bromide, total','Total Bromide (Br-)',NULL,'http://vocabulary.odm2.org/variablename/bromideTotal'),('bromine','Bromine','Bromine (Br2)',NULL,'http://vocabulary.odm2.org/variablename/bromine'),('bromineDissolved','Bromine, dissolved','Dissolved Bromine (Br2)',NULL,'http://vocabulary.odm2.org/variablename/bromineDissolved'),('bromodichloromethane','Bromodichloromethane','Bromodichloromethane (CHBrCl2)',NULL,'http://vocabulary.odm2.org/variablename/bromodichloromethane'),('bromoform','Bromoform','Bromoform (CHBr3), a haloform',NULL,'http://vocabulary.odm2.org/variablename/bromoform'),('bromomethane_MethylBromide','Bromomethane (Methyl bromide)','Bromomethane (Methyl bromide) (CH3Br)',NULL,'http://vocabulary.odm2.org/variablename/bromomethane_MethylBromide'),('bulkDensity','Bulk density','The mass of many particles of the material divided by the total volume they occupy. The total volume includes particle volume, inter-particle void volume and internal pore volume.',NULL,'http://vocabulary.odm2.org/variablename/bulkDensity'),('bulkElectricalConductivity','Bulk electrical conductivity','Bulk electrical conductivity of a medium measured using a sensor such as time domain reflectometry (TDR), as a raw sensor response in the measurement of a quantity like soil moisture.',NULL,'http://vocabulary.odm2.org/variablename/bulkElectricalConductivity'),('butane','Butane','Butane',NULL,'http://vocabulary.odm2.org/variablename/butane'),('butylbenzylphthalate','Butylbenzylphthalate','Butylbenzylphthalate (C19H20O4)',NULL,'http://vocabulary.odm2.org/variablename/butylbenzylphthalate'),('butyricAcid','Butyric Acid','Butyric Acid (C4H8O2)',NULL,'http://vocabulary.odm2.org/variablename/butyricAcid'),('cadmiumDissolved','Cadmium, dissolved','Dissolved Cadmium. For chemical terms, \"dissolved\" indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/cadmiumDissolved'),('cadmiumDistributionCoefficient','Cadmium, distribution coefficient','Ratio of concentrations of cadmium in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/cadmiumDistributionCoefficient'),('cadmiumParticulate','Cadmium, particulate','Particulate cadmium (Cd) in suspension',NULL,'http://vocabulary.odm2.org/variablename/cadmiumParticulate'),('cadmiumTotal','Cadmium, total','Total Cadmium (Cd). For chemical terms, \"total\" indciates an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/cadmiumTotal'),('calciumDissolved','Calcium, dissolved','Dissolved Calcium (Ca)',NULL,'http://vocabulary.odm2.org/variablename/calciumDissolved'),('calciumTotal','Calcium, total','Total Calcium (Ca)',NULL,'http://vocabulary.odm2.org/variablename/calciumTotal'),('canthaxanthin','Canthaxanthin','The phytoplankton pigment Canthaxanthin',NULL,'http://vocabulary.odm2.org/variablename/canthaxanthin'),('carbaryl','Carbaryl','Carbaryl (C12H11NO2)',NULL,'http://vocabulary.odm2.org/variablename/carbaryl'),('carbazole','Carbazole','Carbazole (C12H9N)',NULL,'http://vocabulary.odm2.org/variablename/carbazole'),('carbonDioxide','Carbon dioxide','Carbon dioxide',NULL,'http://vocabulary.odm2.org/variablename/carbonDioxide'),('carbonDioxideFlux','Carbon dioxide flux','Carbon dioxide (CO2) flux',NULL,'http://vocabulary.odm2.org/variablename/carbonDioxideFlux'),('carbonDioxideStorageFlux','Carbon dioxide storage flux','Carbon dioxide (CO2) storage flux',NULL,'http://vocabulary.odm2.org/variablename/carbonDioxideStorageFlux'),('carbonDioxideDissolved','Carbon Dioxide, dissolved','Dissolved Carbon dioxide (CO2)',NULL,'http://vocabulary.odm2.org/variablename/carbonDioxideDissolved'),('carbonDioxideTransducerSignal','Carbon dioxide, transducer signal','Carbon dioxide (CO2), raw data from sensor',NULL,'http://vocabulary.odm2.org/variablename/carbonDioxideTransducerSignal'),('carbonDisulfide','Carbon disulfide','Carbon disulfide (CS2)',NULL,'http://vocabulary.odm2.org/variablename/carbonDisulfide'),('carbonMonoxideDissolved','Carbon monoxide, dissolved','Dissolved carbon monoxide (CO)',NULL,'http://vocabulary.odm2.org/variablename/carbonMonoxideDissolved'),('carbonTetrachloride','Carbon tetrachloride','Carbon tetrachloride (CCl4)',NULL,'http://vocabulary.odm2.org/variablename/carbonTetrachloride'),('carbonToNitrogenMassRatio','Carbon to nitrogen mass ratio','Carbon to nitrogen (C:N) mass ratio',NULL,'http://vocabulary.odm2.org/variablename/carbonToNitrogenMassRatio'),('carbonToNitrogenMolarRatio','Carbon to nitrogen molar ratio','Carbon to nitrogen (C:N) molar ratio',NULL,'http://vocabulary.odm2.org/variablename/carbonToNitrogenMolarRatio'),('carbonDissolvedInorganic','Carbon, dissolved inorganic','Dissolved Inorganic Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonDissolvedInorganic'),('carbonDissolvedOrganic','Carbon, dissolved organic','Dissolved Organic Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonDissolvedOrganic'),('carbonDissolvedTotal','Carbon, dissolved total','Dissolved Total (Organic+Inorganic) Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonDissolvedTotal'),('carbonParticulateOrganic','Carbon, particulate organic','Particulate organic carbon in suspension',NULL,'http://vocabulary.odm2.org/variablename/carbonParticulateOrganic'),('carbonSuspendedInorganic','Carbon, suspended inorganic','Suspended Inorganic Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonSuspendedInorganic'),('carbonSuspendedOrganic','Carbon, suspended organic','DEPRECATED -- The use of this term is discouraged in favor of the use of the synonymous term \"Carbon, particulate organic\".',NULL,'http://vocabulary.odm2.org/variablename/carbonSuspendedOrganic'),('carbonSuspendedTotal','Carbon, suspended total','Suspended Total (Organic+Inorganic) Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonSuspendedTotal'),('carbonTotal','Carbon, total','Total (Dissolved+Particulate) Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonTotal'),('carbonTotalInorganic','Carbon, total inorganic','Total (Dissolved+Particulate) Inorganic Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonTotalInorganic'),('carbonTotalOrganic','Carbon, total organic','Total (Dissolved+Particulate) Organic Carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonTotalOrganic'),('carbonTotalSolidPhase','Carbon, total solid phase','Total solid phase carbon',NULL,'http://vocabulary.odm2.org/variablename/carbonTotalSolidPhase'),('carbon_13StableIsotopeRatioDelta','Carbon-13, stable isotope ratio delta','Difference in the 13C:12C ratio between the sample and standard (del C 13)',NULL,'http://vocabulary.odm2.org/variablename/carbon_13StableIsotopeRatioDelta'),('carbon_14','Carbon-14','A radioactive isotope of carbon which undergoes beta decay',NULL,'http://vocabulary.odm2.org/variablename/carbon_14'),('carbonate','Carbonate','Carbonate ion (CO3-2) concentration',NULL,'http://vocabulary.odm2.org/variablename/carbonate'),('cesiumDissolved','Cesium, dissolved','Dissolved Cesium (Cs)',NULL,'http://vocabulary.odm2.org/variablename/cesiumDissolved'),('cesiumTotal','Cesium, total','Total Cesium (Cs)',NULL,'http://vocabulary.odm2.org/variablename/cesiumTotal'),('cesium_137','Cesium-137','A radioactive isotope of cesium which is formed as a fission product by nuclear fission of uranium or plutonium.',NULL,'http://vocabulary.odm2.org/variablename/cesium_137'),('chloride','Chloride','Chloride (Cl-)',NULL,'http://vocabulary.odm2.org/variablename/chloride'),('chlorideDissolved','Chloride, dissolved','Dissolved Chloride (Cl-)',NULL,'http://vocabulary.odm2.org/variablename/chlorideDissolved'),('chlorideTotal','Chloride, total','Total Chloride (Cl-)',NULL,'http://vocabulary.odm2.org/variablename/chlorideTotal'),('chlorine','Chlorine','Chlorine (Cl2)',NULL,'http://vocabulary.odm2.org/variablename/chlorine'),('chlorineDissolved','Chlorine, dissolved','Dissolved Chlorine (Cl2)',NULL,'http://vocabulary.odm2.org/variablename/chlorineDissolved'),('chlorobenzene','Chlorobenzene','Chlorobenzene (C6H5Cl)',NULL,'http://vocabulary.odm2.org/variablename/chlorobenzene'),('chlorobenzilate','Chlorobenzilate','Chlorobenzilate (C16H14Cl2O3)',NULL,'http://vocabulary.odm2.org/variablename/chlorobenzilate'),('chloroethane','Chloroethane','Chloroethane (C2H5Cl)',NULL,'http://vocabulary.odm2.org/variablename/chloroethane'),('chloroethene','Chloroethene','Chloroethene (C2H3Cl)',NULL,'http://vocabulary.odm2.org/variablename/chloroethene'),('chloroform','Chloroform','Chloroform (CHCl3), a haloform',NULL,'http://vocabulary.odm2.org/variablename/chloroform'),('chloromethane','Chloromethane','Chloromethane (CH3Cl)',NULL,'http://vocabulary.odm2.org/variablename/chloromethane'),('chlorophyll_a_b_c','Chlorophyll (a+b+c)','Chlorophyll (a+b+c)',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_a_b_c'),('chlorophyll_a','Chlorophyll a','Chlorophyll a',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_a'),('chlorophyll_a_Allomer','Chlorophyll a allomer','The phytoplankton pigment Chlorophyll a allomer',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_a_Allomer'),('chlorophyll_a_CorrectedForPheophytin','Chlorophyll a, corrected for pheophytin','Chlorphyll a corrected for pheophytin',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_a_CorrectedForPheophytin'),('chlorophyll_a_UncorrectedForPheophytin','Chlorophyll a, uncorrected for pheophytin','Chlorophyll a uncorrected for pheophytin',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_a_UncorrectedForPheophytin'),('chlorophyll_b','Chlorophyll b','Chlorophyll b',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_b'),('chlorophyll_c','Chlorophyll c','Chlorophyll c',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_c'),('chlorophyll_c1_And_c2','Chlorophyll c1 and c2','Chlorophyll c1 and c2',NULL,'http://vocabulary.odm2.org/variablename/chlorophyll_c1_And_c2'),('chlorophyllFluorescence','Chlorophyll fluorescence','Chlorophyll Fluorescence',NULL,'http://vocabulary.odm2.org/variablename/chlorophyllFluorescence'),('chromium_III','Chromium (III)','Trivalent Chromium',NULL,'http://vocabulary.odm2.org/variablename/chromium_III'),('chromium_VI','Chromium (VI)','Hexavalent Chromium',NULL,'http://vocabulary.odm2.org/variablename/chromium_VI'),('chromium_VI_Dissolved','Chromium (VI), dissolved','Dissolved Hexavalent Chromium',NULL,'http://vocabulary.odm2.org/variablename/chromium_VI_Dissolved'),('chromiumDissolved','Chromium, dissolved','Dissolved Chromium',NULL,'http://vocabulary.odm2.org/variablename/chromiumDissolved'),('chromiumDistributionCoefficient','Chromium, distribution coefficient','Ratio of concentrations of chromium in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/chromiumDistributionCoefficient'),('chromiumParticulate','Chromium, particulate','Particulate chromium (Cr) in suspension',NULL,'http://vocabulary.odm2.org/variablename/chromiumParticulate'),('chromiumTotal','Chromium, total','Total chromium (Cr). Total indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/chromiumTotal'),('chrysene','Chrysene','Chrysene (C18H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/chrysene'),('cis_1_2_Dichloroethene','cis-1,2-Dichloroethene','cis-1,2-Dichloroethene (C2H2Cl2)',NULL,'http://vocabulary.odm2.org/variablename/cis_1_2_Dichloroethene'),('cis_1_3_Dichloropropene','cis-1,3-Dichloropropene','cis-1,3-Dichloropropene (C3H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/cis_1_3_Dichloropropene'),('Clay','Clay','USDA particle size distribution category. Less then 0.002 mm diameter fine earth particles. ',NULL,'http://vocabulary.odm2.org/variablename/Clay'),('cobaltDissolved','Cobalt, dissolved','Dissolved Cobalt (Co)',NULL,'http://vocabulary.odm2.org/variablename/cobaltDissolved'),('cobaltTotal','Cobalt, total','Total Cobalt (Co)',NULL,'http://vocabulary.odm2.org/variablename/cobaltTotal'),('cobalt_60','Cobalt-60','A synthetic radioactive isotope of cobalt with a half-life of 5.27 years.',NULL,'http://vocabulary.odm2.org/variablename/cobalt_60'),('COD','COD','Chemical oxygen demand',NULL,'http://vocabulary.odm2.org/variablename/COD'),('coliformFecal','Coliform, fecal','Fecal Coliform',NULL,'http://vocabulary.odm2.org/variablename/coliformFecal'),('coliformTotal','Coliform, total','Total Coliform',NULL,'http://vocabulary.odm2.org/variablename/coliformTotal'),('color','Color','Color in quantified in color units',NULL,'http://vocabulary.odm2.org/variablename/color'),('coloredDissolvedOrganicMatter','Colored dissolved organic matter','The concentration of colored dissolved organic matter (humic substances)',NULL,'http://vocabulary.odm2.org/variablename/coloredDissolvedOrganicMatter'),('containerNumber','Container number','The identifying number for a water sampler container.',NULL,'http://vocabulary.odm2.org/variablename/containerNumber'),('copperDissolved','Copper, dissolved','Dissolved Copper (Cu)',NULL,'http://vocabulary.odm2.org/variablename/copperDissolved'),('copperDistributionCoefficient','Copper, distribution coefficient','Ratio of concentrations of copper in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/copperDistributionCoefficient'),('copperParticulate','Copper, particulate','Particulate copper (Cu) in suspension',NULL,'http://vocabulary.odm2.org/variablename/copperParticulate'),('copperTotal','Copper, total','Total copper (Cu). \"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/copperTotal'),('counter','Counter','The total number of events within the measurement period',NULL,'http://vocabulary.odm2.org/variablename/counter'),('cryptophytes','Cryptophytes','The chlorophyll a concentration contributed by cryptophytes',NULL,'http://vocabulary.odm2.org/variablename/cryptophytes'),('cuscutaSppCoverage','Cuscuta spp. coverage','Areal coverage of the plant Cuscuta spp.',NULL,'http://vocabulary.odm2.org/variablename/cuscutaSppCoverage'),('cyanide','Cyanide','Cyanide (CN)',NULL,'http://vocabulary.odm2.org/variablename/cyanide'),('cyclohexane','Cyclohexane','Cyclohexane (C6H6Cl6)',NULL,'http://vocabulary.odm2.org/variablename/cyclohexane'),('cytochromeP450Family1SubfamilyAPolypeptide1DeltaCycleThreshold','Cytochrome P450, family 1, subfamily A, polypeptide 1, delta cycle threshold','Delta cycle threshold for Cytochrome P450, family 1, subfamily A, polypeptide 1 (cyp1a1). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for cyp1a1 is the difference between the cycle threshold (Ct) of cyp1a1 gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin).',NULL,'http://vocabulary.odm2.org/variablename/cytochromeP450Family1SubfamilyAPolypeptide1DeltaCycleThreshold'),('cytosolicProtein','Cytosolic protein','The total protein concentration within the cytosolic fraction of cells. The cytosol refers to the intracellular fluid or cytoplasmic matrix of a eukaryotic cell.',NULL,'http://vocabulary.odm2.org/variablename/cytosolicProtein'),('d_Limonene','d-Limonene','d-Limonene (C10H16)',NULL,'http://vocabulary.odm2.org/variablename/d_Limonene'),('dataShuttleAttached','Data shuttle attached','A categorical variable marking the attachment of a coupler or data shuttle to a logger. This is used for quality control.',NULL,'http://vocabulary.odm2.org/variablename/dataShuttleAttached'),('dataShuttleDetached','Data shuttle detached','A categorical variable marking the detatchment of a coupler or data shuttle to a logger. This is used for quality control.',NULL,'http://vocabulary.odm2.org/variablename/dataShuttleDetached'),('delta_13COfC2H6','delta-13C of C2H6','Isotope 13C of ethane',NULL,'http://vocabulary.odm2.org/variablename/delta_13COfC2H6'),('delta_13COfC3H8','delta-13C of C3H8','Isotope 13C of propane',NULL,'http://vocabulary.odm2.org/variablename/delta_13COfC3H8'),('delta_13COfC4H10','delta-13C of C4H10','Isotope 13C of butane',NULL,'http://vocabulary.odm2.org/variablename/delta_13COfC4H10'),('delta_13COfCH4','delta-13C of CH4','Isotope 13C of methane',NULL,'http://vocabulary.odm2.org/variablename/delta_13COfCH4'),('delta_13COfCO2','delta-13C of CO2','Isotope 13C of carbon dioxide',NULL,'http://vocabulary.odm2.org/variablename/delta_13COfCO2'),('delta_13COfDIC','delta-13C of DIC','Isotope 13C of dissolved inorganic carbon (DIC)',NULL,'http://vocabulary.odm2.org/variablename/delta_13COfDIC'),('delta_18OOfH2O','delta-18O of H2O','Isotope 18O of water',NULL,'http://vocabulary.odm2.org/variablename/delta_18OOfH2O'),('delta_DOfCH4','delta-D of CH4','hydrogen isotopes of methane',NULL,'http://vocabulary.odm2.org/variablename/delta_DOfCH4'),('delta_DOfH2O','delta-D of H2O','hydrogen isotopes of water',NULL,'http://vocabulary.odm2.org/variablename/delta_DOfH2O'),('density','Density','Density',NULL,'http://vocabulary.odm2.org/variablename/density'),('deuterium','Deuterium','Deuterium (2H), Delta D',NULL,'http://vocabulary.odm2.org/variablename/deuterium'),('di_n_Butylphthalate','Di-n-butylphthalate','Di-n-butylphthalate (C16H22O4)',NULL,'http://vocabulary.odm2.org/variablename/di_n_Butylphthalate'),('di_n_OctylPhthalate','Di-n-octyl phthalate','Di-n-octyl phthalate (C24H38O4)',NULL,'http://vocabulary.odm2.org/variablename/di_n_OctylPhthalate'),('diadinoxanthin','Diadinoxanthin','The phytoplankton pigment Diadinoxanthin',NULL,'http://vocabulary.odm2.org/variablename/diadinoxanthin'),('diallate_CisOrTrans','Diallate (cis or trans)','Diallate (cis or trans) (C10H17Cl2NOS)',NULL,'http://vocabulary.odm2.org/variablename/diallate_CisOrTrans'),('diatoxanthin','Diatoxanthin','The phytoplankton pigment Diatoxanthin',NULL,'http://vocabulary.odm2.org/variablename/diatoxanthin'),('dibenz_a_h_anthracene','Dibenz(a,h)anthracene','Dibenz(a,h)anthracene (C22H14), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/dibenz_a_h_anthracene'),('dibenzofuran','Dibenzofuran','Dibenzofuran (C12H8O)',NULL,'http://vocabulary.odm2.org/variablename/dibenzofuran'),('dibenzothiophene','Dibenzothiophene','Dibenzothiophene (C12H8S), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/dibenzothiophene'),('dibromochloromethane','Dibromochloromethane','Dibromochloromethane (CHBr2Cl)',NULL,'http://vocabulary.odm2.org/variablename/dibromochloromethane'),('dieldrin','Dieldrin','Dieldrin (C12H8Cl6O)',NULL,'http://vocabulary.odm2.org/variablename/dieldrin'),('diethylPhthalate','Diethyl phthalate','Diethyl phthalate (C12H14O4)',NULL,'http://vocabulary.odm2.org/variablename/diethylPhthalate'),('diethyleneGlycol','Diethylene glycol','Diethylene glycol (C4H10O3)',NULL,'http://vocabulary.odm2.org/variablename/diethyleneGlycol'),('diisopropylEther','Diisopropyl Ether','Diisopropyl Ether (C6H14O)',NULL,'http://vocabulary.odm2.org/variablename/diisopropylEther'),('dimethylPhthalate','Dimethyl Phthalate','Dimethyl Phthalate (C10H10O4)',NULL,'http://vocabulary.odm2.org/variablename/dimethylPhthalate'),('dimethylphenanthrene','Dimethylphenanthrene','Dimethylphenanthrene (C16H14)',NULL,'http://vocabulary.odm2.org/variablename/dimethylphenanthrene'),('dinoflagellates','Dinoflagellates','The chlorophyll a concentration contributed by Dinoflagellates',NULL,'http://vocabulary.odm2.org/variablename/dinoflagellates'),('dinoseb','Dinoseb','Dinoseb (C10H12N2O5)',NULL,'http://vocabulary.odm2.org/variablename/dinoseb'),('discharge','Discharge','Discharge',NULL,'http://vocabulary.odm2.org/variablename/discharge'),('distance','Distance','Distance measured from a sensor to a target object such as the surface of a water body or snow surface.',NULL,'http://vocabulary.odm2.org/variablename/distance'),('distichlisSpicataCoverage','Distichlis spicata Coverage','Areal coverage of the plant Distichlis spicata',NULL,'http://vocabulary.odm2.org/variablename/distichlisSpicataCoverage'),('disulfoton','Disulfoton','Disulfoton (C8H19O2PS3)',NULL,'http://vocabulary.odm2.org/variablename/disulfoton'),('DNADamageOliveDailMoment','DNA damage, olive tail moment','In a single cell gel electrophoresis assay (comet assay), olive tail moment is the product of the percentage of DNA in the tail and the distance between the intesity centroids of the head and tail along the x-axis (Olive, et al., 1990)',NULL,'http://vocabulary.odm2.org/variablename/DNADamageOliveDailMoment'),('DNADamagePercentTailDNA','DNA damage, percent tail DNA','In a single cell gel electrophoresis assay (comet assay), percent tail DNA is the ratio of fluorescent intensity of the tail over the total fluorescent intensity of the head (nuclear core) and tail multiplied by 100.',NULL,'http://vocabulary.odm2.org/variablename/DNADamagePercentTailDNA'),('DNADamageTailLength','DNA damage, tail length','In a single cell gel electrophoresis assay (comet assay), tail length is the distance of DNA migration from the body of the nuclear core',NULL,'http://vocabulary.odm2.org/variablename/DNADamageTailLength'),('e_coli','E-coli','Escherichia coli',NULL,'http://vocabulary.odm2.org/variablename/e_coli'),('electricCurrent','Electric Current','A flow of electric charge',NULL,'http://vocabulary.odm2.org/variablename/electricCurrent'),('electricEnergy','Electric Energy','Electric Energy',NULL,'http://vocabulary.odm2.org/variablename/electricEnergy'),('electricPower','Electric Power','Electric Power',NULL,'http://vocabulary.odm2.org/variablename/electricPower'),('electricalConductivity','Electrical conductivity','Electrical conductivity',NULL,'http://vocabulary.odm2.org/variablename/electricalConductivity'),('endOfFile','End of file','A categorical variable marking the end of a data file. This is used for quality control.',NULL,'http://vocabulary.odm2.org/variablename/endOfFile'),('endosulfan_I_Alpha','Endosulfan I (alpha)','Endosulfan I (alpha) (C9H6Cl6O3S)',NULL,'http://vocabulary.odm2.org/variablename/endosulfan_I_Alpha'),('endosulfan_II_Beta','Endosulfan II (beta)','Endosulfan II (beta) (C9H6Cl6O3S)',NULL,'http://vocabulary.odm2.org/variablename/endosulfan_II_Beta'),('endosulfanSulfate','Endosulfan Sulfate','Endosulfan Sulfate (C9H6Cl6O4S)',NULL,'http://vocabulary.odm2.org/variablename/endosulfanSulfate'),('endrin','Endrin','Endrin (C12H8Cl6O)',NULL,'http://vocabulary.odm2.org/variablename/endrin'),('endrinAldehyde','Endrin aldehyde','Endrin aldehyde (C12H8Cl6O)',NULL,'http://vocabulary.odm2.org/variablename/endrinAldehyde'),('endrinKetone','Endrin Ketone','Endrin Ketone (C12H9Cl5O)',NULL,'http://vocabulary.odm2.org/variablename/endrinKetone'),('enterococci','Enterococci','Enterococcal bacteria',NULL,'http://vocabulary.odm2.org/variablename/enterococci'),('ethane','Ethane','Ethane',NULL,'http://vocabulary.odm2.org/variablename/ethane'),('ethaneDissolved','Ethane, dissolved','Dissolved Ethane (C2H6)',NULL,'http://vocabulary.odm2.org/variablename/ethaneDissolved'),('ethanol','Ethanol','Ethanol (C2H6O)',NULL,'http://vocabulary.odm2.org/variablename/ethanol'),('ethoxyresorufin_O_DeethylaseActivity','Ethoxyresorufin O-deethylase, activity','Ethoxyresorufin O-deethylase (EROD) activity',NULL,'http://vocabulary.odm2.org/variablename/ethoxyresorufin_O_DeethylaseActivity'),('ethylTert_ButylEther','Ethyl tert-Butyl Ether','Ethyl tert-Butyl Ether (C6H14O)',NULL,'http://vocabulary.odm2.org/variablename/ethylTert_ButylEther'),('ethylbenzene','Ethylbenzene','Ethylbenzene (C8H10)',NULL,'http://vocabulary.odm2.org/variablename/ethylbenzene'),('ethylene','Ethylene','Ethylene (C2H4)',NULL,'http://vocabulary.odm2.org/variablename/ethylene'),('ethyleneGlycol','Ethylene glycol','Ethlene Glycol (C2H4(OH)2)',NULL,'http://vocabulary.odm2.org/variablename/ethyleneGlycol'),('ethyleneDissolved','Ethylene, dissolved','Dissolved ethylene',NULL,'http://vocabulary.odm2.org/variablename/ethyleneDissolved'),('ethyne','Ethyne','Ethyne (C2H2)',NULL,'http://vocabulary.odm2.org/variablename/ethyne'),('evaporation','Evaporation','Evaporation',NULL,'http://vocabulary.odm2.org/variablename/evaporation'),('evapotranspiration','Evapotranspiration','Evapotranspiration',NULL,'http://vocabulary.odm2.org/variablename/evapotranspiration'),('evapotranspirationPotential','Evapotranspiration, potential','The amount of water that could be evaporated and transpired if there was sufficient water available.',NULL,'http://vocabulary.odm2.org/variablename/evapotranspirationPotential'),('fishDetections','Fish detections','The number of fish identified by the detection equipment',NULL,'http://vocabulary.odm2.org/variablename/fishDetections'),('flashMemoryErrorCount','Flash memory error count','A counter which counts the number of datalogger flash memory errors',NULL,'http://vocabulary.odm2.org/variablename/flashMemoryErrorCount'),('fluoranthene','Fluoranthene','Fluoranthene (C16H10), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/fluoranthene'),('fluorene','Fluorene','Fluorene (C13H10), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/fluorene'),('fluoride','Fluoride','Fluoride (F-)',NULL,'http://vocabulary.odm2.org/variablename/fluoride'),('fluorideDissolved','Fluoride, dissolved','Dissolved Fluoride (F-)',NULL,'http://vocabulary.odm2.org/variablename/fluorideDissolved'),('fluorine','Fluorine','Fluorine (F2)',NULL,'http://vocabulary.odm2.org/variablename/fluorine'),('fluorineDissolved','Fluorine, dissolved','Dissolved Fluorine (F2)',NULL,'http://vocabulary.odm2.org/variablename/fluorineDissolved'),('formate','Formate','Formate',NULL,'http://vocabulary.odm2.org/variablename/formate'),('formicAcid','Formic acid','Formic acid (CH2O2)',NULL,'http://vocabulary.odm2.org/variablename/formicAcid'),('frequencyOfRotation','Frequency of Rotation','Number of rotations within a time period',NULL,'http://vocabulary.odm2.org/variablename/frequencyOfRotation'),('frictionVelocity','Friction velocity','Friction velocity',NULL,'http://vocabulary.odm2.org/variablename/frictionVelocity'),('gageHeight','Gage height','Water level with regard to an arbitrary gage datum (also see Water depth for comparison)',NULL,'http://vocabulary.odm2.org/variablename/gageHeight'),('globalRadiation','Global Radiation','Solar radiation, direct and diffuse, received from a solid angle of 2p steradians on a horizontal surface. Source: World Meteorological Organization, Meteoterm',NULL,'http://vocabulary.odm2.org/variablename/globalRadiation'),('glutaraldehyde','Glutaraldehyde','Glutaraldehyde (C5H8O2)',NULL,'http://vocabulary.odm2.org/variablename/glutaraldehyde'),('glutathione_S_TransferaseActivity','Glutathione S-transferase, activity','Glutathione S-transferase (GST) activity',NULL,'http://vocabulary.odm2.org/variablename/glutathione_S_TransferaseActivity'),('glutathione_S_TransferaseDeltaCycleThreshold','Glutathione S-transferase, delta cycle threshold','Delta cycle threshold for glutathione S-transferase (gst). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for gst is the difference between the cycle threshold (Ct) of gst gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin).',NULL,'http://vocabulary.odm2.org/variablename/glutathione_S_TransferaseDeltaCycleThreshold'),('grossAlphaRadionuclides','Gross alpha radionuclides','Gross Alpha Radionuclides',NULL,'http://vocabulary.odm2.org/variablename/grossAlphaRadionuclides'),('grossBetaRadionuclides','Gross beta radionuclides','Gross Beta Radionuclides',NULL,'http://vocabulary.odm2.org/variablename/grossBetaRadionuclides'),('groundHeatFlux','Ground heat flux','Ground heat flux',NULL,'http://vocabulary.odm2.org/variablename/groundHeatFlux'),('groundwaterDepth','Groundwater Depth','Groundwater depth is the distance between the water surface and the ground surface at a specific location specified by the site location and offset.',NULL,'http://vocabulary.odm2.org/variablename/groundwaterDepth'),('hardnessCalcium','Hardness, Calcium','Hardness of calcium',NULL,'http://vocabulary.odm2.org/variablename/hardnessCalcium'),('hardnessCarbonate','Hardness, carbonate','Carbonate hardness also known as temporary hardness',NULL,'http://vocabulary.odm2.org/variablename/hardnessCarbonate'),('hardnessMagnesium','Hardness, Magnesium','Hardness of magnesium',NULL,'http://vocabulary.odm2.org/variablename/hardnessMagnesium'),('hardnessNonCarbonate','Hardness, non-carbonate','Non-carbonate hardness',NULL,'http://vocabulary.odm2.org/variablename/hardnessNonCarbonate'),('hardnessTotal','Hardness, total','Total hardness',NULL,'http://vocabulary.odm2.org/variablename/hardnessTotal'),('heatIndex','Heat index','The combination effect of heat and humidity on the temperature felt by people.',NULL,'http://vocabulary.odm2.org/variablename/heatIndex'),('heightAboveSeaFloor','height, above sea floor','Vertical distance from the sea floor to a point.',NULL,'http://vocabulary.odm2.org/variablename/heightAboveSeaFloor'),('helium','Helium','Helium',NULL,'http://vocabulary.odm2.org/variablename/helium'),('heliumDissolved','Helium, dissolved','Dissolved Helium (He)',NULL,'http://vocabulary.odm2.org/variablename/heliumDissolved'),('heptachlor','Heptachlor','Heptachlor (C10H5Cl7)',NULL,'http://vocabulary.odm2.org/variablename/heptachlor'),('heptachlorEpoxide','Heptachlor epoxide','Heptachlor epoxide (C10H5Cl7O)',NULL,'http://vocabulary.odm2.org/variablename/heptachlorEpoxide'),('hexachlorobenzene','Hexachlorobenzene','Hexachlorobenzene (C6Cl6)',NULL,'http://vocabulary.odm2.org/variablename/hexachlorobenzene'),('hexachlorobutadiene','Hexachlorobutadiene','Hexachlorobutadiene (C4Cl6)',NULL,'http://vocabulary.odm2.org/variablename/hexachlorobutadiene'),('hexachlorocyclopentadiene','Hexachlorocyclopentadiene','Hexachlorocyclopentadiene (C5Cl6)',NULL,'http://vocabulary.odm2.org/variablename/hexachlorocyclopentadiene'),('hexachloroethane','Hexachloroethane','Hexachloroethane (C2Cl6)',NULL,'http://vocabulary.odm2.org/variablename/hexachloroethane'),('hexane','Hexane','Hexane',NULL,'http://vocabulary.odm2.org/variablename/hexane'),('hostConnected','Host connected','A categorical variable marking the attachment of a host computer to a logger. This is used for quality control.',NULL,'http://vocabulary.odm2.org/variablename/hostConnected'),('hydrogen','Hydrogen','Hydrogen',NULL,'http://vocabulary.odm2.org/variablename/hydrogen'),('hydrogenSulfide','Hydrogen sulfide','Hydrogen sulfide (H2S)',NULL,'http://vocabulary.odm2.org/variablename/hydrogenSulfide'),('hydrogenDissolved','Hydrogen, dissolved','Dissolved Hydrogen',NULL,'http://vocabulary.odm2.org/variablename/hydrogenDissolved'),('hydrogen_2_StableIsotopeRatioDelta','Hydrogen-2, stable isotope ratio delta','Difference in the 2H:1H ratio between the sample and standard',NULL,'http://vocabulary.odm2.org/variablename/hydrogen_2_StableIsotopeRatioDelta'),('imaginaryDielectricConstant','Imaginary dielectric constant','Soil reponse of a reflected standing electromagnetic wave of a particular frequency which is related to the dissipation (or loss) of energy within the medium. This is the imaginary portion of the complex dielectric constant.',NULL,'http://vocabulary.odm2.org/variablename/imaginaryDielectricConstant'),('indeno_1_2_3_cd_Pyrene','Indeno(1,2,3-cd)pyrene','Indeno(1,2,3-cd)pyrene (C22H12)',NULL,'http://vocabulary.odm2.org/variablename/indeno_1_2_3_cd_Pyrene'),('indicator','Indicator','Binary status to indicate the status of an instrument or other piece of equipment.',NULL,'http://vocabulary.odm2.org/variablename/indicator'),('instrumentStatusCode','Instrument status code','Code value recorded by instrument indicating some information regarding the status of the instrument',NULL,'http://vocabulary.odm2.org/variablename/instrumentStatusCode'),('intercept','Intercept','The point at which one of the variables in a function equals 0.',NULL,'http://vocabulary.odm2.org/variablename/intercept'),('iodideDissolved','Iodide, dissolved','Dissolved Iodide (I-)',NULL,'http://vocabulary.odm2.org/variablename/iodideDissolved'),('ironSulfide','Iron sulfide','Iron sulfide (FeS2)',NULL,'http://vocabulary.odm2.org/variablename/ironSulfide'),('ironDissolved','Iron, dissolved','Dissolved Iron (Fe)',NULL,'http://vocabulary.odm2.org/variablename/ironDissolved'),('ironFerric','Iron, ferric','Ferric Iron (Fe+3)',NULL,'http://vocabulary.odm2.org/variablename/ironFerric'),('ironFerrous','Iron, ferrous','Ferrous Iron (Fe+2)',NULL,'http://vocabulary.odm2.org/variablename/ironFerrous'),('ironParticulate','Iron, particulate','Particulate iron (Fe) in suspension',NULL,'http://vocabulary.odm2.org/variablename/ironParticulate'),('ironTotal','Iron, total','Total Iron (Fe)',NULL,'http://vocabulary.odm2.org/variablename/ironTotal'),('isobutane','Isobutane','Isobutane',NULL,'http://vocabulary.odm2.org/variablename/isobutane'),('isobutyricAcid','Isobutyric acid','Isobutyric acid (C4H8O2)',NULL,'http://vocabulary.odm2.org/variablename/isobutyricAcid'),('isopentane','Isopentane','Isopentane',NULL,'http://vocabulary.odm2.org/variablename/isopentane'),('isophorone','Isophorone','Isophorone (C9H14O)',NULL,'http://vocabulary.odm2.org/variablename/isophorone'),('isopropylAlcohol','Isopropyl alcohol','Isopropyl alcohol (C3H8O)',NULL,'http://vocabulary.odm2.org/variablename/isopropylAlcohol'),('isopropylbenzene','Isopropylbenzene','Isopropylbenzene (C9H12)',NULL,'http://vocabulary.odm2.org/variablename/isopropylbenzene'),('ivaFrutescenscoverage','Iva frutescens coverage','Areal coverage of the plant Iva frutescens',NULL,'http://vocabulary.odm2.org/variablename/ivaFrutescenscoverage'),('lacticAcid','Lactic Acid','Lactic Acid (C3H6O3)',NULL,'http://vocabulary.odm2.org/variablename/lacticAcid'),('latentHeatFlux','Latent heat flux','Latent Heat Flux',NULL,'http://vocabulary.odm2.org/variablename/latentHeatFlux'),('latitude','Latitude','Latitude as a variable measurement or observation (Spatial reference to be designated in methods). This is distinct from the latitude of a site which is a site attribute.',NULL,'http://vocabulary.odm2.org/variablename/latitude'),('leadDissolved','Lead, dissolved','Dissolved Lead (Pb). For chemical terms, dissolved indicates a filtered sample',NULL,'http://vocabulary.odm2.org/variablename/leadDissolved'),('leadDistributionCoefficient','Lead, distribution coefficient','Ratio of concentrations of lead in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/leadDistributionCoefficient'),('leadParticulate','Lead, particulate','Particulate lead (Pb) in suspension',NULL,'http://vocabulary.odm2.org/variablename/leadParticulate'),('leadTotal','Lead, total','Total Lead (Pb). For chemical terms, total indicates an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/leadTotal'),('leafWetness','Leaf wetness','The effect of moisture settling on the surface of a leaf as a result of either condensation or rainfall.',NULL,'http://vocabulary.odm2.org/variablename/leafWetness'),('lightAttenuationCoefficient','Light attenuation coefficient','Light attenuation coefficient',NULL,'http://vocabulary.odm2.org/variablename/lightAttenuationCoefficient'),('limoniumNashiiCoverage','Limonium nashii Coverage','Areal coverage of the plant Limonium nashii',NULL,'http://vocabulary.odm2.org/variablename/limoniumNashiiCoverage'),('lithiumDissolved','Lithium, dissolved','Dissolved Lithium (Li). For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/lithiumDissolved'),('lithiumTotal','Lithium, total','Total Lithium (Li). For chemical terms, total indicates an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/lithiumTotal'),('liverMass','Liver, mass','Mass of the sample of liver tissue used for analyses',NULL,'http://vocabulary.odm2.org/variablename/liverMass'),('loggerStopped','Logger stopped','A categorical variable indicating that a logger was told to stop recording data. This is used for quality control.',NULL,'http://vocabulary.odm2.org/variablename/loggerStopped'),('longitude','Longitude','Longitude as a variable measurement or observation (Spatial reference to be designated in methods). This is distinct from the longitude of a site which is a site attribute.',NULL,'http://vocabulary.odm2.org/variablename/longitude'),('lowBatteryCount','Low battery count','A counter of the number of times the battery voltage dropped below a minimum threshold',NULL,'http://vocabulary.odm2.org/variablename/lowBatteryCount'),('LSI','LSI','Langelier Saturation Index is an indicator of the degree of saturation of water with respect to calcium carbonate',NULL,'http://vocabulary.odm2.org/variablename/LSI'),('luminousFlux','Luminous Flux','A measure of the total amount of visible light present',NULL,'http://vocabulary.odm2.org/variablename/luminousFlux'),('lyciumCarolinianumCoverage','Lycium carolinianum Coverage','Areal coverage of the plant Lycium carolinianum',NULL,'http://vocabulary.odm2.org/variablename/lyciumCarolinianumCoverage'),('magnesiumDissolved','Magnesium, dissolved','Dissolved Magnesium (Mg)',NULL,'http://vocabulary.odm2.org/variablename/magnesiumDissolved'),('magnesiumTotal','Magnesium, total','Total Magnesium (Mg)',NULL,'http://vocabulary.odm2.org/variablename/magnesiumTotal'),('malathion','Malathion','Butanedioic acid, [(dimethoxyphosphinothioyl)thio]-, diethyl ester (C10H19O6PS2)',NULL,'http://vocabulary.odm2.org/variablename/malathion'),('manganeseDissolved','Manganese, dissolved','Dissolved Manganese (Mn)',NULL,'http://vocabulary.odm2.org/variablename/manganeseDissolved'),('manganeseParticulate','Manganese, particulate','Particulate manganese (Mn) in suspension',NULL,'http://vocabulary.odm2.org/variablename/manganeseParticulate'),('manganeseTotal','Manganese, total','Total manganese (Mn). \"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/manganeseTotal'),('mercuryDissolved','Mercury, dissolved','Dissolved Mercury (Hg). For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/mercuryDissolved'),('mercuryTotal','Mercury, total','Total Mercury (Hg). For chemical terms, total represents an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/mercuryTotal'),('methane','Methane','Methane (CH4)',NULL,'http://vocabulary.odm2.org/variablename/methane'),('methaneDissolved','Methane, dissolved','Dissolved Methane (CH4)',NULL,'http://vocabulary.odm2.org/variablename/methaneDissolved'),('methanol','Methanol','Methanol (CH3OH)',NULL,'http://vocabulary.odm2.org/variablename/methanol'),('methoxychlor','Methoxychlor','Methoxychlor (C16H15Cl3O2)',NULL,'http://vocabulary.odm2.org/variablename/methoxychlor'),('methylTert_ButylEther_MTBE','Methyl tert-butyl ether (MTBE)','Methyl tert-butyl ether (MTBE) (C5H12O)',NULL,'http://vocabulary.odm2.org/variablename/methylTert_ButylEther_MTBE'),('methylchrysene','Methylchrysene','Methylchrysene (C19H14)',NULL,'http://vocabulary.odm2.org/variablename/methylchrysene'),('methyleneBlueActiveSubstances','Methylene blue active substances','Methylene Blue Active Substances (MBAS)',NULL,'http://vocabulary.odm2.org/variablename/methyleneBlueActiveSubstances'),('methyleneChloride_Dichloromethane','Methylene chloride (Dichloromethane)','Methylene chloride (Dichloromethane) (CH2Cl2)',NULL,'http://vocabulary.odm2.org/variablename/methyleneChloride_Dichloromethane'),('methylfluoranthene','Methylfluoranthene','Methylfluoranthene (C17H12)',NULL,'http://vocabulary.odm2.org/variablename/methylfluoranthene'),('methylfluorene','Methylfluorene','Methylfluorene (C14H12)',NULL,'http://vocabulary.odm2.org/variablename/methylfluorene'),('methylmercury','Methylmercury','Methylmercury (CH3Hg)',NULL,'http://vocabulary.odm2.org/variablename/methylmercury'),('methylpyrene','Methylpyrene','Methylpyrene (C17H12)',NULL,'http://vocabulary.odm2.org/variablename/methylpyrene'),('mevinphos','Mevinphos','Mevinphos (C7H13O6P)',NULL,'http://vocabulary.odm2.org/variablename/mevinphos'),('microsomalProtein','Microsomal protein','The total protein concentration within the microsomal fraction of cells. Microsomes refer to vesicle-like artifacts reformed from pieces of endoplasmic reticulum when eukaryotic cells are broken up in a laboratory.',NULL,'http://vocabulary.odm2.org/variablename/microsomalProtein'),('molbydenumDissolved','Molbydenum, dissolved','Dissolved Molbydenum (Mo). For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/molbydenumDissolved'),('molybdenumTotal','Molybdenum, total','total Molybdenum (Mo). For chemical terms, total represents an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/molybdenumTotal'),('momentumFlux','Momentum flux','Momentum flux',NULL,'http://vocabulary.odm2.org/variablename/momentumFlux'),('monanthochloeLittoralisCoverage','Monanthochloe littoralis Coverage','Areal coverage of the plant Monanthochloe littoralis',NULL,'http://vocabulary.odm2.org/variablename/monanthochloeLittoralisCoverage'),('NAlbuminoid','N, albuminoid','Albuminoid Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/NAlbuminoid'),('n_Alkane_C15','n-alkane, C15','C15 alkane, normal (i.e. straight-chain) isomer, common name: n-Pentadecane, formula : C15H32',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C15'),('n_Alkane_C16','n-alkane, C16','C16 alkane, normal (i.e. straight-chain) isomer, common name: n-Hexadecane, formula: C16H34. Synonym: cetane',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C16'),('n_Alkane_C17','n-alkane, C17','C17 alkane, normal (i.e. straight-chain) isomer, common name: n-Heptadecane, formula : C17H36',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C17'),('n_Alkane_C18','n-alkane, C18','C18 alkane, normal (i.e. straight-chain) isomer, common name: n-Octadecane, formula : C18H38',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C18'),('n_Alkane_C19','n-alkane, C19','C19 alkane, normal (i.e. straight-chain) isomer, common name: n-Nonadecane, formula : C19H40',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C19'),('n_Alkane_C20','n-alkane, C20','C20 alkane, normal (i.e. straight-chain) isomer, common name: n-Icosane, formula : C20H42. Synonyms: didecyl, eicosane.',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C20'),('n_Alkane_C21','n-alkane, C21','C21 alkane, normal (i.e. straight-chain) isomer, common name: n-Henicosane, formula : C21H44.',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C21'),('n_Alkane_C22','n-alkane, C22','C22 alkane, normal (i.e. straight-chain) isomer, common name: n-Docosane, formula : C22H46',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C22'),('n_Alkane_C23','n-alkane, C23','C23 alkane, normal (i.e. straight-chain) isomer, common name: n-Tricosane, formula : C23H48',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C23'),('n_Alkane_C24','n-alkane, C24','C24 alkane, normal (i.e. straight-chain) isomer, common name: n-Tetracosane, formula : C24H50',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C24'),('n_Alkane_C25','n-alkane, C25','C25 alkane, normal (i.e. straight-chain) isomer, common name: n-Pentacosane, formula : C25H52',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C25'),('n_Alkane_C26','n-alkane, C26','C26 alkane, normal (i.e. straight-chain) isomer, common name: n-Hexacosane, formula : C26H54, synonyms: cerane, hexeikosane',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C26'),('n_Alkane_C27','n-alkane, C27','C27 alkane, normal (i.e. straight-chain) isomer, common name: n-Heptacosane, formula : C27H56',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C27'),('n_Alkane_C28','n-alkane, C28','C28 alkane, normal (i.e. straight-chain) isomer, common name: n-Octacosane, formula : C28H58',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C28'),('n_Alkane_C29','n-alkane, C29','C29 alkane, normal (i.e. straight-chain) isomer, common name: n-Nonacosane, formula : C29H60',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C29'),('n_Alkane_C30','n-alkane, C30','C30 alkane, normal (i.e. straight-chain) isomer, common name: n-Triacontane, formula : C30H62',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C30'),('n_Alkane_C31','n-alkane, C31','C31 alkane,normal (i.e. straight-chain) isomer, common name: n-Hentriacontane, formula : C31H64, Synonym: untriacontane',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C31'),('n_Alkane_C32','n-alkane, C32','C32 alkane, normal (i.e. straight-chain) isomer, common name: n-Dotriacontane, formula : C32H66, Synonym: dicetyl',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C32'),('n_Alkane_C33','n-alkane, C33','C33 alkane, (i.e. straight-chain) isomer, common name: n-Tritriacontane, formula : C33H68',NULL,'http://vocabulary.odm2.org/variablename/n_Alkane_C33'),('n_AlkaneLongChain','n-alkane, long-chain','long-chain alkanes, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified)',NULL,'http://vocabulary.odm2.org/variablename/n_AlkaneLongChain'),('n_AlkaneShortChain','n-alkane, short-chain','short-chain alkanes, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified)',NULL,'http://vocabulary.odm2.org/variablename/n_AlkaneShortChain'),('n_AlkaneTotal','n-alkane, total','Total alkane, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified)',NULL,'http://vocabulary.odm2.org/variablename/n_AlkaneTotal'),('N_Nitrosodi_n_Butylamine','N-Nitrosodi-n-butylamine','N-Nitrosodi-n-butylamine (C8H18N2O)',NULL,'http://vocabulary.odm2.org/variablename/N_Nitrosodi_n_Butylamine'),('N_Nitrosodi_n_Propylamine','N-Nitrosodi-n-propylamine','N-Nitrosodi-n-propylamine (C6H14N2O)',NULL,'http://vocabulary.odm2.org/variablename/N_Nitrosodi_n_Propylamine'),('N_Nitrosodiethylamine','N-Nitrosodiethylamine','N-Nitrosodiethylamine (C4H10N2O)',NULL,'http://vocabulary.odm2.org/variablename/N_Nitrosodiethylamine'),('N_Nitrosodimethylamine','N-Nitrosodimethylamine','N-Nitrosodimethylamine (C2H6N2O)',NULL,'http://vocabulary.odm2.org/variablename/N_Nitrosodimethylamine'),('N_Nitrosodiphenylamine','N-Nitrosodiphenylamine','N-Nitrosodiphenylamine (C12H10N2O)',NULL,'http://vocabulary.odm2.org/variablename/N_Nitrosodiphenylamine'),('N_Nitrosomethylethylamine','N-Nitrosomethylethylamine','N-Nitrosomethylethylamine (C3H8N2O)',NULL,'http://vocabulary.odm2.org/variablename/N_Nitrosomethylethylamine'),('naphthalene','Naphthalene','Naphthalene (C10H8)',NULL,'http://vocabulary.odm2.org/variablename/naphthalene'),('NDVI','NDVI','Normalized difference vegetation index',NULL,'http://vocabulary.odm2.org/variablename/NDVI'),('netHeatFlux','Net heat flux','Outgoing rate of heat energy transfer minus the incoming rate of heat energy transfer through a given area',NULL,'http://vocabulary.odm2.org/variablename/netHeatFlux'),('nickelDissolved','Nickel, dissolved','Dissolved Nickel (Ni)',NULL,'http://vocabulary.odm2.org/variablename/nickelDissolved'),('nickelDistributionCoefficient','Nickel, distribution coefficient','Ratio of concentrations of nickel in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/nickelDistributionCoefficient'),('nickelParticulate','Nickel, particulate','Particulate nickel (Ni) in suspension',NULL,'http://vocabulary.odm2.org/variablename/nickelParticulate'),('nickelTotal','Nickel, total','Total Nickel (Ni). \"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/nickelTotal'),('nitrobenzene','Nitrobenzene','Nitrobenzene (C6H5NO2)',NULL,'http://vocabulary.odm2.org/variablename/nitrobenzene'),('nitrogenDissolved_Free_Ionized_Ammonia_NH3_NH4','Nitrogen, dissolved (free+ionized) Ammonia (NH3) + (NH4)','Dissolved (free+ionized) Ammonia',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolved_Free_Ionized_Ammonia_NH3_NH4'),('nitrogenDissolvedInorganic','Nitrogen, dissolved inorganic','Dissolved inorganic nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolvedInorganic'),('nitrogenDissolvedKjeldahl','Nitrogen, dissolved Kjeldahl','Dissolved Kjeldahl (organic nitrogen + ammonia (NH3) + ammonium (NH4))nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolvedKjeldahl'),('nitrogenDissolvedNitrate_NO3','Nitrogen, dissolved nitrate (NO3)','Dissolved nitrate (NO3) nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolvedNitrate_NO3'),('nitrogenDissolvedNitrite_NO2','Nitrogen, dissolved nitrite (NO2)','Dissolved nitrite (NO2) nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolvedNitrite_NO2'),('nitrogenDissolvedNitrite_NO2_Nitrate_NO3','Nitrogen, dissolved nitrite (NO2) + nitrate (NO3)','Dissolved nitrite (NO2) + nitrate (NO3) nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolvedNitrite_NO2_Nitrate_NO3'),('nitrogenDissolvedOrganic','Nitrogen, dissolved organic','Dissolved Organic Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenDissolvedOrganic'),('nitrogenGas','Nitrogen, gas','Gaseous Nitrogen (N2)',NULL,'http://vocabulary.odm2.org/variablename/nitrogenGas'),('nitrogenInorganic','Nitrogen, inorganic','Total Inorganic Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenInorganic'),('nitrogen_NH3','Nitrogen, NH3','Free Ammonia (NH3)',NULL,'http://vocabulary.odm2.org/variablename/nitrogen_NH3'),('nitrogenNH3_NH4','Nitrogen, NH3 + NH4','Total (free+ionized) Ammonia',NULL,'http://vocabulary.odm2.org/variablename/nitrogenNH3_NH4'),('nitrogen_NH4','Nitrogen, NH4','Ammonium (NH4)',NULL,'http://vocabulary.odm2.org/variablename/nitrogen_NH4'),('nitrogenNitrate_NO3','Nitrogen, nitrate (NO3)','Nitrate (NO3) Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenNitrate_NO3'),('nitrogenNitrite_NO2','Nitrogen, nitrite (NO2)','Nitrite (NO2) Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenNitrite_NO2'),('nitrogenNitrite_NO2_Nitrate_NO3','Nitrogen, nitrite (NO2) + nitrate (NO3)','Nitrite (NO2) + Nitrate (NO3) Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenNitrite_NO2_Nitrate_NO3'),('nitrogenOrganic','Nitrogen, organic','Organic Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenOrganic'),('nitrogenOrganicKjeldahl','Nitrogen, organic kjeldahl','Organic Kjeldahl (organic nitrogen + ammonia (NH3) + ammonium (NH4)) nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenOrganicKjeldahl'),('nitrogenParticulateOrganic','Nitrogen, particulate organic','Particulate Organic Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenParticulateOrganic'),('nitrogenTotal','Nitrogen, total','Total Nitrogen (NO3+NO2+NH4+NH3+Organic)',NULL,'http://vocabulary.odm2.org/variablename/nitrogenTotal'),('nitrogenTotalDissolved','Nitrogen, total dissolved','Total dissolved nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenTotalDissolved'),('nitrogenTotalKjeldahl','Nitrogen, total kjeldahl','Total Kjeldahl Nitrogen (Ammonia+Organic)',NULL,'http://vocabulary.odm2.org/variablename/nitrogenTotalKjeldahl'),('nitrogenTotalNitrite','Nitrogen, total nitrite','Total nitrite (NO2)',NULL,'http://vocabulary.odm2.org/variablename/nitrogenTotalNitrite'),('nitrogenTotalOrganic','Nitrogen, total organic','Total (dissolved + particulate) organic nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogenTotalOrganic'),('nitrogen_15','Nitrogen-15','15 Nitrogen, Delta Nitrogen',NULL,'http://vocabulary.odm2.org/variablename/nitrogen_15'),('nitrogen_15_StableIsotopeRatioDelta','Nitrogen-15, stable isotope ratio delta','Difference in the 15N:14N ratio between the sample and standard (del N 15)',NULL,'http://vocabulary.odm2.org/variablename/nitrogen_15_StableIsotopeRatioDelta'),('nitrousOxide','Nitrous oxide','Nitrous oxide (N2O)',NULL,'http://vocabulary.odm2.org/variablename/nitrousOxide'),('noVegetationCoverage','No vegetation coverage','Areal coverage of no vegetation',NULL,'http://vocabulary.odm2.org/variablename/noVegetationCoverage'),('o_Xylene','o-Xylene','o-Xylene (C8H10)',NULL,'http://vocabulary.odm2.org/variablename/o_Xylene'),('odor','Odor','Odor',NULL,'http://vocabulary.odm2.org/variablename/odor'),('offset','Offset','Constant to be added as an offset to a variable of interest.',NULL,'http://vocabulary.odm2.org/variablename/offset'),('oilAndGrease','Oil and grease','Oil and grease',NULL,'http://vocabulary.odm2.org/variablename/oilAndGrease'),('organicMatter','Organic matter','The organic matter component of a complex material.',NULL,'http://vocabulary.odm2.org/variablename/organicMatter'),('orientation','Orientation','Azimuth orientation of sensor platform',NULL,'http://vocabulary.odm2.org/variablename/orientation'),('osmoticPressure','Osmotic pressure','Osmotic pressure',NULL,'http://vocabulary.odm2.org/variablename/osmoticPressure'),('oxygen','Oxygen','Oxygen',NULL,'http://vocabulary.odm2.org/variablename/oxygen'),('oxygenFlux','Oxygen flux','Oxygen (O2) flux',NULL,'http://vocabulary.odm2.org/variablename/oxygenFlux'),('oxygenUptake','Oxygen uptake','Consumption of oxygen by biological and/or chemical processes',NULL,'http://vocabulary.odm2.org/variablename/oxygenUptake'),('oxygenDissolved','Oxygen, dissolved','Dissolved oxygen',NULL,'http://vocabulary.odm2.org/variablename/oxygenDissolved'),('oxygenDissolvedPercentOfSaturation','Oxygen, dissolved percent of saturation','Dissolved oxygen, percent saturation',NULL,'http://vocabulary.odm2.org/variablename/oxygenDissolvedPercentOfSaturation'),('oxygenDissolvedTransducerSignal','Oxygen, dissolved, transducer signal','Dissolved oxygen, raw data from sensor',NULL,'http://vocabulary.odm2.org/variablename/oxygenDissolvedTransducerSignal'),('oxygen_18','Oxygen-18','18 O, Delta O',NULL,'http://vocabulary.odm2.org/variablename/oxygen_18'),('oxygen_18_StableIsotopeRatioDelta','Oxygen-18, stable isotope ratio delta','Difference in the 18O:16O ratio between the sample and standard',NULL,'http://vocabulary.odm2.org/variablename/oxygen_18_StableIsotopeRatioDelta'),('ozone','Ozone','Ozone (O3)',NULL,'http://vocabulary.odm2.org/variablename/ozone'),('parameter','Parameter','Parameter related to a hydrologic process. An example usage would be for a starge-discharge relation parameter.',NULL,'http://vocabulary.odm2.org/variablename/parameter'),('parathion_Ethyl','Parathion-ethyl','Parathion-ethyl (C10H14NO5PS)',NULL,'http://vocabulary.odm2.org/variablename/parathion_Ethyl'),('pentachlorobenzene','Pentachlorobenzene','Pentachlorobenzene (C6HCl5)',NULL,'http://vocabulary.odm2.org/variablename/pentachlorobenzene'),('pentachlorophenol','Pentachlorophenol','Pentachlorophenol (C6HCl5O)',NULL,'http://vocabulary.odm2.org/variablename/pentachlorophenol'),('pentane','Pentane','Pentane',NULL,'http://vocabulary.odm2.org/variablename/pentane'),('percentFullScale','Percent full scale','The percent of full scale for an instrument',NULL,'http://vocabulary.odm2.org/variablename/percentFullScale'),('peridinin','Peridinin','The phytoplankton pigment Peridinin',NULL,'http://vocabulary.odm2.org/variablename/peridinin'),('permethrin','Permethrin','Permethrin (C21H20Cl2O3)',NULL,'http://vocabulary.odm2.org/variablename/permethrin'),('permittivity','Permittivity','Permittivity is a physical quantity that describes how an electric field affects, and is affected by a dielectric medium, and is determined by the ability of a material to polarize in response to the field, and thereby reduce the total electric field inside the material. Thus, permittivity relates to a material\'s ability to transmit (or \"permit\") an electric field.',NULL,'http://vocabulary.odm2.org/variablename/permittivity'),('perylene','Perylene','Perylene (C20H12), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/perylene'),('petroleumHydrocarbonTotal','Petroleum hydrocarbon, total','Total petroleum hydrocarbon',NULL,'http://vocabulary.odm2.org/variablename/petroleumHydrocarbonTotal'),('pH','pH','pH is the measure of the acidity or alkalinity of a solution. pH is formally a measure of the activity of dissolved hydrogen ions (H+). Solutions in which the concentration of H+ exceeds that of OH- have a pH value lower than 7.0 and are known as acids.',NULL,'http://vocabulary.odm2.org/variablename/pH'),('phenanthrene','Phenanthrene','Phenanthrene (C14H10), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/phenanthrene'),('phenol','Phenol','Phenol (C6H5OH)',NULL,'http://vocabulary.odm2.org/variablename/phenol'),('phenolicsTotal','Phenolics, total','Total Phenolics',NULL,'http://vocabulary.odm2.org/variablename/phenolicsTotal'),('pheophytin','Pheophytin','Pheophytin (Chlorophyll which has lost the central Mg ion) is a degradation product of Chlorophyll',NULL,'http://vocabulary.odm2.org/variablename/pheophytin'),('phorate','Phorate','Phorate (C7H17O2PS3)',NULL,'http://vocabulary.odm2.org/variablename/phorate'),('phosphorodithioicAcid','Phosphorodithioic acid','Phosphorodithioic acid (C10N12N3O3PS2)',NULL,'http://vocabulary.odm2.org/variablename/phosphorodithioicAcid'),('phosphorusDissolved','Phosphorus, dissolved','Dissolved Phosphorus (P)',NULL,'http://vocabulary.odm2.org/variablename/phosphorusDissolved'),('phosphorusDissolvedOrganic','Phosphorus, dissolved organic','Dissolved organic phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusDissolvedOrganic'),('phosphorusInorganic','Phosphorus, inorganic','Inorganic Phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusInorganic'),('phosphorusOrganic','Phosphorus, organic','Organic Phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusOrganic'),('phosphorusOrthophosphate','Phosphorus, orthophosphate','Orthophosphate Phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusOrthophosphate'),('phosphorusOrthophosphateDissolved','Phosphorus, orthophosphate dissolved','Dissolved orthophosphate phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusOrthophosphateDissolved'),('phosphorusOrthophosphateTotal','Phosphorus, orthophosphate total','Total orthophosphate phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusOrthophosphateTotal'),('phosphorusParticulate','Phosphorus, particulate','Particulate phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusParticulate'),('phosphorusParticulateOrganic','Phosphorus, particulate organic','Particulate organic phosphorus in suspension',NULL,'http://vocabulary.odm2.org/variablename/phosphorusParticulateOrganic'),('phosphorusPhosphate_PO4','Phosphorus, phosphate (PO4)','Phosphate phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusPhosphate_PO4'),('hosphorusPhosphateFlux','Phosphorus, phosphate flux','Phosphate (PO4) flux',NULL,'http://vocabulary.odm2.org/variablename/hosphorusPhosphateFlux'),('phosphorusPolyphosphate','Phosphorus, polyphosphate','Polyphosphate Phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusPolyphosphate'),('phosphorusTotal','Phosphorus, total','Total Phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusTotal'),('phosphorusTotalDissolved','Phosphorus, total dissolved','Total dissolved phosphorus',NULL,'http://vocabulary.odm2.org/variablename/phosphorusTotalDissolved'),('phytoplankton','Phytoplankton','Measurement of phytoplankton with no differentiation between species',NULL,'http://vocabulary.odm2.org/variablename/phytoplankton'),('piperonylButoxide','Piperonyl Butoxide','Piperonyl Butoxide (C19H30O5)',NULL,'http://vocabulary.odm2.org/variablename/piperonylButoxide'),('polycyclicAromaticHydrocarbonAlkyl','Polycyclic aromatic hydrocarbon, alkyl','Polycyclic aromatic hydrocarbon (PAH) having at least one alkyl sidechain (methyl, ethyl or other alkyl group) attached to the aromatic ring structure',NULL,'http://vocabulary.odm2.org/variablename/polycyclicAromaticHydrocarbonAlkyl'),('polycyclicAromaticHydrocarbonParent','Polycyclic aromatic hydrocarbon, parent','Unsubstituted (i.e., non-alkylated) polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/polycyclicAromaticHydrocarbonParent'),('polycyclicAromaticHydrocarbonTotal','Polycyclic aromatic hydrocarbon, total','total polycyclic aromatic hydrocarbon (PAH), also known as poly-aromatic hydrocarbons or polynuclear aromatic hydrocarbons',NULL,'http://vocabulary.odm2.org/variablename/polycyclicAromaticHydrocarbonTotal'),('position','Position','Position of an element that interacts with water such as reservoir gates',NULL,'http://vocabulary.odm2.org/variablename/position'),('potassiumDissolved','Potassium, dissolved','Dissolved Potassium (K)',NULL,'http://vocabulary.odm2.org/variablename/potassiumDissolved'),('potassiumTotal','Potassium, total','Total Potassium (K)',NULL,'http://vocabulary.odm2.org/variablename/potassiumTotal'),('precipitation','Precipitation','Precipitation such as rainfall. Should not be confused with settling.',NULL,'http://vocabulary.odm2.org/variablename/precipitation'),('pressureAbsolute','Pressure, absolute','Pressure',NULL,'http://vocabulary.odm2.org/variablename/pressureAbsolute'),('pressureGauge','Pressure, gauge','Pressure relative to the local atmospheric or ambient pressure',NULL,'http://vocabulary.odm2.org/variablename/pressureGauge'),('primaryProductivity','Primary productivity','Primary Productivity',NULL,'http://vocabulary.odm2.org/variablename/primaryProductivity'),('primaryProductivityGross','Primary productivity, gross','Rate at which an ecosystem accumulates energy by fixation of sunlight, including that consumed by the ecosystem.',NULL,'http://vocabulary.odm2.org/variablename/primaryProductivityGross'),('programSignature','Program signature','A unique data recorder program identifier which is useful for knowing when the source code in the data recorder has been modified.',NULL,'http://vocabulary.odm2.org/variablename/programSignature'),('pronamide','Pronamide','Pronamide (C12H11Cl2NO)',NULL,'http://vocabulary.odm2.org/variablename/pronamide'),('propane','Propane','Propane',NULL,'http://vocabulary.odm2.org/variablename/propane'),('propaneDissolved','Propane, dissolved','Dissolved Propane (C3H8)',NULL,'http://vocabulary.odm2.org/variablename/propaneDissolved'),('propanoicAcid','Propanoic acid','Propanoic acid (C3H6O2)',NULL,'http://vocabulary.odm2.org/variablename/propanoicAcid'),('propyleneGlycol','Propylene glycol','Propylene glycol (C3H8O2)',NULL,'http://vocabulary.odm2.org/variablename/propyleneGlycol'),('pyrene','Pyrene','Pyrene (C16H10), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/pyrene'),('pyridine','Pyridine','Pyridine (C5H5N)',NULL,'http://vocabulary.odm2.org/variablename/pyridine'),('radiationIncoming','Radiation, incoming','Incoming radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationIncoming'),('radiationIncomingLongwave','Radiation, incoming longwave','Incoming Longwave Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationIncomingLongwave'),('radiationIncomingPAR','Radiation, incoming PAR','Incoming Photosynthetically-Active Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationIncomingPAR'),('radiationIncomingShortwave','Radiation, incoming shortwave','Incoming Shortwave Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationIncomingShortwave'),('radiationIncomingUV_A','Radiation, incoming UV-A','Incoming Ultraviolet A Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationIncomingUV_A'),('radiationIncomingUV_B','Radiation, incoming UV-B','Incoming Ultraviolet B Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationIncomingUV_B'),('radiationNet','Radiation, net','Net Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationNet'),('radiationNetLongwave','Radiation, net longwave','Net Longwave Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationNetLongwave'),('radiationNetPAR','Radiation, net PAR','Net Photosynthetically-Active Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationNetPAR'),('radiationNetShortwave','Radiation, net shortwave','Net Shortwave radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationNetShortwave'),('radiationOutgoingLongwave','Radiation, outgoing longwave','Outgoing Longwave Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationOutgoingLongwave'),('radiationOutgoingPAR','Radiation, outgoing PAR','Outgoing Photosynthetically-Active Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationOutgoingPAR'),('radiationOutgoingShortwave','Radiation, outgoing shortwave','Outgoing Shortwave Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationOutgoingShortwave'),('radiationTotalIncoming','Radiation, total incoming','Total amount of incoming radiation from all frequencies',NULL,'http://vocabulary.odm2.org/variablename/radiationTotalIncoming'),('radiationTotalOutgoing','Radiation, total outgoing','Total amount of outgoing radiation from all frequencies',NULL,'http://vocabulary.odm2.org/variablename/radiationTotalOutgoing'),('radiationTotalShortwave','Radiation, total shortwave','Total Shortwave Radiation',NULL,'http://vocabulary.odm2.org/variablename/radiationTotalShortwave'),('radium_226','Radium-226','An isotope of radium in the uranium-238 decay series',NULL,'http://vocabulary.odm2.org/variablename/radium_226'),('radium_228','Radium-228','An isotope of radium in the thorium-232 decay series',NULL,'http://vocabulary.odm2.org/variablename/radium_228'),('radon_222','Radon-222','An isotope of radon',NULL,'http://vocabulary.odm2.org/variablename/radon_222'),('rainfallRate','Rainfall rate','A measure of the intensity of rainfall, calculated as the depth of water to fall over a given time period if the intensity were to remain constant over that time interval (in/hr, mm/hr, etc)',NULL,'http://vocabulary.odm2.org/variablename/rainfallRate'),('realDielectricConstant','Real dielectric constant','Soil reponse of a reflected standing electromagnetic wave of a particular frequency which is related to the stored energy within the medium. This is the real portion of the complex dielectric constant.',NULL,'http://vocabulary.odm2.org/variablename/realDielectricConstant'),('recorderCode','Recorder code','A code used to identifier a data recorder.',NULL,'http://vocabulary.odm2.org/variablename/recorderCode'),('reductionPotential','Reduction potential','Oxidation-reduction potential',NULL,'http://vocabulary.odm2.org/variablename/reductionPotential'),('relativeHumidity','Relative humidity','Relative humidity',NULL,'http://vocabulary.odm2.org/variablename/relativeHumidity'),('remark','Remark','Manually added comment field to provide additional information about a particular record.',NULL,'http://vocabulary.odm2.org/variablename/remark'),('reservoirStorage','Reservoir storage','Reservoir water volume',NULL,'http://vocabulary.odm2.org/variablename/reservoirStorage'),('respirationEcosystem','Respiration, ecosystem','Gross carbon dioxide production by all organisms in an ecosystem. Ecosystem respiration is the sum of all respiration occurring by the living organisms in a specific ecosystem.',NULL,'http://vocabulary.odm2.org/variablename/respirationEcosystem'),('respirationNet','Respiration, net','Net respiration',NULL,'http://vocabulary.odm2.org/variablename/respirationNet'),('retene','Retene','Retene (C18H18), a polycyclic aromatic hydrocarbon (PAH), also known as methyl isopropyl phenanthrene or 1-methyl-7-isopropyl phenanthrene',NULL,'http://vocabulary.odm2.org/variablename/retene'),('rheniumTotal','Rhenium, total','Total Rhenium (Re)',NULL,'http://vocabulary.odm2.org/variablename/rheniumTotal'),('ruthenium_106','Ruthenium-106','The most stable isotope of ruthenium with a half life of 373.59 days.',NULL,'http://vocabulary.odm2.org/variablename/ruthenium_106'),('salicorniaBigeloviiCoverage','Salicornia bigelovii coverage','Areal coverage of the plant Salicornia bigelovii',NULL,'http://vocabulary.odm2.org/variablename/salicorniaBigeloviiCoverage'),('salicorniaVirginicaCoverage','Salicornia virginica coverage','Areal coverage of the plant Salicornia virginica',NULL,'http://vocabulary.odm2.org/variablename/salicorniaVirginicaCoverage'),('salinity','Salinity','Salinity',NULL,'http://vocabulary.odm2.org/variablename/salinity'),('Sand','Sand','USDA particle size distribution category. 0.5 to 2 mm diameter fine earth particles. ',NULL,'http://vocabulary.odm2.org/variablename/Sand'),('secchiDepth','Secchi depth','Secchi depth',NULL,'http://vocabulary.odm2.org/variablename/secchiDepth'),('sedimentPassingSieve','Sediment, passing sieve','The amount of sediment passing a sieve in a gradation test',NULL,'http://vocabulary.odm2.org/variablename/sedimentPassingSieve'),('sedimentRetainedOnSieve','Sediment, retained on sieve','The amount of sediment retained on a sieve in a gradation test',NULL,'http://vocabulary.odm2.org/variablename/sedimentRetainedOnSieve'),('sedimentSuspended','Sediment, suspended','Suspended Sediment',NULL,'http://vocabulary.odm2.org/variablename/sedimentSuspended'),('seleniumDissolved','Selenium, dissolved','Dissolved selenium (Se). For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/seleniumDissolved'),('seleniumDistributionCoefficient','Selenium, distribution coefficient','Ratio of concentrations of selenium in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/seleniumDistributionCoefficient'),('seleniumParticulate','Selenium, particulate','Particulate selenium (Se) in suspension',NULL,'http://vocabulary.odm2.org/variablename/seleniumParticulate'),('seleniumTotal','Selenium, total','Total Selenium (Se). For chemical terms, total indicates an unfiltered sample',NULL,'http://vocabulary.odm2.org/variablename/seleniumTotal'),('sensibleHeatFlux','Sensible heat flux','Sensible Heat Flux',NULL,'http://vocabulary.odm2.org/variablename/sensibleHeatFlux'),('sequenceNumber','Sequence number','A counter of events in a sequence',NULL,'http://vocabulary.odm2.org/variablename/sequenceNumber'),('shannonDiversityIndex','Shannon diversity index','A diversity index that is based on the number of taxa, and the proportion of individuals in each taxa relative to the entire community, evaluated as entropy. Also known as Shannon-Weaver diversity index, the Shannon-Wiener index, the Shannon index and the Shannon entropy.',NULL,'http://vocabulary.odm2.org/variablename/shannonDiversityIndex'),('shannonEvennessIndex','Shannon evenness index','A dimensionless diversity index, calculated as a ratio of the Shannon diversity index over its maximum. Also known as the Shannon Weaver evenness index',NULL,'http://vocabulary.odm2.org/variablename/shannonEvennessIndex'),('sigma_t','Sigma-t','Density of seawater calculated with in situ salinity and temperature, but pressure equal to zero, rather than the in situ pressure, and 1000 kg/m^3 is subtracted. Defined as (S,T)-1000 kg m-3, where (S,T) is the density of a sample of seawater at temperature T and salinity S, measured in kg m-3, at standard atmospheric pressure.',NULL,'http://vocabulary.odm2.org/variablename/sigma_t'),('signalToNoiseRatio','Signal-to-noise ratio','Signal-to-noise ratio (often abbreviated SNR or S/N) is defined as the ratio of a signal power to the noise power corrupting the signal. The higher the ratio, the less obtrusive the background noise is.',NULL,'http://vocabulary.odm2.org/variablename/signalToNoiseRatio'),('silica','Silica','Silica (SiO2)',NULL,'http://vocabulary.odm2.org/variablename/silica'),('silicaDissolved','Silica, dissolved','Dissolved silica (SiO2)',NULL,'http://vocabulary.odm2.org/variablename/silicaDissolved'),('silicate','Silicate','Silicate. Chemical compound containing silicon, oxygen, and one or more metals, e.g., aluminum, barium, beryllium, calcium, iron, magnesium, manganese, potassium, sodium, or zirconium.',NULL,'http://vocabulary.odm2.org/variablename/silicate'),('silicicAcid','Silicic acid','Hydrated silica disolved in water',NULL,'http://vocabulary.odm2.org/variablename/silicicAcid'),('silicicAcidFlux','Silicic acid flux','Silicate acid (H4SiO4) flux',NULL,'http://vocabulary.odm2.org/variablename/silicicAcidFlux'),('silicon','Silicon','Silicon (Si)',NULL,'http://vocabulary.odm2.org/variablename/silicon'),('siliconDissolved','Silicon, dissolved','Dissolved Silicon (Si)',NULL,'http://vocabulary.odm2.org/variablename/siliconDissolved'),('Silt','Silt','USDA particle size distribution category. 0.002 to 0.5 mm diameter fine earth particles. ',NULL,'http://vocabulary.odm2.org/variablename/Silt'),('silverDissolved','Silver, dissolved','Dissolved silver (Ag). For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/silverDissolved'),('silverTotal','Silver, total','Total Silver (Ag). For chemical terms, total represents an unfiltered sample.',NULL,'http://vocabulary.odm2.org/variablename/silverTotal'),('slope','Slope','Ratio between two variables in a linear relationship.',NULL,'http://vocabulary.odm2.org/variablename/slope'),('snowDepth','Snow depth','Snow depth',NULL,'http://vocabulary.odm2.org/variablename/snowDepth'),('snowWaterEquivalent','Snow water equivalent','The depth of water if a snow cover is completely melted, expressed in units of depth, on a corresponding horizontal surface area.',NULL,'http://vocabulary.odm2.org/variablename/snowWaterEquivalent'),('sodiumAdsorptionRatio','Sodium adsorption ratio','Sodium adsorption ratio',NULL,'http://vocabulary.odm2.org/variablename/sodiumAdsorptionRatio'),('sodiumPlusPotassium','Sodium plus potassium','Sodium plus potassium',NULL,'http://vocabulary.odm2.org/variablename/sodiumPlusPotassium'),('sodiumDissolved','Sodium, dissolved','Dissolved Sodium (Na)',NULL,'http://vocabulary.odm2.org/variablename/sodiumDissolved'),('sodiumFractionOfCations','Sodium, fraction of cations','Sodium, fraction of cations',NULL,'http://vocabulary.odm2.org/variablename/sodiumFractionOfCations'),('sodiumTotal','Sodium, total','Total Sodium (Na)',NULL,'http://vocabulary.odm2.org/variablename/sodiumTotal'),('solidsRixedDissolved','Solids, fixed dissolved','Fixed Dissolved Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsRixedDissolved'),('solidsFixedSuspended','Solids, fixed suspended','Fixed Suspended Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsFixedSuspended'),('solidsTotal','Solids, total','Total Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsTotal'),('solidsTotalDissolved','Solids, total dissolved','Total Dissolved Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsTotalDissolved'),('solidsTotalFixed','Solids, total fixed','Total Fixed Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsTotalFixed'),('solidsTotalSuspended','Solids, total suspended','Total Suspended Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsTotalSuspended'),('solidsTotalVolatile','Solids, total volatile','Total Volatile Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsTotalVolatile'),('solidsVolatileDissolved','Solids, volatile dissolved','Volatile Dissolved Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsVolatileDissolved'),('solidsVolatileSuspended','Solids, volatile suspended','Volatile Suspended Solids',NULL,'http://vocabulary.odm2.org/variablename/solidsVolatileSuspended'),('spartinaAlternifloraCoverage','Spartina alterniflora coverage','Areal coverage of the plant Spartina alterniflora',NULL,'http://vocabulary.odm2.org/variablename/spartinaAlternifloraCoverage'),('spartinaSpartineaCoverage','Spartina spartinea coverage','Areal coverage of the plant Spartina spartinea',NULL,'http://vocabulary.odm2.org/variablename/spartinaSpartineaCoverage'),('specificConductance','Specific conductance','Specific conductance',NULL,'http://vocabulary.odm2.org/variablename/specificConductance'),('speedOfSound','Speed of sound','Speed of sound in the medium sampled',NULL,'http://vocabulary.odm2.org/variablename/speedOfSound'),('squalene','Squalene','Squalene (C30H50)',NULL,'http://vocabulary.odm2.org/variablename/squalene'),('streamflow','Streamflow','The volume of water flowing past a fixed point. Equivalent to discharge',NULL,'http://vocabulary.odm2.org/variablename/streamflow'),('streptococciFecal','Streptococci, fecal','Fecal Streptococci',NULL,'http://vocabulary.odm2.org/variablename/streptococciFecal'),('strontiumDissolved','Strontium, dissolved','Dissolved Strontium (Sr)',NULL,'http://vocabulary.odm2.org/variablename/strontiumDissolved'),('strontiumTotal','Strontium, total','Total Strontium (Sr)',NULL,'http://vocabulary.odm2.org/variablename/strontiumTotal'),('styrene','Styrene','Styrene (C8H8)',NULL,'http://vocabulary.odm2.org/variablename/styrene'),('suaedaLinearisCoverage','Suaeda linearis coverage','Areal coverage of the plant Suaeda linearis',NULL,'http://vocabulary.odm2.org/variablename/suaedaLinearisCoverage'),('suaedaMaritimaCoverage','Suaeda maritima coverage','Areal coverage of the plant Suaeda maritima',NULL,'http://vocabulary.odm2.org/variablename/suaedaMaritimaCoverage'),('sulfateDissolved','Sulfate, dissolved','Dissolved Sulfate (SO4)',NULL,'http://vocabulary.odm2.org/variablename/sulfateDissolved'),('sulfateTotal','Sulfate, total','Total Sulfate (SO4)',NULL,'http://vocabulary.odm2.org/variablename/sulfateTotal'),('sulfideDissolved','Sulfide, dissolved','Dissolved Sulfide',NULL,'http://vocabulary.odm2.org/variablename/sulfideDissolved'),('sulfideTotal','Sulfide, total','Total sulfide',NULL,'http://vocabulary.odm2.org/variablename/sulfideTotal'),('sulfur','Sulfur','Sulfur (S)',NULL,'http://vocabulary.odm2.org/variablename/sulfur'),('sulfurDioxide','Sulfur dioxide','Sulfur dioxide (SO2)',NULL,'http://vocabulary.odm2.org/variablename/sulfurDioxide'),('sulfurDissolved','Sulfur, dissolved','Dissolved Sulfur (S)',NULL,'http://vocabulary.odm2.org/variablename/sulfurDissolved'),('sulfurOrganic','Sulfur, organic','Organic Sulfur',NULL,'http://vocabulary.odm2.org/variablename/sulfurOrganic'),('sulfurPyritic','Sulfur, pyritic','Pyritic Sulfur',NULL,'http://vocabulary.odm2.org/variablename/sulfurPyritic'),('sunshineDuration','Sunshine duration','Sunshine duration',NULL,'http://vocabulary.odm2.org/variablename/sunshineDuration'),('superoxideDismutaseActivity','Superoxide dismutase, activity','Superoxide dismutase (SOD) activity',NULL,'http://vocabulary.odm2.org/variablename/superoxideDismutaseActivity'),('superoxideDismutaseDeltaCycleThreshold','Superoxide dismutase, delta cycle threshold','Delta cycle threshold for superoxide dismutase (sod). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for sod is the difference between the cycle threshold (Ct) of sod gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin).',NULL,'http://vocabulary.odm2.org/variablename/superoxideDismutaseDeltaCycleThreshold'),('SUVA254','SUVA254','Specific ultraviolet absorbance at 254 nm. Determined by absorbance normalized to DOC concentration.',NULL,'http://vocabulary.odm2.org/variablename/SUVA254'),('tableOverrunErrorCount','Table overrun error count','A counter which counts the number of datalogger table overrun errors',NULL,'http://vocabulary.odm2.org/variablename/tableOverrunErrorCount'),('taxaCount','Taxa count','Count of unique taxa. A taxon (plural: taxa) is a group of one (or more) populations of organism(s), which is judged to be a unit.',NULL,'http://vocabulary.odm2.org/variablename/taxaCount'),('TDRWaveformRelativeLength','TDR waveform relative length','Time domain reflextometry, apparent length divided by probe length. Square root of dielectric',NULL,'http://vocabulary.odm2.org/variablename/TDRWaveformRelativeLength'),('temperature','Temperature','Temperature',NULL,'http://vocabulary.odm2.org/variablename/temperature'),('temperatureChange','Temperature change','temperature change',NULL,'http://vocabulary.odm2.org/variablename/temperatureChange'),('temperatureDatalogger','Temperature, datalogger','Temperature, raw data from datalogger',NULL,'http://vocabulary.odm2.org/variablename/temperatureDatalogger'),('temperatureDewPoint','Temperature, dew point','Dew point temperature',NULL,'http://vocabulary.odm2.org/variablename/temperatureDewPoint'),('temperatureInitial','Temperature, initial','initial temperature before heating',NULL,'http://vocabulary.odm2.org/variablename/temperatureInitial'),('temperatureSensor','Temperature, sensor','Temperature, raw data from sensor',NULL,'http://vocabulary.odm2.org/variablename/temperatureSensor'),('temperatureTransducerSignal','Temperature, transducer signal','Temperature, raw data from sensor',NULL,'http://vocabulary.odm2.org/variablename/temperatureTransducerSignal'),('terbufos','Terbufos','Terbufos (C9H21O2PS3)',NULL,'http://vocabulary.odm2.org/variablename/terbufos'),('terpineol','Terpineol','Terpineol (C10H18O)',NULL,'http://vocabulary.odm2.org/variablename/terpineol'),('tertAmylMethylEther','Tert-Amyl Methyl Ether','Tert-Amyl Methyl Ether (C6H14O)',NULL,'http://vocabulary.odm2.org/variablename/tertAmylMethylEther'),('tertiaryButylAlcohol','Tertiary Butyl Alcohol','Tertiary Butyl Alcohol (C4H10O)',NULL,'http://vocabulary.odm2.org/variablename/tertiaryButylAlcohol'),('tetracene','Tetracene','Tetracene (C18H12), a polycyclic aromatic hydrocarbon (PAH), also known as naphthacene or benz[b]anthracene',NULL,'http://vocabulary.odm2.org/variablename/tetracene'),('tetrachloroethene','Tetrachloroethene','Tetrachloroethene (C2Cl4)',NULL,'http://vocabulary.odm2.org/variablename/tetrachloroethene'),('tetraethyleneGlycol','Tetraethylene glycol','Tetraethylene glycol (C8H18O5)',NULL,'http://vocabulary.odm2.org/variablename/tetraethyleneGlycol'),('tetrahydrofuran','Tetrahydrofuran','Tetrahydrofuran (C4H8O)',NULL,'http://vocabulary.odm2.org/variablename/tetrahydrofuran'),('tetramethylnaphthalene','Tetramethylnaphthalene','Tetramethylnaphthalene (C10H4(CH3)4), a polycyclic aromatic hydrocarbon (PAH)',NULL,'http://vocabulary.odm2.org/variablename/tetramethylnaphthalene'),('thalliumDissolved','Thallium, dissolved','Dissolved thallium (Tl). \"dissolved\" indicates measurement was made on a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/thalliumDissolved'),('thalliumDistributionCoefficient','Thallium, distribution coefficient','Ratio of concentrations of thallium in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/thalliumDistributionCoefficient'),('thalliumParticulate','Thallium, particulate','Particulate thallium (Tl) in suspension',NULL,'http://vocabulary.odm2.org/variablename/thalliumParticulate'),('thalliumTotal','Thallium, total','Total thallium (Tl). \"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/thalliumTotal'),('thorium','Thorium','Thorium (Th)',NULL,'http://vocabulary.odm2.org/variablename/thorium'),('thoriumDissolved','Thorium, dissolved','Dissolved thorium. For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/thoriumDissolved'),('thorium_228','Thorium-228','An isotope of thorium in the thorium-232 decay series',NULL,'http://vocabulary.odm2.org/variablename/thorium_228'),('thorium_230','Thorium-230','An isotope of thorium in the thorium-232 decay series',NULL,'http://vocabulary.odm2.org/variablename/thorium_230'),('thorium_232','Thorium-232','A radioactive isotope of thorium which undergoes alpha decay',NULL,'http://vocabulary.odm2.org/variablename/thorium_232'),('threshold','Threshold','A level above or below which an action is performed.',NULL,'http://vocabulary.odm2.org/variablename/threshold'),('THSWIndex','THSW Index','The THSW Index uses temperature, humidity, solar radiation, and wind speed to calculate an apparent temperature.',NULL,'http://vocabulary.odm2.org/variablename/THSWIndex'),('THWIndex','THW Index','The THW Index uses temperature, humidity, and wind speed to calculate an apparent temperature.',NULL,'http://vocabulary.odm2.org/variablename/THWIndex'),('tideStage','Tide stage','Tidal stage',NULL,'http://vocabulary.odm2.org/variablename/tideStage'),('timeStamp','Time Stamp','The time at which a sensor produces output',NULL,'http://vocabulary.odm2.org/variablename/timeStamp'),('timeElapsed','Time, elapsed','Time elapsed since an event occurred',NULL,'http://vocabulary.odm2.org/variablename/timeElapsed'),('tinDissolved','Tin, dissolved','Dissolved tin (Sn). \"Dissolved \" indicates a the measurement was made on a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/tinDissolved'),('tinTotal','Tin, total','Total tin (Sn).\"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/tinTotal'),('titanium','Titanium','Titanium (Ti)',NULL,'http://vocabulary.odm2.org/variablename/titanium'),('titaniumDissolved','Titanium, dissolved','Dissolved Titanium',NULL,'http://vocabulary.odm2.org/variablename/titaniumDissolved'),('toluene','Toluene','Toluene (C6H5CH3)',NULL,'http://vocabulary.odm2.org/variablename/toluene'),('trans_1_2_Dichloroethene','trans-1,2-Dichloroethene','trans-1,2-Dichloroethene (C2H2Cl2)',NULL,'http://vocabulary.odm2.org/variablename/trans_1_2_Dichloroethene'),('trans_1_3_Dichloropropene','trans-1,3-Dichloropropene','trans-1,3-Dichloropropene (C3H4Cl2)',NULL,'http://vocabulary.odm2.org/variablename/trans_1_3_Dichloropropene'),('transientSpeciesCoverage','Transient species coverage','Areal coverage of transient species',NULL,'http://vocabulary.odm2.org/variablename/transientSpeciesCoverage'),('transpiration','Transpiration','Transpiration',NULL,'http://vocabulary.odm2.org/variablename/transpiration'),('tributoxyethylPhosphate','Tributoxyethyl phosphate','Tributoxyethyl phosphate (C42H87O13P)',NULL,'http://vocabulary.odm2.org/variablename/tributoxyethylPhosphate'),('trichloroethene','Trichloroethene','Trichloroethene (C2HCl3)',NULL,'http://vocabulary.odm2.org/variablename/trichloroethene'),('triethyleneGlycol','Triethylene glycol','Triethylene glycol (C6H14O4)',NULL,'http://vocabulary.odm2.org/variablename/triethyleneGlycol'),('trifluralin','Trifluralin','Trifluralin (C13H16F3N3O4)',NULL,'http://vocabulary.odm2.org/variablename/trifluralin'),('triphenylene','Triphenylene','Triphenylene (C18H12)',NULL,'http://vocabulary.odm2.org/variablename/triphenylene'),('tritium_3H_DeltaTOfH2O','Tritium (3H), Delta T of H2O','Isotope 3H of water',NULL,'http://vocabulary.odm2.org/variablename/tritium_3H_DeltaTOfH2O'),('TSI','TSI','Carlson Trophic State Index is a measurement of eutrophication based on Secchi depth',NULL,'http://vocabulary.odm2.org/variablename/TSI'),('turbidity','Turbidity','Turbidity',NULL,'http://vocabulary.odm2.org/variablename/turbidity'),('uranium','Uranium','Uranium (U)',NULL,'http://vocabulary.odm2.org/variablename/uranium'),('uraniumDissolved','Uranium, dissolved','Dissolved Uranium. For chemical terms, dissolved indicates a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/uraniumDissolved'),('uranium_234','Uranium-234','An isotope of uranium in the uranium-238 decay series',NULL,'http://vocabulary.odm2.org/variablename/uranium_234'),('uranium_235','Uranium-235','An isotope of uranium that can sustain fission chain reaction',NULL,'http://vocabulary.odm2.org/variablename/uranium_235'),('uranium_238','Uranium-238','Uranium\'s most common isotope',NULL,'http://vocabulary.odm2.org/variablename/uranium_238'),('urea','Urea','Urea ((NH2)2CO)',NULL,'http://vocabulary.odm2.org/variablename/urea'),('ureaFlux','Urea flux','Urea ((NH2)2CO) flux',NULL,'http://vocabulary.odm2.org/variablename/ureaFlux'),('vanadiumDissolved','Vanadium, dissolved','Dissolved vanadium (V). \"Dissolved\" indicates the measurement was made on a filtered sample.',NULL,'http://vocabulary.odm2.org/variablename/vanadiumDissolved'),('vanadiumParticulate','Vanadium, particulate','Particulate vanadium (V) in suspension',NULL,'http://vocabulary.odm2.org/variablename/vanadiumParticulate'),('vanadiumTotal','Vanadium, total','Total vanadium (V). \"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/vanadiumTotal'),('vaporPressure','Vapor pressure','The pressure of a vapor in equilibrium with its non-vapor phases',NULL,'http://vocabulary.odm2.org/variablename/vaporPressure'),('vaporPressureDeficit','Vapor pressure deficit','The difference between the actual water vapor pressure and the saturation of water vapor pressure at a particular temperature.',NULL,'http://vocabulary.odm2.org/variablename/vaporPressureDeficit'),('velocity','Velocity','The velocity of a substance, fluid or object',NULL,'http://vocabulary.odm2.org/variablename/velocity'),('visibility','Visibility','Visibility',NULL,'http://vocabulary.odm2.org/variablename/visibility'),('voltage','Voltage','Voltage or Electrical Potential',NULL,'http://vocabulary.odm2.org/variablename/voltage'),('volume','Volume','Volume. To quantify discharge or hydrograph volume or some other volume measurement.',NULL,'http://vocabulary.odm2.org/variablename/volume'),('volumetricWaterContent','Volumetric water content','Volume of liquid water relative to bulk volume. Used for example to quantify soil moisture',NULL,'http://vocabulary.odm2.org/variablename/volumetricWaterContent'),('watchdogErrorCount','Watchdog error count','A counter which counts the number of total datalogger watchdog errors',NULL,'http://vocabulary.odm2.org/variablename/watchdogErrorCount'),('waterColumnEquivalentHeightAbsolute','Water column equivalent height, absolute','The absolute pressure (combined water + barometric) on a sensor expressed as the height of an equivalent column of water.',NULL,'http://vocabulary.odm2.org/variablename/waterColumnEquivalentHeightAbsolute'),('waterColumnEquivalentHeightBarometric','Water column equivalent height, barometric','Barometric pressure expressed as an equivalent height of water over the sensor.',NULL,'http://vocabulary.odm2.org/variablename/waterColumnEquivalentHeightBarometric'),('waterContent','Water Content','Quantity of water contained in a material or organism',NULL,'http://vocabulary.odm2.org/variablename/waterContent'),('waterDepth','Water depth','Water depth is the distance between the water surface and the bottom of the water body at a specific location specified by the site location and offset.',NULL,'http://vocabulary.odm2.org/variablename/waterDepth'),('waterDepthAveraged','Water depth, averaged','Water depth averaged over a channel cross-section or water body. Averaging method to be specified in methods.',NULL,'http://vocabulary.odm2.org/variablename/waterDepthAveraged'),('waterFlux','Water flux','Water Flux',NULL,'http://vocabulary.odm2.org/variablename/waterFlux'),('waterLevel','Water level','Water level relative to datum. The datum may be local or global such as NGVD 1929 and should be specified in the method description for associated data values.',NULL,'http://vocabulary.odm2.org/variablename/waterLevel'),('waterPotential','Water potential','Water potential is the potential energy of water relative to pure free water (e.g. deionized water) in reference conditions. It quantifies the tendency of water to move from one area to another due to osmosis, gravity, mechanical pressure, or matrix effects including surface tension.',NULL,'http://vocabulary.odm2.org/variablename/waterPotential'),('waterUseAgriculture','Water Use, Agriculture','Water pumped for Agriculture',NULL,'http://vocabulary.odm2.org/variablename/waterUseAgriculture'),('waterUseCommercialIndustrialPower','Water Use, Commercial + Industrial + Power','Water pumped by commercial, industrial users.',NULL,'http://vocabulary.odm2.org/variablename/waterUseCommercialIndustrialPower'),('waterUseDomesticWells','Water Use, Domestic wells','Water pumped by domestic wells; residents and landowners not using public supply. Nonagriculture wells.',NULL,'http://vocabulary.odm2.org/variablename/waterUseDomesticWells'),('waterUsePublicSupply','Water Use, Public Supply','Water supplied by a public utility',NULL,'http://vocabulary.odm2.org/variablename/waterUsePublicSupply'),('waterUseRecreation','Water Use, Recreation','Recreational water use, for example golf courses.',NULL,'http://vocabulary.odm2.org/variablename/waterUseRecreation'),('waterVaporConcentration','Water vapor concentration','Water vapor concentration',NULL,'http://vocabulary.odm2.org/variablename/waterVaporConcentration'),('waterVaporDensity','Water vapor density','Water vapor density',NULL,'http://vocabulary.odm2.org/variablename/waterVaporDensity'),('waveHeight','Wave height','The height of a surface wave, measured as the difference in elevation between the wave crest and an adjacent trough.',NULL,'http://vocabulary.odm2.org/variablename/waveHeight'),('weatherConditions','Weather conditions','Weather conditions',NULL,'http://vocabulary.odm2.org/variablename/weatherConditions'),('wellFlowRate','Well flow rate','Flow rate from well while pumping',NULL,'http://vocabulary.odm2.org/variablename/wellFlowRate'),('wellheadPressure','Wellhead pressure','The pressure exerted by the fluid at the wellhead or casinghead after the well has been shut off for a period of time, typically 24 hours',NULL,'http://vocabulary.odm2.org/variablename/wellheadPressure'),('windChill','Wind chill','The effect of wind on the temperature felt on human skin.',NULL,'http://vocabulary.odm2.org/variablename/windChill'),('windDirection','Wind direction','Wind direction',NULL,'http://vocabulary.odm2.org/variablename/windDirection'),('windGustDirection','Wind gust direction','Direction of gusts of wind',NULL,'http://vocabulary.odm2.org/variablename/windGustDirection'),('windGustSpeed','Wind gust speed','Speed of gusts of wind',NULL,'http://vocabulary.odm2.org/variablename/windGustSpeed'),('windRun','Wind Run','The length of flow of air past a point over a time interval. Windspeed times the interval of time.',NULL,'http://vocabulary.odm2.org/variablename/windRun'),('windSpeed','Wind speed','Wind speed',NULL,'http://vocabulary.odm2.org/variablename/windSpeed'),('windStress','Wind stress','Drag or trangential force per unit area exerted on a surface by the adjacent layer of moving air',NULL,'http://vocabulary.odm2.org/variablename/windStress'),('wrackCoverage','Wrack coverage','Areal coverage of dead vegetation',NULL,'http://vocabulary.odm2.org/variablename/wrackCoverage'),('xylenesTotal','Xylenes, total','Total xylenes: C6H4(CH3)2',NULL,'http://vocabulary.odm2.org/variablename/xylenesTotal'),('zeaxanthin','Zeaxanthin','The phytoplankton pigment Zeaxanthin',NULL,'http://vocabulary.odm2.org/variablename/zeaxanthin'),('zincDissolved','Zinc, dissolved','Dissolved Zinc (Zn)',NULL,'http://vocabulary.odm2.org/variablename/zincDissolved'),('zincDistributionCoefficient','Zinc, distribution coefficient','Ratio of concentrations of zinc in two phases in equilibrium with each other. Phases must be specified.',NULL,'http://vocabulary.odm2.org/variablename/zincDistributionCoefficient'),('zincParticulate','Zinc, particulate','Particulate zinc (Zn) in suspension',NULL,'http://vocabulary.odm2.org/variablename/zincParticulate'),('zincTotal','Zinc, total','Total zinc (Zn).\"Total\" indicates was measured on a whole water (unfiltered) sample.',NULL,'http://vocabulary.odm2.org/variablename/zincTotal'),('zirconDissolved','Zircon, dissolved','Dissolved Zircon (Zr)',NULL,'http://vocabulary.odm2.org/variablename/zirconDissolved'),('zirconiumDissolved','Zirconium, dissolved','Dissolved Zirconium',NULL,'http://vocabulary.odm2.org/variablename/zirconiumDissolved'),('zirconium_95','Zirconium-95','A radioactive isotope of zirconium with a half-life of 63 days',NULL,'http://vocabulary.odm2.org/variablename/zirconium_95'),('zooplankton','Zooplankton','Zooplanktonic organisms, non-specific',NULL,'http://vocabulary.odm2.org/variablename/zooplankton'); +/*!40000 ALTER TABLE `CV_VariableName` ENABLE KEYS */; + +-- +-- Table structure for table `CV_VariableType` +-- + +DROP TABLE IF EXISTS `CV_VariableType`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CV_VariableType` ( + `Term` varchar(255) NOT NULL, + `Name` varchar(255) NOT NULL, + `Definition` varchar(5000) DEFAULT NULL, + `Category` varchar(255) DEFAULT NULL, + `SourceVocabularyURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`Name`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CV_VariableType` +-- + +/*!40000 ALTER TABLE `CV_VariableType` DISABLE KEYS */; +INSERT INTO `CV_VariableType` VALUES ('age','Age','Variables associated with age',NULL,'http://vocabulary.odm2.org/variabletype/age'),('Biota','Biota','Variables associated with biological organisms',NULL,'http://vocabulary.odm2.org/variabletype/Biota'),('Chemistry','Chemistry','Variables associated with chemistry, chemical analysis or processes',NULL,'http://vocabulary.odm2.org/variabletype/Chemistry'),('Climate','Climate','Variables associated with the climate, weather, or atmospheric processes',NULL,'http://vocabulary.odm2.org/variabletype/Climate'),('endMember','End-Member','Variables associated with end members',NULL,'http://vocabulary.odm2.org/variabletype/endMember'),('Geology','Geology','Variables associated with geology or geological processes',NULL,'http://vocabulary.odm2.org/variabletype/Geology'),('Hydrology','Hydrology','Variables associated with hydrologic variables or processes',NULL,'http://vocabulary.odm2.org/variabletype/Hydrology'),('Instrumentation','Instrumentation','Variables associated with instrumentation and instrument properties such as battery voltages, data logger temperatures, often useful for diagnosis.',NULL,'http://vocabulary.odm2.org/variabletype/Instrumentation'),('majorOxideElement','Major oxide or element','Variables associated with major oxides or elements',NULL,'http://vocabulary.odm2.org/variabletype/majorOxideElement'),('modelData','Model data','Variables associated with modeled data',NULL,'http://vocabulary.odm2.org/variabletype/modelData'),('nobleGas','Noble gas','Variables associated with noble gasses',NULL,'http://vocabulary.odm2.org/variabletype/nobleGas'),('radiogenicIsotopes','Radiogenic isotopes','Variables associated with radiogenic isotopes',NULL,'http://vocabulary.odm2.org/variabletype/radiogenicIsotopes'),('rareEarthElement','Rare earth element','Variables associated with rare earth elements',NULL,'http://vocabulary.odm2.org/variabletype/rareEarthElement'),('ratio','Ratio','Variables associated with a ratio',NULL,'http://vocabulary.odm2.org/variabletype/ratio'),('rockMode','Rock mode','Variables associated with a rock mode',NULL,'http://vocabulary.odm2.org/variabletype/rockMode'),('Soil','Soil','Variables associated with soil variables or processes',NULL,'http://vocabulary.odm2.org/variabletype/Soil'),('speciationRatio','Speciation ratio','Variables associated with a speciation ratio',NULL,'http://vocabulary.odm2.org/variabletype/speciationRatio'),('stableIsotopes','Stable isotopes','Variables associated with stable isotopes',NULL,'http://vocabulary.odm2.org/variabletype/stableIsotopes'),('traceElement','Trace element','Variables associated with trace elements',NULL,'http://vocabulary.odm2.org/variabletype/traceElement'),('Unknown','Unknown','The VariableType is unknown.',NULL,'http://vocabulary.odm2.org/variabletype/Unknown'),('uraniumSeries','Uranium series','Variables associated with uranium series',NULL,'http://vocabulary.odm2.org/variabletype/uraniumSeries'),('volatile','Volatile','Variables associated with volatile chemicals',NULL,'http://vocabulary.odm2.org/variabletype/volatile'),('WaterQuality','Water quality','Variables associated with water quality variables or processes',NULL,'http://vocabulary.odm2.org/variabletype/WaterQuality'); +/*!40000 ALTER TABLE `CV_VariableType` ENABLE KEYS */; + +-- +-- Table structure for table `CalibrationActions` +-- + +DROP TABLE IF EXISTS `CalibrationActions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CalibrationActions` ( + `ActionID` int(11) NOT NULL, + `CalibrationCheckValue` double DEFAULT NULL, + `InstrumentOutputVariableID` int(11) NOT NULL, + `CalibrationEquation` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ActionID`), + KEY `fk_CalibrationActions_InstrumentOutputVariables` (`InstrumentOutputVariableID`), + CONSTRAINT `fk_CalibrationActions_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CalibrationActions_InstrumentOutputVariables` FOREIGN KEY (`InstrumentOutputVariableID`) REFERENCES `InstrumentOutputVariables` (`InstrumentOutputVariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CalibrationActions` +-- + +/*!40000 ALTER TABLE `CalibrationActions` DISABLE KEYS */; +/*!40000 ALTER TABLE `CalibrationActions` ENABLE KEYS */; + +-- +-- Table structure for table `CalibrationReferenceEquipment` +-- + +DROP TABLE IF EXISTS `CalibrationReferenceEquipment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CalibrationReferenceEquipment` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `EquipmentID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_CalibrationReferenceEquipment_CalibrationActions` (`ActionID`), + KEY `fk_CalibrationReferenceEquipment_Equipment` (`EquipmentID`), + CONSTRAINT `fk_CalibrationReferenceEquipment_CalibrationActions` FOREIGN KEY (`ActionID`) REFERENCES `CalibrationActions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CalibrationReferenceEquipment_Equipment` FOREIGN KEY (`EquipmentID`) REFERENCES `Equipment` (`EquipmentID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CalibrationReferenceEquipment` +-- + +/*!40000 ALTER TABLE `CalibrationReferenceEquipment` DISABLE KEYS */; +/*!40000 ALTER TABLE `CalibrationReferenceEquipment` ENABLE KEYS */; + +-- +-- Table structure for table `CalibrationStandards` +-- + +DROP TABLE IF EXISTS `CalibrationStandards`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CalibrationStandards` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `ReferenceMaterialID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_CalibrationStandards_CalibrationActions` (`ActionID`), + KEY `fk_FieldCalibrationStandards_ReferenceMaterials` (`ReferenceMaterialID`), + CONSTRAINT `fk_CalibrationStandards_CalibrationActions` FOREIGN KEY (`ActionID`) REFERENCES `CalibrationActions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_FieldCalibrationStandards_ReferenceMaterials` FOREIGN KEY (`ReferenceMaterialID`) REFERENCES `ReferenceMaterials` (`ReferenceMaterialID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CalibrationStandards` +-- + +/*!40000 ALTER TABLE `CalibrationStandards` DISABLE KEYS */; +/*!40000 ALTER TABLE `CalibrationStandards` ENABLE KEYS */; + +-- +-- Table structure for table `CategoricalResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `CategoricalResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CategoricalResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_CategoricalResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_CategoricalResultValueAnnotations_CategoricalResultValues` (`ValueID`), + CONSTRAINT `fk_CategoricalResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CategoricalResultValueAnnotations_CategoricalResultValues` FOREIGN KEY (`ValueID`) REFERENCES `CategoricalResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CategoricalResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `CategoricalResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `CategoricalResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `CategoricalResultValues` +-- + +DROP TABLE IF EXISTS `CategoricalResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CategoricalResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` varchar(255) NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_CategoricalResultValues_CategoricalResults` (`ResultID`), + CONSTRAINT `fk_CategoricalResultValues_CategoricalResults` FOREIGN KEY (`ResultID`) REFERENCES `CategoricalResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CategoricalResultValues` +-- + +/*!40000 ALTER TABLE `CategoricalResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `CategoricalResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `CategoricalResults` +-- + +DROP TABLE IF EXISTS `CategoricalResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CategoricalResults` ( + `ResultID` bigint(20) NOT NULL, + `XLocation` double DEFAULT NULL, + `XLocationUnitsID` int(11) DEFAULT NULL, + `YLocation` double DEFAULT NULL, + `YLocationUnitsID` int(11) DEFAULT NULL, + `ZLocation` double DEFAULT NULL, + `ZLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_CategoricalResults_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_CategoricalResults_SpatialReferences` (`SpatialReferenceID`), + CONSTRAINT `fk_CategoricalResults_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CategoricalResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CategoricalResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CategoricalResults` +-- + +/*!40000 ALTER TABLE `CategoricalResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `CategoricalResults` ENABLE KEYS */; + +-- +-- Table structure for table `CitationExtensionPropertyValues` +-- + +DROP TABLE IF EXISTS `CitationExtensionPropertyValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CitationExtensionPropertyValues` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `CitationID` int(11) NOT NULL, + `PropertyID` int(11) NOT NULL, + `PropertyValue` varchar(255) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_CitationExtensionPropertyValues_Citations` (`CitationID`), + KEY `fk_CitationExtensionPropertyValues_ExtensionProperties` (`PropertyID`), + CONSTRAINT `fk_CitationExtensionPropertyValues_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CitationExtensionPropertyValues_ExtensionProperties` FOREIGN KEY (`PropertyID`) REFERENCES `ExtensionProperties` (`PropertyID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CitationExtensionPropertyValues` +-- + +/*!40000 ALTER TABLE `CitationExtensionPropertyValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `CitationExtensionPropertyValues` ENABLE KEYS */; + +-- +-- Table structure for table `CitationExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `CitationExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `CitationExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `CitationID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `CitationExternalIdentifier` varchar(255) NOT NULL, + `CitationExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_CitationExternalIdentifiers_Citations` (`CitationID`), + KEY `fk_CitationExternalIdentifiers_ExternalIdentifierSystems` (`ExternalIdentifierSystemID`), + CONSTRAINT `fk_CitationExternalIdentifiers_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_CitationExternalIdentifiers_ExternalIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `CitationExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `CitationExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `CitationExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `Citations` +-- + +DROP TABLE IF EXISTS `Citations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Citations` ( + `CitationID` int(11) NOT NULL AUTO_INCREMENT, + `Title` varchar(255) NOT NULL, + `Publisher` varchar(255) NOT NULL, + `PublicationYear` int(11) NOT NULL, + `CitationLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`CitationID`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Citations` +-- + +/*!40000 ALTER TABLE `Citations` DISABLE KEYS */; +/*!40000 ALTER TABLE `Citations` ENABLE KEYS */; + +-- +-- Table structure for table `DataLoggerFiles` +-- + +DROP TABLE IF EXISTS `DataLoggerFiles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DataLoggerFiles` ( + `DataLoggerFileID` int(11) NOT NULL AUTO_INCREMENT, + `ProgramID` int(11) NOT NULL, + `DataLoggerFileName` varchar(255) NOT NULL, + `DataLoggerFileDescription` varchar(500) DEFAULT NULL, + `DataLoggerFileLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`DataLoggerFileID`), + KEY `fk_DataLoggerFiles_DataloggerProgramFiles` (`ProgramID`), + CONSTRAINT `fk_DataLoggerFiles_DataloggerProgramFiles` FOREIGN KEY (`ProgramID`) REFERENCES `DataloggerProgramFiles` (`ProgramID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DataLoggerFiles` +-- + +/*!40000 ALTER TABLE `DataLoggerFiles` DISABLE KEYS */; +/*!40000 ALTER TABLE `DataLoggerFiles` ENABLE KEYS */; + +-- +-- Table structure for table `DataQuality` +-- + +DROP TABLE IF EXISTS `DataQuality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DataQuality` ( + `DataQualityID` int(11) NOT NULL, + `DataQualityTypeCV` varchar(255) NOT NULL, + `DataQualityCode` varchar(255) NOT NULL, + `DataQualityValue` double DEFAULT NULL, + `DataQualityValueUnitsID` int(11) DEFAULT NULL, + `DataQualityDescription` varchar(500) DEFAULT NULL, + `DataQualityLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`DataQualityID`), + KEY `fk_DataQuality_CV_DataQualityType` (`DataQualityTypeCV`), + KEY `fk_DataQuality_Units` (`DataQualityValueUnitsID`), + CONSTRAINT `fk_DataQuality_CV_DataQualityType` FOREIGN KEY (`DataQualityTypeCV`) REFERENCES `CV_DataQualityType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataQuality_Units` FOREIGN KEY (`DataQualityValueUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DataQuality` +-- + +/*!40000 ALTER TABLE `DataQuality` DISABLE KEYS */; +/*!40000 ALTER TABLE `DataQuality` ENABLE KEYS */; + +-- +-- Table structure for table `DataloggerFileColumns` +-- + +DROP TABLE IF EXISTS `DataloggerFileColumns`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DataloggerFileColumns` ( + `DataloggerFileColumnID` int(11) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) DEFAULT NULL, + `DataLoggerFileID` int(11) NOT NULL, + `InstrumentOutputVariableID` int(11) NOT NULL, + `ColumnLabel` varchar(50) NOT NULL, + `ColumnDescription` varchar(500) DEFAULT NULL, + `MeasurementEquation` varchar(255) DEFAULT NULL, + `ScanInterval` double DEFAULT NULL, + `ScanIntervalUnitsID` int(11) DEFAULT NULL, + `RecordingInterval` double DEFAULT NULL, + `RecordingIntervalUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) DEFAULT NULL, + PRIMARY KEY (`DataloggerFileColumnID`), + KEY `fk_DataloggerFileColumns_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_DataloggerFileColumns_DataLoggerFiles` (`DataLoggerFileID`), + KEY `fk_DataloggerFileColumns_InstrumentOutputVariables` (`InstrumentOutputVariableID`), + KEY `fk_DataloggerFileColumns_RecordingUnits` (`RecordingIntervalUnitsID`), + KEY `fk_DataloggerFileColumns_Results` (`ResultID`), + KEY `fk_DataloggerFileColumns_ScanUnits` (`ScanIntervalUnitsID`), + CONSTRAINT `fk_DataloggerFileColumns_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataloggerFileColumns_DataLoggerFiles` FOREIGN KEY (`DataLoggerFileID`) REFERENCES `DataLoggerFiles` (`DataLoggerFileID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataloggerFileColumns_InstrumentOutputVariables` FOREIGN KEY (`InstrumentOutputVariableID`) REFERENCES `InstrumentOutputVariables` (`InstrumentOutputVariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataloggerFileColumns_RecordingUnits` FOREIGN KEY (`RecordingIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataloggerFileColumns_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataloggerFileColumns_ScanUnits` FOREIGN KEY (`ScanIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DataloggerFileColumns` +-- + +/*!40000 ALTER TABLE `DataloggerFileColumns` DISABLE KEYS */; +/*!40000 ALTER TABLE `DataloggerFileColumns` ENABLE KEYS */; + +-- +-- Table structure for table `DataloggerProgramFiles` +-- + +DROP TABLE IF EXISTS `DataloggerProgramFiles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DataloggerProgramFiles` ( + `ProgramID` int(11) NOT NULL AUTO_INCREMENT, + `AffiliationID` int(11) NOT NULL, + `ProgramName` varchar(255) NOT NULL, + `ProgramDescription` varchar(500) DEFAULT NULL, + `ProgramVersion` varchar(50) DEFAULT NULL, + `ProgramFileLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ProgramID`), + KEY `fk_DataloggerProgramFiles_Affiliations` (`AffiliationID`), + CONSTRAINT `fk_DataloggerProgramFiles_Affiliations` FOREIGN KEY (`AffiliationID`) REFERENCES `Affiliations` (`AffiliationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DataloggerProgramFiles` +-- + +/*!40000 ALTER TABLE `DataloggerProgramFiles` DISABLE KEYS */; +/*!40000 ALTER TABLE `DataloggerProgramFiles` ENABLE KEYS */; + +-- +-- Table structure for table `DatasetCitations` +-- + +DROP TABLE IF EXISTS `DatasetCitations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DatasetCitations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `DataSetID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `CitationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_DatasetCitations_CV_RelationshipType` (`RelationshipTypeCV`), + KEY `fk_DataSetCitations_DataSets` (`DataSetID`), + KEY `fk_DataSetCitations_Citations` (`CitationID`), + CONSTRAINT `fk_DataSetCitations_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataSetCitations_DataSets` FOREIGN KEY (`DataSetID`) REFERENCES `Datasets` (`DatasetID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DatasetCitations_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DatasetCitations` +-- + +/*!40000 ALTER TABLE `DatasetCitations` DISABLE KEYS */; +/*!40000 ALTER TABLE `DatasetCitations` ENABLE KEYS */; + +-- +-- Table structure for table `Datasets` +-- + +DROP TABLE IF EXISTS `Datasets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Datasets` ( + `DatasetID` int(11) NOT NULL AUTO_INCREMENT, + `DatasetUUID` varchar(64) NOT NULL, + `DatasetTypeCV` varchar(255) NOT NULL, + `DatasetCode` varchar(50) NOT NULL, + `DatasetTitle` varchar(255) NOT NULL, + `DatasetAbstract` varchar(500) NOT NULL, + PRIMARY KEY (`DatasetID`), + UNIQUE KEY `DatasetUUID` (`DatasetUUID`), + KEY `fk_Datasets_CV_DatasetTypeCV` (`DatasetTypeCV`), + CONSTRAINT `fk_Datasets_CV_DatasetTypeCV` FOREIGN KEY (`DatasetTypeCV`) REFERENCES `CV_DatasetType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Datasets` +-- + +/*!40000 ALTER TABLE `Datasets` DISABLE KEYS */; +/*!40000 ALTER TABLE `Datasets` ENABLE KEYS */; + +-- +-- Table structure for table `DatasetsResults` +-- + +DROP TABLE IF EXISTS `DatasetsResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DatasetsResults` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `DatasetID` int(11) NOT NULL, + `ResultID` bigint(20) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_DataSetsResults_DataSets` (`DatasetID`), + KEY `fk_DataSetsResults_Results` (`ResultID`), + CONSTRAINT `fk_DataSetsResults_DataSets` FOREIGN KEY (`DatasetID`) REFERENCES `Datasets` (`DatasetID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_DataSetsResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DatasetsResults` +-- + +/*!40000 ALTER TABLE `DatasetsResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `DatasetsResults` ENABLE KEYS */; + +-- +-- Table structure for table `DerivationEquations` +-- + +DROP TABLE IF EXISTS `DerivationEquations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `DerivationEquations` ( + `DerivationEquationID` int(11) NOT NULL AUTO_INCREMENT, + `DerivationEquation` varchar(255) NOT NULL, + PRIMARY KEY (`DerivationEquationID`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `DerivationEquations` +-- + +/*!40000 ALTER TABLE `DerivationEquations` DISABLE KEYS */; +/*!40000 ALTER TABLE `DerivationEquations` ENABLE KEYS */; + +-- +-- Table structure for table `Directives` +-- + +DROP TABLE IF EXISTS `Directives`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Directives` ( + `DirectiveID` int(11) NOT NULL AUTO_INCREMENT, + `DirectiveTypeCV` varchar(255) NOT NULL, + `DirectiveDescription` varchar(500) NOT NULL, + PRIMARY KEY (`DirectiveID`), + KEY `fk_Directives_CV_DirectiveType` (`DirectiveTypeCV`), + CONSTRAINT `fk_Directives_CV_DirectiveType` FOREIGN KEY (`DirectiveTypeCV`) REFERENCES `CV_DirectiveType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Directives` +-- + +/*!40000 ALTER TABLE `Directives` DISABLE KEYS */; +/*!40000 ALTER TABLE `Directives` ENABLE KEYS */; + +-- +-- Table structure for table `Equipment` +-- + +DROP TABLE IF EXISTS `Equipment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Equipment` ( + `EquipmentID` int(11) NOT NULL AUTO_INCREMENT, + `EquipmentCode` varchar(50) NOT NULL, + `EquipmentName` varchar(255) NOT NULL, + `EquipmentTypeCV` varchar(255) NOT NULL, + `EquipmentModelID` int(11) NOT NULL, + `EquipmentSerialNumber` varchar(50) NOT NULL, + `EquipmentOwnerID` int(11) NOT NULL, + `EquipmentVendorID` int(11) NOT NULL, + `EquipmentPurchaseDate` datetime NOT NULL, + `EquipmentPurchaseOrderNumber` varchar(50) DEFAULT NULL, + `EquipmentDescription` varchar(500) DEFAULT NULL, + `EquipmentDocumentationLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`EquipmentID`), + KEY `fk_Equipment_CV_EquipmentType` (`EquipmentTypeCV`), + KEY `fk_Equipment_EquipmentModels` (`EquipmentModelID`), + KEY `fk_Equipment_Organizations` (`EquipmentVendorID`), + KEY `fk_Equipment_People` (`EquipmentOwnerID`), + CONSTRAINT `fk_Equipment_CV_EquipmentType` FOREIGN KEY (`EquipmentTypeCV`) REFERENCES `CV_EquipmentType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Equipment_EquipmentModels` FOREIGN KEY (`EquipmentModelID`) REFERENCES `EquipmentModels` (`EquipmentModelID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Equipment_Organizations` FOREIGN KEY (`EquipmentVendorID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Equipment_People` FOREIGN KEY (`EquipmentOwnerID`) REFERENCES `People` (`PersonID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Equipment` +-- + +/*!40000 ALTER TABLE `Equipment` DISABLE KEYS */; +/*!40000 ALTER TABLE `Equipment` ENABLE KEYS */; + +-- +-- Table structure for table `EquipmentAnnotations` +-- + +DROP TABLE IF EXISTS `EquipmentAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `EquipmentAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `EquipmentID` int(11) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_EquipmentAnnotations_Annotations` (`AnnotationID`), + KEY `fk_EquipmentAnnotations_Equipment` (`EquipmentID`), + CONSTRAINT `fk_EquipmentAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_EquipmentAnnotations_Equipment` FOREIGN KEY (`EquipmentID`) REFERENCES `Equipment` (`EquipmentID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `EquipmentAnnotations` +-- + +/*!40000 ALTER TABLE `EquipmentAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `EquipmentAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `EquipmentModels` +-- + +DROP TABLE IF EXISTS `EquipmentModels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `EquipmentModels` ( + `EquipmentModelID` int(11) NOT NULL AUTO_INCREMENT, + `ModelManufacturerID` int(11) NOT NULL, + `ModelPartNumber` varchar(50) DEFAULT NULL, + `ModelName` varchar(255) NOT NULL, + `ModelDescription` varchar(500) DEFAULT NULL, + `IsInstrument` tinyint(1) NOT NULL, + `ModelSpecificationsFileLink` varchar(255) DEFAULT NULL, + `ModelLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`EquipmentModelID`), + KEY `fk_EquipmentModels_Organizations` (`ModelManufacturerID`), + CONSTRAINT `fk_EquipmentModels_Organizations` FOREIGN KEY (`ModelManufacturerID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `EquipmentModels` +-- + +/*!40000 ALTER TABLE `EquipmentModels` DISABLE KEYS */; +/*!40000 ALTER TABLE `EquipmentModels` ENABLE KEYS */; + +-- +-- Table structure for table `EquipmentUsed` +-- + +DROP TABLE IF EXISTS `EquipmentUsed`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `EquipmentUsed` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `EquipmentID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_EquipmentActions_Actions` (`ActionID`), + KEY `fk_EquipmentActions_Equipment` (`EquipmentID`), + CONSTRAINT `fk_EquipmentActions_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_EquipmentActions_Equipment` FOREIGN KEY (`EquipmentID`) REFERENCES `Equipment` (`EquipmentID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `EquipmentUsed` +-- + +/*!40000 ALTER TABLE `EquipmentUsed` DISABLE KEYS */; +/*!40000 ALTER TABLE `EquipmentUsed` ENABLE KEYS */; + +-- +-- Table structure for table `ExtensionProperties` +-- + +DROP TABLE IF EXISTS `ExtensionProperties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ExtensionProperties` ( + `PropertyID` int(11) NOT NULL AUTO_INCREMENT, + `PropertyName` varchar(255) NOT NULL, + `PropertyDescription` varchar(500) DEFAULT NULL, + `PropertyDataTypeCV` varchar(255) NOT NULL, + `PropertyUnitsID` int(11) DEFAULT NULL, + PRIMARY KEY (`PropertyID`), + KEY `fk_ExtensionProperties_CV_PropertyDataType` (`PropertyDataTypeCV`), + KEY `fk_ExtensionProperties_Units` (`PropertyUnitsID`), + CONSTRAINT `fk_ExtensionProperties_CV_PropertyDataType` FOREIGN KEY (`PropertyDataTypeCV`) REFERENCES `CV_PropertyDataType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ExtensionProperties_Units` FOREIGN KEY (`PropertyUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ExtensionProperties` +-- + +/*!40000 ALTER TABLE `ExtensionProperties` DISABLE KEYS */; +/*!40000 ALTER TABLE `ExtensionProperties` ENABLE KEYS */; + +-- +-- Table structure for table `ExternalIdentifierSystems` +-- + +DROP TABLE IF EXISTS `ExternalIdentifierSystems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ExternalIdentifierSystems` ( + `ExternalIdentifierSystemID` int(11) NOT NULL AUTO_INCREMENT, + `ExternalIdentifierSystemName` varchar(255) NOT NULL, + `IdentifierSystemOrganizationID` int(11) NOT NULL, + `ExternalIdentifierSystemDescription` varchar(500) DEFAULT NULL, + `ExternalIdentifierSystemURL` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ExternalIdentifierSystemID`), + KEY `fk_ExternalIdentifierSystems_Organizations` (`IdentifierSystemOrganizationID`), + CONSTRAINT `fk_ExternalIdentifierSystems_Organizations` FOREIGN KEY (`IdentifierSystemOrganizationID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ExternalIdentifierSystems` +-- + +/*!40000 ALTER TABLE `ExternalIdentifierSystems` DISABLE KEYS */; +/*!40000 ALTER TABLE `ExternalIdentifierSystems` ENABLE KEYS */; + +-- +-- Table structure for table `FeatureActions` +-- + +DROP TABLE IF EXISTS `FeatureActions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `FeatureActions` ( + `FeatureActionID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureID` int(11) NOT NULL, + `ActionID` int(11) NOT NULL, + PRIMARY KEY (`FeatureActionID`), + KEY `fk_FeatureActions_Actions` (`ActionID`), + KEY `fk_FeatureActions_SamplingFeatures` (`SamplingFeatureID`), + CONSTRAINT `fk_FeatureActions_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_FeatureActions_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=870 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `FeatureActions` +-- + +/*!40000 ALTER TABLE `FeatureActions` DISABLE KEYS */; +INSERT INTO `FeatureActions` VALUES (1,1,1),(2,1,2),(3,1,3),(4,1,4),(5,1,5),(6,1,6),(7,1,7),(8,1,8),(9,1,9),(10,1,10),(11,1,11),(12,1,12),(13,1,13),(14,1,14),(15,1,15),(16,1,22),(17,1,23),(18,1,24),(19,14,28),(20,14,29),(21,14,30),(22,14,31),(23,14,32),(24,14,33),(25,14,34),(26,14,35),(27,14,36),(28,14,37),(29,14,38),(30,14,39),(31,14,40),(32,14,41),(33,14,42),(34,14,43),(35,14,44),(36,14,45),(37,14,46),(38,14,47),(39,14,48),(40,14,49),(41,14,50),(42,14,51),(43,14,52),(44,14,53),(45,14,54),(46,14,55),(47,14,56),(48,14,57),(49,14,58),(50,14,59),(51,14,60),(52,14,61),(53,14,62),(54,14,63),(55,14,64),(56,14,65),(57,14,66),(58,14,67),(59,14,68),(60,14,69),(61,14,70),(62,14,71),(63,14,72),(64,14,73),(65,14,74),(66,14,75),(67,14,76),(68,14,77),(69,14,78),(70,14,79),(71,14,80),(72,14,81),(73,14,82),(74,14,83),(75,14,84),(76,14,85),(77,14,86),(78,14,87),(79,14,88),(80,14,89),(81,14,90),(82,14,91),(83,14,92),(84,14,93),(85,14,94),(86,14,95),(87,14,96),(88,14,97),(89,14,98),(90,14,99),(91,14,100),(92,14,101),(93,14,102),(94,15,103),(95,16,104),(96,17,105),(97,18,106),(98,19,107),(99,20,108),(100,21,109),(101,22,110),(102,23,111),(103,24,112),(104,25,113),(105,26,114),(106,27,115),(107,28,116),(108,29,117),(109,30,118),(110,31,119),(111,32,120),(112,33,121),(113,34,122),(114,35,123),(115,36,124),(116,37,125),(117,38,126),(118,39,127),(119,40,128),(120,41,129),(121,42,130),(122,43,131),(123,44,132),(124,45,133),(125,46,134),(126,47,135),(127,48,136),(128,49,137),(129,50,138),(130,51,139),(131,52,140),(132,53,141),(133,54,142),(134,55,143),(135,56,144),(136,57,145),(137,58,146),(138,59,147),(139,60,148),(140,61,149),(141,62,150),(142,63,151),(143,64,152),(144,65,153),(145,66,154),(146,67,155),(147,68,156),(148,69,157),(149,70,158),(150,71,159),(151,72,160),(152,73,161),(153,74,162),(154,75,163),(155,76,164),(156,77,165),(157,78,166),(158,79,167),(159,80,168),(160,81,169),(161,82,170),(162,83,171),(163,84,172),(164,85,173),(165,86,174),(166,87,175),(167,88,176),(168,89,177),(169,90,178),(170,91,179),(171,92,180),(172,93,181),(173,94,182),(174,95,183),(175,96,184),(176,97,185),(177,98,186),(178,99,187),(179,100,188),(180,101,189),(181,102,190),(182,103,191),(183,104,192),(184,105,193),(185,106,194),(186,107,195),(187,108,196),(188,109,197),(189,110,198),(190,111,199),(191,112,200),(192,113,201),(193,114,202),(194,115,203),(195,116,204),(196,117,205),(197,118,206),(198,119,207),(199,120,208),(200,121,209),(201,122,210),(202,123,211),(203,124,212),(204,125,213),(205,126,214),(206,127,215),(207,128,216),(208,129,217),(209,130,218),(210,131,219),(211,132,220),(212,133,221),(213,134,222),(214,135,223),(215,136,224),(216,137,225),(217,138,226),(218,139,227),(219,140,228),(220,141,229),(221,142,230),(222,143,231),(223,144,232),(224,145,233),(225,146,234),(226,147,235),(227,148,236),(228,149,237),(229,150,238),(230,151,239),(231,152,240),(232,153,241),(233,154,242),(234,155,243),(235,156,244),(236,157,245),(237,158,246),(238,159,247),(239,160,248),(240,161,249),(241,162,250),(242,163,251),(243,164,252),(244,165,253),(245,166,254),(246,167,255),(247,168,256),(248,169,257),(249,170,258),(250,171,259),(251,172,260),(252,173,261),(253,174,262),(254,175,263),(255,176,264),(256,177,265),(257,178,266),(258,179,267),(259,180,268),(260,181,269),(261,182,270),(262,183,271),(263,184,272),(264,185,273),(265,186,274),(266,187,275),(267,188,276),(268,189,277),(269,190,278),(270,191,279),(271,192,280),(272,193,281),(273,194,282),(274,195,283),(275,196,284),(276,197,285),(277,198,286),(278,199,287),(279,200,288),(280,201,289),(281,202,290),(282,203,291),(283,204,292),(284,205,293),(285,206,294),(286,207,295),(287,208,296),(288,209,297),(289,210,298),(290,211,299),(291,212,300),(292,213,301),(293,214,302),(294,215,303),(295,216,304),(296,217,305),(297,218,306),(298,219,307),(299,220,308),(300,221,309),(301,222,310),(302,223,311),(303,224,312),(304,225,313),(305,226,314),(306,227,315),(307,228,316),(308,229,317),(309,230,318),(310,231,319),(311,232,320),(312,233,321),(313,234,322),(314,235,323),(315,236,324),(316,237,325),(317,238,326),(318,239,327),(319,240,328),(320,241,329),(321,242,330),(322,243,331),(323,244,332),(324,245,333),(325,246,334),(326,247,335),(327,248,336),(328,249,337),(329,250,338),(330,251,339),(331,252,340),(332,253,341),(333,254,342),(334,255,343),(335,256,344),(336,257,345),(337,258,346),(338,259,347),(339,260,348),(340,261,349),(341,262,350),(342,263,351),(343,264,352),(344,265,353),(345,266,354),(346,267,355),(347,268,356),(348,269,357),(349,270,358),(350,271,359),(351,272,360),(352,273,361),(353,274,362),(354,275,363),(355,276,364),(356,277,365),(357,278,366),(358,279,367),(359,280,368),(360,281,369),(361,282,370),(362,283,371),(363,284,372),(364,285,373),(365,286,374),(366,287,375),(367,288,376),(368,289,377),(369,290,378),(370,291,379),(371,292,380),(372,293,381),(373,294,382),(374,295,383),(375,296,384),(376,297,385),(377,298,386),(378,299,387),(379,300,388),(380,301,389),(381,302,390),(382,303,391),(383,304,392),(384,305,393),(385,306,394),(386,307,395),(387,308,396),(388,309,397),(389,310,398),(390,311,399),(391,312,400),(392,313,401),(393,314,402),(394,315,403),(395,316,404),(396,317,405),(397,318,406),(398,319,407),(399,320,408),(400,321,409),(401,322,410),(402,323,411),(403,324,412),(404,325,413),(405,326,414),(406,327,415),(407,328,416),(408,329,417),(409,330,418),(410,331,419),(411,332,420),(412,333,421),(413,334,422),(414,335,423),(415,335,424),(416,336,425),(417,336,426),(418,337,427),(419,338,428),(420,339,429),(421,340,430),(422,341,431),(423,342,432),(424,343,433),(425,344,434),(426,345,435),(427,346,436),(428,347,437),(429,348,438),(430,349,439),(431,350,440),(432,351,441),(433,352,442),(434,353,443),(435,354,444),(436,355,445),(437,356,446),(438,357,447),(439,358,448),(440,358,449),(441,359,450),(442,360,451),(443,361,452),(444,362,453),(445,363,454),(446,364,455),(447,365,456),(448,366,457),(449,367,458),(450,368,459),(451,369,460),(452,370,461),(453,371,462),(454,372,463),(455,373,464),(456,374,465),(457,375,466),(458,376,467),(459,377,468),(460,378,469),(461,379,470),(462,380,471),(463,380,472),(464,381,473),(465,382,474),(466,383,475),(467,384,476),(468,385,477),(469,386,478),(470,387,479),(471,388,480),(472,389,481),(473,390,482),(474,391,483),(475,392,484),(476,393,485),(477,394,486),(478,395,487),(479,396,488),(480,397,489),(481,398,490),(482,399,491),(483,400,492),(484,401,493),(485,402,494),(486,403,495),(487,404,496),(488,405,497),(489,406,498),(490,407,499),(491,408,500),(492,409,501),(493,410,502),(494,411,503),(495,412,504),(496,413,505),(497,414,506),(498,415,507),(499,416,508),(500,417,509),(501,418,510),(502,419,511),(503,420,512),(504,421,513),(505,422,514),(506,423,515),(507,424,516),(508,425,517),(509,426,518),(510,427,519),(511,428,520),(512,429,521),(513,430,522),(514,431,523),(515,432,524),(516,433,525),(517,434,526),(518,435,527),(519,436,528),(520,437,529),(521,438,530),(522,439,531),(523,440,532),(524,441,533),(525,442,534),(526,443,535),(527,444,536),(528,445,537),(529,446,538),(530,447,539),(531,448,540),(532,449,541),(533,450,542),(534,451,543),(535,452,544),(536,453,545),(537,454,546),(538,455,547),(539,456,548),(540,457,549),(541,458,550),(542,459,551),(543,460,552),(544,461,553),(545,461,554),(546,462,555),(547,463,556),(548,464,557),(549,465,558),(550,466,559),(551,467,560),(552,468,561),(553,468,562),(554,469,563),(555,470,564),(556,471,565),(557,472,566),(558,473,567),(559,474,568),(560,475,569),(561,476,570),(562,476,571),(563,477,572),(564,478,573),(565,479,574),(566,479,575),(567,480,576),(568,481,577),(569,481,578),(570,482,579),(571,482,580),(572,483,581),(573,484,582),(574,484,583),(575,485,584),(576,486,585),(577,487,586),(578,488,587),(579,489,588),(580,490,589),(581,490,590),(582,491,591),(583,491,592),(584,492,593),(585,492,594),(586,493,595),(587,494,596),(588,495,597),(589,496,598),(590,497,599),(591,498,600),(592,499,601),(593,500,602),(594,501,603),(595,501,604),(596,502,605),(597,503,606),(598,504,607),(599,505,608),(600,506,609),(601,507,610),(602,508,611),(603,509,612),(604,510,613),(605,511,614),(606,511,615),(607,512,616),(608,513,617),(609,513,618),(610,514,619),(611,514,620),(612,515,621),(613,516,622),(614,516,623),(615,517,624),(616,518,625),(617,519,626),(618,520,627),(619,521,628),(620,521,629),(621,522,630),(622,522,631),(623,523,632),(624,524,633),(625,525,634),(626,526,635),(627,527,636),(628,528,637),(629,529,638),(630,529,639),(631,530,640),(632,530,641),(633,531,642),(634,531,643),(635,532,644),(636,533,645),(637,533,646),(638,534,647),(639,535,648),(640,536,649),(641,537,650),(642,538,651),(643,539,652),(644,540,653),(645,541,654),(646,541,655),(647,542,656),(648,543,657),(649,544,658),(650,545,659),(651,546,660),(652,547,661),(653,548,662),(654,548,663),(655,549,664),(656,550,665),(657,551,666),(658,552,667),(659,553,668),(660,553,669),(661,554,670),(662,554,671),(663,555,672),(664,555,673),(665,556,674),(666,557,675),(667,558,676),(668,559,677),(669,559,678),(670,560,679),(671,560,680),(672,561,681),(673,562,682),(674,562,683),(675,563,684),(676,564,685),(677,565,686),(678,566,687),(679,567,688),(680,567,689),(681,568,690),(682,568,691),(683,569,692),(684,569,693),(685,570,694),(686,571,695),(687,572,696),(688,573,697),(689,574,698),(690,574,699),(691,575,700),(692,575,701),(693,576,702),(694,576,703),(695,577,704),(696,578,705),(697,579,706),(698,580,707),(699,581,708),(700,582,709),(701,583,710),(702,584,711),(703,584,712),(704,585,713),(705,586,714),(706,586,715),(707,587,716),(708,587,717),(709,588,718),(710,588,719),(711,589,720),(712,589,721),(713,590,722),(714,591,723),(715,592,724),(716,593,725),(717,594,726),(718,594,727),(719,594,728),(720,595,729),(721,595,730),(722,596,731),(723,596,732),(724,596,733),(725,597,734),(726,598,735),(727,599,736),(728,600,737),(729,601,738),(730,602,739),(731,603,740),(732,604,741),(733,604,742),(734,605,743),(735,606,744),(736,607,745),(737,608,746),(738,609,747),(739,610,748),(740,611,749),(741,611,750),(742,612,751),(743,613,752),(744,614,753),(745,615,754),(746,616,755),(747,617,756),(748,618,757),(749,619,758),(750,620,759),(751,620,760),(752,621,761),(753,622,762),(754,623,763),(755,623,764),(756,624,765),(757,625,766),(758,625,767),(759,626,768),(760,626,769),(761,627,770),(762,627,771),(763,628,772),(764,629,773),(765,629,774),(766,630,775),(767,631,776),(768,631,777),(769,632,778),(770,633,779),(771,634,780),(772,635,781),(773,635,782),(774,636,783),(775,637,784),(776,638,785),(777,639,786),(778,640,787),(779,640,788),(780,641,789),(781,642,790),(782,643,791),(783,644,792),(784,644,793),(785,645,794),(786,646,795),(787,647,796),(788,648,797),(789,648,798),(790,649,799),(791,650,800),(792,650,801),(793,651,802),(794,651,803),(795,652,804),(796,653,805),(797,653,806),(798,654,807),(799,655,808),(800,655,809),(801,656,810),(802,657,811),(803,658,812),(804,659,813),(805,659,814),(806,660,815),(807,661,816),(808,662,817),(809,662,818),(810,663,819),(811,664,820),(812,664,821),(813,665,822),(814,665,823),(815,666,824),(816,667,825),(817,667,826),(818,668,827),(819,668,828),(820,669,829),(821,670,830),(822,670,831),(823,671,832),(824,672,833),(825,673,834),(826,674,835),(827,674,836),(828,675,837),(829,676,838),(830,677,839),(831,678,840),(832,678,841),(833,679,842),(834,680,843),(835,681,844),(836,681,845),(837,682,846),(838,683,847),(839,684,848),(840,685,849),(841,686,850),(842,687,851),(843,687,852),(844,688,853),(845,689,854),(846,690,855),(847,690,856),(848,691,857),(849,692,858),(850,693,859),(851,694,860),(852,695,861),(853,696,862),(854,697,863),(855,698,864),(856,699,865),(857,700,866),(858,701,867),(859,702,868),(860,703,869),(861,704,870),(862,705,871),(863,706,872),(864,707,873),(865,708,874),(866,709,875),(867,710,876),(868,711,877),(869,712,878); +/*!40000 ALTER TABLE `FeatureActions` ENABLE KEYS */; + +-- +-- Table structure for table `InstrumentOutputVariables` +-- + +DROP TABLE IF EXISTS `InstrumentOutputVariables`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `InstrumentOutputVariables` ( + `InstrumentOutputVariableID` int(11) NOT NULL AUTO_INCREMENT, + `ModelID` int(11) NOT NULL, + `VariableID` int(11) NOT NULL, + `InstrumentMethodID` int(11) NOT NULL, + `InstrumentResolution` varchar(255) DEFAULT NULL, + `InstrumentAccuracy` varchar(255) DEFAULT NULL, + `InstrumentRawOutputUnitsID` int(11) NOT NULL, + PRIMARY KEY (`InstrumentOutputVariableID`), + KEY `fk_InstrumentOutputVariables_EquipmentModels` (`ModelID`), + KEY `fk_InstrumentOutputVariables_Methods` (`InstrumentMethodID`), + KEY `fk_InstrumentOutputVariables_Units` (`InstrumentRawOutputUnitsID`), + KEY `fk_InstrumentOutputVariables_Variables` (`VariableID`), + CONSTRAINT `fk_InstrumentOutputVariables_EquipmentModels` FOREIGN KEY (`ModelID`) REFERENCES `EquipmentModels` (`EquipmentModelID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_InstrumentOutputVariables_Methods` FOREIGN KEY (`InstrumentMethodID`) REFERENCES `Methods` (`MethodID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_InstrumentOutputVariables_Units` FOREIGN KEY (`InstrumentRawOutputUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_InstrumentOutputVariables_Variables` FOREIGN KEY (`VariableID`) REFERENCES `Variables` (`VariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `InstrumentOutputVariables` +-- + +/*!40000 ALTER TABLE `InstrumentOutputVariables` DISABLE KEYS */; +/*!40000 ALTER TABLE `InstrumentOutputVariables` ENABLE KEYS */; + +-- +-- Table structure for table `MaintenanceActions` +-- + +DROP TABLE IF EXISTS `MaintenanceActions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MaintenanceActions` ( + `ActionID` int(11) NOT NULL, + `IsFactoryService` tinyint(1) NOT NULL, + `MaintenanceCode` varchar(50) DEFAULT NULL, + `MaintenanceReason` varchar(500) DEFAULT NULL, + PRIMARY KEY (`ActionID`), + CONSTRAINT `fk_MaintenanceActions_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MaintenanceActions` +-- + +/*!40000 ALTER TABLE `MaintenanceActions` DISABLE KEYS */; +/*!40000 ALTER TABLE `MaintenanceActions` ENABLE KEYS */; + +-- +-- Table structure for table `MeasurementResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `MeasurementResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MeasurementResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_MeasurementResultValueAnnotations_MeasurementResultValues` (`ValueID`), + KEY `fk_ResultValueAnnotations_Annotations` (`AnnotationID`), + CONSTRAINT `fk_MeasurementResultValueAnnotations_MeasurementResultValues` FOREIGN KEY (`ValueID`) REFERENCES `MeasurementResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MeasurementResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `MeasurementResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `MeasurementResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `MeasurementResultValues` +-- + +DROP TABLE IF EXISTS `MeasurementResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MeasurementResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_MeasurementResultValues_MeasurementResults` (`ResultID`), + CONSTRAINT `fk_MeasurementResultValues_MeasurementResults` FOREIGN KEY (`ResultID`) REFERENCES `MeasurementResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=15429763 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MeasurementResultValues` +-- + +/*!40000 ALTER TABLE `MeasurementResultValues` DISABLE KEYS */; +INSERT INTO `MeasurementResultValues` VALUES (6523748,6523850,0.0383,'2007-11-13 13:00:00.000000',-7),(6523749,6523851,0.0522,'2007-11-13 13:00:00.000000',-7),(6523757,6523859,0.033,'2007-11-21 14:30:00.000000',-7),(6523766,6523868,0.0521,'2007-11-21 14:30:00.000000',-7),(6523767,6523869,30,'2007-10-04 12:00:00.000000',-7),(6523771,6523873,28,'2007-10-10 11:30:00.000000',-7),(6523775,6523877,22,'2007-10-17 13:00:00.000000',-7),(6523781,6523883,11.5,'2007-10-24 12:30:00.000000',-7),(6523786,6523888,5.5,'2007-11-01 14:30:00.000000',-7),(6523788,6523890,4,'2007-11-07 13:30:00.000000',-7),(6523793,6523895,10,'2007-11-13 13:00:00.000000',-7),(6523801,6523903,4,'2007-11-21 14:30:00.000000',-7),(6523806,6523908,0.0286,'2008-04-10 13:30:00.000000',-7),(6523818,6523920,0.1833,'2008-01-03 14:00:00.000000',-7),(6523819,6523921,5.5,'2008-01-03 14:00:00.000000',-7),(6523820,6523922,0.2105,'2008-01-03 14:00:00.000000',-7),(6523844,6523946,0.0287,'2009-01-06 15:00:00.000000',-7),(6523845,6523947,9.78,'2009-01-06 15:00:00.000000',-7),(6523846,6523948,252,'2009-01-06 15:00:00.000000',-7),(6523847,6523949,0.0465,'2009-01-06 15:00:00.000000',-7),(6523872,6523974,0.0444,'2008-01-17 15:05:00.000000',-7),(6523873,6523975,10.5,'2008-01-17 15:05:00.000000',-7),(6523874,6523976,0.0581,'2008-01-17 15:05:00.000000',-7),(6523875,6523977,0.0625,'2008-01-17 15:05:00.000000',-7),(6523899,6524001,0.0207,'2009-01-22 13:30:00.000000',-7),(6523900,6524002,6.16,'2009-01-22 13:30:00.000000',-7),(6523901,6524003,232,'2009-01-22 13:30:00.000000',-7),(6523902,6524004,0.0304,'2009-01-22 13:30:00.000000',-7),(6523926,6524028,0.0305,'2008-01-31 14:00:00.000000',-7),(6523927,6524029,0.0321,'2008-01-31 14:00:00.000000',-7),(6523928,6524030,8,'2008-01-31 14:00:00.000000',-7),(6523929,6524031,0.0502,'2008-01-31 14:00:00.000000',-7),(6523930,6524032,0.0494,'2008-01-31 14:00:00.000000',-7),(6523956,6524058,0.0181,'2009-02-05 13:00:00.000000',-7),(6523957,6524059,10.9,'2009-02-05 13:00:00.000000',-7),(6523958,6524060,202,'2009-02-05 13:00:00.000000',-7),(6523959,6524061,11.9,'2009-02-05 13:00:00.000000',-7),(6523960,6524062,0.0341,'2009-02-05 13:00:00.000000',-7),(6523988,6524090,0.0232,'2008-02-12 15:15:00.000000',-7),(6523989,6524091,0.9592,'2008-02-12 15:15:00.000000',-7),(6523990,6524092,24,'2008-02-12 15:15:00.000000',-7),(6523991,6524093,0.0628,'2008-02-12 15:15:00.000000',-7),(6523992,6524094,1.0719,'2008-02-12 15:15:00.000000',-7),(6523993,6524095,0.0673,'2008-02-12 15:15:00.000000',-7),(6523994,6524096,1.0318,'2008-02-12 15:15:00.000000',-7),(6524028,6524130,0.0161,'2009-02-19 09:30:00.000000',-7),(6524029,6524131,24,'2009-02-19 09:30:00.000000',-7),(6524030,6524132,216,'2009-02-19 09:30:00.000000',-7),(6524031,6524133,25,'2009-02-19 09:30:00.000000',-7),(6524032,6524134,0.0429,'2009-02-19 09:30:00.000000',-7),(6524056,6524158,0.0311,'2008-02-28 09:30:00.000000',-7),(6524057,6524159,17,'2008-02-28 09:30:00.000000',-7),(6524058,6524160,0.0659,'2008-02-28 09:30:00.000000',-7),(6524089,6524191,0.0784,'2009-03-05 13:30:00.000000',-7),(6524090,6524192,1.2657,'2009-03-05 13:30:00.000000',-7),(6524091,6524193,17,'2009-03-05 13:30:00.000000',-7),(6524092,6524194,220,'2009-03-05 13:30:00.000000',-7),(6524093,6524195,0.115,'2009-03-05 13:30:00.000000',-7),(6524094,6524196,1.2296,'2009-03-05 13:30:00.000000',-7),(6524095,6524197,0.1073,'2009-03-05 13:30:00.000000',-7),(6524123,6524225,0.0356,'2008-03-06 13:30:00.000000',-7),(6524124,6524226,13,'2008-03-06 13:30:00.000000',-7),(6524125,6524227,0.0525,'2008-03-06 13:30:00.000000',-7),(6524147,6524249,0.0684,'2008-03-13 12:00:00.000000',-7),(6524148,6524250,15,'2008-03-13 12:00:00.000000',-7),(6524149,6524251,0.1026,'2008-03-13 12:00:00.000000',-7),(6524175,6524277,0.0691,'2009-03-19 12:00:00.000000',-7),(6524176,6524278,31.5,'2009-03-19 12:00:00.000000',-7),(6524177,6524279,236,'2009-03-19 12:00:00.000000',-7),(6524178,6524280,0.0865,'2009-03-19 12:00:00.000000',-7),(6524202,6524304,0.1092,'2008-03-20 08:50:00.000000',-7),(6524203,6524305,0.1091,'2008-03-20 08:50:00.000000',-7),(6524204,6524306,34,'2008-03-20 08:50:00.000000',-7),(6524205,6524307,0.1572,'2008-03-20 08:50:00.000000',-7),(6524227,6524329,0.0217,'2008-03-27 12:30:00.000000',-7),(6524228,6524330,22,'2008-03-27 12:30:00.000000',-7),(6524229,6524331,0.0711,'2008-03-27 12:30:00.000000',-7),(6524252,6524354,0.1087,'2009-03-27 10:30:00.000000',-7),(6524253,6524355,25.4,'2009-03-27 10:30:00.000000',-7),(6524254,6524356,254,'2009-03-27 10:30:00.000000',-7),(6524255,6524357,0.1547,'2009-03-27 10:30:00.000000',-7),(6524289,6524391,0.0475,'2009-04-01 12:30:00.000000',-7),(6524290,6524392,1.3032,'2009-04-01 12:30:00.000000',-7),(6524291,6524393,13.3,'2009-04-01 12:30:00.000000',-7),(6524292,6524394,248,'2009-04-01 12:30:00.000000',-7),(6524293,6524395,12.3,'2009-04-01 12:30:00.000000',-7),(6524294,6524396,0.0716,'2009-04-01 12:30:00.000000',-7),(6524295,6524397,1.3054,'2009-04-01 12:30:00.000000',-7),(6524327,6524429,0.0437,'2008-04-03 09:30:00.000000',-7),(6524328,6524430,38,'2008-04-03 09:30:00.000000',-7),(6524329,6524431,0.0987,'2008-04-03 09:30:00.000000',-7),(6524357,6524459,0.0252,'2009-04-08 11:00:00.000000',-7),(6524358,6524460,50,'2009-04-08 11:00:00.000000',-7),(6524359,6524461,210,'2009-04-08 11:00:00.000000',-7),(6524360,6524462,0.0942,'2009-04-08 11:00:00.000000',-7),(6524361,6524463,0.9536,'2009-04-08 11:00:00.000000',-7),(6524394,6524496,20,'2008-04-10 13:30:00.000000',-7),(6524395,6524497,0.0674,'2008-04-10 13:30:00.000000',-7),(6524396,6524498,0.0722,'2008-04-10 13:30:00.000000',-7),(6524410,6524512,0.0219,'2008-04-14 12:30:00.000000',-7),(6524411,6524513,38,'2008-04-14 12:30:00.000000',-7),(6524412,6524514,0.0897,'2008-04-14 12:30:00.000000',-7),(6524436,6524538,0.0599,'2009-04-16 08:00:00.000000',-7),(6524437,6524539,0.2664,'2009-04-16 08:00:00.000000',-7),(6524438,6524540,54.4,'2009-04-16 08:00:00.000000',-7),(6524439,6524541,176,'2009-04-16 08:00:00.000000',-7),(6524440,6524542,0.1384,'2009-04-16 08:00:00.000000',-7),(6524441,6524543,0.2567,'2009-04-16 08:00:00.000000',-7),(6524477,6524579,0.0177,'2009-04-23 11:30:00.000000',-7),(6524478,6524580,34.7,'2009-04-23 11:30:00.000000',-7),(6524479,6524581,186,'2009-04-23 11:30:00.000000',-7),(6524480,6524582,0.0687,'2009-04-23 11:30:00.000000',-7),(6524481,6524583,0.0656,'2009-04-23 11:30:00.000000',-7),(6524505,6524607,0.0161,'2008-04-24 12:00:00.000000',-7),(6524506,6524608,33,'2008-04-24 12:00:00.000000',-7),(6524507,6524609,0.0693,'2008-04-24 12:00:00.000000',-7),(6524530,6524632,0.0066,'2009-04-30 11:30:00.000000',-7),(6524531,6524633,0.0072,'2009-04-30 11:30:00.000000',-7),(6524532,6524634,23.7,'2009-04-30 11:30:00.000000',-7),(6524533,6524635,176,'2009-04-30 11:30:00.000000',-7),(6524534,6524636,23.4,'2009-04-30 11:30:00.000000',-7),(6524535,6524637,0.0497,'2009-04-30 11:30:00.000000',-7),(6524559,6524661,0.0209,'2008-05-01 11:50:00.000000',-7),(6524560,6524662,17,'2008-05-01 11:50:00.000000',-7),(6524561,6524663,0.0604,'2008-05-01 11:50:00.000000',-7),(6524586,6524688,0.0141,'2009-05-05 12:30:00.000000',-7),(6524587,6524689,22,'2009-05-05 12:30:00.000000',-7),(6524588,6524690,174,'2009-05-05 12:30:00.000000',-7),(6524589,6524691,0.0518,'2009-05-05 12:30:00.000000',-7),(6524615,6524717,0.0231,'2008-05-07 08:00:00.000000',-7),(6524616,6524718,43,'2008-05-07 08:00:00.000000',-7),(6524617,6524719,0.0716,'2008-05-07 08:00:00.000000',-7),(6524649,6524751,0.0437,'2009-05-12 07:30:00.000000',-7),(6524650,6524752,0.7404,'2009-05-12 07:30:00.000000',-7),(6524651,6524753,32.5,'2009-05-12 07:30:00.000000',-7),(6524652,6524754,198,'2009-05-12 07:30:00.000000',-7),(6524653,6524755,0.1031,'2009-05-12 07:30:00.000000',-7),(6524654,6524756,0.8383,'2009-05-12 07:30:00.000000',-7),(6524685,6524787,0.024,'2008-05-15 08:30:00.000000',-7),(6524686,6524788,23,'2008-05-15 08:30:00.000000',-7),(6524687,6524789,0.0818,'2008-05-15 08:30:00.000000',-7),(6524720,6524822,0.0258,'2009-05-21 11:30:00.000000',-7),(6524721,6524823,0.5,'2009-05-21 11:30:00.000000',-7),(6524722,6524824,36.8,'2009-05-21 11:30:00.000000',-7),(6524723,6524825,166,'2009-05-21 11:30:00.000000',-7),(6524724,6524826,37.1,'2009-05-21 11:30:00.000000',-7),(6524725,6524827,0.0763,'2009-05-21 11:30:00.000000',-7),(6524726,6524828,0.5987,'2009-05-21 11:30:00.000000',-7),(6524758,6524860,0.0294,'2008-05-23 08:30:00.000000',-7),(6524759,6524861,26,'2008-05-23 08:30:00.000000',-7),(6524760,6524862,0.06,'2008-05-23 08:30:00.000000',-7),(6524761,6524863,0.0611,'2008-05-23 08:30:00.000000',-7),(6524793,6524895,0.0315,'2009-05-28 01:30:00.000000',-7),(6524794,6524896,0.6309,'2009-05-28 01:30:00.000000',-7),(6524795,6524897,42.9,'2009-05-28 01:30:00.000000',-7),(6524796,6524898,176,'2009-05-28 01:30:00.000000',-7),(6524797,6524899,0.0682,'2009-05-28 01:30:00.000000',-7),(6524798,6524900,0.6582,'2009-05-28 01:30:00.000000',-7),(6524829,6524931,0.034,'2008-05-29 08:30:00.000000',-7),(6524830,6524932,0.036,'2008-05-29 08:30:00.000000',-7),(6524831,6524933,44,'2008-05-29 08:30:00.000000',-7),(6524832,6524934,0.0928,'2008-05-29 08:30:00.000000',-7),(6524864,6524966,0.0161,'2009-06-04 12:00:00.000000',-7),(6524865,6524967,0.4995,'2009-06-04 12:00:00.000000',-7),(6524866,6524968,42.1,'2009-06-04 12:00:00.000000',-7),(6524867,6524969,180,'2009-06-04 12:00:00.000000',-7),(6524868,6524970,0.0686,'2009-06-04 12:00:00.000000',-7),(6524869,6524971,0.6424,'2009-06-04 12:00:00.000000',-7),(6524898,6525000,0.0212,'2008-06-06 10:30:00.000000',-7),(6524899,6525001,23,'2008-06-06 10:30:00.000000',-7),(6524900,6525002,0.0574,'2008-06-06 10:30:00.000000',-7),(6524922,6525024,0.0235,'2008-06-10 12:00:00.000000',-7),(6524923,6525025,18.5,'2008-06-10 12:00:00.000000',-7),(6524924,6525026,0.0533,'2008-06-10 12:00:00.000000',-7),(6524949,6525051,0.0254,'2009-06-11 11:30:00.000000',-7),(6524950,6525052,28.2,'2009-06-11 11:30:00.000000',-7),(6524951,6525053,180,'2009-06-11 11:30:00.000000',-7),(6524952,6525054,0.0632,'2009-06-11 11:30:00.000000',-7),(6524987,6525089,0.0263,'2009-06-17 07:30:00.000000',-7),(6524988,6525090,0.5048,'2009-06-17 07:30:00.000000',-7),(6524989,6525091,34.2,'2009-06-17 07:30:00.000000',-7),(6524990,6525092,160,'2009-06-17 07:30:00.000000',-7),(6524991,6525093,0.0697,'2009-06-17 07:30:00.000000',-7),(6524992,6525094,0.5929,'2009-06-17 07:30:00.000000',-7),(6524993,6525095,0.0734,'2009-06-17 07:30:00.000000',-7),(6524994,6525096,0.6418,'2009-06-17 07:30:00.000000',-7),(6525023,6525125,0.072,'2008-06-19 08:00:00.000000',-7),(6525024,6525126,36,'2008-06-19 08:00:00.000000',-7),(6525025,6525127,35,'2008-06-19 08:00:00.000000',-7),(6525026,6525128,0.1252,'2008-06-19 08:00:00.000000',-7),(6525064,6525166,0.0357,'2009-06-25 12:00:00.000000',-7),(6525065,6525167,0.8855,'2009-06-25 12:00:00.000000',-7),(6525066,6525168,0.046,'2009-06-25 12:00:00.000000',-7),(6525067,6525169,29.7,'2009-06-25 12:00:00.000000',-7),(6525068,6525170,208,'2009-06-25 12:00:00.000000',-7),(6525069,6525171,0.0804,'2009-06-25 12:00:00.000000',-7),(6525070,6525172,0.8867,'2009-06-25 12:00:00.000000',-7),(6525071,6525173,0.0848,'2009-06-25 12:00:00.000000',-7),(6525103,6525205,0.0574,'2008-06-26 08:00:00.000000',-7),(6525104,6525206,52,'2008-06-26 08:00:00.000000',-7),(6525105,6525207,0.0985,'2008-06-26 08:00:00.000000',-7),(6525121,6525223,0.0642,'2008-07-03 11:30:00.000000',-7),(6525122,6525224,61,'2008-07-03 11:30:00.000000',-7),(6525123,6525225,0.1472,'2008-07-03 11:30:00.000000',-7),(6525147,6525249,0.008,'2009-07-09 12:00:00.000000',-7),(6525148,6525250,4.08,'2009-07-09 12:00:00.000000',-7),(6525149,6525251,274,'2009-07-09 12:00:00.000000',-7),(6525150,6525252,0.0155,'2009-07-09 12:00:00.000000',-7),(6525177,6525279,0.0615,'2008-07-10 08:00:00.000000',-7),(6525178,6525280,62,'2008-07-10 08:00:00.000000',-7),(6525179,6525281,64,'2008-07-10 08:00:00.000000',-7),(6525180,6525282,0.1197,'2008-07-10 08:00:00.000000',-7),(6525203,6525305,0.0681,'2009-07-23 11:00:00.000000',-7),(6525204,6525306,43,'2009-07-23 11:00:00.000000',-7),(6525205,6525307,264,'2009-07-23 11:00:00.000000',-7),(6525206,6525308,0.1331,'2009-07-23 11:00:00.000000',-7),(6525230,6525332,0.0725,'2008-07-25 12:00:00.000000',-7),(6525231,6525333,55,'2008-07-25 12:00:00.000000',-7),(6525232,6525334,0.1335,'2008-07-25 12:00:00.000000',-7),(6525254,6525356,0.0662,'2008-08-04 09:00:00.000000',-7),(6525255,6525357,73,'2008-08-04 09:00:00.000000',-7),(6525256,6525358,0.1411,'2008-08-04 09:00:00.000000',-7),(6525281,6525383,0.089,'2009-08-05 08:00:00.000000',-7),(6525282,6525384,30,'2009-08-05 08:00:00.000000',-7),(6525283,6525385,246,'2009-08-05 08:00:00.000000',-7),(6525284,6525386,0.1434,'2009-08-05 08:00:00.000000',-7),(6525311,6525413,0.0603,'2009-08-20 14:00:00.000000',-7),(6525312,6525414,35.9,'2009-08-20 14:00:00.000000',-7),(6525313,6525415,256,'2009-08-20 14:00:00.000000',-7),(6525314,6525416,0.1557,'2009-08-20 14:00:00.000000',-7),(6525348,6525450,0.0584,'2008-08-21 14:00:00.000000',-7),(6525349,6525451,0.9275,'2008-08-21 14:00:00.000000',-7),(6525350,6525452,0.0564,'2008-08-21 14:00:00.000000',-7),(6525351,6525453,0.9106,'2008-08-21 14:00:00.000000',-7),(6525352,6525454,45,'2008-08-21 14:00:00.000000',-7),(6525353,6525455,268,'2008-08-21 14:00:00.000000',-7),(6525354,6525456,47,'2008-08-21 14:00:00.000000',-7),(6525355,6525457,0.1245,'2008-08-21 14:00:00.000000',-7),(6525356,6525458,1.0037,'2008-08-21 14:00:00.000000',-7),(6525387,6525489,0.0611,'2009-09-02 12:30:00.000000',-7),(6525388,6525490,39,'2009-09-02 12:30:00.000000',-7),(6525389,6525491,268,'2009-09-02 12:30:00.000000',-7),(6525390,6525492,0.1212,'2009-09-02 12:30:00.000000',-7),(6525391,6525493,0.1405,'2009-09-02 12:30:00.000000',-7),(6525419,6525521,0.0519,'2008-09-12 12:00:00.000000',-7),(6525420,6525522,40,'2008-09-12 12:00:00.000000',-7),(6525421,6525523,258,'2008-09-12 12:00:00.000000',-7),(6525422,6525524,40,'2008-09-12 12:00:00.000000',-7),(6525423,6525525,0.1014,'2008-09-12 12:00:00.000000',-7),(6525451,6525553,0.0423,'2008-09-26 12:30:00.000000',-7),(6525452,6525554,34,'2008-09-26 12:30:00.000000',-7),(6525453,6525555,260,'2008-09-26 12:30:00.000000',-7),(6525454,6525556,35,'2008-09-26 12:30:00.000000',-7),(6525455,6525557,0.0988,'2008-09-26 12:30:00.000000',-7),(6525488,6525590,0.0448,'2008-10-10 08:00:00.000000',-7),(6525489,6525591,1.3263,'2008-10-10 08:00:00.000000',-7),(6525490,6525592,17.3,'2008-10-10 08:00:00.000000',-7),(6525491,6525593,262,'2008-10-10 08:00:00.000000',-7),(6525492,6525594,15.9,'2008-10-10 08:00:00.000000',-7),(6525493,6525595,0.0665,'2008-10-10 08:00:00.000000',-7),(6525494,6525596,1.3155,'2008-10-10 08:00:00.000000',-7),(6525522,6525624,0.0365,'2008-10-24 08:30:00.000000',-7),(6525523,6525625,8.86,'2008-10-24 08:30:00.000000',-7),(6525524,6525626,258,'2008-10-24 08:30:00.000000',-7),(6525525,6525627,0.0463,'2008-10-24 08:30:00.000000',-7),(6525565,6525667,0.0317,'2008-11-07 13:00:00.000000',-7),(6525566,6525668,1.2625,'2008-11-07 13:00:00.000000',-7),(6525567,6525669,6.1,'2008-11-07 13:00:00.000000',-7),(6525568,6525670,266,'2008-11-07 13:00:00.000000',-7),(6525569,6525671,5.65,'2008-11-07 13:00:00.000000',-7),(6525570,6525672,0.0463,'2008-11-07 13:00:00.000000',-7),(6525571,6525673,1.302,'2008-11-07 13:00:00.000000',-7),(6525572,6525674,0.048,'2008-11-07 13:00:00.000000',-7),(6525573,6525675,1.2793,'2008-11-07 13:00:00.000000',-7),(6525605,6525707,0.0349,'2008-11-17 09:00:00.000000',-7),(6525606,6525708,0.034,'2008-11-17 09:00:00.000000',-7),(6525607,6525709,4.84,'2008-11-17 09:00:00.000000',-7),(6525608,6525710,260,'2008-11-17 09:00:00.000000',-7),(6525609,6525711,5.38,'2008-11-17 09:00:00.000000',-7),(6525610,6525712,0.0492,'2008-11-17 09:00:00.000000',-7),(6525636,6525738,0.0289,'2008-12-04 12:30:00.000000',-7),(6525637,6525739,14.4,'2008-12-04 12:30:00.000000',-7),(6525638,6525740,262,'2008-12-04 12:30:00.000000',-7),(6525639,6525741,0.0526,'2008-12-04 12:30:00.000000',-7),(6525666,6525768,0.0336,'2007-12-05 10:30:00.000000',-7),(6525667,6525769,0.0489,'2007-12-05 10:30:00.000000',-7),(6525668,6525770,13.3,'2007-12-05 10:30:00.000000',-7),(6525693,6525795,0.0278,'2008-12-18 09:00:00.000000',-7),(6525694,6525796,6.4,'2008-12-18 09:00:00.000000',-7),(6525695,6525797,252,'2008-12-18 09:00:00.000000',-7),(6525696,6525798,0.0476,'2008-12-18 09:00:00.000000',-7),(6525721,6525823,0.1217,'2007-12-20 14:40:00.000000',-7),(6525722,6525824,20,'2007-12-20 14:40:00.000000',-7),(6525723,6525825,0.1577,'2007-12-20 14:40:00.000000',-7),(6525737,6525839,0.04,'2007-10-04 12:00:00.000000',-7),(6525738,6525840,0.07,'2007-10-04 12:00:00.000000',-7),(6525745,6525847,0.05,'2007-10-10 11:30:00.000000',-7),(6525746,6525848,0.08,'2007-10-10 11:30:00.000000',-7),(6525753,6525855,0.56,'2007-10-17 13:00:00.000000',-7),(6525754,6525856,0.74,'2007-10-17 13:00:00.000000',-7),(6525759,6525861,0.02,'2007-10-24 12:30:00.000000',-7),(6525760,6525862,0.01,'2007-10-24 12:30:00.000000',-7),(6525769,6525871,0.04,'2007-11-01 14:30:00.000000',-7),(6525770,6525872,0.05,'2007-11-01 14:30:00.000000',-7),(6525785,6525887,0.03,'2007-11-07 13:30:00.000000',-7),(6525786,6525888,0.05,'2007-11-07 13:30:00.000000',-7),(6525793,6525895,0.04,'2007-11-13 13:00:00.000000',-7),(6525794,6525896,0.05,'2007-11-13 13:00:00.000000',-7),(6525795,6525897,0.03,'2007-11-13 13:00:00.000000',-7),(6525796,6525898,0.06,'2007-11-13 13:00:00.000000',-7),(6525813,6525915,0.04,'2007-11-21 14:30:00.000000',-7),(6525814,6525916,0.05,'2007-11-21 14:30:00.000000',-7),(6525824,6525926,0.12,'2006-07-26 00:15:00.000000',-7),(6525825,6525927,60.8,'2007-03-08 00:30:00.000000',-7),(6525826,6525928,48,'2007-03-07 13:30:00.000000',-7),(6525827,6525929,46.4,'2007-03-07 19:30:00.000000',-7),(6525828,6525930,0.12,'2006-07-25 21:15:00.000000',-7),(6525829,6525931,0.11,'2006-07-26 03:15:00.000000',-7),(6525830,6525932,0.036,'2006-10-20 03:30:00.000000',-7),(6525831,6525933,0.023,'2006-10-20 05:30:00.000000',-7),(6525832,6525934,0.031,'2006-10-20 06:30:00.000000',-7),(6525842,6525944,0.06,'2007-02-08 14:00:00.000000',-7),(6525843,6525945,0.13,'2006-07-26 06:15:00.000000',-7),(6525844,6525946,53.6,'2007-03-08 09:30:00.000000',-7),(6525863,6525965,40.7,'2007-03-10 00:43:00.000000',-7),(6525864,6525966,0.042,'2006-10-19 11:30:00.000000',-7),(6525865,6525967,0.05,'2006-10-19 12:30:00.000000',-7),(6525866,6525968,0.035,'2006-10-19 13:30:00.000000',-7),(6525867,6525969,45.3,'2007-03-09 16:43:00.000000',-7),(6525868,6525970,0.12,'2007-02-08 18:00:00.000000',-7),(6525869,6525971,35,'2007-03-09 18:43:00.000000',-7),(6525870,6525972,0.1,'2007-02-09 02:00:00.000000',-7),(6525871,6525973,42,'2007-03-09 20:43:00.000000',-7),(6525872,6525974,0.09,'2007-02-08 22:00:00.000000',-7),(6525873,6525975,0.07,'2007-02-09 06:00:00.000000',-7),(6525874,6525976,0.11,'2006-07-26 09:15:00.000000',-7),(6525877,6525979,0.02,'2005-10-30 20:20:00.000000',-7),(6525878,6525980,38.8,'2005-11-14 21:00:00.000000',-7),(6525881,6525983,36,'2006-03-01 12:16:00.000000',-7),(6525882,6525984,0.02,'2005-10-30 21:20:00.000000',-7),(6525885,6525987,38.5,'2006-03-02 11:40:00.000000',-7),(6525886,6525988,0.02,'2005-10-30 22:20:00.000000',-7),(6525889,6525991,36.5,'2006-03-03 13:30:00.000000',-7),(6525890,6525992,0.02,'2005-11-13 13:50:00.000000',-7),(6525893,6525995,36.5,'2006-03-04 12:40:00.000000',-7),(6525894,6525996,0.02,'2005-11-13 18:50:00.000000',-7),(6525899,6526001,0.02,'2005-11-14 10:00:00.000000',-7),(6525900,6526002,23.5,'2006-03-05 10:55:00.000000',-7),(6525901,6526003,37.7,'2006-03-06 18:00:00.000000',-7),(6525902,6526004,0.02,'2005-11-13 20:50:00.000000',-7),(6525911,6526013,0.11,'2006-03-01 12:16:00.000000',-7),(6525912,6526014,70,'2006-03-07 14:00:00.000000',-7),(6525913,6526015,0.02,'2005-11-14 15:00:00.000000',-7),(6525914,6526016,22.7,'2006-03-07 17:00:00.000000',-7),(6525915,6526017,0.02,'2005-11-14 18:00:00.000000',-7),(6525916,6526018,0.02,'2005-11-14 20:00:00.000000',-7),(6525917,6526019,0.02,'2005-11-14 21:00:00.000000',-7),(6525918,6526020,43.4,'2006-03-06 21:00:00.000000',-7),(6525919,6526021,33,'2006-03-07 04:00:00.000000',-7),(6525920,6526022,33.3,'2006-03-07 09:00:00.000000',-7),(6525942,6526044,0.1,'2007-02-16 00:00:00.000000',-7),(6525943,6526045,0.07,'2007-02-09 10:00:00.000000',-7),(6525944,6526046,44,'2007-03-13 15:50:00.000000',-7),(6525945,6526047,81,'2007-03-13 19:50:00.000000',-7),(6525946,6526048,0.062,'2006-10-20 03:30:00.000000',-7),(6525947,6526049,0.054,'2006-10-20 05:30:00.000000',-7),(6525948,6526050,0.053,'2006-10-20 06:30:00.000000',-7),(6525949,6526051,53.3,'2007-03-10 06:43:00.000000',-7),(6525950,6526052,0.11,'2007-02-16 07:00:00.000000',-7),(6525957,6526059,0.12,'2007-02-16 10:00:00.000000',-7),(6525958,6526060,0.12,'2007-02-08 14:00:00.000000',-7),(6525959,6526061,64.7,'2007-03-14 09:50:00.000000',-7),(6525966,6526068,0.07,'2007-02-16 12:00:00.000000',-7),(6525967,6526069,0.08,'2007-02-16 15:00:00.000000',-7),(6525968,6526070,0.19,'2007-02-08 18:00:00.000000',-7),(6525969,6526071,72.8,'2007-03-14 19:50:00.000000',-7),(6525970,6526072,0.15,'2007-02-08 22:00:00.000000',-7),(6525971,6526073,61,'2007-03-15 07:50:00.000000',-7),(6525982,6526084,0.07,'2006-03-02 11:40:00.000000',-7),(6525985,6526087,0.1,'2006-03-04 12:40:00.000000',-7),(6525986,6526088,0.07,'2006-03-03 13:30:00.000000',-7),(6525988,6526090,0.06,'2006-03-05 10:55:00.000000',-7),(6525995,6526097,58.9,'2007-03-21 00:30:00.000000',-7),(6525996,6526098,0.11,'2007-02-09 10:00:00.000000',-7),(6525997,6526099,0.11,'2007-03-07 13:30:00.000000',-7),(6525998,6526100,0.08,'2007-02-16 18:00:00.000000',-7),(6525999,6526101,0.05,'2007-03-07 19:30:00.000000',-7),(6526000,6526102,48.7,'2007-03-20 19:30:00.000000',-7),(6526001,6526103,0.17,'2007-02-09 02:00:00.000000',-7),(6526002,6526104,63.3,'2007-03-20 21:30:00.000000',-7),(6526003,6526105,0.11,'2007-02-09 06:00:00.000000',-7),(6526007,6526109,154,'2006-03-28 12:50:00.000000',-7),(6526008,6526110,0.02,'2005-10-30 13:20:00.000000',-7),(6526009,6526111,0.02,'2005-10-30 14:20:00.000000',-7),(6526010,6526112,20.5,'2006-03-28 14:50:00.000000',-7),(6526011,6526113,0.04,'2006-03-06 18:00:00.000000',-7),(6526012,6526114,0.05,'2006-03-06 21:00:00.000000',-7),(6526013,6526115,0.09,'2006-03-07 14:00:00.000000',-7),(6526014,6526116,0.02,'2005-10-30 15:20:00.000000',-7),(6526015,6526117,0.02,'2005-10-30 16:20:00.000000',-7),(6526016,6526118,25.5,'2006-03-28 16:50:00.000000',-7),(6526017,6526119,0.07,'2006-03-07 17:00:00.000000',-7),(6526018,6526120,0.02,'2005-10-30 17:20:00.000000',-7),(6526019,6526121,0.02,'2005-10-30 18:20:00.000000',-7),(6526020,6526122,31.5,'2006-03-28 18:50:00.000000',-7),(6526021,6526123,0.02,'2005-10-30 19:20:00.000000',-7),(6526022,6526124,30.5,'2006-03-29 02:50:00.000000',-7),(6526023,6526125,32.5,'2006-03-28 21:50:00.000000',-7),(6526024,6526126,0.04,'2006-03-07 04:00:00.000000',-7),(6526025,6526127,39.5,'2006-03-29 04:50:00.000000',-7),(6526026,6526128,0.06,'2006-03-17 08:00:00.000000',-7),(6526027,6526129,0.04,'2006-03-07 09:00:00.000000',-7),(6526037,6526139,0.12,'2007-02-16 00:00:00.000000',-7),(6526038,6526140,0.1,'2007-03-08 00:30:00.000000',-7),(6526039,6526141,0.1,'2007-02-16 10:00:00.000000',-7),(6526040,6526142,59,'2007-03-27 15:00:00.000000',-7),(6526041,6526143,0.05,'2007-03-09 16:43:00.000000',-7),(6526042,6526144,40.8,'2007-03-27 20:00:00.000000',-7),(6526043,6526145,18,'2007-03-27 23:00:00.000000',-7),(6526044,6526146,0.09,'2007-02-16 07:00:00.000000',-7),(6526045,6526147,0.11,'2007-03-08 09:30:00.000000',-7),(6526061,6526163,28,'2006-03-29 10:50:00.000000',-7),(6526062,6526164,0.09,'2006-03-28 12:50:00.000000',-7),(6526063,6526165,0.033,'2005-11-13 13:50:00.000000',-7),(6526064,6526166,0.08,'2006-03-18 02:00:00.000000',-7),(6526065,6526167,0.02,'2005-10-30 20:20:00.000000',-7),(6526066,6526168,0.022,'2005-10-30 21:20:00.000000',-7),(6526067,6526169,0.02,'2005-10-30 22:20:00.000000',-7),(6526068,6526170,0.08,'2006-03-18 23:00:00.000000',-7),(6526069,6526171,0.08,'2006-03-19 05:00:00.000000',-7),(6526070,6526172,48,'2006-03-29 05:50:00.000000',-7),(6526071,6526173,76.5,'2006-03-29 07:50:00.000000',-7),(6526072,6526174,31,'2006-03-29 09:50:00.000000',-7),(6526076,6526178,0.1,'2007-02-16 12:00:00.000000',-7),(6526077,6526179,0.06,'2007-03-09 18:43:00.000000',-7),(6526078,6526180,7.5,'2007-03-28 05:00:00.000000',-7),(6526109,6526211,62,'2006-03-30 00:00:00.000000',-7),(6526110,6526212,45.5,'2006-03-30 10:00:00.000000',-7),(6526111,6526213,0.034,'2005-11-14 10:00:00.000000',-7),(6526112,6526214,27,'2006-03-29 11:50:00.000000',-7),(6526113,6526215,28,'2006-03-29 14:00:00.000000',-7),(6526114,6526216,0.06,'2006-03-28 14:50:00.000000',-7),(6526115,6526217,0.04,'2005-11-14 15:00:00.000000',-7),(6526116,6526218,0.06,'2006-03-28 16:50:00.000000',-7),(6526117,6526219,53,'2006-03-29 18:00:00.000000',-7),(6526118,6526220,0.034,'2005-11-14 18:00:00.000000',-7),(6526119,6526221,0.05,'2006-03-28 18:50:00.000000',-7),(6526120,6526222,0.031,'2005-11-13 18:50:00.000000',-7),(6526121,6526223,0.06,'2006-03-29 02:50:00.000000',-7),(6526122,6526224,0.041,'2005-11-14 20:00:00.000000',-7),(6526123,6526225,0.03,'2005-11-13 20:50:00.000000',-7),(6526124,6526226,60,'2006-03-29 21:00:00.000000',-7),(6526125,6526227,0.041,'2005-11-14 21:00:00.000000',-7),(6526126,6526228,0.05,'2006-03-28 21:50:00.000000',-7),(6526127,6526229,59.5,'2006-03-30 04:00:00.000000',-7),(6526128,6526230,0.06,'2006-03-29 04:50:00.000000',-7),(6526129,6526231,0.05,'2006-03-29 05:50:00.000000',-7),(6526139,6526241,64.7,'2006-04-05 00:40:00.000000',-7),(6526140,6526242,0.04,'2006-03-29 10:50:00.000000',-7),(6526141,6526243,0.05,'2006-03-29 11:50:00.000000',-7),(6526142,6526244,0.15,'2006-03-28 12:50:00.000000',-7),(6526143,6526245,0.06,'2006-03-29 14:00:00.000000',-7),(6526144,6526246,0.07,'2006-03-28 14:50:00.000000',-7),(6526145,6526247,0.11,'2006-03-28 16:50:00.000000',-7),(6526146,6526248,0.08,'2006-03-28 18:50:00.000000',-7),(6526147,6526249,62,'2006-04-04 20:40:00.000000',-7),(6526148,6526250,0.06,'2006-03-28 21:50:00.000000',-7),(6526149,6526251,49.3,'2006-04-05 03:40:00.000000',-7),(6526150,6526252,48,'2006-04-05 06:40:00.000000',-7),(6526151,6526253,0.06,'2006-03-29 07:50:00.000000',-7),(6526152,6526254,44,'2006-04-05 08:40:00.000000',-7),(6526153,6526255,0.06,'2006-03-29 09:50:00.000000',-7),(6526157,6526259,40,'2006-04-05 11:40:00.000000',-7),(6526158,6526260,41.5,'2006-04-05 13:40:00.000000',-7),(6526159,6526261,0.06,'2006-03-29 18:00:00.000000',-7),(6526160,6526262,0.09,'2006-03-29 02:50:00.000000',-7),(6526161,6526263,0.06,'2006-03-29 21:00:00.000000',-7),(6526162,6526264,0.08,'2006-03-29 04:50:00.000000',-7),(6526184,6526286,0.06,'2006-03-30 00:00:00.000000',-7),(6526185,6526287,0.13,'2006-03-30 00:00:00.000000',-7),(6526186,6526288,0.05,'2006-04-05 00:40:00.000000',-7),(6526187,6526289,0.06,'2006-03-30 10:00:00.000000',-7),(6526188,6526290,32,'2006-04-15 10:45:00.000000',-7),(6526189,6526291,0.07,'2006-03-29 10:50:00.000000',-7),(6526190,6526292,0.04,'2006-04-05 11:40:00.000000',-7),(6526191,6526293,0.06,'2006-03-29 11:50:00.000000',-7),(6526192,6526294,764,'2006-07-25 12:15:00.000000',-7),(6526193,6526295,0.05,'2006-04-05 13:40:00.000000',-7),(6526194,6526296,0.11,'2006-03-29 14:00:00.000000',-7),(6526195,6526297,56,'2006-07-25 15:15:00.000000',-7),(6526196,6526298,0.15,'2006-03-29 18:00:00.000000',-7),(6526197,6526299,62,'2006-07-25 18:15:00.000000',-7),(6526198,6526300,37.5,'2006-04-05 19:40:00.000000',-7),(6526199,6526301,0.05,'2006-04-04 20:40:00.000000',-7),(6526200,6526302,0.14,'2006-03-29 21:00:00.000000',-7),(6526201,6526303,50,'2006-07-25 21:15:00.000000',-7),(6526202,6526304,20.5,'2006-04-15 21:45:00.000000',-7),(6526203,6526305,92,'2006-04-14 22:45:00.000000',-7),(6526204,6526306,0.07,'2006-04-05 03:40:00.000000',-7),(6526205,6526307,28,'2006-04-15 03:45:00.000000',-7),(6526206,6526308,0.06,'2006-03-30 04:00:00.000000',-7),(6526207,6526309,0.14,'2006-03-30 04:00:00.000000',-7),(6526208,6526310,0.08,'2006-03-29 05:50:00.000000',-7),(6526209,6526311,0.06,'2006-04-05 06:40:00.000000',-7),(6526210,6526312,28,'2006-04-15 06:45:00.000000',-7),(6526211,6526313,0.12,'2006-03-29 07:50:00.000000',-7),(6526212,6526314,0.05,'2006-04-05 08:40:00.000000',-7),(6526213,6526315,0.09,'2006-03-29 09:50:00.000000',-7),(6526214,6526316,54.4,'2006-07-26 00:15:00.000000',-7),(6526215,6526317,0.1,'2006-04-05 00:40:00.000000',-7),(6526216,6526318,0.1,'2006-03-30 10:00:00.000000',-7),(6526217,6526319,0.04,'2006-04-05 19:40:00.000000',-7),(6526218,6526320,0.09,'2006-04-04 20:40:00.000000',-7),(6526219,6526321,0.05,'2006-04-14 22:45:00.000000',-7),(6526220,6526322,65,'2006-07-26 03:15:00.000000',-7),(6526221,6526323,0.05,'2006-04-15 03:45:00.000000',-7),(6526222,6526324,60,'2006-07-26 06:15:00.000000',-7),(6526226,6526328,0.08,'2006-04-05 03:40:00.000000',-7),(6526227,6526329,0.05,'2006-04-15 06:45:00.000000',-7),(6526228,6526330,49.6,'2006-07-26 09:15:00.000000',-7),(6526241,6526343,0.04,'2006-04-15 10:45:00.000000',-7),(6526242,6526344,23.3,'2006-10-19 11:30:00.000000',-7),(6526243,6526345,0.08,'2006-04-05 11:40:00.000000',-7),(6526244,6526346,0.06,'2006-06-09 12:30:00.000000',-7),(6526245,6526347,21.3,'2006-10-19 12:30:00.000000',-7),(6526246,6526348,26.7,'2006-10-19 13:30:00.000000',-7),(6526247,6526349,0.09,'2006-04-05 13:40:00.000000',-7),(6526248,6526350,0.04,'2006-04-15 21:45:00.000000',-7),(6526249,6526351,31.3,'2006-10-20 03:30:00.000000',-7),(6526250,6526352,0.09,'2006-04-05 06:40:00.000000',-7),(6526251,6526353,2.46,'2006-06-09 07:30:00.000000',-7),(6526252,6526354,0.07,'2006-04-05 08:40:00.000000',-7),(6526264,6526366,0.01,'2007-03-13 19:50:00.000000',-7),(6526267,6526369,0.1,'2007-03-20 19:30:00.000000',-7),(6526268,6526370,0.02,'2007-03-14 19:50:00.000000',-7),(6526269,6526371,0.11,'2007-03-20 21:30:00.000000',-7),(6526273,6526375,0.09,'2007-03-15 07:50:00.000000',-7),(6526274,6526376,0.02,'2007-03-14 09:50:00.000000',-7),(6526287,6526389,0.07,'2007-03-10 00:43:00.000000',-7),(6526288,6526390,0.09,'2007-03-07 13:30:00.000000',-7),(6526289,6526391,3.33,'2007-06-07 14:20:00.000000',-7),(6526290,6526392,0.11,'2007-02-16 15:00:00.000000',-7),(6526291,6526393,0.03,'2007-03-13 15:50:00.000000',-7),(6526292,6526394,0.11,'2007-02-16 18:00:00.000000',-7),(6526293,6526395,0.05,'2007-03-07 19:30:00.000000',-7),(6526294,6526396,0.08,'2007-03-09 20:43:00.000000',-7),(6526295,6526397,16.5,'2007-06-07 04:20:00.000000',-7),(6526296,6526398,0.07,'2007-03-10 06:43:00.000000',-7),(6526297,6526399,4,'2007-06-07 08:20:00.000000',-7),(6526298,6526400,8.57,'2007-06-07 09:20:00.000000',-7),(6526321,6526423,0.08,'2006-04-15 10:45:00.000000',-7),(6526322,6526424,0.05,'2006-07-25 12:15:00.000000',-7),(6526323,6526425,108,'2007-02-08 14:00:00.000000',-7),(6526324,6526426,0.07,'2006-07-25 15:15:00.000000',-7),(6526325,6526427,0.04,'2006-06-10 16:30:00.000000',-7),(6526326,6526428,40,'2007-02-08 18:00:00.000000',-7),(6526327,6526429,0.01,'2006-06-09 18:30:00.000000',-7),(6526328,6526430,0.06,'2006-04-05 19:40:00.000000',-7),(6526329,6526431,41,'2007-02-08 22:00:00.000000',-7),(6526330,6526432,0.11,'2006-04-14 22:45:00.000000',-7),(6526331,6526433,0.07,'2006-04-15 03:45:00.000000',-7),(6526332,6526434,36,'2006-10-20 05:30:00.000000',-7),(6526333,6526435,0.05,'2006-06-10 06:30:00.000000',-7),(6526334,6526436,28,'2006-10-20 06:30:00.000000',-7),(6526335,6526437,0.09,'2006-04-15 06:45:00.000000',-7),(6526348,6526450,0.06,'2006-07-26 00:15:00.000000',-7),(6526349,6526451,23.3,'2007-02-09 10:00:00.000000',-7),(6526350,6526452,0.11,'2006-06-09 12:30:00.000000',-7),(6526351,6526453,0.07,'2006-07-25 18:15:00.000000',-7),(6526352,6526454,46,'2007-02-09 02:00:00.000000',-7),(6526353,6526455,0.06,'2006-07-25 21:15:00.000000',-7),(6526354,6526456,0.07,'2006-04-15 21:45:00.000000',-7),(6526355,6526457,54,'2007-02-09 06:00:00.000000',-7),(6526356,6526458,0.2,'2006-06-09 07:30:00.000000',-7),(6526361,6526463,0.13,'2007-03-21 00:30:00.000000',-7),(6526371,6526473,0.03,'2007-03-27 15:00:00.000000',-7),(6526373,6526475,0.03,'2007-03-27 20:00:00.000000',-7),(6526375,6526477,0.04,'2007-03-27 23:00:00.000000',-7),(6526376,6526478,0.05,'2007-03-28 05:00:00.000000',-7),(6526377,6526479,1788,'2005-04-28 00:00:00.000000',-7),(6526378,6526480,0.1,'2007-03-08 00:30:00.000000',-7),(6526379,6526481,0.11,'2007-03-10 00:43:00.000000',-7),(6526382,6526484,0.09,'2007-06-07 14:20:00.000000',-7),(6526386,6526488,0.07,'2007-03-13 15:50:00.000000',-7),(6526387,6526489,0.11,'2007-03-09 16:43:00.000000',-7),(6526389,6526491,0.1,'2007-03-09 18:43:00.000000',-7),(6526392,6526494,0.05,'2007-03-13 19:50:00.000000',-7),(6526393,6526495,1816,'2005-04-28 02:00:00.000000',-7),(6526394,6526496,2868,'2005-04-27 20:00:00.000000',-7),(6526395,6526497,0.11,'2007-03-09 20:43:00.000000',-7),(6526397,6526499,2236,'2005-04-27 22:00:00.000000',-7),(6526398,6526500,1358,'2005-04-28 04:00:00.000000',-7),(6526399,6526501,0.08,'2007-06-07 04:20:00.000000',-7),(6526400,6526502,0.1,'2007-03-10 06:43:00.000000',-7),(6526401,6526503,0.09,'2007-06-07 08:20:00.000000',-7),(6526402,6526504,0.08,'2007-06-07 09:20:00.000000',-7),(6526403,6526505,0.11,'2007-03-08 09:30:00.000000',-7),(6526413,6526515,39.2,'2007-02-16 00:00:00.000000',-7),(6526414,6526516,28,'2007-02-16 10:00:00.000000',-7),(6526415,6526517,0.1,'2006-06-10 16:30:00.000000',-7),(6526416,6526518,0.09,'2006-06-09 18:30:00.000000',-7),(6526417,6526519,0.06,'2006-07-26 03:15:00.000000',-7),(6526418,6526520,0.06,'2006-07-26 06:15:00.000000',-7),(6526419,6526521,0.09,'2006-06-10 06:30:00.000000',-7),(6526420,6526522,27.2,'2007-02-16 07:00:00.000000',-7),(6526421,6526523,0.06,'2006-07-26 09:15:00.000000',-7),(6526431,6526533,0.022,'2006-10-19 11:30:00.000000',-7),(6526432,6526534,36,'2007-02-16 12:00:00.000000',-7),(6526433,6526535,0.67,'2006-07-25 12:15:00.000000',-7),(6526434,6526536,0.025,'2006-10-19 12:30:00.000000',-7),(6526435,6526537,0.03,'2006-10-19 13:30:00.000000',-7),(6526436,6526538,43,'2007-02-16 15:00:00.000000',-7),(6526437,6526539,0.14,'2006-07-25 15:15:00.000000',-7),(6526438,6526540,52,'2007-02-16 18:00:00.000000',-7),(6526439,6526541,0.12,'2006-07-25 18:15:00.000000',-7),(6526449,6526551,44,'2005-08-16 15:30:00.000000',-7),(6526450,6526552,29.6,'2005-08-16 18:30:00.000000',-7),(6526452,6526554,0.09,'2007-03-14 19:50:00.000000',-7),(6526454,6526556,0.1,'2007-03-14 09:50:00.000000',-7),(6526482,6526584,0.044,'2005-04-28 00:00:00.000000',-7),(6526483,6526585,0.15,'2007-03-21 00:30:00.000000',-7),(6526484,6526586,0.02,'2005-10-28 00:30:00.000000',-7),(6526485,6526587,38.4,'2005-08-17 00:30:00.000000',-7),(6526486,6526588,19.2,'2005-10-28 00:30:00.000000',-7),(6526487,6526589,0.116,'2005-08-17 00:30:00.000000',-7),(6526488,6526590,0.02,'2005-10-28 01:30:00.000000',-7),(6526489,6526591,21.2,'2005-10-28 01:30:00.000000',-7),(6526490,6526592,16,'2005-10-29 10:40:00.000000',-7),(6526491,6526593,34.4,'2005-08-17 11:30:00.000000',-7),(6526492,6526594,0.101,'2005-08-17 11:30:00.000000',-7),(6526493,6526595,15.6,'2005-10-29 11:40:00.000000',-7),(6526494,6526596,17.2,'2005-10-29 12:40:00.000000',-7),(6526495,6526597,16.4,'2005-10-29 13:40:00.000000',-7),(6526497,6526599,0.09,'2007-06-07 14:20:00.000000',-7),(6526498,6526600,13,'2005-10-29 14:40:00.000000',-7),(6526500,6526602,0.09,'2007-03-27 15:00:00.000000',-7),(6526501,6526603,0.132,'2005-08-16 15:30:00.000000',-7),(6526502,6526604,14.4,'2005-10-29 15:40:00.000000',-7),(6526504,6526606,0.092,'2005-08-16 18:30:00.000000',-7),(6526505,6526607,0.13,'2007-03-20 19:30:00.000000',-7),(6526506,6526608,0.051,'2005-04-28 02:00:00.000000',-7),(6526507,6526609,0.02,'2005-10-28 02:30:00.000000',-7),(6526508,6526610,18,'2005-10-28 02:30:00.000000',-7),(6526509,6526611,0.09,'2007-03-27 20:00:00.000000',-7),(6526510,6526612,0.012,'2005-04-27 20:00:00.000000',-7),(6526511,6526613,0.15,'2007-03-20 21:30:00.000000',-7),(6526512,6526614,0.02,'2005-10-27 21:30:00.000000',-7),(6526513,6526615,20,'2005-10-27 21:30:00.000000',-7),(6526514,6526616,0.034,'2005-10-27 21:30:00.000000',-7),(6526515,6526617,0.034,'2005-04-27 22:00:00.000000',-7),(6526516,6526618,0.02,'2005-10-27 22:30:00.000000',-7),(6526517,6526619,21.6,'2005-10-27 22:30:00.000000',-7),(6526518,6526620,0.036,'2005-10-27 22:30:00.000000',-7),(6526519,6526621,0.01,'2007-03-27 23:00:00.000000',-7),(6526521,6526623,0.02,'2005-10-27 23:30:00.000000',-7),(6526522,6526624,20,'2005-10-27 23:30:00.000000',-7),(6526524,6526626,0.028,'2005-10-27 23:30:00.000000',-7),(6526525,6526627,0.02,'2005-10-28 03:30:00.000000',-7),(6526526,6526628,13.2,'2005-10-28 03:30:00.000000',-7),(6526529,6526631,0.067,'2005-04-28 04:00:00.000000',-7),(6526530,6526632,0.09,'2007-06-07 04:20:00.000000',-7),(6526531,6526633,0.02,'2005-10-28 04:30:00.000000',-7),(6526532,6526634,8.8,'2005-10-28 04:30:00.000000',-7),(6526533,6526635,0.03,'2007-03-28 05:00:00.000000',-7),(6526534,6526636,0.02,'2005-10-28 05:30:00.000000',-7),(6526535,6526637,4,'2005-10-28 05:30:00.000000',-7),(6526536,6526638,0.02,'2005-10-28 06:30:00.000000',-7),(6526537,6526639,4,'2005-10-28 06:30:00.000000',-7),(6526538,6526640,43.2,'2005-08-17 07:30:00.000000',-7),(6526539,6526641,11.6,'2005-10-28 07:30:00.000000',-7),(6526540,6526642,0.1,'2005-08-17 07:30:00.000000',-7),(6526542,6526644,0.02,'2007-03-15 07:50:00.000000',-7),(6526543,6526645,0.11,'2007-06-07 08:20:00.000000',-7),(6526544,6526646,12.8,'2005-10-28 08:30:00.000000',-7),(6526546,6526648,0.09,'2007-06-07 09:20:00.000000',-7),(6526547,6526649,14,'2005-10-29 09:40:00.000000',-7),(6526584,6526686,0.026,'2005-10-28 00:30:00.000000',-7),(6526585,6526687,0.029,'2005-10-28 01:30:00.000000',-7),(6526586,6526688,0.02,'2005-10-29 10:40:00.000000',-7),(6526587,6526689,0.02,'2005-10-29 10:40:00.000000',-7),(6526588,6526690,11.6,'2005-10-30 11:20:00.000000',-7),(6526589,6526691,0.02,'2005-10-29 11:40:00.000000',-7),(6526590,6526692,0.02,'2005-10-29 11:40:00.000000',-7),(6526591,6526693,16.8,'2005-10-30 12:20:00.000000',-7),(6526592,6526694,0.02,'2005-10-29 12:40:00.000000',-7),(6526593,6526695,8,'2005-10-30 13:20:00.000000',-7),(6526594,6526696,0.02,'2005-10-29 13:40:00.000000',-7),(6526595,6526697,8,'2005-10-30 14:20:00.000000',-7),(6526596,6526698,0.02,'2005-10-29 14:40:00.000000',-7),(6526597,6526699,6.4,'2005-10-30 15:20:00.000000',-7),(6526598,6526700,0.02,'2005-10-29 15:40:00.000000',-7),(6526599,6526701,0.02,'2005-10-29 16:40:00.000000',-7),(6526600,6526702,12.8,'2005-10-29 16:40:00.000000',-7),(6526601,6526703,7.2,'2005-10-30 17:20:00.000000',-7),(6526602,6526704,0.02,'2005-10-29 17:40:00.000000',-7),(6526603,6526705,12.4,'2005-10-29 17:40:00.000000',-7),(6526604,6526706,6.8,'2005-10-30 18:20:00.000000',-7),(6526605,6526707,0.02,'2005-10-29 18:40:00.000000',-7),(6526606,6526708,8,'2005-10-29 18:40:00.000000',-7),(6526607,6526709,18,'2005-10-29 19:40:00.000000',-7),(6526608,6526710,0.024,'2005-10-28 02:30:00.000000',-7),(6526609,6526711,16.8,'2005-10-29 20:40:00.000000',-7),(6526610,6526712,0.025,'2005-10-28 03:30:00.000000',-7),(6526611,6526713,0.024,'2005-10-28 04:30:00.000000',-7),(6526612,6526714,0.021,'2005-10-28 05:30:00.000000',-7),(6526613,6526715,0.028,'2005-10-28 06:30:00.000000',-7),(6526614,6526716,0.02,'2005-10-28 07:30:00.000000',-7),(6526615,6526717,0.027,'2005-10-28 07:30:00.000000',-7),(6526616,6526718,0.02,'2005-10-28 08:30:00.000000',-7),(6526617,6526719,0.023,'2005-10-28 08:30:00.000000',-7),(6526618,6526720,0.02,'2005-10-29 09:40:00.000000',-7),(6526619,6526721,0.02,'2005-10-29 09:40:00.000000',-7),(6526664,6526766,0.02,'2005-10-30 11:20:00.000000',-7),(6526665,6526767,0.02,'2005-10-29 12:40:00.000000',-7),(6526666,6526768,0.02,'2005-10-29 13:40:00.000000',-7),(6526667,6526769,0.02,'2005-10-29 14:40:00.000000',-7),(6526668,6526770,8.8,'2005-10-30 19:20:00.000000',-7),(6526669,6526771,0.02,'2005-10-29 19:40:00.000000',-7),(6526670,6526772,8.8,'2005-10-30 20:20:00.000000',-7),(6526671,6526773,0.02,'2005-10-29 20:40:00.000000',-7),(6526672,6526774,8.8,'2005-10-30 21:20:00.000000',-7),(6526688,6526790,19,'2005-11-14 10:00:00.000000',-7),(6526689,6526791,0.02,'2005-10-30 11:20:00.000000',-7),(6526690,6526792,0.02,'2005-10-30 12:20:00.000000',-7),(6526691,6526793,0.02,'2005-10-30 12:20:00.000000',-7),(6526692,6526794,0.02,'2005-10-30 13:20:00.000000',-7),(6526693,6526795,16.5,'2005-11-13 13:50:00.000000',-7),(6526694,6526796,0.02,'2005-10-30 14:20:00.000000',-7),(6526695,6526797,12,'2005-11-14 15:00:00.000000',-7),(6526696,6526798,0.02,'2005-10-30 15:20:00.000000',-7),(6526697,6526799,0.02,'2005-10-29 15:40:00.000000',-7),(6526698,6526800,0.02,'2005-10-30 16:20:00.000000',-7),(6526699,6526801,0.02,'2005-10-29 16:40:00.000000',-7),(6526700,6526802,0.02,'2005-10-30 17:20:00.000000',-7),(6526701,6526803,0.02,'2005-10-29 17:40:00.000000',-7),(6526702,6526804,4,'2005-11-14 18:00:00.000000',-7),(6526703,6526805,0.02,'2005-10-30 18:20:00.000000',-7),(6526704,6526806,0.02,'2005-10-29 18:40:00.000000',-7),(6526705,6526807,163,'2005-11-13 18:50:00.000000',-7),(6526706,6526808,0.02,'2005-10-30 19:20:00.000000',-7),(6526707,6526809,0.02,'2005-10-29 19:40:00.000000',-7),(6526708,6526810,22,'2005-11-14 20:00:00.000000',-7),(6526709,6526811,0.02,'2005-10-29 20:40:00.000000',-7),(6526710,6526812,4,'2005-11-13 20:50:00.000000',-7),(6526711,6526813,4.8,'2005-10-30 22:20:00.000000',-7),(15429572,15429674,0.0297,'2009-09-17 08:30:00.000000',-7),(15429573,15429675,0.0297,'2009-09-17 08:30:00.000000',-7),(15429574,15429676,54.2,'2009-09-17 08:30:00.000000',-7),(15429575,15429677,242,'2009-09-17 08:30:00.000000',-7),(15429576,15429678,55.3,'2009-09-17 08:30:00.000000',-7),(15429577,15429679,0.0377,'2009-09-17 08:30:00.000000',-7),(15429604,15429706,0.03,'2009-10-01 11:30:00.000000',-7),(15429605,15429707,6.78,'2009-10-01 11:30:00.000000',-7),(15429606,15429708,252,'2009-10-01 11:30:00.000000',-7),(15429607,15429709,0.053,'2009-10-01 11:30:00.000000',-7),(15429635,15429737,0.0339,'2009-10-15 11:30:00.000000',-7),(15429636,15429738,30,'2009-10-15 11:30:00.000000',-7),(15429637,15429739,262,'2009-10-15 11:30:00.000000',-7),(15429638,15429740,29.4,'2009-10-15 11:30:00.000000',-7),(15429639,15429741,0.042,'2009-10-15 11:30:00.000000',-7),(15429666,15429768,0.0336,'2009-10-29 08:30:00.000000',-7),(15429667,15429769,52.5,'2009-10-29 08:30:00.000000',-7),(15429668,15429770,196,'2009-10-29 08:30:00.000000',-7),(15429669,15429771,0.0406,'2009-10-29 08:30:00.000000',-7),(15429698,15429800,0.0213,'2009-11-12 12:30:00.000000',-7),(15429699,15429801,25.4,'2009-11-12 12:30:00.000000',-7),(15429700,15429802,200,'2009-11-12 12:30:00.000000',-7),(15429701,15429803,0.0227,'2009-11-12 12:30:00.000000',-7),(15429728,15429830,0.0154,'2009-11-24 12:30:00.000000',-7),(15429729,15429831,5.34,'2009-11-24 12:30:00.000000',-7),(15429730,15429832,200,'2009-11-24 12:30:00.000000',-7),(15429731,15429833,0.0242,'2009-11-24 12:30:00.000000',-7),(15429759,15429861,0.018,'2009-12-10 14:00:00.000000',-7),(15429760,15429862,6.78,'2009-12-10 14:00:00.000000',-7),(15429761,15429863,198,'2009-12-10 14:00:00.000000',-7),(15429762,15429864,0.0303,'2009-12-10 14:00:00.000000',-7); +/*!40000 ALTER TABLE `MeasurementResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `MeasurementResults` +-- + +DROP TABLE IF EXISTS `MeasurementResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MeasurementResults` ( + `ResultID` bigint(20) NOT NULL, + `XLocation` double DEFAULT NULL, + `XLocationUnitsID` int(11) DEFAULT NULL, + `YLocation` double DEFAULT NULL, + `YLocationUnitsID` int(11) DEFAULT NULL, + `ZLocation` double DEFAULT NULL, + `ZLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_MeasurementResults_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_MeasurementResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_MeasurementResults_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_MeasurementResults_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_MeasurementResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_MeasurementResults_XUnits` (`XLocationUnitsID`), + KEY `fk_MeasurementResults_YUnits` (`YLocationUnitsID`), + KEY `fk_MeasurementResults_ZUnits` (`ZLocationUnitsID`), + CONSTRAINT `fk_MeasurementResults_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MeasurementResults_ZUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MeasurementResults` +-- + +/*!40000 ALTER TABLE `MeasurementResults` DISABLE KEYS */; +INSERT INTO `MeasurementResults` VALUES (6523850,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523851,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523859,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523868,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523869,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523873,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523877,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523883,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523888,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523890,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523895,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523903,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523908,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523920,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523921,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523922,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523946,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523947,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523948,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523949,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523974,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523975,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523976,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6523977,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524001,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524002,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524003,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524004,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524028,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524029,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524030,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524031,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524032,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524058,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524059,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524060,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524061,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524062,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524090,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524091,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524092,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524093,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524094,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524095,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524096,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524130,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524131,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524132,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524133,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524134,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524158,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524159,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524160,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524191,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524192,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524193,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524194,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524195,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524196,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524197,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524226,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524227,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524249,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524250,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524251,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524277,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524278,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524306,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524307,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524329,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524330,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524331,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524354,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524355,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524356,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524357,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524391,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524393,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524394,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524395,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524396,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524397,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524429,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524431,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524459,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524460,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524461,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524462,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524463,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524496,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524498,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524512,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524513,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524514,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524538,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524539,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524540,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524541,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524542,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524543,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524579,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524580,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524581,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524582,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524583,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524607,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524608,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524609,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524632,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524633,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524634,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524636,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524661,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524662,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524663,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524688,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524689,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524690,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524691,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524717,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524718,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524719,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524751,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524752,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524753,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524754,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524755,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524756,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524787,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524788,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524789,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524822,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524823,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524824,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524825,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524826,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524827,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524828,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524860,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524861,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524862,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524863,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524895,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524896,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524897,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524898,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524899,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524900,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524931,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524933,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524934,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524966,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524967,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524968,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524970,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6524971,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525000,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525001,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525002,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525024,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525025,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525026,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525051,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525052,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525053,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525054,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525089,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525090,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525091,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525092,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525093,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525094,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525095,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525096,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525127,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525167,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525168,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525172,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525173,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525205,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525206,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525207,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525223,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525249,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525250,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525251,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525252,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525279,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525280,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525281,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525282,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525306,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525307,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525308,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525332,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525333,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525334,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525356,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525357,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525358,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525383,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525384,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525385,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525386,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525413,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525414,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525415,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525416,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525450,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525451,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525452,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525453,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525454,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525455,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525456,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525458,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525489,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525490,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525492,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525493,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525521,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525523,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525524,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525525,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525553,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525554,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525555,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525557,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525590,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525592,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525593,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525594,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525596,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525624,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525625,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525626,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525627,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525667,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525668,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525669,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525670,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525671,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525672,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525673,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525674,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525675,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525707,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525708,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525709,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525710,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525711,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525712,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525738,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525739,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525741,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525768,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525770,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525795,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525796,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525797,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525798,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525823,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525824,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525825,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525839,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525840,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525847,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525848,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525855,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525856,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525861,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525862,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525871,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525872,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525887,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525888,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525895,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525896,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525897,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525898,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525915,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525916,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525926,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525927,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525928,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525929,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525930,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525931,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525932,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525933,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525934,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525944,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525945,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525946,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525965,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525966,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525967,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525968,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525969,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525970,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525971,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525972,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525973,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525974,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525975,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525976,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525979,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6525980,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525983,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525984,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6525987,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525988,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6525991,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525992,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6525995,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6525996,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526001,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526002,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526003,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526004,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526013,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526014,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526015,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526016,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526017,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526018,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526019,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526020,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526021,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526022,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526044,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526045,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526046,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526047,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526048,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526049,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526050,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526051,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526052,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526059,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526060,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526061,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526068,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526069,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526070,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526071,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526072,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526073,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526084,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526087,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526088,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526090,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526097,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526098,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526099,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526100,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526101,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526102,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526103,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526104,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526105,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526109,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526110,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526111,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526112,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526113,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526114,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526115,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526116,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526117,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526118,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526119,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526120,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526121,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526122,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526123,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526124,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526125,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526126,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526127,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526128,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526129,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526139,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526140,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526141,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526142,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526143,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526144,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526145,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526146,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526147,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526163,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526164,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526165,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526166,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526167,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526168,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526169,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526170,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526171,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526172,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526173,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526174,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526178,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526179,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526180,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526211,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526212,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526213,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526214,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526215,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526216,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526217,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526218,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526219,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526220,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526221,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526222,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526223,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526224,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526225,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526226,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526227,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526228,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526229,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526230,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526231,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526241,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526242,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526243,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526244,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526245,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526246,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526247,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526248,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526249,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526250,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526251,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526252,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526253,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526254,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526255,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526259,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526260,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526261,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526262,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526263,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526264,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526286,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526287,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526288,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526289,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526290,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526291,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526292,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526293,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526294,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526295,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526296,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526297,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526298,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526299,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526300,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526301,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526302,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526303,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526304,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526305,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526306,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526307,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526308,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526309,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526310,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526311,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526312,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526313,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526314,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526315,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526316,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526317,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526318,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526319,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526320,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526321,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526322,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526323,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526324,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526328,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526329,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526330,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526343,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526344,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526345,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526346,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526347,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526348,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526349,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526350,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526351,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526352,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526353,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526354,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526366,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526369,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526370,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526371,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526375,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526376,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526389,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526390,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526391,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526392,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526393,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526394,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526395,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526396,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526397,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526398,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526399,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526400,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526423,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526424,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526425,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526426,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526427,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526428,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526429,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526430,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526431,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526432,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526433,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526434,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526435,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526436,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526437,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526450,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526451,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526452,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526453,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526454,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526455,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526456,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526457,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526458,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526463,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526473,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526475,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526477,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526478,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526479,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526480,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526481,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526484,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526488,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526489,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526491,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526494,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526495,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526496,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526497,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526499,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526500,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526501,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526502,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526503,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526504,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526505,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526515,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526516,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526517,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526518,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526519,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526520,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526521,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526522,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526523,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526533,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526534,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526535,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526536,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526537,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526538,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526539,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526540,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526541,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526551,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526552,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526554,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526556,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526584,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526585,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526586,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526587,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526588,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526589,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526590,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526591,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526592,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526593,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526594,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526595,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526596,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526597,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526599,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526600,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526602,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526603,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526604,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526606,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526607,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526608,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526609,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526610,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526611,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526612,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526613,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526614,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526615,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526616,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526617,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526618,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526619,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526620,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526621,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526623,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526624,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526626,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526627,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526628,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526631,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526632,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526633,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526634,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526635,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526636,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526637,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526638,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526639,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526640,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526641,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526642,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526644,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526645,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526646,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526648,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526649,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526686,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526687,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526688,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526689,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526690,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526691,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526692,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526693,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526694,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526695,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526696,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526697,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526698,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526699,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526700,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526701,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526702,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526703,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526704,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526705,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526706,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526707,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526708,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526709,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526710,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526711,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526712,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526713,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526714,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526715,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526716,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526717,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526718,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526719,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526720,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526721,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526766,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526767,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526768,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526770,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526771,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526772,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526773,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526774,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526790,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526791,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526792,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526793,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526794,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526795,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526796,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526797,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526798,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526799,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526801,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526802,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526803,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526804,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526805,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526806,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526807,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526808,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526809,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526810,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(6526811,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526812,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Less than','Unknown','Sporadic',0,100),(6526813,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429674,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429675,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429676,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429677,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429678,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429679,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429706,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429707,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429708,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429709,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429737,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429738,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429739,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429740,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429741,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429768,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429769,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429770,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429771,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429800,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429801,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429802,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429803,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429830,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429831,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429832,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429833,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429861,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429862,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429863,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100),(15429864,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Not censored','Unknown','Sporadic',0,100); +/*!40000 ALTER TABLE `MeasurementResults` ENABLE KEYS */; + +-- +-- Table structure for table `MethodAnnotations` +-- + +DROP TABLE IF EXISTS `MethodAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MethodAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `MethodID` int(11) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_MethodAnnotations_Methods` (`MethodID`), + KEY `fk_MethodAnnotations_Annotations` (`AnnotationID`), + CONSTRAINT `fk_MethodAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MethodAnnotations_Methods` FOREIGN KEY (`MethodID`) REFERENCES `Methods` (`MethodID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MethodAnnotations` +-- + +/*!40000 ALTER TABLE `MethodAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `MethodAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `MethodCitations` +-- + +DROP TABLE IF EXISTS `MethodCitations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MethodCitations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `MethodID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `CitationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_MethodCitations_Citations` (`CitationID`), + KEY `fk_MethodCitations_CV_RelationshipType` (`RelationshipTypeCV`), + KEY `fk_MethodCitations_Methods` (`MethodID`), + CONSTRAINT `fk_MethodCitations_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MethodCitations_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MethodCitations_Methods` FOREIGN KEY (`MethodID`) REFERENCES `Methods` (`MethodID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MethodCitations` +-- + +/*!40000 ALTER TABLE `MethodCitations` DISABLE KEYS */; +/*!40000 ALTER TABLE `MethodCitations` ENABLE KEYS */; + +-- +-- Table structure for table `MethodExtensionPropertyValues` +-- + +DROP TABLE IF EXISTS `MethodExtensionPropertyValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MethodExtensionPropertyValues` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `MethodID` int(11) NOT NULL, + `PropertyID` int(11) NOT NULL, + `PropertyValue` varchar(255) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_MethodExtensionPropertyValues_ExtensionProperties` (`PropertyID`), + KEY `fk_MethodExtensionPropertyValues_Methods` (`MethodID`), + CONSTRAINT `fk_MethodExtensionPropertyValues_ExtensionProperties` FOREIGN KEY (`PropertyID`) REFERENCES `ExtensionProperties` (`PropertyID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MethodExtensionPropertyValues_Methods` FOREIGN KEY (`MethodID`) REFERENCES `Methods` (`MethodID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MethodExtensionPropertyValues` +-- + +/*!40000 ALTER TABLE `MethodExtensionPropertyValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `MethodExtensionPropertyValues` ENABLE KEYS */; + +-- +-- Table structure for table `MethodExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `MethodExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `MethodExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `MethodID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `MethodExternalIdentifier` varchar(255) NOT NULL, + `MethodExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_MethodExternalIdentifiers_ExternalIdentifierSystems` (`ExternalIdentifierSystemID`), + KEY `fk_MethodExternalIdentifiers_Methods` (`MethodID`), + CONSTRAINT `fk_MethodExternalIdentifiers_ExternalIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_MethodExternalIdentifiers_Methods` FOREIGN KEY (`MethodID`) REFERENCES `Methods` (`MethodID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `MethodExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `MethodExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `MethodExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `Methods` +-- + +DROP TABLE IF EXISTS `Methods`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Methods` ( + `MethodID` int(11) NOT NULL AUTO_INCREMENT, + `MethodTypeCV` varchar(255) NOT NULL, + `MethodCode` varchar(50) NOT NULL, + `MethodName` varchar(255) NOT NULL, + `MethodDescription` varchar(500) DEFAULT NULL, + `MethodLink` varchar(255) DEFAULT NULL, + `OrganizationID` int(11) DEFAULT NULL, + PRIMARY KEY (`MethodID`), + KEY `fk_Methods_CV_MethodType` (`MethodTypeCV`), + KEY `fk_Methods_Organizations` (`OrganizationID`), + CONSTRAINT `fk_Methods_CV_MethodType` FOREIGN KEY (`MethodTypeCV`) REFERENCES `CV_MethodType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Methods_Organizations` FOREIGN KEY (`OrganizationID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=68 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Methods` +-- + +/*!40000 ALTER TABLE `Methods` DISABLE KEYS */; +INSERT INTO `Methods` VALUES (1,'Unknown','1','Water temperature measured using a Forest Technology Systems DTS-12 turbidity sensor.','Water temperature measured using a Forest Technology Systems DTS-12 turbidity sensor.','http://www.ftsinc.com/',NULL),(2,'Unknown','2','Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.','Turbidity measured using a Forest Technology Systems DTS-12 turbidity sensor.','http://www.ftsinc.com/',NULL),(3,'Unknown','3','Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer','Water level measured using a ACData Solutions, Inc. SPXD-600 SDI-12 Pressure Transducer','http://www.campbellsci.com/cs445-l',NULL),(4,'Unknown','4','Battery voltage measured by Campbell Scientific CR206 datalogger.','Battery voltage measured by Campbell Scientific CR206 datalogger.','http://www.campbellsci.com',NULL),(5,'Unknown','5','Air temperature measured using a Campbell Scientific CS215 temperature and relative humidity sensor.','Air temperature measured using a Campbell Scientific CS215 temperature and relative humidity sensor.','http://www.campbellsci.com/',NULL),(6,'Unknown','6','Relative humidity measured using a Campbell Scientific CS215 temperature and relative humidity sensor.','Relative humidity measured using a Campbell Scientific CS215 temperature and relative humidity sensor.','http://www.campbellsci.com',NULL),(7,'Unknown','7','Precipitation measured using a Texas Electronics TE525WS tipping bucket rain gage.','Precipitation measured using a Texas Electronics TE525WS tipping bucket rain gage.','http://www.campbellsci.com/te525ws-l',NULL),(10,'Unknown','10','Barometric pressure measured using a Setra Model 278 barometric pressure sensor.','Barometric pressure measured using a Setra Model 278 barometric pressure sensor.','http://www.campbellsci.com/cs100',NULL),(11,'Unknown','11','Solar radiation measured using an Apogee PYR-P pyranometer.','Solar radiation measured using an Apogee PYR-P pyranometer.','http://www.campbellsci.com/cs300-pyranometer',NULL),(12,'Unknown','12','Wind speed measured using a 03001 R.M. Young Wind Sentry Set (anemometer and vane). Daily statistics caluclated by the Campbell Scientific datalogger.','Wind speed measured using a 03001 R.M. Young Wind Sentry Set (anemometer and vane). Daily statistics caluclated by the Campbell Scientific datalogger.','',NULL),(13,'Unknown','13','Air temperature measured using a Campbell Scientific CS215 temperature and relative humidity sensor. Daily statistics calculated by the Campbell Scientific datalogger.','Air temperature measured using a Campbell Scientific CS215 temperature and relative humidity sensor. Daily statistics calculated by the Campbell Scientific datalogger.','',NULL),(14,'Unknown','14','Relative humidity measured using a Campbell Scientific CS215 temperature and relative humidity sensor. Daily statistics calculated by the Campbell Scientific datalogger.','Relative humidity measured using a Campbell Scientific CS215 temperature and relative humidity sensor. Daily statistics calculated by the Campbell Scientific datalogger.','',NULL),(15,'Unknown','15','Barometric pressure measured using a Setra Model 278 barometric pressure sensor. Daily statistics calculated by the Campbell Scientific datalogger.','Barometric pressure measured using a Setra Model 278 barometric pressure sensor. Daily statistics calculated by the Campbell Scientific datalogger.','',NULL),(16,'Unknown','16','Precipitation measured using a Texas Electronics TE525WS tipping bucket raing gage. Daily total calculated by the Campbell Scientific datalogger.','Precipitation measured using a Texas Electronics TE525WS tipping bucket raing gage. Daily total calculated by the Campbell Scientific datalogger.','',NULL),(17,'Unknown','17','Solar radiation measured using an Apogee PYR-P pyranometer. Daily total flux density calculated by the Campbell Scientific datalogger.','Solar radiation measured using an Apogee PYR-P pyranometer. Daily total flux density calculated by the Campbell Scientific datalogger.','',NULL),(18,'Unknown','18','Water temperature measured using a Hydrolab MS5 Water Quality Multiprobe.','Water temperature measured using a Hydrolab MS5 Water Quality Multiprobe.','http://www.hydrolab.com',NULL),(19,'Unknown','19','Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe.','Dissolved oxygen measured using a Hydrolab MS5 Water Quality Multiprobe.','http://www.hydrolab.com',NULL),(20,'Unknown','20','Specific conductance measured using a Hydrolab MS5 Water Quality Multiprobe.','Specific conductance measured using a Hydrolab MS5 Water Quality Multiprobe.','http://www.hydrolab.com',NULL),(21,'Unknown','21','pH measured using a Hydrolab MS5 Water Quality Multiprobe.','pH measured using a Hydrolab MS5 Water Quality Multiprobe.','http://www.hydrolab.com',NULL),(22,'Unknown','22','Battery voltage measured by a Campbell Scientific CR800 datalogger.','Battery voltage measured by a Campbell Scientific CR800 datalogger.','http://www.campbellsci.com',NULL),(23,'Unknown','23','Turbidity measured using a Hydroloab MS5 Water Quality Multiprobe.','Turbidity measured using a Hydroloab MS5 Water Quality Multiprobe.','http://www.hydrolab.com',NULL),(25,'Unknown','25','Water chemistry grab sample collected by technicians in the field.','Water chemistry grab sample collected by technicians in the field.',NULL,NULL),(28,'Unknown','28','Quality Control Level 1 Data Series created from raw QC Level 0 data using ODM Tools.','Quality Control Level 1 Data Series created from raw QC Level 0 data using ODM Tools.',NULL,NULL),(29,'Unknown','29','Discharge derived from water level measurements using a site specific stage-discharge relationship.','Discharge derived from water level measurements using a site specific stage-discharge relationship.',NULL,NULL),(31,'Unknown','31','Synthetic time series generated from continuous turbidity observations using surrogate relationships.','Synthetic time series generated from continuous turbidity observations using surrogate relationships.',NULL,NULL),(38,'Unknown','38','Wind speed measured using a 034B Met One Windset (anemometer and vane).','Wind speed measured using a 034B Met One Windset (anemometer and vane).',NULL,NULL),(39,'Unknown','39','Wind direction measured using a 034B Met One Windset (anemometer and vane).','Wind direction measured using a 034B Met One Windset (anemometer and vane).',NULL,NULL),(41,'Unknown','41','Distance measurement using a Campbell Scientific SR50A Sonic Ranging Sensor. Values are not corrected for temperature.','Distance measurement using a Campbell Scientific SR50A Sonic Ranging Sensor. Values are not corrected for temperature.',NULL,NULL),(42,'Unknown','42','Distance measurement using a Campbell Scientific SR50A Sonic Ranging Sensor. Values corrected for temperature using air temperature measurements.','Distance measurement using a Campbell Scientific SR50A Sonic Ranging Sensor. Values corrected for temperature using air temperature measurements.',NULL,NULL),(43,'Unknown','43','Snow depth measured using a Campbell Scientific SR50A Sonic Ranging Sensor. Values are corrected for temperature and a site specific sensor height offset.','Snow depth measured using a Campbell Scientific SR50A Sonic Ranging Sensor. Values are corrected for temperature and a site specific sensor height offset.',NULL,NULL),(44,'Unknown','44','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 2 cm below the soil surface.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 2 cm below the soil surface.','http://www.stevenswater.com',NULL),(45,'Unknown','45','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 2 cm below the soil surface. Values are corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 2 cm below the soil surface. Values are corrected for temperature.','http://www.stevenswater.com',NULL),(46,'Unknown','46','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 2 cm below the soil surface. Values are not corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 2 cm below the soil surface. Values are not corrected for temperature.','http://www.stevenswater.com',NULL),(47,'Unknown','47','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 4 cm below the soil surface.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 4 cm below the soil surface.',NULL,NULL),(48,'Unknown','48','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 4 cm below the soil surface. Values are corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 4 cm below the soil surface. Values are corrected for temperature.',NULL,NULL),(49,'Unknown','49','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 4 cm below the soil surface. Values are not corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 4 cm below the soil surface. Values are not corrected for temperature.',NULL,NULL),(50,'Unknown','50','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 8 cm below the soil surface.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 8 cm below the soil surface.',NULL,NULL),(51,'Unknown','51','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 8 cm below the soil surface. Values are corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 8 cm below the soil surface. Values are corrected for temperature.',NULL,NULL),(52,'Unknown','52','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 8 cm below the soil surface. Values are not corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 8 cm below the soil surface. Values are not corrected for temperature.',NULL,NULL),(53,'Unknown','53','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 20 cm below the soil surface.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 20 cm below the soil surface.',NULL,NULL),(54,'Unknown','54','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 20 cm below the soil surface. Values are corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 20 cm below the soil surface. Values are corrected for temperature.',NULL,NULL),(55,'Unknown','55','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 20 cm below the soil surface. Values are not corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 20 cm below the soil surface. Values are not corrected for temperature.',NULL,NULL),(56,'Unknown','56','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 40 cm below the soil surface.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 40 cm below the soil surface.',NULL,NULL),(57,'Unknown','57','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 40 cm below the soil surface. Values are corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 40 cm below the soil surface. Values are corrected for temperature.',NULL,NULL),(58,'Unknown','58','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 40 cm below the soil surface. Values are not corrected for temperature.','Measured using a Stevens Hydra-Probe II SDI-12 soil sensor installed 40 cm below the soil surface. Values are not corrected for temperature.',NULL,NULL),(59,'Specimen analysis','59','Unknown','Unknown',NULL,7),(60,'Specimen analysis','60','EPA 340.2','Total Suspended Solids, Mass Balance','http://www.usual.usu.edu/',8),(61,'Specimen analysis','61','EPA 200.8','Determination of Trace Elements in Water and Wastes by Inductively Coupled Plasma - Mass Spectrometry','http://www.usu.edu/uvdl/',11),(62,'Specimen analysis','62','Total Phosphorus','Determination of total phosphorus by digestion and ascorbic acid method','https://www.biology.usu.edu/index.cfm?labsites&baker-lab&aquatic-biogeochemistry-lab',9),(63,'Specimen analysis','63','EPA 365.2','Orthophosphate Ascorbic Acid Manual Single Reagent','http://www.waterquality.utah.gov/',10),(64,'Specimen analysis','64','EPA 160.2','Residue Nonfilterable TSS','http://www.waterquality.utah.gov/',10),(65,'Specimen analysis','65','Alkalinity Bicarbonate and Carbonate','Determination of carbonate and bicarbonate determined by hydrochloric acid titration','http://www.usual.usu.edu/',8),(66,'Specimen analysis','66','Total Nitrogen','Determination of total nitrogen by digestion and cadmium reduction method','https://www.biology.usu.edu/index.cfm?labsites&baker-lab&aquatic-biogeochemistry-lab',9),(67,'Specimen analysis','67','EPA 365.1 Rev 2','Phosphorus-P, Total, in Drinking, Saline, and Surface Waters, Domestic and Industrial Wastes','http://uwrl.usu.edu',12); +/*!40000 ALTER TABLE `Methods` ENABLE KEYS */; + +-- +-- Table structure for table `ModelAffiliations` +-- + +DROP TABLE IF EXISTS `ModelAffiliations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ModelAffiliations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ModelID` int(11) NOT NULL, + `AffiliationID` int(11) NOT NULL, + `IsPrimary` tinyint(1) NOT NULL, + `RoleDescription` varchar(500) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ModelAffiliations_Affiliations` (`AffiliationID`), + KEY `fk_ModelAffiliations_Models` (`ModelID`), + CONSTRAINT `fk_ModelAffiliations_Affiliations` FOREIGN KEY (`AffiliationID`) REFERENCES `Affiliations` (`AffiliationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ModelAffiliations_Models` FOREIGN KEY (`ModelID`) REFERENCES `Models` (`ModelID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ModelAffiliations` +-- + +/*!40000 ALTER TABLE `ModelAffiliations` DISABLE KEYS */; +/*!40000 ALTER TABLE `ModelAffiliations` ENABLE KEYS */; + +-- +-- Table structure for table `Models` +-- + +DROP TABLE IF EXISTS `Models`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Models` ( + `ModelID` int(11) NOT NULL AUTO_INCREMENT, + `ModelCode` varchar(50) NOT NULL, + `ModelName` varchar(255) NOT NULL, + `ModelDescription` varchar(500) DEFAULT NULL, + `Version` varchar(255) DEFAULT NULL, + `ModelLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`ModelID`) +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Models` +-- + +/*!40000 ALTER TABLE `Models` DISABLE KEYS */; +/*!40000 ALTER TABLE `Models` ENABLE KEYS */; + +-- +-- Table structure for table `Organizations` +-- + +DROP TABLE IF EXISTS `Organizations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Organizations` ( + `OrganizationID` int(11) NOT NULL AUTO_INCREMENT, + `OrganizationTypeCV` varchar(255) NOT NULL, + `OrganizationCode` varchar(50) NOT NULL, + `OrganizationName` varchar(255) NOT NULL, + `OrganizationDescription` varchar(500) DEFAULT NULL, + `OrganizationLink` varchar(255) DEFAULT NULL, + `ParentOrganizationID` int(11) DEFAULT NULL, + PRIMARY KEY (`OrganizationID`), + KEY `fk_Organizations_CV_OrganizationType` (`OrganizationTypeCV`), + KEY `fk_Organizations_Organizations` (`ParentOrganizationID`), + CONSTRAINT `fk_Organizations_CV_OrganizationType` FOREIGN KEY (`OrganizationTypeCV`) REFERENCES `CV_OrganizationType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Organizations_Organizations` FOREIGN KEY (`ParentOrganizationID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Organizations` +-- + +/*!40000 ALTER TABLE `Organizations` DISABLE KEYS */; +INSERT INTO `Organizations` VALUES (1,'Research institute','1','Utah State University Utah Water Research Laboratory','Continuous water quality monitoring by Utah State University as part of the USDA CEAP Grant','http://www.bearriverinfo.org',NULL),(2,'Research institute','2','Utah State University Utah Water Research Laboratory','Continuous monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project.','http://water.usu.edu/littlebearriver',NULL),(3,'Research institute','3','Utah State University Utah Water Research Laboratory','Water chemistry monitoring data collected by Utah State University as part of a National Science Foundation funded test bed project.','http://water.usu.edu/littlebearriver',NULL),(4,'Research institute','4','Utah State University Department of Watershed Sciences','Water chemistry monitoring data collected by Utah State Univeristy as part of the USDA CEAP Grant.','http://water.usu.edu/littlebearriver',NULL),(6,'Research institute','6','Utah State University Utah Water Research Laboratory','Continuous time series concentration estimates generated by the Little Bear River test bed project for the purpose of high frequency water quality constituent load estimates.','http://littlebearriver.usu.edu',NULL),(7,'Analytical laboratory','Unknown','Unknown','Unknown',NULL,NULL),(8,'Analytical laboratory','USU Analytical Laboratory','USU Analytical Laboratory','Utah State University',NULL,NULL),(9,'Analytical laboratory','USU Aquatic Biogeochemistry Laboratory','USU Aquatic Biogeochemistry Laboratory','Utah State University',NULL,NULL),(10,'Analytical laboratory','Utah Division of Water Quality','Utah Division of Water Quality','Utah Department of Environmental Quality',NULL,NULL),(11,'Analytical laboratory','Utah Veterinary Diagnostic Laboratory','Utah Veterinary Diagnostic Laboratory','Utah State University',NULL,NULL),(12,'Analytical laboratory','UWRL Environmental Quality Laboratory','UWRL Environmental Quality Laboratory','Utah Water Research Laboratory',NULL,NULL); +/*!40000 ALTER TABLE `Organizations` ENABLE KEYS */; + +-- +-- Table structure for table `People` +-- + +DROP TABLE IF EXISTS `People`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `People` ( + `PersonID` int(11) NOT NULL AUTO_INCREMENT, + `PersonFirstName` varchar(255) NOT NULL, + `PersonMiddleName` varchar(255) DEFAULT NULL, + `PersonLastName` varchar(255) NOT NULL, + PRIMARY KEY (`PersonID`) +) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `People` +-- + +/*!40000 ALTER TABLE `People` DISABLE KEYS */; +INSERT INTO `People` VALUES (1,'Jeff',NULL,'Horsburgh'),(2,'Nancy',NULL,'Mesner'),(3,'Amber',NULL,'Spackman'); +/*!40000 ALTER TABLE `People` ENABLE KEYS */; + +-- +-- Table structure for table `PersonExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `PersonExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `PersonExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `PersonID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `PersonExternalIdentifier` varchar(255) NOT NULL, + `PersonExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_PersonExternalIdentifiers_ExternalIdentifierSystems` (`ExternalIdentifierSystemID`), + KEY `fk_PersonExternalIdentifiers_People` (`PersonID`), + CONSTRAINT `fk_PersonExternalIdentifiers_ExternalIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PersonExternalIdentifiers_People` FOREIGN KEY (`PersonID`) REFERENCES `People` (`PersonID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `PersonExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `PersonExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `PersonExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `PointCoverageResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `PointCoverageResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `PointCoverageResultValueAnnotations` ( + `BridgeID` bigint(20) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_PointCoverageResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_PointCoverageResultValueAnnotations_PointCoverageResultValues` (`ValueID`), + CONSTRAINT `fk_PointCoverageResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResultValueAnnotations_PointCoverageResultValues` FOREIGN KEY (`ValueID`) REFERENCES `PointCoverageResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `PointCoverageResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `PointCoverageResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `PointCoverageResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `PointCoverageResultValues` +-- + +DROP TABLE IF EXISTS `PointCoverageResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `PointCoverageResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` bigint(20) NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + `XLocation` double NOT NULL, + `XLocationUnitsID` int(11) NOT NULL, + `YLocation` double NOT NULL, + `YLocationUnitsID` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_PointCoverageResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_PointCoverageResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_PointCoverageResultValues_PointCoverageResults` (`ResultID`), + KEY `fk_PointCoverageResultValues_XUnits` (`XLocationUnitsID`), + KEY `fk_PointCoverageResultValues_YUnits` (`YLocationUnitsID`), + CONSTRAINT `fk_PointCoverageResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResultValues_PointCoverageResults` FOREIGN KEY (`ResultID`) REFERENCES `PointCoverageResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResultValues_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResultValues_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `PointCoverageResultValues` +-- + +/*!40000 ALTER TABLE `PointCoverageResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `PointCoverageResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `PointCoverageResults` +-- + +DROP TABLE IF EXISTS `PointCoverageResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `PointCoverageResults` ( + `ResultID` bigint(20) NOT NULL, + `ZLocation` double DEFAULT NULL, + `ZLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedXSpacing` double DEFAULT NULL, + `IntendedXSpacingUnitsID` int(11) DEFAULT NULL, + `IntendedYSpacing` double DEFAULT NULL, + `IntendedYSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_PointCoverageResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_PointCoverageResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_PointCoverageResults_XUnits` (`IntendedXSpacingUnitsID`), + KEY `fk_PointCoverageResults_YUnits` (`IntendedYSpacingUnitsID`), + KEY `fk_PointCoverageResults_ZUnits` (`ZLocationUnitsID`), + CONSTRAINT `fk_PointCoverageResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResults_XUnits` FOREIGN KEY (`IntendedXSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResults_YUnits` FOREIGN KEY (`IntendedYSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_PointCoverageResults_ZUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `PointCoverageResults` +-- + +/*!40000 ALTER TABLE `PointCoverageResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `PointCoverageResults` ENABLE KEYS */; + +-- +-- Table structure for table `ProcessingLevels` +-- + +DROP TABLE IF EXISTS `ProcessingLevels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ProcessingLevels` ( + `ProcessingLevelID` int(11) NOT NULL AUTO_INCREMENT, + `ProcessingLevelCode` varchar(50) NOT NULL, + `Definition` varchar(500) DEFAULT NULL, + `Explanation` varchar(500) DEFAULT NULL, + PRIMARY KEY (`ProcessingLevelID`) +) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ProcessingLevels` +-- + +/*!40000 ALTER TABLE `ProcessingLevels` DISABLE KEYS */; +INSERT INTO `ProcessingLevels` VALUES (-9999,'-9999','Unknown','The quality control level is unknown'),(0,'0','Raw data','Raw and unprocessed data and data products that have not undergone quality control. Depending on the variable, data type, and data transmission system, raw data may be available within seconds or minutes after the measurements have been made. Examples include real time precipitation, streamflow and water quality measurements.'),(1,'1','Quality controlled data','Quality controlled data that have passed quality assurance procedures such as routine estimation of timing and sensor calibration or visual inspection and removal of obvious errors. An example is USGS published streamflow records following parsing through USGS quality control procedures.'),(2,'2','Derived products','Derived products that require scientific and technical interpretation and may include multiple-sensor data. An example is basin average precipitation derived from rain gages using an interpolation procedure.'),(3,'3','Interpreted products','Interpreted products that require researcher driven analysis and interpretation, model-based interpretation using other data and/or strong prior assumptions. An example is basin average precipitation derived from the combination of rain gages and radar return data.'),(4,'4','Knowledge products','Knowledge products that require researcher driven scientific interpretation and multidisciplinary data integration and include model-based interpretation using other data and/or strong prior assumptions. An example is percentages of old or new water in a hydrograph inferred from an isotope analysis.'); +/*!40000 ALTER TABLE `ProcessingLevels` ENABLE KEYS */; + +-- +-- Table structure for table `ProfileResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `ProfileResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ProfileResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ProfileResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_ProfileResultValueAnnotations_ProfileResultValues` (`ValueID`), + CONSTRAINT `fk_ProfileResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResultValueAnnotations_ProfileResultValues` FOREIGN KEY (`ValueID`) REFERENCES `ProfileResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ProfileResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `ProfileResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `ProfileResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `ProfileResultValues` +-- + +DROP TABLE IF EXISTS `ProfileResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ProfileResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + `ZLocation` double NOT NULL, + `ZAggregationInterval` double NOT NULL, + `ZLocationUnitsID` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_ProfileResultValues_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_ProfileResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_ProfileResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_ProfileResultValues_DUnits` (`ZLocationUnitsID`), + KEY `fk_ProfileResultValues_ProfileResults` (`ResultID`), + CONSTRAINT `fk_ProfileResultValues_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResultValues_DUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResultValues_ProfileResults` FOREIGN KEY (`ResultID`) REFERENCES `ProfileResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ProfileResultValues` +-- + +/*!40000 ALTER TABLE `ProfileResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `ProfileResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `ProfileResults` +-- + +DROP TABLE IF EXISTS `ProfileResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ProfileResults` ( + `ResultID` bigint(20) NOT NULL, + `XLocation` double DEFAULT NULL, + `XLocationUnitsID` int(11) DEFAULT NULL, + `YLocation` double DEFAULT NULL, + `YLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedZSpacing` double DEFAULT NULL, + `IntendedZSpacingUnitsID` int(11) DEFAULT NULL, + `IntendedTimeSpacing` double DEFAULT NULL, + `IntendedTimeSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_ProfileResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_ProfileResults_DUnits` (`IntendedZSpacingUnitsID`), + KEY `fk_ProfileResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_ProfileResults_TUnits` (`IntendedTimeSpacingUnitsID`), + KEY `fk_ProfileResults_XUnits` (`XLocationUnitsID`), + KEY `fk_ProfileResults_YUnits` (`YLocationUnitsID`), + CONSTRAINT `fk_ProfileResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResults_DUnits` FOREIGN KEY (`IntendedZSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResults_TUnits` FOREIGN KEY (`IntendedTimeSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResults_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ProfileResults_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ProfileResults` +-- + +/*!40000 ALTER TABLE `ProfileResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `ProfileResults` ENABLE KEYS */; + +-- +-- Table structure for table `ReferenceMaterialExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `ReferenceMaterialExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ReferenceMaterialExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ReferenceMaterialID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `ReferenceMaterialExternalIdentifier` varchar(255) NOT NULL, + `ReferenceMaterialExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_RefMaterialExtIdentifiers_ExtIdentifierSystems` (`ExternalIdentifierSystemID`), + KEY `fk_RefMaterialExtIdentifiers_RefMaterials` (`ReferenceMaterialID`), + CONSTRAINT `fk_RefMaterialExtIdentifiers_ExtIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RefMaterialExtIdentifiers_RefMaterials` FOREIGN KEY (`ReferenceMaterialID`) REFERENCES `ReferenceMaterials` (`ReferenceMaterialID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ReferenceMaterialExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `ReferenceMaterialExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `ReferenceMaterialExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `ReferenceMaterialValues` +-- + +DROP TABLE IF EXISTS `ReferenceMaterialValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ReferenceMaterialValues` ( + `ReferenceMaterialValueID` int(11) NOT NULL, + `ReferenceMaterialID` int(11) NOT NULL, + `ReferenceMaterialValue` double NOT NULL, + `ReferenceMaterialAccuracy` double DEFAULT NULL, + `VariableID` int(11) NOT NULL, + `UnitsID` int(11) NOT NULL, + `CitationID` int(11) NOT NULL, + PRIMARY KEY (`ReferenceMaterialValueID`), + KEY `fk_ReferenceMaterialValues_Citations` (`CitationID`), + KEY `fk_ReferenceMaterialValues_ReferenceMaterials` (`ReferenceMaterialID`), + KEY `fk_ReferenceMaterialValues_Units` (`UnitsID`), + KEY `fk_ReferenceMaterialValues_Variables` (`VariableID`), + CONSTRAINT `fk_ReferenceMaterialValues_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ReferenceMaterialValues_ReferenceMaterials` FOREIGN KEY (`ReferenceMaterialID`) REFERENCES `ReferenceMaterials` (`ReferenceMaterialID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ReferenceMaterialValues_Units` FOREIGN KEY (`UnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ReferenceMaterialValues_Variables` FOREIGN KEY (`VariableID`) REFERENCES `Variables` (`VariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ReferenceMaterialValues` +-- + +/*!40000 ALTER TABLE `ReferenceMaterialValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `ReferenceMaterialValues` ENABLE KEYS */; + +-- +-- Table structure for table `ReferenceMaterials` +-- + +DROP TABLE IF EXISTS `ReferenceMaterials`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ReferenceMaterials` ( + `ReferenceMaterialID` int(11) NOT NULL AUTO_INCREMENT, + `ReferenceMaterialMediumCV` varchar(255) NOT NULL, + `ReferenceMaterialOrganizationID` int(11) NOT NULL, + `ReferenceMaterialCode` varchar(50) NOT NULL, + `ReferenceMaterialLotCode` varchar(255) DEFAULT NULL, + `ReferenceMaterialPurchaseDate` datetime DEFAULT NULL, + `ReferenceMaterialExpirationDate` datetime DEFAULT NULL, + `ReferenceMaterialCertificateLink` varchar(255) DEFAULT NULL, + `SamplingFeatureID` int(11) DEFAULT NULL, + PRIMARY KEY (`ReferenceMaterialID`), + KEY `fk_ReferenceMaterials_CV_Medium` (`ReferenceMaterialMediumCV`), + KEY `fk_ReferenceMaterials_Organizations` (`ReferenceMaterialOrganizationID`), + KEY `fk_ReferenceMaterials_SamplingFeatures` (`SamplingFeatureID`), + CONSTRAINT `fk_ReferenceMaterials_CV_Medium` FOREIGN KEY (`ReferenceMaterialMediumCV`) REFERENCES `CV_Medium` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ReferenceMaterials_Organizations` FOREIGN KEY (`ReferenceMaterialOrganizationID`) REFERENCES `Organizations` (`OrganizationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ReferenceMaterials_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ReferenceMaterials` +-- + +/*!40000 ALTER TABLE `ReferenceMaterials` DISABLE KEYS */; +/*!40000 ALTER TABLE `ReferenceMaterials` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedActions` +-- + +DROP TABLE IF EXISTS `RelatedActions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedActions` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedActionID` int(11) NOT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_RelatedActions_Actions` (`ActionID`), + KEY `fk_RelatedActions_Actions_AreRelated` (`RelatedActionID`), + KEY `fk_RelatedActions_CV_RelationshipType` (`RelationshipTypeCV`), + CONSTRAINT `fk_RelatedActions_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedActions_Actions_AreRelated` FOREIGN KEY (`RelatedActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedActions_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedActions` +-- + +/*!40000 ALTER TABLE `RelatedActions` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedActions` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedAnnotations` +-- + +DROP TABLE IF EXISTS `RelatedAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedAnnotations` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `AnnotationID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedAnnotationID` int(11) NOT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_RelatedAnnotations_Annotations` (`AnnotationID`), + KEY `fk_RelatedAnnotations_Annotations_AreRelated` (`RelatedAnnotationID`), + KEY `fk_RelatedAnnotations_CV_RelationshipType` (`RelationshipTypeCV`), + CONSTRAINT `fk_RelatedAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedAnnotations_Annotations_AreRelated` FOREIGN KEY (`RelatedAnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedAnnotations_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedAnnotations` +-- + +/*!40000 ALTER TABLE `RelatedAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedCitations` +-- + +DROP TABLE IF EXISTS `RelatedCitations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedCitations` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `CitationID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedCitationID` int(11) NOT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_RelatedCitations_Citations` (`CitationID`), + KEY `fk_RelatedCitations_Citations_AreRelated` (`RelatedCitationID`), + KEY `fk_RelatedCitations_CV_RelationshipType` (`RelationshipTypeCV`), + CONSTRAINT `fk_RelatedCitations_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedCitations_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedCitations_Citations_AreRelated` FOREIGN KEY (`RelatedCitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedCitations` +-- + +/*!40000 ALTER TABLE `RelatedCitations` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedCitations` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedDatasets` +-- + +DROP TABLE IF EXISTS `RelatedDatasets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedDatasets` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `DataSetID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedDatasetID` int(11) NOT NULL, + `VersionCode` varchar(50) DEFAULT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_RelatedDatasets_CV_RelationshipType` (`RelationshipTypeCV`), + KEY `fk_RelatedDatasets_DataSets` (`DataSetID`), + KEY `fk_RelatedDatasets_DataSets_AreRelated` (`RelatedDatasetID`), + CONSTRAINT `fk_RelatedDatasets_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedDatasets_DataSets` FOREIGN KEY (`DataSetID`) REFERENCES `Datasets` (`DatasetID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedDatasets_DataSets_AreRelated` FOREIGN KEY (`RelatedDatasetID`) REFERENCES `Datasets` (`DatasetID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedDatasets` +-- + +/*!40000 ALTER TABLE `RelatedDatasets` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedDatasets` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedEquipment` +-- + +DROP TABLE IF EXISTS `RelatedEquipment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedEquipment` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `EquipmentID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedEquipmentID` int(11) NOT NULL, + `RelationshipStartDateTime` datetime NOT NULL, + `RelationshipStartDateTimeUTCOffset` int(11) NOT NULL, + `RelationshipEndDateTime` datetime DEFAULT NULL, + `RelationshipEndDateTimeUTCOffset` int(11) DEFAULT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_RelatedEquipment_CV_RelationshipType` (`RelationshipTypeCV`), + KEY `fk_RelatedEquipment_Equipment` (`EquipmentID`), + KEY `fk_RelatedEquipment_Equipment_AreRelated` (`RelatedEquipmentID`), + CONSTRAINT `fk_RelatedEquipment_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedEquipment_Equipment` FOREIGN KEY (`EquipmentID`) REFERENCES `Equipment` (`EquipmentID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedEquipment_Equipment_AreRelated` FOREIGN KEY (`RelatedEquipmentID`) REFERENCES `Equipment` (`EquipmentID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedEquipment` +-- + +/*!40000 ALTER TABLE `RelatedEquipment` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedEquipment` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedFeatures` +-- + +DROP TABLE IF EXISTS `RelatedFeatures`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedFeatures` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedFeatureID` int(11) NOT NULL, + `SpatialOffsetID` int(11) DEFAULT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_FeatureParents_FeaturesParent` (`RelatedFeatureID`), + KEY `fk_FeatureParents_SamplingFeatures` (`SamplingFeatureID`), + KEY `fk_FeatureParents_SpatialOffsets` (`SpatialOffsetID`), + KEY `fk_RelatedFeatures_CV_RelationshipType` (`RelationshipTypeCV`), + CONSTRAINT `fk_FeatureParents_FeaturesParent` FOREIGN KEY (`RelatedFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_FeatureParents_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_FeatureParents_SpatialOffsets` FOREIGN KEY (`SpatialOffsetID`) REFERENCES `SpatialOffsets` (`SpatialOffsetID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedFeatures_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=699 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedFeatures` +-- + +/*!40000 ALTER TABLE `RelatedFeatures` DISABLE KEYS */; +INSERT INTO `RelatedFeatures` VALUES (1,15,'Was collected at',1,NULL),(2,16,'Was collected at',1,NULL),(3,17,'Was collected at',1,NULL),(4,18,'Was collected at',1,NULL),(5,19,'Was collected at',1,NULL),(6,20,'Was collected at',1,NULL),(7,21,'Was collected at',1,NULL),(8,22,'Was collected at',1,NULL),(9,23,'Was collected at',1,NULL),(10,24,'Was collected at',1,NULL),(11,25,'Was collected at',1,NULL),(12,26,'Was collected at',1,NULL),(13,27,'Was collected at',1,NULL),(14,28,'Was collected at',1,NULL),(15,29,'Was collected at',1,NULL),(16,30,'Was collected at',1,NULL),(17,31,'Was collected at',1,NULL),(18,32,'Was collected at',1,NULL),(19,33,'Was collected at',1,NULL),(20,34,'Was collected at',1,NULL),(21,35,'Was collected at',1,NULL),(22,36,'Was collected at',1,NULL),(23,37,'Was collected at',1,NULL),(24,38,'Was collected at',1,NULL),(25,39,'Was collected at',1,NULL),(26,40,'Was collected at',1,NULL),(27,41,'Was collected at',1,NULL),(28,42,'Was collected at',1,NULL),(29,43,'Was collected at',1,NULL),(30,44,'Was collected at',1,NULL),(31,45,'Was collected at',1,NULL),(32,46,'Was collected at',1,NULL),(33,47,'Was collected at',1,NULL),(34,48,'Was collected at',1,NULL),(35,49,'Was collected at',1,NULL),(36,50,'Was collected at',1,NULL),(37,51,'Was collected at',1,NULL),(38,52,'Was collected at',1,NULL),(39,53,'Was collected at',1,NULL),(40,54,'Was collected at',1,NULL),(41,55,'Was collected at',1,NULL),(42,56,'Was collected at',1,NULL),(43,57,'Was collected at',1,NULL),(44,58,'Was collected at',1,NULL),(45,59,'Was collected at',1,NULL),(46,60,'Was collected at',1,NULL),(47,61,'Was collected at',1,NULL),(48,62,'Was collected at',1,NULL),(49,63,'Was collected at',1,NULL),(50,64,'Was collected at',1,NULL),(51,65,'Was collected at',1,NULL),(52,66,'Was collected at',1,NULL),(53,67,'Was collected at',1,NULL),(54,68,'Was collected at',1,NULL),(55,69,'Was collected at',1,NULL),(56,70,'Was collected at',1,NULL),(57,71,'Was collected at',1,NULL),(58,72,'Was collected at',1,NULL),(59,73,'Was collected at',1,NULL),(60,74,'Was collected at',1,NULL),(61,75,'Was collected at',1,NULL),(62,76,'Was collected at',1,NULL),(63,77,'Was collected at',1,NULL),(64,78,'Was collected at',1,NULL),(65,79,'Was collected at',1,NULL),(66,80,'Was collected at',1,NULL),(67,81,'Was collected at',1,NULL),(68,82,'Was collected at',1,NULL),(69,83,'Was collected at',1,NULL),(70,84,'Was collected at',1,NULL),(71,85,'Was collected at',1,NULL),(72,86,'Was collected at',1,NULL),(73,87,'Was collected at',1,NULL),(74,88,'Was collected at',1,NULL),(75,89,'Was collected at',1,NULL),(76,90,'Was collected at',1,NULL),(77,91,'Was collected at',1,NULL),(78,92,'Was collected at',1,NULL),(79,93,'Was collected at',1,NULL),(80,94,'Was collected at',1,NULL),(81,95,'Was collected at',1,NULL),(82,96,'Was collected at',1,NULL),(83,97,'Was collected at',1,NULL),(84,98,'Was collected at',1,NULL),(85,99,'Was collected at',1,NULL),(86,100,'Was collected at',1,NULL),(87,101,'Was collected at',1,NULL),(88,102,'Was collected at',1,NULL),(89,103,'Was collected at',1,NULL),(90,104,'Was collected at',1,NULL),(91,105,'Was collected at',1,NULL),(92,106,'Was collected at',1,NULL),(93,107,'Was collected at',1,NULL),(94,108,'Was collected at',1,NULL),(95,109,'Was collected at',1,NULL),(96,110,'Was collected at',1,NULL),(97,111,'Was collected at',1,NULL),(98,112,'Was collected at',1,NULL),(99,113,'Was collected at',1,NULL),(100,114,'Was collected at',1,NULL),(101,115,'Was collected at',1,NULL),(102,116,'Was collected at',1,NULL),(103,117,'Was collected at',1,NULL),(104,118,'Was collected at',1,NULL),(105,119,'Was collected at',1,NULL),(106,120,'Was collected at',1,NULL),(107,121,'Was collected at',1,NULL),(108,122,'Was collected at',1,NULL),(109,123,'Was collected at',1,NULL),(110,124,'Was collected at',1,NULL),(111,125,'Was collected at',1,NULL),(112,126,'Was collected at',1,NULL),(113,127,'Was collected at',1,NULL),(114,128,'Was collected at',1,NULL),(115,129,'Was collected at',1,NULL),(116,130,'Was collected at',1,NULL),(117,131,'Was collected at',1,NULL),(118,132,'Was collected at',1,NULL),(119,133,'Was collected at',1,NULL),(120,134,'Was collected at',1,NULL),(121,135,'Was collected at',1,NULL),(122,136,'Was collected at',1,NULL),(123,137,'Was collected at',1,NULL),(124,138,'Was collected at',1,NULL),(125,139,'Was collected at',1,NULL),(126,140,'Was collected at',1,NULL),(127,141,'Was collected at',1,NULL),(128,142,'Was collected at',1,NULL),(129,143,'Was collected at',1,NULL),(130,144,'Was collected at',1,NULL),(131,145,'Was collected at',1,NULL),(132,146,'Was collected at',1,NULL),(133,147,'Was collected at',1,NULL),(134,148,'Was collected at',1,NULL),(135,149,'Was collected at',1,NULL),(136,150,'Was collected at',1,NULL),(137,151,'Was collected at',1,NULL),(138,152,'Was collected at',1,NULL),(139,153,'Was collected at',1,NULL),(140,154,'Was collected at',1,NULL),(141,155,'Was collected at',1,NULL),(142,156,'Was collected at',1,NULL),(143,157,'Was collected at',1,NULL),(144,158,'Was collected at',1,NULL),(145,159,'Was collected at',1,NULL),(146,160,'Was collected at',1,NULL),(147,161,'Was collected at',1,NULL),(148,162,'Was collected at',1,NULL),(149,163,'Was collected at',1,NULL),(150,164,'Was collected at',1,NULL),(151,165,'Was collected at',1,NULL),(152,166,'Was collected at',1,NULL),(153,167,'Was collected at',1,NULL),(154,168,'Was collected at',1,NULL),(155,169,'Was collected at',1,NULL),(156,170,'Was collected at',1,NULL),(157,171,'Was collected at',1,NULL),(158,172,'Was collected at',1,NULL),(159,173,'Was collected at',1,NULL),(160,174,'Was collected at',1,NULL),(161,175,'Was collected at',1,NULL),(162,176,'Was collected at',1,NULL),(163,177,'Was collected at',1,NULL),(164,178,'Was collected at',1,NULL),(165,179,'Was collected at',1,NULL),(166,180,'Was collected at',1,NULL),(167,181,'Was collected at',1,NULL),(168,182,'Was collected at',1,NULL),(169,183,'Was collected at',1,NULL),(170,184,'Was collected at',1,NULL),(171,185,'Was collected at',1,NULL),(172,186,'Was collected at',1,NULL),(173,187,'Was collected at',1,NULL),(174,188,'Was collected at',1,NULL),(175,189,'Was collected at',1,NULL),(176,190,'Was collected at',1,NULL),(177,191,'Was collected at',1,NULL),(178,192,'Was collected at',1,NULL),(179,193,'Was collected at',1,NULL),(180,194,'Was collected at',1,NULL),(181,195,'Was collected at',1,NULL),(182,196,'Was collected at',1,NULL),(183,197,'Was collected at',1,NULL),(184,198,'Was collected at',1,NULL),(185,199,'Was collected at',1,NULL),(186,200,'Was collected at',1,NULL),(187,201,'Was collected at',1,NULL),(188,202,'Was collected at',1,NULL),(189,203,'Was collected at',1,NULL),(190,204,'Was collected at',1,NULL),(191,205,'Was collected at',1,NULL),(192,206,'Was collected at',1,NULL),(193,207,'Was collected at',1,NULL),(194,208,'Was collected at',1,NULL),(195,209,'Was collected at',1,NULL),(196,210,'Was collected at',1,NULL),(197,211,'Was collected at',1,NULL),(198,212,'Was collected at',1,NULL),(199,213,'Was collected at',1,NULL),(200,214,'Was collected at',1,NULL),(201,215,'Was collected at',1,NULL),(202,216,'Was collected at',1,NULL),(203,217,'Was collected at',1,NULL),(204,218,'Was collected at',1,NULL),(205,219,'Was collected at',1,NULL),(206,220,'Was collected at',1,NULL),(207,221,'Was collected at',1,NULL),(208,222,'Was collected at',1,NULL),(209,223,'Was collected at',1,NULL),(210,224,'Was collected at',1,NULL),(211,225,'Was collected at',1,NULL),(212,226,'Was collected at',1,NULL),(213,227,'Was collected at',1,NULL),(214,228,'Was collected at',1,NULL),(215,229,'Was collected at',1,NULL),(216,230,'Was collected at',1,NULL),(217,231,'Was collected at',1,NULL),(218,232,'Was collected at',1,NULL),(219,233,'Was collected at',1,NULL),(220,234,'Was collected at',1,NULL),(221,235,'Was collected at',1,NULL),(222,236,'Was collected at',1,NULL),(223,237,'Was collected at',1,NULL),(224,238,'Was collected at',1,NULL),(225,239,'Was collected at',1,NULL),(226,240,'Was collected at',1,NULL),(227,241,'Was collected at',1,NULL),(228,242,'Was collected at',1,NULL),(229,243,'Was collected at',1,NULL),(230,244,'Was collected at',1,NULL),(231,245,'Was collected at',1,NULL),(232,246,'Was collected at',1,NULL),(233,247,'Was collected at',1,NULL),(234,248,'Was collected at',1,NULL),(235,249,'Was collected at',1,NULL),(236,250,'Was collected at',1,NULL),(237,251,'Was collected at',1,NULL),(238,252,'Was collected at',1,NULL),(239,253,'Was collected at',1,NULL),(240,254,'Was collected at',1,NULL),(241,255,'Was collected at',1,NULL),(242,256,'Was collected at',1,NULL),(243,257,'Was collected at',1,NULL),(244,258,'Was collected at',1,NULL),(245,259,'Was collected at',1,NULL),(246,260,'Was collected at',1,NULL),(247,261,'Was collected at',1,NULL),(248,262,'Was collected at',1,NULL),(249,263,'Was collected at',1,NULL),(250,264,'Was collected at',1,NULL),(251,265,'Was collected at',1,NULL),(252,266,'Was collected at',1,NULL),(253,267,'Was collected at',1,NULL),(254,268,'Was collected at',1,NULL),(255,269,'Was collected at',1,NULL),(256,270,'Was collected at',1,NULL),(257,271,'Was collected at',1,NULL),(258,272,'Was collected at',1,NULL),(259,273,'Was collected at',1,NULL),(260,274,'Was collected at',1,NULL),(261,275,'Was collected at',1,NULL),(262,276,'Was collected at',1,NULL),(263,277,'Was collected at',1,NULL),(264,278,'Was collected at',1,NULL),(265,279,'Was collected at',1,NULL),(266,280,'Was collected at',1,NULL),(267,281,'Was collected at',1,NULL),(268,282,'Was collected at',1,NULL),(269,283,'Was collected at',1,NULL),(270,284,'Was collected at',1,NULL),(271,285,'Was collected at',1,NULL),(272,286,'Was collected at',1,NULL),(273,287,'Was collected at',1,NULL),(274,288,'Was collected at',1,NULL),(275,289,'Was collected at',1,NULL),(276,290,'Was collected at',1,NULL),(277,291,'Was collected at',1,NULL),(278,292,'Was collected at',1,NULL),(279,293,'Was collected at',1,NULL),(280,294,'Was collected at',1,NULL),(281,295,'Was collected at',1,NULL),(282,296,'Was collected at',1,NULL),(283,297,'Was collected at',1,NULL),(284,298,'Was collected at',1,NULL),(285,299,'Was collected at',1,NULL),(286,300,'Was collected at',1,NULL),(287,301,'Was collected at',1,NULL),(288,302,'Was collected at',1,NULL),(289,303,'Was collected at',1,NULL),(290,304,'Was collected at',1,NULL),(291,305,'Was collected at',1,NULL),(292,306,'Was collected at',1,NULL),(293,307,'Was collected at',1,NULL),(294,308,'Was collected at',1,NULL),(295,309,'Was collected at',1,NULL),(296,310,'Was collected at',1,NULL),(297,311,'Was collected at',1,NULL),(298,312,'Was collected at',1,NULL),(299,313,'Was collected at',1,NULL),(300,314,'Was collected at',1,NULL),(301,315,'Was collected at',1,NULL),(302,316,'Was collected at',1,NULL),(303,317,'Was collected at',1,NULL),(304,318,'Was collected at',1,NULL),(305,319,'Was collected at',1,NULL),(306,320,'Was collected at',1,NULL),(307,321,'Was collected at',1,NULL),(308,322,'Was collected at',1,NULL),(309,323,'Was collected at',1,NULL),(310,324,'Was collected at',1,NULL),(311,325,'Was collected at',1,NULL),(312,326,'Was collected at',1,NULL),(313,327,'Was collected at',1,NULL),(314,328,'Was collected at',1,NULL),(315,329,'Was collected at',1,NULL),(316,330,'Was collected at',1,NULL),(317,331,'Was collected at',1,NULL),(318,332,'Was collected at',1,NULL),(319,333,'Was collected at',1,NULL),(320,334,'Was collected at',1,NULL),(321,335,'Was collected at',1,NULL),(322,336,'Was collected at',1,NULL),(323,337,'Was collected at',1,NULL),(324,338,'Was collected at',1,NULL),(325,339,'Was collected at',1,NULL),(326,340,'Was collected at',1,NULL),(327,341,'Was collected at',1,NULL),(328,342,'Was collected at',1,NULL),(329,343,'Was collected at',1,NULL),(330,344,'Was collected at',1,NULL),(331,345,'Was collected at',1,NULL),(332,346,'Was collected at',1,NULL),(333,347,'Was collected at',1,NULL),(334,348,'Was collected at',1,NULL),(335,349,'Was collected at',1,NULL),(336,350,'Was collected at',1,NULL),(337,351,'Was collected at',1,NULL),(338,352,'Was collected at',1,NULL),(339,353,'Was collected at',1,NULL),(340,354,'Was collected at',1,NULL),(341,355,'Was collected at',1,NULL),(342,356,'Was collected at',1,NULL),(343,357,'Was collected at',1,NULL),(344,358,'Was collected at',1,NULL),(345,359,'Was collected at',1,NULL),(346,360,'Was collected at',1,NULL),(347,361,'Was collected at',1,NULL),(348,362,'Was collected at',1,NULL),(349,363,'Was collected at',1,NULL),(350,364,'Was collected at',1,NULL),(351,365,'Was collected at',1,NULL),(352,366,'Was collected at',1,NULL),(353,367,'Was collected at',1,NULL),(354,368,'Was collected at',1,NULL),(355,369,'Was collected at',1,NULL),(356,370,'Was collected at',1,NULL),(357,371,'Was collected at',1,NULL),(358,372,'Was collected at',1,NULL),(359,373,'Was collected at',1,NULL),(360,374,'Was collected at',1,NULL),(361,375,'Was collected at',1,NULL),(362,376,'Was collected at',1,NULL),(363,377,'Was collected at',1,NULL),(364,378,'Was collected at',1,NULL),(365,379,'Was collected at',1,NULL),(366,380,'Was collected at',1,NULL),(367,381,'Was collected at',1,NULL),(368,382,'Was collected at',1,NULL),(369,383,'Was collected at',1,NULL),(370,384,'Was collected at',1,NULL),(371,385,'Was collected at',1,NULL),(372,386,'Was collected at',1,NULL),(373,387,'Was collected at',1,NULL),(374,388,'Was collected at',1,NULL),(375,389,'Was collected at',1,NULL),(376,390,'Was collected at',1,NULL),(377,391,'Was collected at',1,NULL),(378,392,'Was collected at',1,NULL),(379,393,'Was collected at',1,NULL),(380,394,'Was collected at',1,NULL),(381,395,'Was collected at',1,NULL),(382,396,'Was collected at',1,NULL),(383,397,'Was collected at',1,NULL),(384,398,'Was collected at',1,NULL),(385,399,'Was collected at',1,NULL),(386,400,'Was collected at',1,NULL),(387,401,'Was collected at',1,NULL),(388,402,'Was collected at',1,NULL),(389,403,'Was collected at',1,NULL),(390,404,'Was collected at',1,NULL),(391,405,'Was collected at',1,NULL),(392,406,'Was collected at',1,NULL),(393,407,'Was collected at',1,NULL),(394,408,'Was collected at',1,NULL),(395,409,'Was collected at',1,NULL),(396,410,'Was collected at',1,NULL),(397,411,'Was collected at',1,NULL),(398,412,'Was collected at',1,NULL),(399,413,'Was collected at',1,NULL),(400,414,'Was collected at',1,NULL),(401,415,'Was collected at',1,NULL),(402,416,'Was collected at',1,NULL),(403,417,'Was collected at',1,NULL),(404,418,'Was collected at',1,NULL),(405,419,'Was collected at',1,NULL),(406,420,'Was collected at',1,NULL),(407,421,'Was collected at',1,NULL),(408,422,'Was collected at',1,NULL),(409,423,'Was collected at',1,NULL),(410,424,'Was collected at',1,NULL),(411,425,'Was collected at',1,NULL),(412,426,'Was collected at',1,NULL),(413,427,'Was collected at',1,NULL),(414,428,'Was collected at',1,NULL),(415,429,'Was collected at',1,NULL),(416,430,'Was collected at',1,NULL),(417,431,'Was collected at',1,NULL),(418,432,'Was collected at',1,NULL),(419,433,'Was collected at',1,NULL),(420,434,'Was collected at',1,NULL),(421,435,'Was collected at',1,NULL),(422,436,'Was collected at',1,NULL),(423,437,'Was collected at',1,NULL),(424,438,'Was collected at',1,NULL),(425,439,'Was collected at',1,NULL),(426,440,'Was collected at',1,NULL),(427,441,'Was collected at',1,NULL),(428,442,'Was collected at',1,NULL),(429,443,'Was collected at',1,NULL),(430,444,'Was collected at',1,NULL),(431,445,'Was collected at',1,NULL),(432,446,'Was collected at',1,NULL),(433,447,'Was collected at',1,NULL),(434,448,'Was collected at',1,NULL),(435,449,'Was collected at',1,NULL),(436,450,'Was collected at',1,NULL),(437,451,'Was collected at',1,NULL),(438,452,'Was collected at',1,NULL),(439,453,'Was collected at',1,NULL),(440,454,'Was collected at',1,NULL),(441,455,'Was collected at',1,NULL),(442,456,'Was collected at',1,NULL),(443,457,'Was collected at',1,NULL),(444,458,'Was collected at',1,NULL),(445,459,'Was collected at',1,NULL),(446,460,'Was collected at',1,NULL),(447,461,'Was collected at',1,NULL),(448,462,'Was collected at',1,NULL),(449,463,'Was collected at',1,NULL),(450,464,'Was collected at',1,NULL),(451,465,'Was collected at',1,NULL),(452,466,'Was collected at',1,NULL),(453,467,'Was collected at',1,NULL),(454,468,'Was collected at',1,NULL),(455,469,'Was collected at',1,NULL),(456,470,'Was collected at',1,NULL),(457,471,'Was collected at',1,NULL),(458,472,'Was collected at',1,NULL),(459,473,'Was collected at',1,NULL),(460,474,'Was collected at',1,NULL),(461,475,'Was collected at',1,NULL),(462,476,'Was collected at',1,NULL),(463,477,'Was collected at',1,NULL),(464,478,'Was collected at',1,NULL),(465,479,'Was collected at',1,NULL),(466,480,'Was collected at',1,NULL),(467,481,'Was collected at',1,NULL),(468,482,'Was collected at',1,NULL),(469,483,'Was collected at',1,NULL),(470,484,'Was collected at',1,NULL),(471,485,'Was collected at',1,NULL),(472,486,'Was collected at',1,NULL),(473,487,'Was collected at',1,NULL),(474,488,'Was collected at',1,NULL),(475,489,'Was collected at',1,NULL),(476,490,'Was collected at',1,NULL),(477,491,'Was collected at',1,NULL),(478,492,'Was collected at',1,NULL),(479,493,'Was collected at',1,NULL),(480,494,'Was collected at',1,NULL),(481,495,'Was collected at',1,NULL),(482,496,'Was collected at',1,NULL),(483,497,'Was collected at',1,NULL),(484,498,'Was collected at',1,NULL),(485,499,'Was collected at',1,NULL),(486,500,'Was collected at',1,NULL),(487,501,'Was collected at',1,NULL),(488,502,'Was collected at',1,NULL),(489,503,'Was collected at',1,NULL),(490,504,'Was collected at',1,NULL),(491,505,'Was collected at',1,NULL),(492,506,'Was collected at',1,NULL),(493,507,'Was collected at',1,NULL),(494,508,'Was collected at',1,NULL),(495,509,'Was collected at',1,NULL),(496,510,'Was collected at',1,NULL),(497,511,'Was collected at',1,NULL),(498,512,'Was collected at',1,NULL),(499,513,'Was collected at',1,NULL),(500,514,'Was collected at',1,NULL),(501,515,'Was collected at',1,NULL),(502,516,'Was collected at',1,NULL),(503,517,'Was collected at',1,NULL),(504,518,'Was collected at',1,NULL),(505,519,'Was collected at',1,NULL),(506,520,'Was collected at',1,NULL),(507,521,'Was collected at',1,NULL),(508,522,'Was collected at',1,NULL),(509,523,'Was collected at',1,NULL),(510,524,'Was collected at',1,NULL),(511,525,'Was collected at',1,NULL),(512,526,'Was collected at',1,NULL),(513,527,'Was collected at',1,NULL),(514,528,'Was collected at',1,NULL),(515,529,'Was collected at',1,NULL),(516,530,'Was collected at',1,NULL),(517,531,'Was collected at',1,NULL),(518,532,'Was collected at',1,NULL),(519,533,'Was collected at',1,NULL),(520,534,'Was collected at',1,NULL),(521,535,'Was collected at',1,NULL),(522,536,'Was collected at',1,NULL),(523,537,'Was collected at',1,NULL),(524,538,'Was collected at',1,NULL),(525,539,'Was collected at',1,NULL),(526,540,'Was collected at',1,NULL),(527,541,'Was collected at',1,NULL),(528,542,'Was collected at',1,NULL),(529,543,'Was collected at',1,NULL),(530,544,'Was collected at',1,NULL),(531,545,'Was collected at',1,NULL),(532,546,'Was collected at',1,NULL),(533,547,'Was collected at',1,NULL),(534,548,'Was collected at',1,NULL),(535,549,'Was collected at',1,NULL),(536,550,'Was collected at',1,NULL),(537,551,'Was collected at',1,NULL),(538,552,'Was collected at',1,NULL),(539,553,'Was collected at',1,NULL),(540,554,'Was collected at',1,NULL),(541,555,'Was collected at',1,NULL),(542,556,'Was collected at',1,NULL),(543,557,'Was collected at',1,NULL),(544,558,'Was collected at',1,NULL),(545,559,'Was collected at',1,NULL),(546,560,'Was collected at',1,NULL),(547,561,'Was collected at',1,NULL),(548,562,'Was collected at',1,NULL),(549,563,'Was collected at',1,NULL),(550,564,'Was collected at',1,NULL),(551,565,'Was collected at',1,NULL),(552,566,'Was collected at',1,NULL),(553,567,'Was collected at',1,NULL),(554,568,'Was collected at',1,NULL),(555,569,'Was collected at',1,NULL),(556,570,'Was collected at',1,NULL),(557,571,'Was collected at',1,NULL),(558,572,'Was collected at',1,NULL),(559,573,'Was collected at',1,NULL),(560,574,'Was collected at',1,NULL),(561,575,'Was collected at',1,NULL),(562,576,'Was collected at',1,NULL),(563,577,'Was collected at',1,NULL),(564,578,'Was collected at',1,NULL),(565,579,'Was collected at',1,NULL),(566,580,'Was collected at',1,NULL),(567,581,'Was collected at',1,NULL),(568,582,'Was collected at',1,NULL),(569,583,'Was collected at',1,NULL),(570,584,'Was collected at',1,NULL),(571,585,'Was collected at',1,NULL),(572,586,'Was collected at',1,NULL),(573,587,'Was collected at',1,NULL),(574,588,'Was collected at',1,NULL),(575,589,'Was collected at',1,NULL),(576,590,'Was collected at',1,NULL),(577,591,'Was collected at',1,NULL),(578,592,'Was collected at',1,NULL),(579,593,'Was collected at',1,NULL),(580,594,'Was collected at',1,NULL),(581,595,'Was collected at',1,NULL),(582,596,'Was collected at',1,NULL),(583,597,'Was collected at',1,NULL),(584,598,'Was collected at',1,NULL),(585,599,'Was collected at',1,NULL),(586,600,'Was collected at',1,NULL),(587,601,'Was collected at',1,NULL),(588,602,'Was collected at',1,NULL),(589,603,'Was collected at',1,NULL),(590,604,'Was collected at',1,NULL),(591,605,'Was collected at',1,NULL),(592,606,'Was collected at',1,NULL),(593,607,'Was collected at',1,NULL),(594,608,'Was collected at',1,NULL),(595,609,'Was collected at',1,NULL),(596,610,'Was collected at',1,NULL),(597,611,'Was collected at',1,NULL),(598,612,'Was collected at',1,NULL),(599,613,'Was collected at',1,NULL),(600,614,'Was collected at',1,NULL),(601,615,'Was collected at',1,NULL),(602,616,'Was collected at',1,NULL),(603,617,'Was collected at',1,NULL),(604,618,'Was collected at',1,NULL),(605,619,'Was collected at',1,NULL),(606,620,'Was collected at',1,NULL),(607,621,'Was collected at',1,NULL),(608,622,'Was collected at',1,NULL),(609,623,'Was collected at',1,NULL),(610,624,'Was collected at',1,NULL),(611,625,'Was collected at',1,NULL),(612,626,'Was collected at',1,NULL),(613,627,'Was collected at',1,NULL),(614,628,'Was collected at',1,NULL),(615,629,'Was collected at',1,NULL),(616,630,'Was collected at',1,NULL),(617,631,'Was collected at',1,NULL),(618,632,'Was collected at',1,NULL),(619,633,'Was collected at',1,NULL),(620,634,'Was collected at',1,NULL),(621,635,'Was collected at',1,NULL),(622,636,'Was collected at',1,NULL),(623,637,'Was collected at',1,NULL),(624,638,'Was collected at',1,NULL),(625,639,'Was collected at',1,NULL),(626,640,'Was collected at',1,NULL),(627,641,'Was collected at',1,NULL),(628,642,'Was collected at',1,NULL),(629,643,'Was collected at',1,NULL),(630,644,'Was collected at',1,NULL),(631,645,'Was collected at',1,NULL),(632,646,'Was collected at',1,NULL),(633,647,'Was collected at',1,NULL),(634,648,'Was collected at',1,NULL),(635,649,'Was collected at',1,NULL),(636,650,'Was collected at',1,NULL),(637,651,'Was collected at',1,NULL),(638,652,'Was collected at',1,NULL),(639,653,'Was collected at',1,NULL),(640,654,'Was collected at',1,NULL),(641,655,'Was collected at',1,NULL),(642,656,'Was collected at',1,NULL),(643,657,'Was collected at',1,NULL),(644,658,'Was collected at',1,NULL),(645,659,'Was collected at',1,NULL),(646,660,'Was collected at',1,NULL),(647,661,'Was collected at',1,NULL),(648,662,'Was collected at',1,NULL),(649,663,'Was collected at',1,NULL),(650,664,'Was collected at',1,NULL),(651,665,'Was collected at',1,NULL),(652,666,'Was collected at',1,NULL),(653,667,'Was collected at',1,NULL),(654,668,'Was collected at',1,NULL),(655,669,'Was collected at',1,NULL),(656,670,'Was collected at',1,NULL),(657,671,'Was collected at',1,NULL),(658,672,'Was collected at',1,NULL),(659,673,'Was collected at',1,NULL),(660,674,'Was collected at',1,NULL),(661,675,'Was collected at',1,NULL),(662,676,'Was collected at',1,NULL),(663,677,'Was collected at',1,NULL),(664,678,'Was collected at',1,NULL),(665,679,'Was collected at',1,NULL),(666,680,'Was collected at',1,NULL),(667,681,'Was collected at',1,NULL),(668,682,'Was collected at',1,NULL),(669,683,'Was collected at',1,NULL),(670,684,'Was collected at',1,NULL),(671,685,'Was collected at',1,NULL),(672,686,'Was collected at',1,NULL),(673,687,'Was collected at',1,NULL),(674,688,'Was collected at',1,NULL),(675,689,'Was collected at',1,NULL),(676,690,'Was collected at',1,NULL),(677,691,'Was collected at',1,NULL),(678,692,'Was collected at',1,NULL),(679,693,'Was collected at',1,NULL),(680,694,'Was collected at',1,NULL),(681,695,'Was collected at',1,NULL),(682,696,'Was collected at',1,NULL),(683,697,'Was collected at',1,NULL),(684,698,'Was collected at',1,NULL),(685,699,'Was collected at',1,NULL),(686,700,'Was collected at',1,NULL),(687,701,'Was collected at',1,NULL),(688,702,'Was collected at',1,NULL),(689,703,'Was collected at',1,NULL),(690,704,'Was collected at',1,NULL),(691,705,'Was collected at',1,NULL),(692,706,'Was collected at',1,NULL),(693,707,'Was collected at',1,NULL),(694,708,'Was collected at',1,NULL),(695,709,'Was collected at',1,NULL),(696,710,'Was collected at',1,NULL),(697,711,'Was collected at',1,NULL),(698,712,'Was collected at',1,NULL); +/*!40000 ALTER TABLE `RelatedFeatures` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedModels` +-- + +DROP TABLE IF EXISTS `RelatedModels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedModels` ( + `RelatedID` int(11) NOT NULL AUTO_INCREMENT, + `ModelID` int(11) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedModelID` int(11) NOT NULL, + PRIMARY KEY (`RelatedID`), + KEY `fk_RelatedModels_CV_RelationshipType` (`RelationshipTypeCV`), + KEY `fk_RelatedModels_Models` (`ModelID`), + CONSTRAINT `fk_RelatedModels_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedModels_Models` FOREIGN KEY (`ModelID`) REFERENCES `Models` (`ModelID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedModels` +-- + +/*!40000 ALTER TABLE `RelatedModels` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedModels` ENABLE KEYS */; + +-- +-- Table structure for table `RelatedResults` +-- + +DROP TABLE IF EXISTS `RelatedResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `RelatedResults` ( + `RelationID` int(11) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `RelationshipTypeCV` varchar(255) NOT NULL, + `RelatedResultID` bigint(20) NOT NULL, + `VersionCode` varchar(50) DEFAULT NULL, + `RelatedResultSequenceNumber` int(11) DEFAULT NULL, + PRIMARY KEY (`RelationID`), + KEY `fk_RelatedResults_CV_RelationshipType` (`RelationshipTypeCV`), + KEY `fk_RelatedResults_Results` (`ResultID`), + KEY `fk_RelatedResults_Results_AreRelated` (`RelatedResultID`), + CONSTRAINT `fk_RelatedResults_CV_RelationshipType` FOREIGN KEY (`RelationshipTypeCV`) REFERENCES `CV_RelationshipType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_RelatedResults_Results_AreRelated` FOREIGN KEY (`RelatedResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `RelatedResults` +-- + +/*!40000 ALTER TABLE `RelatedResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `RelatedResults` ENABLE KEYS */; + +-- +-- Table structure for table `ResultAnnotations` +-- + +DROP TABLE IF EXISTS `ResultAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ResultAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + `BeginDateTime` datetime NOT NULL, + `EndDateTime` datetime NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ResultAnnotations_Annotations` (`AnnotationID`), + KEY `fk_ResultAnnotations_Results` (`ResultID`), + CONSTRAINT `fk_ResultAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ResultAnnotations_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ResultAnnotations` +-- + +/*!40000 ALTER TABLE `ResultAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `ResultAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `ResultDerivationEquations` +-- + +DROP TABLE IF EXISTS `ResultDerivationEquations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ResultDerivationEquations` ( + `ResultID` bigint(20) NOT NULL, + `DerivationEquationID` int(11) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_ResultDerivationEquations_DerivationEquations` (`DerivationEquationID`), + CONSTRAINT `fk_ResultDerivationEquations_DerivationEquations` FOREIGN KEY (`DerivationEquationID`) REFERENCES `DerivationEquations` (`DerivationEquationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ResultDerivationEquations_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ResultDerivationEquations` +-- + +/*!40000 ALTER TABLE `ResultDerivationEquations` DISABLE KEYS */; +/*!40000 ALTER TABLE `ResultDerivationEquations` ENABLE KEYS */; + +-- +-- Table structure for table `ResultExtensionPropertyValues` +-- + +DROP TABLE IF EXISTS `ResultExtensionPropertyValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ResultExtensionPropertyValues` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `PropertyID` int(11) NOT NULL, + `PropertyValue` varchar(255) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ResultExtensionPropertyValues_ExtensionProperties` (`PropertyID`), + KEY `fk_ResultExtensionPropertyValues_Results` (`ResultID`), + CONSTRAINT `fk_ResultExtensionPropertyValues_ExtensionProperties` FOREIGN KEY (`PropertyID`) REFERENCES `ExtensionProperties` (`PropertyID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ResultExtensionPropertyValues_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ResultExtensionPropertyValues` +-- + +/*!40000 ALTER TABLE `ResultExtensionPropertyValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `ResultExtensionPropertyValues` ENABLE KEYS */; + +-- +-- Table structure for table `ResultNormalizationValues` +-- + +DROP TABLE IF EXISTS `ResultNormalizationValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ResultNormalizationValues` ( + `ResultID` bigint(20) NOT NULL, + `NormalizedByReferenceMaterialValueID` int(11) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_ResultNormalizationValues_ReferenceMaterialValues` (`NormalizedByReferenceMaterialValueID`), + CONSTRAINT `fk_ResultNormalizationValues_ReferenceMaterialValues` FOREIGN KEY (`NormalizedByReferenceMaterialValueID`) REFERENCES `ReferenceMaterialValues` (`ReferenceMaterialValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ResultNormalizationValues_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ResultNormalizationValues` +-- + +/*!40000 ALTER TABLE `ResultNormalizationValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `ResultNormalizationValues` ENABLE KEYS */; + +-- +-- Table structure for table `Results` +-- + +DROP TABLE IF EXISTS `Results`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Results` ( + `ResultID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultUUID` varchar(64) NOT NULL, + `FeatureActionID` int(11) NOT NULL, + `ResultTypeCV` varchar(255) NOT NULL, + `VariableID` int(11) NOT NULL, + `UnitsID` int(11) NOT NULL, + `TaxonomicClassifierID` int(11) DEFAULT NULL, + `ProcessingLevelID` int(11) NOT NULL, + `ResultDateTime` datetime DEFAULT NULL, + `ResultDateTimeUTCOffset` bigint(20) DEFAULT NULL, + `ValidDateTime` datetime DEFAULT NULL, + `ValidDateTimeUTCOffset` bigint(20) DEFAULT NULL, + `StatusCV` varchar(255) DEFAULT NULL, + `SampledMediumCV` varchar(255) NOT NULL, + `ValueCount` int(11) NOT NULL, + PRIMARY KEY (`ResultID`), + UNIQUE KEY `ResultUUID` (`ResultUUID`), + KEY `fk_Results_CV_Medium` (`SampledMediumCV`), + KEY `fk_Results_CV_ResultType` (`ResultTypeCV`), + KEY `fk_Results_CV_Status` (`StatusCV`), + KEY `fk_Results_FeatureActions` (`FeatureActionID`), + KEY `fk_Results_ProcessingLevels` (`ProcessingLevelID`), + KEY `fk_Results_TaxonomicClassifiers` (`TaxonomicClassifierID`), + KEY `fk_Results_Units` (`UnitsID`), + KEY `fk_Results_Variables` (`VariableID`), + CONSTRAINT `fk_Results_CV_Medium` FOREIGN KEY (`SampledMediumCV`) REFERENCES `CV_Medium` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_CV_ResultType` FOREIGN KEY (`ResultTypeCV`) REFERENCES `CV_ResultType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_CV_Status` FOREIGN KEY (`StatusCV`) REFERENCES `CV_Status` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_FeatureActions` FOREIGN KEY (`FeatureActionID`) REFERENCES `FeatureActions` (`FeatureActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_ProcessingLevels` FOREIGN KEY (`ProcessingLevelID`) REFERENCES `ProcessingLevels` (`ProcessingLevelID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_TaxonomicClassifiers` FOREIGN KEY (`TaxonomicClassifierID`) REFERENCES `TaxonomicClassifiers` (`TaxonomicClassifierID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_Units` FOREIGN KEY (`UnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Results_Variables` FOREIGN KEY (`VariableID`) REFERENCES `Variables` (`VariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=15429865 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Results` +-- + +/*!40000 ALTER TABLE `Results` DISABLE KEYS */; +INSERT INTO `Results` VALUES (1,'6AD74A4B-FD6E-E511-9449-6C4008BF018F',1,'Time series coverage',3,168,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Not applicable',1440),(2,'6BD74A4B-FD6E-E511-9449-6C4008BF018F',2,'Time series coverage',4,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(3,'6CD74A4B-FD6E-E511-9449-6C4008BF018F',3,'Time series coverage',5,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(4,'6DD74A4B-FD6E-E511-9449-6C4008BF018F',4,'Time series coverage',6,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(5,'6ED74A4B-FD6E-E511-9449-6C4008BF018F',5,'Time series coverage',7,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(6,'6FD74A4B-FD6E-E511-9449-6C4008BF018F',6,'Time series coverage',8,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(7,'70D74A4B-FD6E-E511-9449-6C4008BF018F',7,'Time series coverage',9,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(8,'71D74A4B-FD6E-E511-9449-6C4008BF018F',8,'Time series coverage',10,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(9,'72D74A4B-FD6E-E511-9449-6C4008BF018F',9,'Time series coverage',13,48,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(10,'73D74A4B-FD6E-E511-9449-6C4008BF018F',10,'Time series coverage',32,199,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(11,'74D74A4B-FD6E-E511-9449-6C4008BF018F',11,'Time series coverage',33,1,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(12,'75D74A4B-FD6E-E511-9449-6C4008BF018F',12,'Time series coverage',34,192,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(13,'76D74A4B-FD6E-E511-9449-6C4008BF018F',13,'Time series coverage',35,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(14,'77D74A4B-FD6E-E511-9449-6C4008BF018F',14,'Time series coverage',36,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(15,'78D74A4B-FD6E-E511-9449-6C4008BF018F',15,'Time series coverage',37,221,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(22,'79D74A4B-FD6E-E511-9449-6C4008BF018F',16,'Time series coverage',44,35,NULL,2,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(23,'7AD74A4B-FD6E-E511-9449-6C4008BF018F',17,'Time series coverage',47,199,NULL,2,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(24,'7BD74A4B-FD6E-E511-9449-6C4008BF018F',18,'Time series coverage',48,199,NULL,2,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',1440),(28,'7CD74A4B-FD6E-E511-9449-6C4008BF018F',19,'Time series coverage',14,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(29,'7DD74A4B-FD6E-E511-9449-6C4008BF018F',20,'Time series coverage',15,1,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(30,'7ED74A4B-FD6E-E511-9449-6C4008BF018F',21,'Time series coverage',16,54,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',744),(31,'7FD74A4B-FD6E-E511-9449-6C4008BF018F',22,'Time series coverage',17,168,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',744),(32,'80D74A4B-FD6E-E511-9449-6C4008BF018F',23,'Time series coverage',18,119,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(33,'81D74A4B-FD6E-E511-9449-6C4008BF018F',24,'Time series coverage',19,2,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(34,'82D74A4B-FD6E-E511-9449-6C4008BF018F',25,'Time series coverage',20,2,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(35,'83D74A4B-FD6E-E511-9449-6C4008BF018F',26,'Time series coverage',21,86,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(36,'84D74A4B-FD6E-E511-9449-6C4008BF018F',27,'Time series coverage',22,33,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Not applicable',744),(37,'85D74A4B-FD6E-E511-9449-6C4008BF018F',28,'Time series coverage',23,168,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Not applicable',31),(38,'86D74A4B-FD6E-E511-9449-6C4008BF018F',29,'Time series coverage',24,119,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(39,'87D74A4B-FD6E-E511-9449-6C4008BF018F',30,'Time series coverage',25,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(40,'88D74A4B-FD6E-E511-9449-6C4008BF018F',31,'Time series coverage',26,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(41,'89D74A4B-FD6E-E511-9449-6C4008BF018F',32,'Time series coverage',27,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(42,'8AD74A4B-FD6E-E511-9449-6C4008BF018F',33,'Time series coverage',28,1,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(43,'8BD74A4B-FD6E-E511-9449-6C4008BF018F',34,'Time series coverage',29,86,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(44,'8CD74A4B-FD6E-E511-9449-6C4008BF018F',35,'Time series coverage',30,54,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Liquid aqueous',31),(45,'8DD74A4B-FD6E-E511-9449-6C4008BF018F',36,'Time series coverage',31,144,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Not applicable',31),(46,'8ED74A4B-FD6E-E511-9449-6C4008BF018F',37,'Time series coverage',49,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(47,'8FD74A4B-FD6E-E511-9449-6C4008BF018F',38,'Time series coverage',49,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',744),(48,'90D74A4B-FD6E-E511-9449-6C4008BF018F',39,'Time series coverage',50,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Snow',744),(49,'91D74A4B-FD6E-E511-9449-6C4008BF018F',40,'Time series coverage',51,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(50,'92D74A4B-FD6E-E511-9449-6C4008BF018F',41,'Time series coverage',51,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(51,'93D74A4B-FD6E-E511-9449-6C4008BF018F',42,'Time series coverage',52,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(52,'94D74A4B-FD6E-E511-9449-6C4008BF018F',43,'Time series coverage',52,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(53,'95D74A4B-FD6E-E511-9449-6C4008BF018F',44,'Time series coverage',53,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(54,'96D74A4B-FD6E-E511-9449-6C4008BF018F',45,'Time series coverage',53,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Air',31),(55,'97D74A4B-FD6E-E511-9449-6C4008BF018F',46,'Time series coverage',54,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Snow',31),(56,'98D74A4B-FD6E-E511-9449-6C4008BF018F',47,'Time series coverage',55,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Snow',31),(57,'99D74A4B-FD6E-E511-9449-6C4008BF018F',48,'Time series coverage',56,52,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Snow',31),(58,'9AD74A4B-FD6E-E511-9449-6C4008BF018F',49,'Time series coverage',57,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(59,'9BD74A4B-FD6E-E511-9449-6C4008BF018F',50,'Time series coverage',57,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(60,'9CD74A4B-FD6E-E511-9449-6C4008BF018F',51,'Time series coverage',57,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(61,'9DD74A4B-FD6E-E511-9449-6C4008BF018F',52,'Time series coverage',57,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(62,'9ED74A4B-FD6E-E511-9449-6C4008BF018F',53,'Time series coverage',57,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(63,'9FD74A4B-FD6E-E511-9449-6C4008BF018F',54,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(64,'A0D74A4B-FD6E-E511-9449-6C4008BF018F',55,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(65,'A1D74A4B-FD6E-E511-9449-6C4008BF018F',56,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(66,'A2D74A4B-FD6E-E511-9449-6C4008BF018F',57,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(67,'A3D74A4B-FD6E-E511-9449-6C4008BF018F',58,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(68,'A4D74A4B-FD6E-E511-9449-6C4008BF018F',59,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(69,'A5D74A4B-FD6E-E511-9449-6C4008BF018F',60,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(70,'A6D74A4B-FD6E-E511-9449-6C4008BF018F',61,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(71,'A7D74A4B-FD6E-E511-9449-6C4008BF018F',62,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(72,'A8D74A4B-FD6E-E511-9449-6C4008BF018F',63,'Time series coverage',58,268,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(73,'A9D74A4B-FD6E-E511-9449-6C4008BF018F',64,'Time series coverage',59,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(74,'AAD74A4B-FD6E-E511-9449-6C4008BF018F',65,'Time series coverage',59,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(75,'ABD74A4B-FD6E-E511-9449-6C4008BF018F',66,'Time series coverage',59,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(76,'ACD74A4B-FD6E-E511-9449-6C4008BF018F',67,'Time series coverage',59,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(77,'ADD74A4B-FD6E-E511-9449-6C4008BF018F',68,'Time series coverage',59,96,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(78,'AED74A4B-FD6E-E511-9449-6C4008BF018F',69,'Time series coverage',60,97,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(79,'AFD74A4B-FD6E-E511-9449-6C4008BF018F',70,'Time series coverage',60,97,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(80,'B0D74A4B-FD6E-E511-9449-6C4008BF018F',71,'Time series coverage',60,97,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(81,'B1D74A4B-FD6E-E511-9449-6C4008BF018F',72,'Time series coverage',60,97,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(82,'B2D74A4B-FD6E-E511-9449-6C4008BF018F',73,'Time series coverage',60,97,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(83,'B3D74A4B-FD6E-E511-9449-6C4008BF018F',74,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(84,'B4D74A4B-FD6E-E511-9449-6C4008BF018F',75,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(85,'B5D74A4B-FD6E-E511-9449-6C4008BF018F',76,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(86,'B6D74A4B-FD6E-E511-9449-6C4008BF018F',77,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(87,'B7D74A4B-FD6E-E511-9449-6C4008BF018F',78,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(88,'B8D74A4B-FD6E-E511-9449-6C4008BF018F',79,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(89,'B9D74A4B-FD6E-E511-9449-6C4008BF018F',80,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(90,'BAD74A4B-FD6E-E511-9449-6C4008BF018F',81,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(91,'BBD74A4B-FD6E-E511-9449-6C4008BF018F',82,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(92,'BCD74A4B-FD6E-E511-9449-6C4008BF018F',83,'Time series coverage',61,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(93,'BDD74A4B-FD6E-E511-9449-6C4008BF018F',84,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(94,'BED74A4B-FD6E-E511-9449-6C4008BF018F',85,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(95,'BFD74A4B-FD6E-E511-9449-6C4008BF018F',86,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(96,'C0D74A4B-FD6E-E511-9449-6C4008BF018F',87,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(97,'C1D74A4B-FD6E-E511-9449-6C4008BF018F',88,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(98,'C2D74A4B-FD6E-E511-9449-6C4008BF018F',89,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(99,'C3D74A4B-FD6E-E511-9449-6C4008BF018F',90,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(100,'C4D74A4B-FD6E-E511-9449-6C4008BF018F',91,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(101,'C5D74A4B-FD6E-E511-9449-6C4008BF018F',92,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(102,'C6D74A4B-FD6E-E511-9449-6C4008BF018F',93,'Time series coverage',62,137,NULL,0,'2015-10-09 21:16:28.527000',-6,NULL,NULL,'Unknown','Soil',744),(6523850,'81DA4A4B-FD6E-E511-9449-6C4008BF018F',94,'Measurement',40,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523851,'82DA4A4B-FD6E-E511-9449-6C4008BF018F',95,'Measurement',39,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523859,'83DA4A4B-FD6E-E511-9449-6C4008BF018F',96,'Measurement',40,199,NULL,1,'2007-11-21 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523868,'84DA4A4B-FD6E-E511-9449-6C4008BF018F',97,'Measurement',39,199,NULL,1,'2007-11-21 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523869,'85DA4A4B-FD6E-E511-9449-6C4008BF018F',98,'Measurement',41,199,NULL,1,'2007-10-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523873,'86DA4A4B-FD6E-E511-9449-6C4008BF018F',99,'Measurement',41,199,NULL,1,'2007-10-10 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523877,'87DA4A4B-FD6E-E511-9449-6C4008BF018F',100,'Measurement',41,199,NULL,1,'2007-10-17 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523883,'88DA4A4B-FD6E-E511-9449-6C4008BF018F',101,'Measurement',41,199,NULL,1,'2007-10-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523888,'89DA4A4B-FD6E-E511-9449-6C4008BF018F',102,'Measurement',41,199,NULL,1,'2007-11-01 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523890,'8ADA4A4B-FD6E-E511-9449-6C4008BF018F',103,'Measurement',41,199,NULL,1,'2007-11-07 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523895,'8BDA4A4B-FD6E-E511-9449-6C4008BF018F',104,'Measurement',41,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523903,'8CDA4A4B-FD6E-E511-9449-6C4008BF018F',105,'Measurement',41,199,NULL,1,'2007-11-21 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523908,'8DDA4A4B-FD6E-E511-9449-6C4008BF018F',539,'Measurement',40,199,NULL,1,'2008-04-10 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523920,'8EDA4A4B-FD6E-E511-9449-6C4008BF018F',540,'Measurement',40,199,NULL,1,'2008-01-03 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523921,'8FDA4A4B-FD6E-E511-9449-6C4008BF018F',541,'Measurement',41,199,NULL,1,'2008-01-03 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523922,'90DA4A4B-FD6E-E511-9449-6C4008BF018F',542,'Measurement',39,199,NULL,1,'2008-01-03 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523946,'91DA4A4B-FD6E-E511-9449-6C4008BF018F',543,'Measurement',40,199,NULL,1,'2009-01-06 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523947,'92DA4A4B-FD6E-E511-9449-6C4008BF018F',544,'Measurement',41,199,NULL,1,'2009-01-06 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523948,'93DA4A4B-FD6E-E511-9449-6C4008BF018F',545,'Measurement',63,199,NULL,1,'2009-01-06 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523949,'94DA4A4B-FD6E-E511-9449-6C4008BF018F',546,'Measurement',39,199,NULL,1,'2009-01-06 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523974,'95DA4A4B-FD6E-E511-9449-6C4008BF018F',547,'Measurement',40,199,NULL,1,'2008-01-17 15:05:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523975,'96DA4A4B-FD6E-E511-9449-6C4008BF018F',548,'Measurement',41,199,NULL,1,'2008-01-17 15:05:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523976,'97DA4A4B-FD6E-E511-9449-6C4008BF018F',549,'Measurement',39,199,NULL,1,'2008-01-17 15:05:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6523977,'98DA4A4B-FD6E-E511-9449-6C4008BF018F',550,'Measurement',39,199,NULL,1,'2008-01-17 15:05:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524001,'99DA4A4B-FD6E-E511-9449-6C4008BF018F',551,'Measurement',40,199,NULL,1,'2009-01-22 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524002,'9ADA4A4B-FD6E-E511-9449-6C4008BF018F',552,'Measurement',41,199,NULL,1,'2009-01-22 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524003,'9BDA4A4B-FD6E-E511-9449-6C4008BF018F',553,'Measurement',63,199,NULL,1,'2009-01-22 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524004,'9CDA4A4B-FD6E-E511-9449-6C4008BF018F',554,'Measurement',39,199,NULL,1,'2009-01-22 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524028,'9DDA4A4B-FD6E-E511-9449-6C4008BF018F',555,'Measurement',40,199,NULL,1,'2008-01-31 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524029,'9EDA4A4B-FD6E-E511-9449-6C4008BF018F',556,'Measurement',40,199,NULL,1,'2008-01-31 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524030,'9FDA4A4B-FD6E-E511-9449-6C4008BF018F',557,'Measurement',41,199,NULL,1,'2008-01-31 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524031,'A0DA4A4B-FD6E-E511-9449-6C4008BF018F',558,'Measurement',39,199,NULL,1,'2008-01-31 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524032,'A1DA4A4B-FD6E-E511-9449-6C4008BF018F',559,'Measurement',39,199,NULL,1,'2008-01-31 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524058,'A2DA4A4B-FD6E-E511-9449-6C4008BF018F',560,'Measurement',40,199,NULL,1,'2009-02-05 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524059,'A3DA4A4B-FD6E-E511-9449-6C4008BF018F',561,'Measurement',41,199,NULL,1,'2009-02-05 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524060,'A4DA4A4B-FD6E-E511-9449-6C4008BF018F',562,'Measurement',63,199,NULL,1,'2009-02-05 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524061,'A5DA4A4B-FD6E-E511-9449-6C4008BF018F',563,'Measurement',41,199,NULL,1,'2009-02-05 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524062,'A6DA4A4B-FD6E-E511-9449-6C4008BF018F',564,'Measurement',39,199,NULL,1,'2009-02-05 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524090,'A7DA4A4B-FD6E-E511-9449-6C4008BF018F',565,'Measurement',40,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524091,'A8DA4A4B-FD6E-E511-9449-6C4008BF018F',566,'Measurement',64,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524092,'A9DA4A4B-FD6E-E511-9449-6C4008BF018F',567,'Measurement',41,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524093,'AADA4A4B-FD6E-E511-9449-6C4008BF018F',568,'Measurement',39,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524094,'ABDA4A4B-FD6E-E511-9449-6C4008BF018F',569,'Measurement',65,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524095,'ACDA4A4B-FD6E-E511-9449-6C4008BF018F',570,'Measurement',39,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524096,'ADDA4A4B-FD6E-E511-9449-6C4008BF018F',571,'Measurement',65,199,NULL,1,'2008-02-12 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524130,'AEDA4A4B-FD6E-E511-9449-6C4008BF018F',572,'Measurement',40,199,NULL,1,'2009-02-19 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524131,'AFDA4A4B-FD6E-E511-9449-6C4008BF018F',573,'Measurement',41,199,NULL,1,'2009-02-19 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524132,'B0DA4A4B-FD6E-E511-9449-6C4008BF018F',574,'Measurement',63,199,NULL,1,'2009-02-19 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524133,'B1DA4A4B-FD6E-E511-9449-6C4008BF018F',575,'Measurement',41,199,NULL,1,'2009-02-19 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524134,'B2DA4A4B-FD6E-E511-9449-6C4008BF018F',576,'Measurement',39,199,NULL,1,'2009-02-19 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524158,'B3DA4A4B-FD6E-E511-9449-6C4008BF018F',577,'Measurement',40,199,NULL,1,'2008-02-28 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524159,'B4DA4A4B-FD6E-E511-9449-6C4008BF018F',578,'Measurement',41,199,NULL,1,'2008-02-28 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524160,'B5DA4A4B-FD6E-E511-9449-6C4008BF018F',579,'Measurement',39,199,NULL,1,'2008-02-28 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524191,'B6DA4A4B-FD6E-E511-9449-6C4008BF018F',580,'Measurement',40,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524192,'B7DA4A4B-FD6E-E511-9449-6C4008BF018F',581,'Measurement',64,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524193,'B8DA4A4B-FD6E-E511-9449-6C4008BF018F',582,'Measurement',41,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524194,'B9DA4A4B-FD6E-E511-9449-6C4008BF018F',583,'Measurement',63,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524195,'BADA4A4B-FD6E-E511-9449-6C4008BF018F',584,'Measurement',39,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524196,'BBDA4A4B-FD6E-E511-9449-6C4008BF018F',585,'Measurement',65,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524197,'BCDA4A4B-FD6E-E511-9449-6C4008BF018F',586,'Measurement',39,199,NULL,1,'2009-03-05 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524225,'BDDA4A4B-FD6E-E511-9449-6C4008BF018F',587,'Measurement',40,199,NULL,1,'2008-03-06 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524226,'BEDA4A4B-FD6E-E511-9449-6C4008BF018F',588,'Measurement',41,199,NULL,1,'2008-03-06 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524227,'BFDA4A4B-FD6E-E511-9449-6C4008BF018F',589,'Measurement',39,199,NULL,1,'2008-03-06 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524249,'C0DA4A4B-FD6E-E511-9449-6C4008BF018F',590,'Measurement',40,199,NULL,1,'2008-03-13 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524250,'C1DA4A4B-FD6E-E511-9449-6C4008BF018F',591,'Measurement',41,199,NULL,1,'2008-03-13 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524251,'C2DA4A4B-FD6E-E511-9449-6C4008BF018F',592,'Measurement',39,199,NULL,1,'2008-03-13 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524277,'C3DA4A4B-FD6E-E511-9449-6C4008BF018F',593,'Measurement',40,199,NULL,1,'2009-03-19 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524278,'C4DA4A4B-FD6E-E511-9449-6C4008BF018F',594,'Measurement',41,199,NULL,1,'2009-03-19 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524279,'C5DA4A4B-FD6E-E511-9449-6C4008BF018F',595,'Measurement',63,199,NULL,1,'2009-03-19 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524280,'C6DA4A4B-FD6E-E511-9449-6C4008BF018F',596,'Measurement',39,199,NULL,1,'2009-03-19 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524304,'C7DA4A4B-FD6E-E511-9449-6C4008BF018F',597,'Measurement',40,199,NULL,1,'2008-03-20 08:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524305,'C8DA4A4B-FD6E-E511-9449-6C4008BF018F',598,'Measurement',40,199,NULL,1,'2008-03-20 08:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524306,'C9DA4A4B-FD6E-E511-9449-6C4008BF018F',599,'Measurement',41,199,NULL,1,'2008-03-20 08:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524307,'CADA4A4B-FD6E-E511-9449-6C4008BF018F',600,'Measurement',39,199,NULL,1,'2008-03-20 08:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524329,'CBDA4A4B-FD6E-E511-9449-6C4008BF018F',601,'Measurement',40,199,NULL,1,'2008-03-27 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524330,'CCDA4A4B-FD6E-E511-9449-6C4008BF018F',602,'Measurement',41,199,NULL,1,'2008-03-27 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524331,'CDDA4A4B-FD6E-E511-9449-6C4008BF018F',603,'Measurement',39,199,NULL,1,'2008-03-27 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524354,'CEDA4A4B-FD6E-E511-9449-6C4008BF018F',604,'Measurement',40,199,NULL,1,'2009-03-27 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524355,'CFDA4A4B-FD6E-E511-9449-6C4008BF018F',605,'Measurement',41,199,NULL,1,'2009-03-27 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524356,'D0DA4A4B-FD6E-E511-9449-6C4008BF018F',606,'Measurement',63,199,NULL,1,'2009-03-27 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524357,'D1DA4A4B-FD6E-E511-9449-6C4008BF018F',607,'Measurement',39,199,NULL,1,'2009-03-27 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524391,'D2DA4A4B-FD6E-E511-9449-6C4008BF018F',608,'Measurement',40,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524392,'D3DA4A4B-FD6E-E511-9449-6C4008BF018F',609,'Measurement',64,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524393,'D4DA4A4B-FD6E-E511-9449-6C4008BF018F',610,'Measurement',41,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524394,'D5DA4A4B-FD6E-E511-9449-6C4008BF018F',611,'Measurement',63,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524395,'D6DA4A4B-FD6E-E511-9449-6C4008BF018F',612,'Measurement',41,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524396,'D7DA4A4B-FD6E-E511-9449-6C4008BF018F',613,'Measurement',39,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524397,'D8DA4A4B-FD6E-E511-9449-6C4008BF018F',614,'Measurement',65,199,NULL,1,'2009-04-01 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524429,'D9DA4A4B-FD6E-E511-9449-6C4008BF018F',615,'Measurement',40,199,NULL,1,'2008-04-03 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524430,'DADA4A4B-FD6E-E511-9449-6C4008BF018F',616,'Measurement',41,199,NULL,1,'2008-04-03 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524431,'DBDA4A4B-FD6E-E511-9449-6C4008BF018F',617,'Measurement',39,199,NULL,1,'2008-04-03 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524459,'DCDA4A4B-FD6E-E511-9449-6C4008BF018F',618,'Measurement',40,199,NULL,1,'2009-04-08 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524460,'DDDA4A4B-FD6E-E511-9449-6C4008BF018F',619,'Measurement',41,199,NULL,1,'2009-04-08 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524461,'DEDA4A4B-FD6E-E511-9449-6C4008BF018F',620,'Measurement',63,199,NULL,1,'2009-04-08 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524462,'DFDA4A4B-FD6E-E511-9449-6C4008BF018F',621,'Measurement',39,199,NULL,1,'2009-04-08 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524463,'E0DA4A4B-FD6E-E511-9449-6C4008BF018F',622,'Measurement',65,199,NULL,1,'2009-04-08 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524496,'E1DA4A4B-FD6E-E511-9449-6C4008BF018F',623,'Measurement',41,199,NULL,1,'2008-04-10 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524497,'E2DA4A4B-FD6E-E511-9449-6C4008BF018F',624,'Measurement',39,199,NULL,1,'2008-04-10 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524498,'E3DA4A4B-FD6E-E511-9449-6C4008BF018F',625,'Measurement',39,199,NULL,1,'2008-04-10 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524512,'E4DA4A4B-FD6E-E511-9449-6C4008BF018F',626,'Measurement',40,199,NULL,1,'2008-04-14 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524513,'E5DA4A4B-FD6E-E511-9449-6C4008BF018F',627,'Measurement',41,199,NULL,1,'2008-04-14 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524514,'E6DA4A4B-FD6E-E511-9449-6C4008BF018F',628,'Measurement',39,199,NULL,1,'2008-04-14 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524538,'E7DA4A4B-FD6E-E511-9449-6C4008BF018F',629,'Measurement',40,199,NULL,1,'2009-04-16 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524539,'E8DA4A4B-FD6E-E511-9449-6C4008BF018F',630,'Measurement',64,199,NULL,1,'2009-04-16 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524540,'E9DA4A4B-FD6E-E511-9449-6C4008BF018F',631,'Measurement',41,199,NULL,1,'2009-04-16 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524541,'EADA4A4B-FD6E-E511-9449-6C4008BF018F',632,'Measurement',63,199,NULL,1,'2009-04-16 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524542,'EBDA4A4B-FD6E-E511-9449-6C4008BF018F',633,'Measurement',39,199,NULL,1,'2009-04-16 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524543,'ECDA4A4B-FD6E-E511-9449-6C4008BF018F',634,'Measurement',65,199,NULL,1,'2009-04-16 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524579,'EDDA4A4B-FD6E-E511-9449-6C4008BF018F',635,'Measurement',40,199,NULL,1,'2009-04-23 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524580,'EEDA4A4B-FD6E-E511-9449-6C4008BF018F',636,'Measurement',41,199,NULL,1,'2009-04-23 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524581,'EFDA4A4B-FD6E-E511-9449-6C4008BF018F',637,'Measurement',63,199,NULL,1,'2009-04-23 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524582,'F0DA4A4B-FD6E-E511-9449-6C4008BF018F',638,'Measurement',39,199,NULL,1,'2009-04-23 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524583,'F1DA4A4B-FD6E-E511-9449-6C4008BF018F',639,'Measurement',39,199,NULL,1,'2009-04-23 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524607,'F2DA4A4B-FD6E-E511-9449-6C4008BF018F',640,'Measurement',40,199,NULL,1,'2008-04-24 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524608,'F3DA4A4B-FD6E-E511-9449-6C4008BF018F',641,'Measurement',41,199,NULL,1,'2008-04-24 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524609,'F4DA4A4B-FD6E-E511-9449-6C4008BF018F',642,'Measurement',39,199,NULL,1,'2008-04-24 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524632,'F5DA4A4B-FD6E-E511-9449-6C4008BF018F',643,'Measurement',40,199,NULL,1,'2009-04-30 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524633,'F6DA4A4B-FD6E-E511-9449-6C4008BF018F',644,'Measurement',40,199,NULL,1,'2009-04-30 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524634,'F7DA4A4B-FD6E-E511-9449-6C4008BF018F',645,'Measurement',41,199,NULL,1,'2009-04-30 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524635,'F8DA4A4B-FD6E-E511-9449-6C4008BF018F',646,'Measurement',63,199,NULL,1,'2009-04-30 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524636,'F9DA4A4B-FD6E-E511-9449-6C4008BF018F',647,'Measurement',41,199,NULL,1,'2009-04-30 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524637,'FADA4A4B-FD6E-E511-9449-6C4008BF018F',648,'Measurement',39,199,NULL,1,'2009-04-30 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524661,'FBDA4A4B-FD6E-E511-9449-6C4008BF018F',649,'Measurement',40,199,NULL,1,'2008-05-01 11:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524662,'FCDA4A4B-FD6E-E511-9449-6C4008BF018F',650,'Measurement',41,199,NULL,1,'2008-05-01 11:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524663,'FDDA4A4B-FD6E-E511-9449-6C4008BF018F',651,'Measurement',39,199,NULL,1,'2008-05-01 11:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524688,'FEDA4A4B-FD6E-E511-9449-6C4008BF018F',652,'Measurement',40,199,NULL,1,'2009-05-05 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524689,'FFDA4A4B-FD6E-E511-9449-6C4008BF018F',653,'Measurement',41,199,NULL,1,'2009-05-05 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524690,'00DB4A4B-FD6E-E511-9449-6C4008BF018F',654,'Measurement',63,199,NULL,1,'2009-05-05 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524691,'01DB4A4B-FD6E-E511-9449-6C4008BF018F',655,'Measurement',39,199,NULL,1,'2009-05-05 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524717,'02DB4A4B-FD6E-E511-9449-6C4008BF018F',656,'Measurement',40,199,NULL,1,'2008-05-07 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524718,'03DB4A4B-FD6E-E511-9449-6C4008BF018F',657,'Measurement',41,199,NULL,1,'2008-05-07 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524719,'04DB4A4B-FD6E-E511-9449-6C4008BF018F',658,'Measurement',39,199,NULL,1,'2008-05-07 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524751,'05DB4A4B-FD6E-E511-9449-6C4008BF018F',659,'Measurement',40,199,NULL,1,'2009-05-12 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524752,'06DB4A4B-FD6E-E511-9449-6C4008BF018F',660,'Measurement',64,199,NULL,1,'2009-05-12 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524753,'07DB4A4B-FD6E-E511-9449-6C4008BF018F',661,'Measurement',41,199,NULL,1,'2009-05-12 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524754,'08DB4A4B-FD6E-E511-9449-6C4008BF018F',662,'Measurement',63,199,NULL,1,'2009-05-12 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524755,'09DB4A4B-FD6E-E511-9449-6C4008BF018F',663,'Measurement',39,199,NULL,1,'2009-05-12 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524756,'0ADB4A4B-FD6E-E511-9449-6C4008BF018F',664,'Measurement',65,199,NULL,1,'2009-05-12 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524787,'0BDB4A4B-FD6E-E511-9449-6C4008BF018F',665,'Measurement',40,199,NULL,1,'2008-05-15 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524788,'0CDB4A4B-FD6E-E511-9449-6C4008BF018F',666,'Measurement',41,199,NULL,1,'2008-05-15 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524789,'0DDB4A4B-FD6E-E511-9449-6C4008BF018F',667,'Measurement',39,199,NULL,1,'2008-05-15 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524822,'0EDB4A4B-FD6E-E511-9449-6C4008BF018F',668,'Measurement',40,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524823,'0FDB4A4B-FD6E-E511-9449-6C4008BF018F',669,'Measurement',64,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524824,'10DB4A4B-FD6E-E511-9449-6C4008BF018F',670,'Measurement',41,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524825,'11DB4A4B-FD6E-E511-9449-6C4008BF018F',671,'Measurement',63,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524826,'12DB4A4B-FD6E-E511-9449-6C4008BF018F',672,'Measurement',41,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524827,'13DB4A4B-FD6E-E511-9449-6C4008BF018F',673,'Measurement',39,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524828,'14DB4A4B-FD6E-E511-9449-6C4008BF018F',674,'Measurement',65,199,NULL,1,'2009-05-21 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524860,'15DB4A4B-FD6E-E511-9449-6C4008BF018F',675,'Measurement',40,199,NULL,1,'2008-05-23 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524861,'16DB4A4B-FD6E-E511-9449-6C4008BF018F',676,'Measurement',41,199,NULL,1,'2008-05-23 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524862,'17DB4A4B-FD6E-E511-9449-6C4008BF018F',677,'Measurement',39,199,NULL,1,'2008-05-23 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524863,'18DB4A4B-FD6E-E511-9449-6C4008BF018F',678,'Measurement',39,199,NULL,1,'2008-05-23 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524895,'19DB4A4B-FD6E-E511-9449-6C4008BF018F',679,'Measurement',40,199,NULL,1,'2009-05-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524896,'1ADB4A4B-FD6E-E511-9449-6C4008BF018F',680,'Measurement',64,199,NULL,1,'2009-05-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524897,'1BDB4A4B-FD6E-E511-9449-6C4008BF018F',681,'Measurement',41,199,NULL,1,'2009-05-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524898,'1CDB4A4B-FD6E-E511-9449-6C4008BF018F',682,'Measurement',63,199,NULL,1,'2009-05-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524899,'1DDB4A4B-FD6E-E511-9449-6C4008BF018F',683,'Measurement',39,199,NULL,1,'2009-05-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524900,'1EDB4A4B-FD6E-E511-9449-6C4008BF018F',684,'Measurement',65,199,NULL,1,'2009-05-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524931,'1FDB4A4B-FD6E-E511-9449-6C4008BF018F',685,'Measurement',40,199,NULL,1,'2008-05-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524932,'20DB4A4B-FD6E-E511-9449-6C4008BF018F',686,'Measurement',40,199,NULL,1,'2008-05-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524933,'21DB4A4B-FD6E-E511-9449-6C4008BF018F',687,'Measurement',41,199,NULL,1,'2008-05-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524934,'22DB4A4B-FD6E-E511-9449-6C4008BF018F',688,'Measurement',39,199,NULL,1,'2008-05-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524966,'23DB4A4B-FD6E-E511-9449-6C4008BF018F',689,'Measurement',40,199,NULL,1,'2009-06-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524967,'24DB4A4B-FD6E-E511-9449-6C4008BF018F',690,'Measurement',64,199,NULL,1,'2009-06-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524968,'25DB4A4B-FD6E-E511-9449-6C4008BF018F',691,'Measurement',41,199,NULL,1,'2009-06-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524969,'26DB4A4B-FD6E-E511-9449-6C4008BF018F',692,'Measurement',63,199,NULL,1,'2009-06-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524970,'27DB4A4B-FD6E-E511-9449-6C4008BF018F',693,'Measurement',39,199,NULL,1,'2009-06-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6524971,'28DB4A4B-FD6E-E511-9449-6C4008BF018F',694,'Measurement',65,199,NULL,1,'2009-06-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525000,'29DB4A4B-FD6E-E511-9449-6C4008BF018F',695,'Measurement',40,199,NULL,1,'2008-06-06 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525001,'2ADB4A4B-FD6E-E511-9449-6C4008BF018F',696,'Measurement',41,199,NULL,1,'2008-06-06 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525002,'2BDB4A4B-FD6E-E511-9449-6C4008BF018F',697,'Measurement',39,199,NULL,1,'2008-06-06 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525024,'2CDB4A4B-FD6E-E511-9449-6C4008BF018F',698,'Measurement',40,199,NULL,1,'2008-06-10 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525025,'2DDB4A4B-FD6E-E511-9449-6C4008BF018F',699,'Measurement',41,199,NULL,1,'2008-06-10 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525026,'2EDB4A4B-FD6E-E511-9449-6C4008BF018F',700,'Measurement',39,199,NULL,1,'2008-06-10 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525051,'2FDB4A4B-FD6E-E511-9449-6C4008BF018F',701,'Measurement',40,199,NULL,1,'2009-06-11 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525052,'30DB4A4B-FD6E-E511-9449-6C4008BF018F',702,'Measurement',41,199,NULL,1,'2009-06-11 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525053,'31DB4A4B-FD6E-E511-9449-6C4008BF018F',703,'Measurement',63,199,NULL,1,'2009-06-11 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525054,'32DB4A4B-FD6E-E511-9449-6C4008BF018F',704,'Measurement',39,199,NULL,1,'2009-06-11 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525089,'33DB4A4B-FD6E-E511-9449-6C4008BF018F',705,'Measurement',40,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525090,'34DB4A4B-FD6E-E511-9449-6C4008BF018F',706,'Measurement',64,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525091,'35DB4A4B-FD6E-E511-9449-6C4008BF018F',707,'Measurement',41,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525092,'36DB4A4B-FD6E-E511-9449-6C4008BF018F',708,'Measurement',63,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525093,'37DB4A4B-FD6E-E511-9449-6C4008BF018F',709,'Measurement',39,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525094,'38DB4A4B-FD6E-E511-9449-6C4008BF018F',710,'Measurement',65,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525095,'39DB4A4B-FD6E-E511-9449-6C4008BF018F',711,'Measurement',39,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525096,'3ADB4A4B-FD6E-E511-9449-6C4008BF018F',712,'Measurement',65,199,NULL,1,'2009-06-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525125,'3BDB4A4B-FD6E-E511-9449-6C4008BF018F',713,'Measurement',40,199,NULL,1,'2008-06-19 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525126,'3CDB4A4B-FD6E-E511-9449-6C4008BF018F',714,'Measurement',41,199,NULL,1,'2008-06-19 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525127,'3DDB4A4B-FD6E-E511-9449-6C4008BF018F',715,'Measurement',41,199,NULL,1,'2008-06-19 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525128,'3EDB4A4B-FD6E-E511-9449-6C4008BF018F',716,'Measurement',39,199,NULL,1,'2008-06-19 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525166,'3FDB4A4B-FD6E-E511-9449-6C4008BF018F',717,'Measurement',40,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525167,'40DB4A4B-FD6E-E511-9449-6C4008BF018F',718,'Measurement',64,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525168,'41DB4A4B-FD6E-E511-9449-6C4008BF018F',719,'Measurement',40,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525169,'42DB4A4B-FD6E-E511-9449-6C4008BF018F',720,'Measurement',41,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525170,'43DB4A4B-FD6E-E511-9449-6C4008BF018F',721,'Measurement',63,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525171,'44DB4A4B-FD6E-E511-9449-6C4008BF018F',722,'Measurement',39,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525172,'45DB4A4B-FD6E-E511-9449-6C4008BF018F',723,'Measurement',65,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525173,'46DB4A4B-FD6E-E511-9449-6C4008BF018F',724,'Measurement',39,199,NULL,1,'2009-06-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525205,'47DB4A4B-FD6E-E511-9449-6C4008BF018F',725,'Measurement',40,199,NULL,1,'2008-06-26 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525206,'48DB4A4B-FD6E-E511-9449-6C4008BF018F',726,'Measurement',41,199,NULL,1,'2008-06-26 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525207,'49DB4A4B-FD6E-E511-9449-6C4008BF018F',727,'Measurement',39,199,NULL,1,'2008-06-26 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525223,'4ADB4A4B-FD6E-E511-9449-6C4008BF018F',728,'Measurement',40,199,NULL,1,'2008-07-03 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525224,'4BDB4A4B-FD6E-E511-9449-6C4008BF018F',729,'Measurement',41,199,NULL,1,'2008-07-03 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525225,'4CDB4A4B-FD6E-E511-9449-6C4008BF018F',730,'Measurement',39,199,NULL,1,'2008-07-03 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525249,'4DDB4A4B-FD6E-E511-9449-6C4008BF018F',731,'Measurement',40,199,NULL,1,'2009-07-09 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525250,'4EDB4A4B-FD6E-E511-9449-6C4008BF018F',732,'Measurement',41,199,NULL,1,'2009-07-09 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525251,'4FDB4A4B-FD6E-E511-9449-6C4008BF018F',733,'Measurement',63,199,NULL,1,'2009-07-09 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525252,'50DB4A4B-FD6E-E511-9449-6C4008BF018F',734,'Measurement',39,199,NULL,1,'2009-07-09 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525279,'51DB4A4B-FD6E-E511-9449-6C4008BF018F',735,'Measurement',40,199,NULL,1,'2008-07-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525280,'52DB4A4B-FD6E-E511-9449-6C4008BF018F',736,'Measurement',41,199,NULL,1,'2008-07-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525281,'53DB4A4B-FD6E-E511-9449-6C4008BF018F',737,'Measurement',41,199,NULL,1,'2008-07-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525282,'54DB4A4B-FD6E-E511-9449-6C4008BF018F',738,'Measurement',39,199,NULL,1,'2008-07-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525305,'55DB4A4B-FD6E-E511-9449-6C4008BF018F',739,'Measurement',40,199,NULL,1,'2009-07-23 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525306,'56DB4A4B-FD6E-E511-9449-6C4008BF018F',740,'Measurement',41,199,NULL,1,'2009-07-23 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525307,'57DB4A4B-FD6E-E511-9449-6C4008BF018F',741,'Measurement',63,199,NULL,1,'2009-07-23 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525308,'58DB4A4B-FD6E-E511-9449-6C4008BF018F',742,'Measurement',39,199,NULL,1,'2009-07-23 11:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525332,'59DB4A4B-FD6E-E511-9449-6C4008BF018F',743,'Measurement',40,199,NULL,1,'2008-07-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525333,'5ADB4A4B-FD6E-E511-9449-6C4008BF018F',744,'Measurement',41,199,NULL,1,'2008-07-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525334,'5BDB4A4B-FD6E-E511-9449-6C4008BF018F',745,'Measurement',39,199,NULL,1,'2008-07-25 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525356,'5CDB4A4B-FD6E-E511-9449-6C4008BF018F',746,'Measurement',40,199,NULL,1,'2008-08-04 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525357,'5DDB4A4B-FD6E-E511-9449-6C4008BF018F',747,'Measurement',41,199,NULL,1,'2008-08-04 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525358,'5EDB4A4B-FD6E-E511-9449-6C4008BF018F',748,'Measurement',39,199,NULL,1,'2008-08-04 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525383,'5FDB4A4B-FD6E-E511-9449-6C4008BF018F',749,'Measurement',40,199,NULL,1,'2009-08-05 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525384,'60DB4A4B-FD6E-E511-9449-6C4008BF018F',750,'Measurement',41,199,NULL,1,'2009-08-05 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525385,'61DB4A4B-FD6E-E511-9449-6C4008BF018F',751,'Measurement',63,199,NULL,1,'2009-08-05 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525386,'62DB4A4B-FD6E-E511-9449-6C4008BF018F',752,'Measurement',39,199,NULL,1,'2009-08-05 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525413,'63DB4A4B-FD6E-E511-9449-6C4008BF018F',753,'Measurement',40,199,NULL,1,'2009-08-20 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525414,'64DB4A4B-FD6E-E511-9449-6C4008BF018F',754,'Measurement',41,199,NULL,1,'2009-08-20 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525415,'65DB4A4B-FD6E-E511-9449-6C4008BF018F',755,'Measurement',63,199,NULL,1,'2009-08-20 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525416,'66DB4A4B-FD6E-E511-9449-6C4008BF018F',756,'Measurement',39,199,NULL,1,'2009-08-20 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525450,'67DB4A4B-FD6E-E511-9449-6C4008BF018F',757,'Measurement',40,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525451,'68DB4A4B-FD6E-E511-9449-6C4008BF018F',758,'Measurement',64,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525452,'69DB4A4B-FD6E-E511-9449-6C4008BF018F',759,'Measurement',40,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525453,'6ADB4A4B-FD6E-E511-9449-6C4008BF018F',760,'Measurement',64,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525454,'6BDB4A4B-FD6E-E511-9449-6C4008BF018F',761,'Measurement',41,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525455,'6CDB4A4B-FD6E-E511-9449-6C4008BF018F',762,'Measurement',63,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525456,'6DDB4A4B-FD6E-E511-9449-6C4008BF018F',763,'Measurement',41,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525457,'6EDB4A4B-FD6E-E511-9449-6C4008BF018F',764,'Measurement',39,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525458,'6FDB4A4B-FD6E-E511-9449-6C4008BF018F',765,'Measurement',65,199,NULL,1,'2008-08-21 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525489,'70DB4A4B-FD6E-E511-9449-6C4008BF018F',766,'Measurement',40,199,NULL,1,'2009-09-02 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525490,'71DB4A4B-FD6E-E511-9449-6C4008BF018F',767,'Measurement',41,199,NULL,1,'2009-09-02 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525491,'72DB4A4B-FD6E-E511-9449-6C4008BF018F',768,'Measurement',63,199,NULL,1,'2009-09-02 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525492,'73DB4A4B-FD6E-E511-9449-6C4008BF018F',769,'Measurement',39,199,NULL,1,'2009-09-02 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525493,'74DB4A4B-FD6E-E511-9449-6C4008BF018F',770,'Measurement',39,199,NULL,1,'2009-09-02 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525521,'75DB4A4B-FD6E-E511-9449-6C4008BF018F',771,'Measurement',40,199,NULL,1,'2008-09-12 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525522,'76DB4A4B-FD6E-E511-9449-6C4008BF018F',772,'Measurement',41,199,NULL,1,'2008-09-12 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525523,'77DB4A4B-FD6E-E511-9449-6C4008BF018F',773,'Measurement',63,199,NULL,1,'2008-09-12 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525524,'78DB4A4B-FD6E-E511-9449-6C4008BF018F',774,'Measurement',41,199,NULL,1,'2008-09-12 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525525,'79DB4A4B-FD6E-E511-9449-6C4008BF018F',775,'Measurement',39,199,NULL,1,'2008-09-12 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525553,'7ADB4A4B-FD6E-E511-9449-6C4008BF018F',782,'Measurement',40,199,NULL,1,'2008-09-26 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525554,'7BDB4A4B-FD6E-E511-9449-6C4008BF018F',783,'Measurement',41,199,NULL,1,'2008-09-26 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525555,'7CDB4A4B-FD6E-E511-9449-6C4008BF018F',784,'Measurement',63,199,NULL,1,'2008-09-26 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525556,'7DDB4A4B-FD6E-E511-9449-6C4008BF018F',785,'Measurement',41,199,NULL,1,'2008-09-26 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525557,'7EDB4A4B-FD6E-E511-9449-6C4008BF018F',786,'Measurement',39,199,NULL,1,'2008-09-26 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525590,'7FDB4A4B-FD6E-E511-9449-6C4008BF018F',791,'Measurement',40,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525591,'80DB4A4B-FD6E-E511-9449-6C4008BF018F',792,'Measurement',64,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525592,'81DB4A4B-FD6E-E511-9449-6C4008BF018F',793,'Measurement',41,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525593,'82DB4A4B-FD6E-E511-9449-6C4008BF018F',794,'Measurement',63,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525594,'83DB4A4B-FD6E-E511-9449-6C4008BF018F',795,'Measurement',41,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525595,'84DB4A4B-FD6E-E511-9449-6C4008BF018F',796,'Measurement',39,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525596,'85DB4A4B-FD6E-E511-9449-6C4008BF018F',797,'Measurement',65,199,NULL,1,'2008-10-10 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525624,'86DB4A4B-FD6E-E511-9449-6C4008BF018F',803,'Measurement',40,199,NULL,1,'2008-10-24 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525625,'87DB4A4B-FD6E-E511-9449-6C4008BF018F',804,'Measurement',41,199,NULL,1,'2008-10-24 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525626,'88DB4A4B-FD6E-E511-9449-6C4008BF018F',805,'Measurement',63,199,NULL,1,'2008-10-24 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525627,'89DB4A4B-FD6E-E511-9449-6C4008BF018F',806,'Measurement',39,199,NULL,1,'2008-10-24 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525667,'8ADB4A4B-FD6E-E511-9449-6C4008BF018F',811,'Measurement',40,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525668,'8BDB4A4B-FD6E-E511-9449-6C4008BF018F',812,'Measurement',64,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525669,'8CDB4A4B-FD6E-E511-9449-6C4008BF018F',813,'Measurement',41,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525670,'8DDB4A4B-FD6E-E511-9449-6C4008BF018F',814,'Measurement',63,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525671,'8EDB4A4B-FD6E-E511-9449-6C4008BF018F',815,'Measurement',41,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525672,'8FDB4A4B-FD6E-E511-9449-6C4008BF018F',816,'Measurement',39,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525673,'90DB4A4B-FD6E-E511-9449-6C4008BF018F',817,'Measurement',65,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525674,'91DB4A4B-FD6E-E511-9449-6C4008BF018F',818,'Measurement',39,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525675,'92DB4A4B-FD6E-E511-9449-6C4008BF018F',819,'Measurement',65,199,NULL,1,'2008-11-07 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525707,'93DB4A4B-FD6E-E511-9449-6C4008BF018F',824,'Measurement',40,199,NULL,1,'2008-11-17 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525708,'94DB4A4B-FD6E-E511-9449-6C4008BF018F',825,'Measurement',40,199,NULL,1,'2008-11-17 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525709,'95DB4A4B-FD6E-E511-9449-6C4008BF018F',826,'Measurement',41,199,NULL,1,'2008-11-17 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525710,'96DB4A4B-FD6E-E511-9449-6C4008BF018F',827,'Measurement',63,199,NULL,1,'2008-11-17 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525711,'97DB4A4B-FD6E-E511-9449-6C4008BF018F',828,'Measurement',41,199,NULL,1,'2008-11-17 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525712,'98DB4A4B-FD6E-E511-9449-6C4008BF018F',829,'Measurement',39,199,NULL,1,'2008-11-17 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525738,'99DB4A4B-FD6E-E511-9449-6C4008BF018F',834,'Measurement',40,199,NULL,1,'2008-12-04 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525739,'9ADB4A4B-FD6E-E511-9449-6C4008BF018F',835,'Measurement',41,199,NULL,1,'2008-12-04 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525740,'9BDB4A4B-FD6E-E511-9449-6C4008BF018F',836,'Measurement',63,199,NULL,1,'2008-12-04 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525741,'9CDB4A4B-FD6E-E511-9449-6C4008BF018F',837,'Measurement',39,199,NULL,1,'2008-12-04 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525768,'9DDB4A4B-FD6E-E511-9449-6C4008BF018F',838,'Measurement',40,199,NULL,1,'2007-12-05 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525769,'9EDB4A4B-FD6E-E511-9449-6C4008BF018F',839,'Measurement',39,199,NULL,1,'2007-12-05 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525770,'9FDB4A4B-FD6E-E511-9449-6C4008BF018F',840,'Measurement',41,199,NULL,1,'2007-12-05 10:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525795,'A0DB4A4B-FD6E-E511-9449-6C4008BF018F',845,'Measurement',40,199,NULL,1,'2008-12-18 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525796,'A1DB4A4B-FD6E-E511-9449-6C4008BF018F',846,'Measurement',41,199,NULL,1,'2008-12-18 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525797,'A2DB4A4B-FD6E-E511-9449-6C4008BF018F',847,'Measurement',63,199,NULL,1,'2008-12-18 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525798,'A3DB4A4B-FD6E-E511-9449-6C4008BF018F',848,'Measurement',39,199,NULL,1,'2008-12-18 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525823,'A4DB4A4B-FD6E-E511-9449-6C4008BF018F',849,'Measurement',40,199,NULL,1,'2007-12-20 14:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525824,'A5DB4A4B-FD6E-E511-9449-6C4008BF018F',850,'Measurement',41,199,NULL,1,'2007-12-20 14:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525825,'A6DB4A4B-FD6E-E511-9449-6C4008BF018F',851,'Measurement',39,199,NULL,1,'2007-12-20 14:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525839,'A7DB4A4B-FD6E-E511-9449-6C4008BF018F',852,'Measurement',40,199,NULL,1,'2007-10-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525840,'A8DB4A4B-FD6E-E511-9449-6C4008BF018F',853,'Measurement',39,199,NULL,1,'2007-10-04 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525847,'A9DB4A4B-FD6E-E511-9449-6C4008BF018F',854,'Measurement',40,199,NULL,1,'2007-10-10 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525848,'AADB4A4B-FD6E-E511-9449-6C4008BF018F',855,'Measurement',39,199,NULL,1,'2007-10-10 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525855,'ABDB4A4B-FD6E-E511-9449-6C4008BF018F',856,'Measurement',40,199,NULL,1,'2007-10-17 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525856,'ACDB4A4B-FD6E-E511-9449-6C4008BF018F',857,'Measurement',39,199,NULL,1,'2007-10-17 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525861,'ADDB4A4B-FD6E-E511-9449-6C4008BF018F',858,'Measurement',40,199,NULL,1,'2007-10-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525862,'AEDB4A4B-FD6E-E511-9449-6C4008BF018F',859,'Measurement',39,199,NULL,1,'2007-10-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525871,'AFDB4A4B-FD6E-E511-9449-6C4008BF018F',860,'Measurement',40,199,NULL,1,'2007-11-01 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525872,'B0DB4A4B-FD6E-E511-9449-6C4008BF018F',861,'Measurement',39,199,NULL,1,'2007-11-01 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525887,'B1DB4A4B-FD6E-E511-9449-6C4008BF018F',862,'Measurement',40,199,NULL,1,'2007-11-07 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525888,'B2DB4A4B-FD6E-E511-9449-6C4008BF018F',863,'Measurement',39,199,NULL,1,'2007-11-07 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525895,'B3DB4A4B-FD6E-E511-9449-6C4008BF018F',864,'Measurement',40,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525896,'B4DB4A4B-FD6E-E511-9449-6C4008BF018F',865,'Measurement',39,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525897,'B5DB4A4B-FD6E-E511-9449-6C4008BF018F',866,'Measurement',40,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525898,'B6DB4A4B-FD6E-E511-9449-6C4008BF018F',867,'Measurement',39,199,NULL,1,'2007-11-13 13:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525915,'B7DB4A4B-FD6E-E511-9449-6C4008BF018F',868,'Measurement',40,199,NULL,1,'2007-11-21 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525916,'B8DB4A4B-FD6E-E511-9449-6C4008BF018F',869,'Measurement',39,199,NULL,1,'2007-11-21 14:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525926,'B9DB4A4B-FD6E-E511-9449-6C4008BF018F',106,'Measurement',39,199,NULL,1,'2006-07-26 00:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525927,'BADB4A4B-FD6E-E511-9449-6C4008BF018F',107,'Measurement',41,199,NULL,1,'2007-03-08 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525928,'BBDB4A4B-FD6E-E511-9449-6C4008BF018F',108,'Measurement',41,199,NULL,1,'2007-03-07 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525929,'BCDB4A4B-FD6E-E511-9449-6C4008BF018F',109,'Measurement',41,199,NULL,1,'2007-03-07 19:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525930,'BDDB4A4B-FD6E-E511-9449-6C4008BF018F',110,'Measurement',39,199,NULL,1,'2006-07-25 21:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525931,'BEDB4A4B-FD6E-E511-9449-6C4008BF018F',111,'Measurement',39,199,NULL,1,'2006-07-26 03:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525932,'BFDB4A4B-FD6E-E511-9449-6C4008BF018F',112,'Measurement',40,199,NULL,1,'2006-10-20 03:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525933,'C0DB4A4B-FD6E-E511-9449-6C4008BF018F',113,'Measurement',40,199,NULL,1,'2006-10-20 05:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525934,'C1DB4A4B-FD6E-E511-9449-6C4008BF018F',114,'Measurement',40,199,NULL,1,'2006-10-20 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525944,'C2DB4A4B-FD6E-E511-9449-6C4008BF018F',115,'Measurement',40,199,NULL,1,'2007-02-08 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525945,'C3DB4A4B-FD6E-E511-9449-6C4008BF018F',116,'Measurement',39,199,NULL,1,'2006-07-26 06:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525946,'C4DB4A4B-FD6E-E511-9449-6C4008BF018F',117,'Measurement',41,199,NULL,1,'2007-03-08 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525965,'C5DB4A4B-FD6E-E511-9449-6C4008BF018F',118,'Measurement',41,199,NULL,1,'2007-03-10 00:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525966,'C6DB4A4B-FD6E-E511-9449-6C4008BF018F',119,'Measurement',39,199,NULL,1,'2006-10-19 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525967,'C7DB4A4B-FD6E-E511-9449-6C4008BF018F',120,'Measurement',39,199,NULL,1,'2006-10-19 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525968,'C8DB4A4B-FD6E-E511-9449-6C4008BF018F',121,'Measurement',39,199,NULL,1,'2006-10-19 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525969,'C9DB4A4B-FD6E-E511-9449-6C4008BF018F',122,'Measurement',41,199,NULL,1,'2007-03-09 16:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525970,'CADB4A4B-FD6E-E511-9449-6C4008BF018F',123,'Measurement',40,199,NULL,1,'2007-02-08 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525971,'CBDB4A4B-FD6E-E511-9449-6C4008BF018F',124,'Measurement',41,199,NULL,1,'2007-03-09 18:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525972,'CCDB4A4B-FD6E-E511-9449-6C4008BF018F',125,'Measurement',40,199,NULL,1,'2007-02-09 02:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525973,'CDDB4A4B-FD6E-E511-9449-6C4008BF018F',126,'Measurement',41,199,NULL,1,'2007-03-09 20:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525974,'CEDB4A4B-FD6E-E511-9449-6C4008BF018F',127,'Measurement',40,199,NULL,1,'2007-02-08 22:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525975,'CFDB4A4B-FD6E-E511-9449-6C4008BF018F',128,'Measurement',40,199,NULL,1,'2007-02-09 06:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525976,'D0DB4A4B-FD6E-E511-9449-6C4008BF018F',129,'Measurement',39,199,NULL,1,'2006-07-26 09:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525979,'D1DB4A4B-FD6E-E511-9449-6C4008BF018F',130,'Measurement',40,199,NULL,1,'2005-10-30 20:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525980,'D2DB4A4B-FD6E-E511-9449-6C4008BF018F',131,'Measurement',41,199,NULL,1,'2005-11-14 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525983,'D3DB4A4B-FD6E-E511-9449-6C4008BF018F',132,'Measurement',41,199,NULL,1,'2006-03-01 12:16:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525984,'D4DB4A4B-FD6E-E511-9449-6C4008BF018F',133,'Measurement',40,199,NULL,1,'2005-10-30 21:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525987,'D5DB4A4B-FD6E-E511-9449-6C4008BF018F',134,'Measurement',41,199,NULL,1,'2006-03-02 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525988,'D6DB4A4B-FD6E-E511-9449-6C4008BF018F',135,'Measurement',40,199,NULL,1,'2005-10-30 22:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525991,'D7DB4A4B-FD6E-E511-9449-6C4008BF018F',136,'Measurement',41,199,NULL,1,'2006-03-03 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525992,'D8DB4A4B-FD6E-E511-9449-6C4008BF018F',137,'Measurement',40,199,NULL,1,'2005-11-13 13:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525995,'D9DB4A4B-FD6E-E511-9449-6C4008BF018F',138,'Measurement',41,199,NULL,1,'2006-03-04 12:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6525996,'DADB4A4B-FD6E-E511-9449-6C4008BF018F',139,'Measurement',40,199,NULL,1,'2005-11-13 18:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526001,'DBDB4A4B-FD6E-E511-9449-6C4008BF018F',140,'Measurement',40,199,NULL,1,'2005-11-14 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526002,'DCDB4A4B-FD6E-E511-9449-6C4008BF018F',141,'Measurement',41,199,NULL,1,'2006-03-05 10:55:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526003,'DDDB4A4B-FD6E-E511-9449-6C4008BF018F',142,'Measurement',41,199,NULL,1,'2006-03-06 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526004,'DEDB4A4B-FD6E-E511-9449-6C4008BF018F',143,'Measurement',40,199,NULL,1,'2005-11-13 20:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526013,'DFDB4A4B-FD6E-E511-9449-6C4008BF018F',144,'Measurement',40,199,NULL,1,'2006-03-01 12:16:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526014,'E0DB4A4B-FD6E-E511-9449-6C4008BF018F',145,'Measurement',41,199,NULL,1,'2006-03-07 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526015,'E1DB4A4B-FD6E-E511-9449-6C4008BF018F',146,'Measurement',40,199,NULL,1,'2005-11-14 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526016,'E2DB4A4B-FD6E-E511-9449-6C4008BF018F',147,'Measurement',41,199,NULL,1,'2006-03-07 17:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526017,'E3DB4A4B-FD6E-E511-9449-6C4008BF018F',148,'Measurement',40,199,NULL,1,'2005-11-14 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526018,'E4DB4A4B-FD6E-E511-9449-6C4008BF018F',149,'Measurement',40,199,NULL,1,'2005-11-14 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526019,'E5DB4A4B-FD6E-E511-9449-6C4008BF018F',150,'Measurement',40,199,NULL,1,'2005-11-14 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526020,'E6DB4A4B-FD6E-E511-9449-6C4008BF018F',151,'Measurement',41,199,NULL,1,'2006-03-06 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526021,'E7DB4A4B-FD6E-E511-9449-6C4008BF018F',152,'Measurement',41,199,NULL,1,'2006-03-07 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526022,'E8DB4A4B-FD6E-E511-9449-6C4008BF018F',153,'Measurement',41,199,NULL,1,'2006-03-07 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526044,'E9DB4A4B-FD6E-E511-9449-6C4008BF018F',154,'Measurement',40,199,NULL,1,'2007-02-16 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526045,'EADB4A4B-FD6E-E511-9449-6C4008BF018F',155,'Measurement',40,199,NULL,1,'2007-02-09 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526046,'EBDB4A4B-FD6E-E511-9449-6C4008BF018F',156,'Measurement',41,199,NULL,1,'2007-03-13 15:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526047,'ECDB4A4B-FD6E-E511-9449-6C4008BF018F',157,'Measurement',41,199,NULL,1,'2007-03-13 19:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526048,'EDDB4A4B-FD6E-E511-9449-6C4008BF018F',158,'Measurement',39,199,NULL,1,'2006-10-20 03:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526049,'EEDB4A4B-FD6E-E511-9449-6C4008BF018F',159,'Measurement',39,199,NULL,1,'2006-10-20 05:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526050,'EFDB4A4B-FD6E-E511-9449-6C4008BF018F',160,'Measurement',39,199,NULL,1,'2006-10-20 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526051,'F0DB4A4B-FD6E-E511-9449-6C4008BF018F',161,'Measurement',41,199,NULL,1,'2007-03-10 06:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526052,'F1DB4A4B-FD6E-E511-9449-6C4008BF018F',162,'Measurement',40,199,NULL,1,'2007-02-16 07:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526059,'F2DB4A4B-FD6E-E511-9449-6C4008BF018F',163,'Measurement',40,199,NULL,1,'2007-02-16 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526060,'F3DB4A4B-FD6E-E511-9449-6C4008BF018F',164,'Measurement',39,199,NULL,1,'2007-02-08 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526061,'F4DB4A4B-FD6E-E511-9449-6C4008BF018F',165,'Measurement',41,199,NULL,1,'2007-03-14 09:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526068,'F5DB4A4B-FD6E-E511-9449-6C4008BF018F',166,'Measurement',40,199,NULL,1,'2007-02-16 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526069,'F6DB4A4B-FD6E-E511-9449-6C4008BF018F',167,'Measurement',40,199,NULL,1,'2007-02-16 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526070,'F7DB4A4B-FD6E-E511-9449-6C4008BF018F',168,'Measurement',39,199,NULL,1,'2007-02-08 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526071,'F8DB4A4B-FD6E-E511-9449-6C4008BF018F',169,'Measurement',41,199,NULL,1,'2007-03-14 19:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526072,'F9DB4A4B-FD6E-E511-9449-6C4008BF018F',170,'Measurement',39,199,NULL,1,'2007-02-08 22:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526073,'FADB4A4B-FD6E-E511-9449-6C4008BF018F',171,'Measurement',41,199,NULL,1,'2007-03-15 07:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526084,'FBDB4A4B-FD6E-E511-9449-6C4008BF018F',172,'Measurement',40,199,NULL,1,'2006-03-02 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526087,'FCDB4A4B-FD6E-E511-9449-6C4008BF018F',173,'Measurement',40,199,NULL,1,'2006-03-04 12:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526088,'FDDB4A4B-FD6E-E511-9449-6C4008BF018F',174,'Measurement',40,199,NULL,1,'2006-03-03 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526090,'FEDB4A4B-FD6E-E511-9449-6C4008BF018F',175,'Measurement',40,199,NULL,1,'2006-03-05 10:55:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526097,'FFDB4A4B-FD6E-E511-9449-6C4008BF018F',176,'Measurement',41,199,NULL,1,'2007-03-21 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526098,'00DC4A4B-FD6E-E511-9449-6C4008BF018F',177,'Measurement',39,199,NULL,1,'2007-02-09 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526099,'01DC4A4B-FD6E-E511-9449-6C4008BF018F',178,'Measurement',40,199,NULL,1,'2007-03-07 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526100,'02DC4A4B-FD6E-E511-9449-6C4008BF018F',179,'Measurement',40,199,NULL,1,'2007-02-16 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526101,'03DC4A4B-FD6E-E511-9449-6C4008BF018F',180,'Measurement',40,199,NULL,1,'2007-03-07 19:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526102,'04DC4A4B-FD6E-E511-9449-6C4008BF018F',181,'Measurement',41,199,NULL,1,'2007-03-20 19:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526103,'05DC4A4B-FD6E-E511-9449-6C4008BF018F',182,'Measurement',39,199,NULL,1,'2007-02-09 02:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526104,'06DC4A4B-FD6E-E511-9449-6C4008BF018F',183,'Measurement',41,199,NULL,1,'2007-03-20 21:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526105,'07DC4A4B-FD6E-E511-9449-6C4008BF018F',184,'Measurement',39,199,NULL,1,'2007-02-09 06:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526109,'08DC4A4B-FD6E-E511-9449-6C4008BF018F',185,'Measurement',41,199,NULL,1,'2006-03-28 12:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526110,'09DC4A4B-FD6E-E511-9449-6C4008BF018F',186,'Measurement',39,199,NULL,1,'2005-10-30 13:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526111,'0ADC4A4B-FD6E-E511-9449-6C4008BF018F',187,'Measurement',39,199,NULL,1,'2005-10-30 14:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526112,'0BDC4A4B-FD6E-E511-9449-6C4008BF018F',188,'Measurement',41,199,NULL,1,'2006-03-28 14:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526113,'0CDC4A4B-FD6E-E511-9449-6C4008BF018F',189,'Measurement',40,199,NULL,1,'2006-03-06 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526114,'0DDC4A4B-FD6E-E511-9449-6C4008BF018F',190,'Measurement',40,199,NULL,1,'2006-03-06 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526115,'0EDC4A4B-FD6E-E511-9449-6C4008BF018F',191,'Measurement',40,199,NULL,1,'2006-03-07 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526116,'0FDC4A4B-FD6E-E511-9449-6C4008BF018F',192,'Measurement',39,199,NULL,1,'2005-10-30 15:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526117,'10DC4A4B-FD6E-E511-9449-6C4008BF018F',193,'Measurement',39,199,NULL,1,'2005-10-30 16:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526118,'11DC4A4B-FD6E-E511-9449-6C4008BF018F',194,'Measurement',41,199,NULL,1,'2006-03-28 16:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526119,'12DC4A4B-FD6E-E511-9449-6C4008BF018F',195,'Measurement',40,199,NULL,1,'2006-03-07 17:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526120,'13DC4A4B-FD6E-E511-9449-6C4008BF018F',196,'Measurement',39,199,NULL,1,'2005-10-30 17:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526121,'14DC4A4B-FD6E-E511-9449-6C4008BF018F',197,'Measurement',39,199,NULL,1,'2005-10-30 18:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526122,'15DC4A4B-FD6E-E511-9449-6C4008BF018F',198,'Measurement',41,199,NULL,1,'2006-03-28 18:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526123,'16DC4A4B-FD6E-E511-9449-6C4008BF018F',199,'Measurement',39,199,NULL,1,'2005-10-30 19:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526124,'17DC4A4B-FD6E-E511-9449-6C4008BF018F',200,'Measurement',41,199,NULL,1,'2006-03-29 02:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526125,'18DC4A4B-FD6E-E511-9449-6C4008BF018F',201,'Measurement',41,199,NULL,1,'2006-03-28 21:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526126,'19DC4A4B-FD6E-E511-9449-6C4008BF018F',202,'Measurement',40,199,NULL,1,'2006-03-07 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526127,'1ADC4A4B-FD6E-E511-9449-6C4008BF018F',203,'Measurement',41,199,NULL,1,'2006-03-29 04:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526128,'1BDC4A4B-FD6E-E511-9449-6C4008BF018F',204,'Measurement',40,199,NULL,1,'2006-03-17 08:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526129,'1CDC4A4B-FD6E-E511-9449-6C4008BF018F',205,'Measurement',40,199,NULL,1,'2006-03-07 09:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526139,'1DDC4A4B-FD6E-E511-9449-6C4008BF018F',206,'Measurement',39,199,NULL,1,'2007-02-16 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526140,'1EDC4A4B-FD6E-E511-9449-6C4008BF018F',207,'Measurement',40,199,NULL,1,'2007-03-08 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526141,'1FDC4A4B-FD6E-E511-9449-6C4008BF018F',208,'Measurement',39,199,NULL,1,'2007-02-16 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526142,'20DC4A4B-FD6E-E511-9449-6C4008BF018F',209,'Measurement',41,199,NULL,1,'2007-03-27 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526143,'21DC4A4B-FD6E-E511-9449-6C4008BF018F',210,'Measurement',40,199,NULL,1,'2007-03-09 16:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526144,'22DC4A4B-FD6E-E511-9449-6C4008BF018F',211,'Measurement',41,199,NULL,1,'2007-03-27 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526145,'23DC4A4B-FD6E-E511-9449-6C4008BF018F',212,'Measurement',41,199,NULL,1,'2007-03-27 23:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526146,'24DC4A4B-FD6E-E511-9449-6C4008BF018F',213,'Measurement',39,199,NULL,1,'2007-02-16 07:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526147,'25DC4A4B-FD6E-E511-9449-6C4008BF018F',214,'Measurement',40,199,NULL,1,'2007-03-08 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526163,'26DC4A4B-FD6E-E511-9449-6C4008BF018F',215,'Measurement',41,199,NULL,1,'2006-03-29 10:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526164,'27DC4A4B-FD6E-E511-9449-6C4008BF018F',216,'Measurement',40,199,NULL,1,'2006-03-28 12:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526165,'28DC4A4B-FD6E-E511-9449-6C4008BF018F',217,'Measurement',39,199,NULL,1,'2005-11-13 13:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526166,'29DC4A4B-FD6E-E511-9449-6C4008BF018F',218,'Measurement',40,199,NULL,1,'2006-03-18 02:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526167,'2ADC4A4B-FD6E-E511-9449-6C4008BF018F',219,'Measurement',39,199,NULL,1,'2005-10-30 20:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526168,'2BDC4A4B-FD6E-E511-9449-6C4008BF018F',220,'Measurement',39,199,NULL,1,'2005-10-30 21:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526169,'2CDC4A4B-FD6E-E511-9449-6C4008BF018F',221,'Measurement',39,199,NULL,1,'2005-10-30 22:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526170,'2DDC4A4B-FD6E-E511-9449-6C4008BF018F',222,'Measurement',40,199,NULL,1,'2006-03-18 23:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526171,'2EDC4A4B-FD6E-E511-9449-6C4008BF018F',223,'Measurement',40,199,NULL,1,'2006-03-19 05:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526172,'2FDC4A4B-FD6E-E511-9449-6C4008BF018F',224,'Measurement',41,199,NULL,1,'2006-03-29 05:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526173,'30DC4A4B-FD6E-E511-9449-6C4008BF018F',225,'Measurement',41,199,NULL,1,'2006-03-29 07:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526174,'31DC4A4B-FD6E-E511-9449-6C4008BF018F',226,'Measurement',41,199,NULL,1,'2006-03-29 09:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526178,'32DC4A4B-FD6E-E511-9449-6C4008BF018F',227,'Measurement',39,199,NULL,1,'2007-02-16 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526179,'33DC4A4B-FD6E-E511-9449-6C4008BF018F',228,'Measurement',40,199,NULL,1,'2007-03-09 18:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526180,'34DC4A4B-FD6E-E511-9449-6C4008BF018F',229,'Measurement',41,199,NULL,1,'2007-03-28 05:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526211,'35DC4A4B-FD6E-E511-9449-6C4008BF018F',230,'Measurement',41,199,NULL,1,'2006-03-30 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526212,'36DC4A4B-FD6E-E511-9449-6C4008BF018F',231,'Measurement',41,199,NULL,1,'2006-03-30 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526213,'37DC4A4B-FD6E-E511-9449-6C4008BF018F',232,'Measurement',39,199,NULL,1,'2005-11-14 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526214,'38DC4A4B-FD6E-E511-9449-6C4008BF018F',233,'Measurement',41,199,NULL,1,'2006-03-29 11:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526215,'39DC4A4B-FD6E-E511-9449-6C4008BF018F',234,'Measurement',41,199,NULL,1,'2006-03-29 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526216,'3ADC4A4B-FD6E-E511-9449-6C4008BF018F',235,'Measurement',40,199,NULL,1,'2006-03-28 14:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526217,'3BDC4A4B-FD6E-E511-9449-6C4008BF018F',236,'Measurement',39,199,NULL,1,'2005-11-14 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526218,'3CDC4A4B-FD6E-E511-9449-6C4008BF018F',237,'Measurement',40,199,NULL,1,'2006-03-28 16:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526219,'3DDC4A4B-FD6E-E511-9449-6C4008BF018F',238,'Measurement',41,199,NULL,1,'2006-03-29 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526220,'3EDC4A4B-FD6E-E511-9449-6C4008BF018F',239,'Measurement',39,199,NULL,1,'2005-11-14 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526221,'3FDC4A4B-FD6E-E511-9449-6C4008BF018F',240,'Measurement',40,199,NULL,1,'2006-03-28 18:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526222,'40DC4A4B-FD6E-E511-9449-6C4008BF018F',241,'Measurement',39,199,NULL,1,'2005-11-13 18:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526223,'41DC4A4B-FD6E-E511-9449-6C4008BF018F',242,'Measurement',40,199,NULL,1,'2006-03-29 02:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526224,'42DC4A4B-FD6E-E511-9449-6C4008BF018F',243,'Measurement',39,199,NULL,1,'2005-11-14 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526225,'43DC4A4B-FD6E-E511-9449-6C4008BF018F',244,'Measurement',39,199,NULL,1,'2005-11-13 20:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526226,'44DC4A4B-FD6E-E511-9449-6C4008BF018F',245,'Measurement',41,199,NULL,1,'2006-03-29 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526227,'45DC4A4B-FD6E-E511-9449-6C4008BF018F',246,'Measurement',39,199,NULL,1,'2005-11-14 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526228,'46DC4A4B-FD6E-E511-9449-6C4008BF018F',247,'Measurement',40,199,NULL,1,'2006-03-28 21:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526229,'47DC4A4B-FD6E-E511-9449-6C4008BF018F',248,'Measurement',41,199,NULL,1,'2006-03-30 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526230,'48DC4A4B-FD6E-E511-9449-6C4008BF018F',249,'Measurement',40,199,NULL,1,'2006-03-29 04:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526231,'49DC4A4B-FD6E-E511-9449-6C4008BF018F',250,'Measurement',40,199,NULL,1,'2006-03-29 05:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526241,'4ADC4A4B-FD6E-E511-9449-6C4008BF018F',251,'Measurement',41,199,NULL,1,'2006-04-05 00:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526242,'4BDC4A4B-FD6E-E511-9449-6C4008BF018F',252,'Measurement',40,199,NULL,1,'2006-03-29 10:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526243,'4CDC4A4B-FD6E-E511-9449-6C4008BF018F',253,'Measurement',40,199,NULL,1,'2006-03-29 11:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526244,'4DDC4A4B-FD6E-E511-9449-6C4008BF018F',254,'Measurement',39,199,NULL,1,'2006-03-28 12:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526245,'4EDC4A4B-FD6E-E511-9449-6C4008BF018F',255,'Measurement',40,199,NULL,1,'2006-03-29 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526246,'4FDC4A4B-FD6E-E511-9449-6C4008BF018F',256,'Measurement',39,199,NULL,1,'2006-03-28 14:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526247,'50DC4A4B-FD6E-E511-9449-6C4008BF018F',257,'Measurement',39,199,NULL,1,'2006-03-28 16:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526248,'51DC4A4B-FD6E-E511-9449-6C4008BF018F',258,'Measurement',39,199,NULL,1,'2006-03-28 18:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526249,'52DC4A4B-FD6E-E511-9449-6C4008BF018F',259,'Measurement',41,199,NULL,1,'2006-04-04 20:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526250,'53DC4A4B-FD6E-E511-9449-6C4008BF018F',260,'Measurement',39,199,NULL,1,'2006-03-28 21:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526251,'54DC4A4B-FD6E-E511-9449-6C4008BF018F',261,'Measurement',41,199,NULL,1,'2006-04-05 03:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526252,'55DC4A4B-FD6E-E511-9449-6C4008BF018F',262,'Measurement',41,199,NULL,1,'2006-04-05 06:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526253,'56DC4A4B-FD6E-E511-9449-6C4008BF018F',263,'Measurement',40,199,NULL,1,'2006-03-29 07:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526254,'57DC4A4B-FD6E-E511-9449-6C4008BF018F',264,'Measurement',41,199,NULL,1,'2006-04-05 08:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526255,'58DC4A4B-FD6E-E511-9449-6C4008BF018F',265,'Measurement',40,199,NULL,1,'2006-03-29 09:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526259,'59DC4A4B-FD6E-E511-9449-6C4008BF018F',266,'Measurement',41,199,NULL,1,'2006-04-05 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526260,'5ADC4A4B-FD6E-E511-9449-6C4008BF018F',267,'Measurement',41,199,NULL,1,'2006-04-05 13:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526261,'5BDC4A4B-FD6E-E511-9449-6C4008BF018F',268,'Measurement',40,199,NULL,1,'2006-03-29 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526262,'5CDC4A4B-FD6E-E511-9449-6C4008BF018F',269,'Measurement',39,199,NULL,1,'2006-03-29 02:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526263,'5DDC4A4B-FD6E-E511-9449-6C4008BF018F',270,'Measurement',40,199,NULL,1,'2006-03-29 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526264,'5EDC4A4B-FD6E-E511-9449-6C4008BF018F',271,'Measurement',39,199,NULL,1,'2006-03-29 04:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526286,'5FDC4A4B-FD6E-E511-9449-6C4008BF018F',272,'Measurement',40,199,NULL,1,'2006-03-30 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526287,'60DC4A4B-FD6E-E511-9449-6C4008BF018F',273,'Measurement',39,199,NULL,1,'2006-03-30 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526288,'61DC4A4B-FD6E-E511-9449-6C4008BF018F',274,'Measurement',40,199,NULL,1,'2006-04-05 00:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526289,'62DC4A4B-FD6E-E511-9449-6C4008BF018F',275,'Measurement',40,199,NULL,1,'2006-03-30 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526290,'63DC4A4B-FD6E-E511-9449-6C4008BF018F',276,'Measurement',41,199,NULL,1,'2006-04-15 10:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526291,'64DC4A4B-FD6E-E511-9449-6C4008BF018F',277,'Measurement',39,199,NULL,1,'2006-03-29 10:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526292,'65DC4A4B-FD6E-E511-9449-6C4008BF018F',278,'Measurement',40,199,NULL,1,'2006-04-05 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526293,'66DC4A4B-FD6E-E511-9449-6C4008BF018F',279,'Measurement',39,199,NULL,1,'2006-03-29 11:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526294,'67DC4A4B-FD6E-E511-9449-6C4008BF018F',280,'Measurement',41,199,NULL,1,'2006-07-25 12:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526295,'68DC4A4B-FD6E-E511-9449-6C4008BF018F',281,'Measurement',40,199,NULL,1,'2006-04-05 13:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526296,'69DC4A4B-FD6E-E511-9449-6C4008BF018F',282,'Measurement',39,199,NULL,1,'2006-03-29 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526297,'6ADC4A4B-FD6E-E511-9449-6C4008BF018F',283,'Measurement',41,199,NULL,1,'2006-07-25 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526298,'6BDC4A4B-FD6E-E511-9449-6C4008BF018F',284,'Measurement',39,199,NULL,1,'2006-03-29 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526299,'6CDC4A4B-FD6E-E511-9449-6C4008BF018F',285,'Measurement',41,199,NULL,1,'2006-07-25 18:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526300,'6DDC4A4B-FD6E-E511-9449-6C4008BF018F',286,'Measurement',41,199,NULL,1,'2006-04-05 19:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526301,'6EDC4A4B-FD6E-E511-9449-6C4008BF018F',287,'Measurement',40,199,NULL,1,'2006-04-04 20:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526302,'6FDC4A4B-FD6E-E511-9449-6C4008BF018F',288,'Measurement',39,199,NULL,1,'2006-03-29 21:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526303,'70DC4A4B-FD6E-E511-9449-6C4008BF018F',289,'Measurement',41,199,NULL,1,'2006-07-25 21:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526304,'71DC4A4B-FD6E-E511-9449-6C4008BF018F',290,'Measurement',41,199,NULL,1,'2006-04-15 21:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526305,'72DC4A4B-FD6E-E511-9449-6C4008BF018F',291,'Measurement',41,199,NULL,1,'2006-04-14 22:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526306,'73DC4A4B-FD6E-E511-9449-6C4008BF018F',292,'Measurement',40,199,NULL,1,'2006-04-05 03:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526307,'74DC4A4B-FD6E-E511-9449-6C4008BF018F',293,'Measurement',41,199,NULL,1,'2006-04-15 03:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526308,'75DC4A4B-FD6E-E511-9449-6C4008BF018F',294,'Measurement',40,199,NULL,1,'2006-03-30 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526309,'76DC4A4B-FD6E-E511-9449-6C4008BF018F',295,'Measurement',39,199,NULL,1,'2006-03-30 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526310,'77DC4A4B-FD6E-E511-9449-6C4008BF018F',296,'Measurement',39,199,NULL,1,'2006-03-29 05:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526311,'78DC4A4B-FD6E-E511-9449-6C4008BF018F',297,'Measurement',40,199,NULL,1,'2006-04-05 06:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526312,'79DC4A4B-FD6E-E511-9449-6C4008BF018F',298,'Measurement',41,199,NULL,1,'2006-04-15 06:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526313,'7ADC4A4B-FD6E-E511-9449-6C4008BF018F',299,'Measurement',39,199,NULL,1,'2006-03-29 07:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526314,'7BDC4A4B-FD6E-E511-9449-6C4008BF018F',300,'Measurement',40,199,NULL,1,'2006-04-05 08:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526315,'7CDC4A4B-FD6E-E511-9449-6C4008BF018F',301,'Measurement',39,199,NULL,1,'2006-03-29 09:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526316,'7DDC4A4B-FD6E-E511-9449-6C4008BF018F',302,'Measurement',41,199,NULL,1,'2006-07-26 00:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526317,'7EDC4A4B-FD6E-E511-9449-6C4008BF018F',303,'Measurement',39,199,NULL,1,'2006-04-05 00:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526318,'7FDC4A4B-FD6E-E511-9449-6C4008BF018F',304,'Measurement',39,199,NULL,1,'2006-03-30 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526319,'80DC4A4B-FD6E-E511-9449-6C4008BF018F',305,'Measurement',40,199,NULL,1,'2006-04-05 19:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526320,'81DC4A4B-FD6E-E511-9449-6C4008BF018F',306,'Measurement',39,199,NULL,1,'2006-04-04 20:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526321,'82DC4A4B-FD6E-E511-9449-6C4008BF018F',307,'Measurement',40,199,NULL,1,'2006-04-14 22:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526322,'83DC4A4B-FD6E-E511-9449-6C4008BF018F',308,'Measurement',41,199,NULL,1,'2006-07-26 03:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526323,'84DC4A4B-FD6E-E511-9449-6C4008BF018F',309,'Measurement',40,199,NULL,1,'2006-04-15 03:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526324,'85DC4A4B-FD6E-E511-9449-6C4008BF018F',310,'Measurement',41,199,NULL,1,'2006-07-26 06:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526328,'86DC4A4B-FD6E-E511-9449-6C4008BF018F',311,'Measurement',39,199,NULL,1,'2006-04-05 03:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526329,'87DC4A4B-FD6E-E511-9449-6C4008BF018F',312,'Measurement',40,199,NULL,1,'2006-04-15 06:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526330,'88DC4A4B-FD6E-E511-9449-6C4008BF018F',313,'Measurement',41,199,NULL,1,'2006-07-26 09:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526343,'89DC4A4B-FD6E-E511-9449-6C4008BF018F',314,'Measurement',40,199,NULL,1,'2006-04-15 10:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526344,'8ADC4A4B-FD6E-E511-9449-6C4008BF018F',315,'Measurement',41,199,NULL,1,'2006-10-19 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526345,'8BDC4A4B-FD6E-E511-9449-6C4008BF018F',316,'Measurement',39,199,NULL,1,'2006-04-05 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526346,'8CDC4A4B-FD6E-E511-9449-6C4008BF018F',317,'Measurement',40,199,NULL,1,'2006-06-09 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526347,'8DDC4A4B-FD6E-E511-9449-6C4008BF018F',318,'Measurement',41,199,NULL,1,'2006-10-19 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526348,'8EDC4A4B-FD6E-E511-9449-6C4008BF018F',319,'Measurement',41,199,NULL,1,'2006-10-19 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526349,'8FDC4A4B-FD6E-E511-9449-6C4008BF018F',320,'Measurement',39,199,NULL,1,'2006-04-05 13:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526350,'90DC4A4B-FD6E-E511-9449-6C4008BF018F',321,'Measurement',40,199,NULL,1,'2006-04-15 21:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526351,'91DC4A4B-FD6E-E511-9449-6C4008BF018F',322,'Measurement',41,199,NULL,1,'2006-10-20 03:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526352,'92DC4A4B-FD6E-E511-9449-6C4008BF018F',323,'Measurement',39,199,NULL,1,'2006-04-05 06:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526353,'93DC4A4B-FD6E-E511-9449-6C4008BF018F',324,'Measurement',40,199,NULL,1,'2006-06-09 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526354,'94DC4A4B-FD6E-E511-9449-6C4008BF018F',325,'Measurement',39,199,NULL,1,'2006-04-05 08:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526366,'95DC4A4B-FD6E-E511-9449-6C4008BF018F',326,'Measurement',40,199,NULL,1,'2007-03-13 19:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526369,'96DC4A4B-FD6E-E511-9449-6C4008BF018F',327,'Measurement',40,199,NULL,1,'2007-03-20 19:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526370,'97DC4A4B-FD6E-E511-9449-6C4008BF018F',328,'Measurement',40,199,NULL,1,'2007-03-14 19:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526371,'98DC4A4B-FD6E-E511-9449-6C4008BF018F',329,'Measurement',40,199,NULL,1,'2007-03-20 21:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526375,'99DC4A4B-FD6E-E511-9449-6C4008BF018F',330,'Measurement',40,199,NULL,1,'2007-03-15 07:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526376,'9ADC4A4B-FD6E-E511-9449-6C4008BF018F',331,'Measurement',40,199,NULL,1,'2007-03-14 09:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526389,'9BDC4A4B-FD6E-E511-9449-6C4008BF018F',332,'Measurement',40,199,NULL,1,'2007-03-10 00:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526390,'9CDC4A4B-FD6E-E511-9449-6C4008BF018F',333,'Measurement',39,199,NULL,1,'2007-03-07 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526391,'9DDC4A4B-FD6E-E511-9449-6C4008BF018F',334,'Measurement',41,199,NULL,1,'2007-06-07 14:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526392,'9EDC4A4B-FD6E-E511-9449-6C4008BF018F',335,'Measurement',39,199,NULL,1,'2007-02-16 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526393,'9FDC4A4B-FD6E-E511-9449-6C4008BF018F',336,'Measurement',40,199,NULL,1,'2007-03-13 15:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526394,'A0DC4A4B-FD6E-E511-9449-6C4008BF018F',337,'Measurement',39,199,NULL,1,'2007-02-16 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526395,'A1DC4A4B-FD6E-E511-9449-6C4008BF018F',338,'Measurement',39,199,NULL,1,'2007-03-07 19:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526396,'A2DC4A4B-FD6E-E511-9449-6C4008BF018F',339,'Measurement',40,199,NULL,1,'2007-03-09 20:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526397,'A3DC4A4B-FD6E-E511-9449-6C4008BF018F',340,'Measurement',41,199,NULL,1,'2007-06-07 04:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526398,'A4DC4A4B-FD6E-E511-9449-6C4008BF018F',341,'Measurement',40,199,NULL,1,'2007-03-10 06:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526399,'A5DC4A4B-FD6E-E511-9449-6C4008BF018F',342,'Measurement',41,199,NULL,1,'2007-06-07 08:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526400,'A6DC4A4B-FD6E-E511-9449-6C4008BF018F',343,'Measurement',41,199,NULL,1,'2007-06-07 09:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526423,'A7DC4A4B-FD6E-E511-9449-6C4008BF018F',344,'Measurement',39,199,NULL,1,'2006-04-15 10:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526424,'A8DC4A4B-FD6E-E511-9449-6C4008BF018F',345,'Measurement',40,199,NULL,1,'2006-07-25 12:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526425,'A9DC4A4B-FD6E-E511-9449-6C4008BF018F',346,'Measurement',41,199,NULL,1,'2007-02-08 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526426,'AADC4A4B-FD6E-E511-9449-6C4008BF018F',347,'Measurement',40,199,NULL,1,'2006-07-25 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526427,'ABDC4A4B-FD6E-E511-9449-6C4008BF018F',348,'Measurement',40,199,NULL,1,'2006-06-10 16:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526428,'ACDC4A4B-FD6E-E511-9449-6C4008BF018F',349,'Measurement',41,199,NULL,1,'2007-02-08 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526429,'ADDC4A4B-FD6E-E511-9449-6C4008BF018F',350,'Measurement',40,199,NULL,1,'2006-06-09 18:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526430,'AEDC4A4B-FD6E-E511-9449-6C4008BF018F',351,'Measurement',39,199,NULL,1,'2006-04-05 19:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526431,'AFDC4A4B-FD6E-E511-9449-6C4008BF018F',352,'Measurement',41,199,NULL,1,'2007-02-08 22:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526432,'B0DC4A4B-FD6E-E511-9449-6C4008BF018F',353,'Measurement',39,199,NULL,1,'2006-04-14 22:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526433,'B1DC4A4B-FD6E-E511-9449-6C4008BF018F',354,'Measurement',39,199,NULL,1,'2006-04-15 03:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526434,'B2DC4A4B-FD6E-E511-9449-6C4008BF018F',355,'Measurement',41,199,NULL,1,'2006-10-20 05:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526435,'B3DC4A4B-FD6E-E511-9449-6C4008BF018F',356,'Measurement',40,199,NULL,1,'2006-06-10 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526436,'B4DC4A4B-FD6E-E511-9449-6C4008BF018F',357,'Measurement',41,199,NULL,1,'2006-10-20 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526437,'B5DC4A4B-FD6E-E511-9449-6C4008BF018F',358,'Measurement',39,199,NULL,1,'2006-04-15 06:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526450,'B6DC4A4B-FD6E-E511-9449-6C4008BF018F',359,'Measurement',40,199,NULL,1,'2006-07-26 00:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526451,'B7DC4A4B-FD6E-E511-9449-6C4008BF018F',360,'Measurement',41,199,NULL,1,'2007-02-09 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526452,'B8DC4A4B-FD6E-E511-9449-6C4008BF018F',361,'Measurement',39,199,NULL,1,'2006-06-09 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526453,'B9DC4A4B-FD6E-E511-9449-6C4008BF018F',362,'Measurement',40,199,NULL,1,'2006-07-25 18:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526454,'BADC4A4B-FD6E-E511-9449-6C4008BF018F',363,'Measurement',41,199,NULL,1,'2007-02-09 02:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526455,'BBDC4A4B-FD6E-E511-9449-6C4008BF018F',364,'Measurement',40,199,NULL,1,'2006-07-25 21:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526456,'BCDC4A4B-FD6E-E511-9449-6C4008BF018F',365,'Measurement',39,199,NULL,1,'2006-04-15 21:45:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526457,'BDDC4A4B-FD6E-E511-9449-6C4008BF018F',366,'Measurement',41,199,NULL,1,'2007-02-09 06:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526458,'BEDC4A4B-FD6E-E511-9449-6C4008BF018F',367,'Measurement',39,199,NULL,1,'2006-06-09 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526463,'BFDC4A4B-FD6E-E511-9449-6C4008BF018F',368,'Measurement',40,199,NULL,1,'2007-03-21 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526473,'C0DC4A4B-FD6E-E511-9449-6C4008BF018F',369,'Measurement',40,199,NULL,1,'2007-03-27 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526475,'C1DC4A4B-FD6E-E511-9449-6C4008BF018F',370,'Measurement',40,199,NULL,1,'2007-03-27 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526477,'C2DC4A4B-FD6E-E511-9449-6C4008BF018F',371,'Measurement',40,199,NULL,1,'2007-03-27 23:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526478,'C3DC4A4B-FD6E-E511-9449-6C4008BF018F',372,'Measurement',40,199,NULL,1,'2007-03-28 05:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526479,'C4DC4A4B-FD6E-E511-9449-6C4008BF018F',373,'Measurement',41,199,NULL,1,'2005-04-28 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526480,'C5DC4A4B-FD6E-E511-9449-6C4008BF018F',374,'Measurement',39,199,NULL,1,'2007-03-08 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526481,'C6DC4A4B-FD6E-E511-9449-6C4008BF018F',375,'Measurement',39,199,NULL,1,'2007-03-10 00:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526484,'C7DC4A4B-FD6E-E511-9449-6C4008BF018F',376,'Measurement',40,199,NULL,1,'2007-06-07 14:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526488,'C8DC4A4B-FD6E-E511-9449-6C4008BF018F',377,'Measurement',39,199,NULL,1,'2007-03-13 15:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526489,'C9DC4A4B-FD6E-E511-9449-6C4008BF018F',378,'Measurement',39,199,NULL,1,'2007-03-09 16:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526491,'CADC4A4B-FD6E-E511-9449-6C4008BF018F',379,'Measurement',39,199,NULL,1,'2007-03-09 18:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526494,'CBDC4A4B-FD6E-E511-9449-6C4008BF018F',380,'Measurement',39,199,NULL,1,'2007-03-13 19:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526495,'CCDC4A4B-FD6E-E511-9449-6C4008BF018F',381,'Measurement',41,199,NULL,1,'2005-04-28 02:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526496,'CDDC4A4B-FD6E-E511-9449-6C4008BF018F',382,'Measurement',41,199,NULL,1,'2005-04-27 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526497,'CEDC4A4B-FD6E-E511-9449-6C4008BF018F',383,'Measurement',39,199,NULL,1,'2007-03-09 20:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526499,'CFDC4A4B-FD6E-E511-9449-6C4008BF018F',384,'Measurement',41,199,NULL,1,'2005-04-27 22:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526500,'D0DC4A4B-FD6E-E511-9449-6C4008BF018F',385,'Measurement',41,199,NULL,1,'2005-04-28 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526501,'D1DC4A4B-FD6E-E511-9449-6C4008BF018F',386,'Measurement',40,199,NULL,1,'2007-06-07 04:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526502,'D2DC4A4B-FD6E-E511-9449-6C4008BF018F',387,'Measurement',39,199,NULL,1,'2007-03-10 06:43:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526503,'D3DC4A4B-FD6E-E511-9449-6C4008BF018F',388,'Measurement',40,199,NULL,1,'2007-06-07 08:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526504,'D4DC4A4B-FD6E-E511-9449-6C4008BF018F',389,'Measurement',40,199,NULL,1,'2007-06-07 09:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526505,'D5DC4A4B-FD6E-E511-9449-6C4008BF018F',390,'Measurement',39,199,NULL,1,'2007-03-08 09:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526515,'D6DC4A4B-FD6E-E511-9449-6C4008BF018F',391,'Measurement',41,199,NULL,1,'2007-02-16 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526516,'D7DC4A4B-FD6E-E511-9449-6C4008BF018F',392,'Measurement',41,199,NULL,1,'2007-02-16 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526517,'D8DC4A4B-FD6E-E511-9449-6C4008BF018F',393,'Measurement',39,199,NULL,1,'2006-06-10 16:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526518,'D9DC4A4B-FD6E-E511-9449-6C4008BF018F',394,'Measurement',39,199,NULL,1,'2006-06-09 18:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526519,'DADC4A4B-FD6E-E511-9449-6C4008BF018F',395,'Measurement',40,199,NULL,1,'2006-07-26 03:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526520,'DBDC4A4B-FD6E-E511-9449-6C4008BF018F',396,'Measurement',40,199,NULL,1,'2006-07-26 06:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526521,'DCDC4A4B-FD6E-E511-9449-6C4008BF018F',397,'Measurement',39,199,NULL,1,'2006-06-10 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526522,'DDDC4A4B-FD6E-E511-9449-6C4008BF018F',398,'Measurement',41,199,NULL,1,'2007-02-16 07:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526523,'DEDC4A4B-FD6E-E511-9449-6C4008BF018F',399,'Measurement',40,199,NULL,1,'2006-07-26 09:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526533,'DFDC4A4B-FD6E-E511-9449-6C4008BF018F',400,'Measurement',40,199,NULL,1,'2006-10-19 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526534,'E0DC4A4B-FD6E-E511-9449-6C4008BF018F',401,'Measurement',41,199,NULL,1,'2007-02-16 12:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526535,'E1DC4A4B-FD6E-E511-9449-6C4008BF018F',402,'Measurement',39,199,NULL,1,'2006-07-25 12:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526536,'E2DC4A4B-FD6E-E511-9449-6C4008BF018F',403,'Measurement',40,199,NULL,1,'2006-10-19 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526537,'E3DC4A4B-FD6E-E511-9449-6C4008BF018F',404,'Measurement',40,199,NULL,1,'2006-10-19 13:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526538,'E4DC4A4B-FD6E-E511-9449-6C4008BF018F',405,'Measurement',41,199,NULL,1,'2007-02-16 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526539,'E5DC4A4B-FD6E-E511-9449-6C4008BF018F',406,'Measurement',39,199,NULL,1,'2006-07-25 15:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526540,'E6DC4A4B-FD6E-E511-9449-6C4008BF018F',407,'Measurement',41,199,NULL,1,'2007-02-16 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526541,'E7DC4A4B-FD6E-E511-9449-6C4008BF018F',408,'Measurement',39,199,NULL,1,'2006-07-25 18:15:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526551,'E8DC4A4B-FD6E-E511-9449-6C4008BF018F',409,'Measurement',41,199,NULL,1,'2005-08-16 15:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526552,'E9DC4A4B-FD6E-E511-9449-6C4008BF018F',410,'Measurement',41,199,NULL,1,'2005-08-16 18:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526554,'EADC4A4B-FD6E-E511-9449-6C4008BF018F',411,'Measurement',39,199,NULL,1,'2007-03-14 19:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526556,'EBDC4A4B-FD6E-E511-9449-6C4008BF018F',412,'Measurement',39,199,NULL,1,'2007-03-14 09:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526584,'ECDC4A4B-FD6E-E511-9449-6C4008BF018F',413,'Measurement',39,199,NULL,1,'2005-04-28 00:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526585,'EDDC4A4B-FD6E-E511-9449-6C4008BF018F',414,'Measurement',39,199,NULL,1,'2007-03-21 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526586,'EEDC4A4B-FD6E-E511-9449-6C4008BF018F',415,'Measurement',40,199,NULL,1,'2005-10-28 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526587,'EFDC4A4B-FD6E-E511-9449-6C4008BF018F',416,'Measurement',41,199,NULL,1,'2005-08-17 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526588,'F0DC4A4B-FD6E-E511-9449-6C4008BF018F',417,'Measurement',41,199,NULL,1,'2005-10-28 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526589,'F1DC4A4B-FD6E-E511-9449-6C4008BF018F',418,'Measurement',39,199,NULL,1,'2005-08-17 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526590,'F2DC4A4B-FD6E-E511-9449-6C4008BF018F',419,'Measurement',40,199,NULL,1,'2005-10-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526591,'F3DC4A4B-FD6E-E511-9449-6C4008BF018F',420,'Measurement',41,199,NULL,1,'2005-10-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526592,'F4DC4A4B-FD6E-E511-9449-6C4008BF018F',421,'Measurement',41,199,NULL,1,'2005-10-29 10:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526593,'F5DC4A4B-FD6E-E511-9449-6C4008BF018F',422,'Measurement',41,199,NULL,1,'2005-08-17 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526594,'F6DC4A4B-FD6E-E511-9449-6C4008BF018F',423,'Measurement',39,199,NULL,1,'2005-08-17 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526595,'F7DC4A4B-FD6E-E511-9449-6C4008BF018F',424,'Measurement',41,199,NULL,1,'2005-10-29 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526596,'F8DC4A4B-FD6E-E511-9449-6C4008BF018F',425,'Measurement',41,199,NULL,1,'2005-10-29 12:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526597,'F9DC4A4B-FD6E-E511-9449-6C4008BF018F',426,'Measurement',41,199,NULL,1,'2005-10-29 13:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526599,'FADC4A4B-FD6E-E511-9449-6C4008BF018F',427,'Measurement',39,199,NULL,1,'2007-06-07 14:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526600,'FBDC4A4B-FD6E-E511-9449-6C4008BF018F',428,'Measurement',41,199,NULL,1,'2005-10-29 14:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526602,'FCDC4A4B-FD6E-E511-9449-6C4008BF018F',429,'Measurement',39,199,NULL,1,'2007-03-27 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526603,'FDDC4A4B-FD6E-E511-9449-6C4008BF018F',430,'Measurement',39,199,NULL,1,'2005-08-16 15:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526604,'FEDC4A4B-FD6E-E511-9449-6C4008BF018F',431,'Measurement',41,199,NULL,1,'2005-10-29 15:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526606,'FFDC4A4B-FD6E-E511-9449-6C4008BF018F',432,'Measurement',39,199,NULL,1,'2005-08-16 18:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526607,'00DD4A4B-FD6E-E511-9449-6C4008BF018F',433,'Measurement',39,199,NULL,1,'2007-03-20 19:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526608,'01DD4A4B-FD6E-E511-9449-6C4008BF018F',434,'Measurement',39,199,NULL,1,'2005-04-28 02:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526609,'02DD4A4B-FD6E-E511-9449-6C4008BF018F',435,'Measurement',40,199,NULL,1,'2005-10-28 02:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526610,'03DD4A4B-FD6E-E511-9449-6C4008BF018F',436,'Measurement',41,199,NULL,1,'2005-10-28 02:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526611,'04DD4A4B-FD6E-E511-9449-6C4008BF018F',437,'Measurement',39,199,NULL,1,'2007-03-27 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526612,'05DD4A4B-FD6E-E511-9449-6C4008BF018F',438,'Measurement',39,199,NULL,1,'2005-04-27 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526613,'06DD4A4B-FD6E-E511-9449-6C4008BF018F',439,'Measurement',39,199,NULL,1,'2007-03-20 21:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526614,'07DD4A4B-FD6E-E511-9449-6C4008BF018F',440,'Measurement',40,199,NULL,1,'2005-10-27 21:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526615,'08DD4A4B-FD6E-E511-9449-6C4008BF018F',441,'Measurement',41,199,NULL,1,'2005-10-27 21:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526616,'09DD4A4B-FD6E-E511-9449-6C4008BF018F',442,'Measurement',39,199,NULL,1,'2005-10-27 21:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526617,'0ADD4A4B-FD6E-E511-9449-6C4008BF018F',443,'Measurement',39,199,NULL,1,'2005-04-27 22:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526618,'0BDD4A4B-FD6E-E511-9449-6C4008BF018F',444,'Measurement',40,199,NULL,1,'2005-10-27 22:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526619,'0CDD4A4B-FD6E-E511-9449-6C4008BF018F',445,'Measurement',41,199,NULL,1,'2005-10-27 22:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526620,'0DDD4A4B-FD6E-E511-9449-6C4008BF018F',446,'Measurement',39,199,NULL,1,'2005-10-27 22:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526621,'0EDD4A4B-FD6E-E511-9449-6C4008BF018F',447,'Measurement',39,199,NULL,1,'2007-03-27 23:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526623,'0FDD4A4B-FD6E-E511-9449-6C4008BF018F',448,'Measurement',40,199,NULL,1,'2005-10-27 23:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526624,'10DD4A4B-FD6E-E511-9449-6C4008BF018F',449,'Measurement',41,199,NULL,1,'2005-10-27 23:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526626,'11DD4A4B-FD6E-E511-9449-6C4008BF018F',450,'Measurement',39,199,NULL,1,'2005-10-27 23:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526627,'12DD4A4B-FD6E-E511-9449-6C4008BF018F',451,'Measurement',40,199,NULL,1,'2005-10-28 03:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526628,'13DD4A4B-FD6E-E511-9449-6C4008BF018F',452,'Measurement',41,199,NULL,1,'2005-10-28 03:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526631,'14DD4A4B-FD6E-E511-9449-6C4008BF018F',453,'Measurement',39,199,NULL,1,'2005-04-28 04:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526632,'15DD4A4B-FD6E-E511-9449-6C4008BF018F',454,'Measurement',39,199,NULL,1,'2007-06-07 04:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526633,'16DD4A4B-FD6E-E511-9449-6C4008BF018F',455,'Measurement',40,199,NULL,1,'2005-10-28 04:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526634,'17DD4A4B-FD6E-E511-9449-6C4008BF018F',456,'Measurement',41,199,NULL,1,'2005-10-28 04:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526635,'18DD4A4B-FD6E-E511-9449-6C4008BF018F',457,'Measurement',39,199,NULL,1,'2007-03-28 05:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526636,'19DD4A4B-FD6E-E511-9449-6C4008BF018F',458,'Measurement',40,199,NULL,1,'2005-10-28 05:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526637,'1ADD4A4B-FD6E-E511-9449-6C4008BF018F',459,'Measurement',41,199,NULL,1,'2005-10-28 05:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526638,'1BDD4A4B-FD6E-E511-9449-6C4008BF018F',460,'Measurement',40,199,NULL,1,'2005-10-28 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526639,'1CDD4A4B-FD6E-E511-9449-6C4008BF018F',461,'Measurement',41,199,NULL,1,'2005-10-28 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526640,'1DDD4A4B-FD6E-E511-9449-6C4008BF018F',462,'Measurement',41,199,NULL,1,'2005-08-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526641,'1EDD4A4B-FD6E-E511-9449-6C4008BF018F',463,'Measurement',41,199,NULL,1,'2005-10-28 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526642,'1FDD4A4B-FD6E-E511-9449-6C4008BF018F',464,'Measurement',39,199,NULL,1,'2005-08-17 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526644,'20DD4A4B-FD6E-E511-9449-6C4008BF018F',465,'Measurement',39,199,NULL,1,'2007-03-15 07:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526645,'21DD4A4B-FD6E-E511-9449-6C4008BF018F',466,'Measurement',39,199,NULL,1,'2007-06-07 08:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526646,'22DD4A4B-FD6E-E511-9449-6C4008BF018F',467,'Measurement',41,199,NULL,1,'2005-10-28 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526648,'23DD4A4B-FD6E-E511-9449-6C4008BF018F',468,'Measurement',39,199,NULL,1,'2007-06-07 09:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526649,'24DD4A4B-FD6E-E511-9449-6C4008BF018F',469,'Measurement',41,199,NULL,1,'2005-10-29 09:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526686,'25DD4A4B-FD6E-E511-9449-6C4008BF018F',470,'Measurement',39,199,NULL,1,'2005-10-28 00:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526687,'26DD4A4B-FD6E-E511-9449-6C4008BF018F',471,'Measurement',39,199,NULL,1,'2005-10-28 01:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526688,'27DD4A4B-FD6E-E511-9449-6C4008BF018F',472,'Measurement',40,199,NULL,1,'2005-10-29 10:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526689,'28DD4A4B-FD6E-E511-9449-6C4008BF018F',473,'Measurement',39,199,NULL,1,'2005-10-29 10:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526690,'29DD4A4B-FD6E-E511-9449-6C4008BF018F',474,'Measurement',41,199,NULL,1,'2005-10-30 11:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526691,'2ADD4A4B-FD6E-E511-9449-6C4008BF018F',475,'Measurement',40,199,NULL,1,'2005-10-29 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526692,'2BDD4A4B-FD6E-E511-9449-6C4008BF018F',476,'Measurement',39,199,NULL,1,'2005-10-29 11:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526693,'2CDD4A4B-FD6E-E511-9449-6C4008BF018F',477,'Measurement',41,199,NULL,1,'2005-10-30 12:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526694,'2DDD4A4B-FD6E-E511-9449-6C4008BF018F',478,'Measurement',40,199,NULL,1,'2005-10-29 12:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526695,'2EDD4A4B-FD6E-E511-9449-6C4008BF018F',479,'Measurement',41,199,NULL,1,'2005-10-30 13:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526696,'2FDD4A4B-FD6E-E511-9449-6C4008BF018F',480,'Measurement',40,199,NULL,1,'2005-10-29 13:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526697,'30DD4A4B-FD6E-E511-9449-6C4008BF018F',481,'Measurement',41,199,NULL,1,'2005-10-30 14:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526698,'31DD4A4B-FD6E-E511-9449-6C4008BF018F',482,'Measurement',40,199,NULL,1,'2005-10-29 14:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526699,'32DD4A4B-FD6E-E511-9449-6C4008BF018F',483,'Measurement',41,199,NULL,1,'2005-10-30 15:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526700,'33DD4A4B-FD6E-E511-9449-6C4008BF018F',484,'Measurement',40,199,NULL,1,'2005-10-29 15:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526701,'34DD4A4B-FD6E-E511-9449-6C4008BF018F',485,'Measurement',40,199,NULL,1,'2005-10-29 16:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526702,'35DD4A4B-FD6E-E511-9449-6C4008BF018F',486,'Measurement',41,199,NULL,1,'2005-10-29 16:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526703,'36DD4A4B-FD6E-E511-9449-6C4008BF018F',487,'Measurement',41,199,NULL,1,'2005-10-30 17:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526704,'37DD4A4B-FD6E-E511-9449-6C4008BF018F',488,'Measurement',40,199,NULL,1,'2005-10-29 17:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526705,'38DD4A4B-FD6E-E511-9449-6C4008BF018F',489,'Measurement',41,199,NULL,1,'2005-10-29 17:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526706,'39DD4A4B-FD6E-E511-9449-6C4008BF018F',490,'Measurement',41,199,NULL,1,'2005-10-30 18:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526707,'3ADD4A4B-FD6E-E511-9449-6C4008BF018F',491,'Measurement',40,199,NULL,1,'2005-10-29 18:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526708,'3BDD4A4B-FD6E-E511-9449-6C4008BF018F',492,'Measurement',41,199,NULL,1,'2005-10-29 18:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526709,'3CDD4A4B-FD6E-E511-9449-6C4008BF018F',493,'Measurement',41,199,NULL,1,'2005-10-29 19:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526710,'3DDD4A4B-FD6E-E511-9449-6C4008BF018F',494,'Measurement',39,199,NULL,1,'2005-10-28 02:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526711,'3EDD4A4B-FD6E-E511-9449-6C4008BF018F',495,'Measurement',41,199,NULL,1,'2005-10-29 20:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526712,'3FDD4A4B-FD6E-E511-9449-6C4008BF018F',496,'Measurement',39,199,NULL,1,'2005-10-28 03:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526713,'40DD4A4B-FD6E-E511-9449-6C4008BF018F',497,'Measurement',39,199,NULL,1,'2005-10-28 04:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526714,'41DD4A4B-FD6E-E511-9449-6C4008BF018F',498,'Measurement',39,199,NULL,1,'2005-10-28 05:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526715,'42DD4A4B-FD6E-E511-9449-6C4008BF018F',499,'Measurement',39,199,NULL,1,'2005-10-28 06:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526716,'43DD4A4B-FD6E-E511-9449-6C4008BF018F',500,'Measurement',40,199,NULL,1,'2005-10-28 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526717,'44DD4A4B-FD6E-E511-9449-6C4008BF018F',501,'Measurement',39,199,NULL,1,'2005-10-28 07:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526718,'45DD4A4B-FD6E-E511-9449-6C4008BF018F',502,'Measurement',40,199,NULL,1,'2005-10-28 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526719,'46DD4A4B-FD6E-E511-9449-6C4008BF018F',503,'Measurement',39,199,NULL,1,'2005-10-28 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526720,'47DD4A4B-FD6E-E511-9449-6C4008BF018F',504,'Measurement',40,199,NULL,1,'2005-10-29 09:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526721,'48DD4A4B-FD6E-E511-9449-6C4008BF018F',505,'Measurement',39,199,NULL,1,'2005-10-29 09:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526766,'49DD4A4B-FD6E-E511-9449-6C4008BF018F',506,'Measurement',40,199,NULL,1,'2005-10-30 11:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526767,'4ADD4A4B-FD6E-E511-9449-6C4008BF018F',507,'Measurement',39,199,NULL,1,'2005-10-29 12:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526768,'4BDD4A4B-FD6E-E511-9449-6C4008BF018F',508,'Measurement',39,199,NULL,1,'2005-10-29 13:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526769,'4CDD4A4B-FD6E-E511-9449-6C4008BF018F',509,'Measurement',39,199,NULL,1,'2005-10-29 14:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526770,'4DDD4A4B-FD6E-E511-9449-6C4008BF018F',510,'Measurement',41,199,NULL,1,'2005-10-30 19:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526771,'4EDD4A4B-FD6E-E511-9449-6C4008BF018F',511,'Measurement',40,199,NULL,1,'2005-10-29 19:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526772,'4FDD4A4B-FD6E-E511-9449-6C4008BF018F',512,'Measurement',41,199,NULL,1,'2005-10-30 20:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526773,'50DD4A4B-FD6E-E511-9449-6C4008BF018F',513,'Measurement',40,199,NULL,1,'2005-10-29 20:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526774,'51DD4A4B-FD6E-E511-9449-6C4008BF018F',514,'Measurement',41,199,NULL,1,'2005-10-30 21:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526790,'52DD4A4B-FD6E-E511-9449-6C4008BF018F',515,'Measurement',41,199,NULL,1,'2005-11-14 10:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526791,'53DD4A4B-FD6E-E511-9449-6C4008BF018F',516,'Measurement',39,199,NULL,1,'2005-10-30 11:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526792,'54DD4A4B-FD6E-E511-9449-6C4008BF018F',517,'Measurement',40,199,NULL,1,'2005-10-30 12:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526793,'55DD4A4B-FD6E-E511-9449-6C4008BF018F',518,'Measurement',39,199,NULL,1,'2005-10-30 12:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526794,'56DD4A4B-FD6E-E511-9449-6C4008BF018F',519,'Measurement',40,199,NULL,1,'2005-10-30 13:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526795,'57DD4A4B-FD6E-E511-9449-6C4008BF018F',520,'Measurement',41,199,NULL,1,'2005-11-13 13:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526796,'58DD4A4B-FD6E-E511-9449-6C4008BF018F',521,'Measurement',40,199,NULL,1,'2005-10-30 14:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526797,'59DD4A4B-FD6E-E511-9449-6C4008BF018F',522,'Measurement',41,199,NULL,1,'2005-11-14 15:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526798,'5ADD4A4B-FD6E-E511-9449-6C4008BF018F',523,'Measurement',40,199,NULL,1,'2005-10-30 15:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526799,'5BDD4A4B-FD6E-E511-9449-6C4008BF018F',524,'Measurement',39,199,NULL,1,'2005-10-29 15:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526800,'5CDD4A4B-FD6E-E511-9449-6C4008BF018F',525,'Measurement',40,199,NULL,1,'2005-10-30 16:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526801,'5DDD4A4B-FD6E-E511-9449-6C4008BF018F',526,'Measurement',39,199,NULL,1,'2005-10-29 16:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526802,'5EDD4A4B-FD6E-E511-9449-6C4008BF018F',527,'Measurement',40,199,NULL,1,'2005-10-30 17:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526803,'5FDD4A4B-FD6E-E511-9449-6C4008BF018F',528,'Measurement',39,199,NULL,1,'2005-10-29 17:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526804,'60DD4A4B-FD6E-E511-9449-6C4008BF018F',529,'Measurement',41,199,NULL,1,'2005-11-14 18:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526805,'61DD4A4B-FD6E-E511-9449-6C4008BF018F',530,'Measurement',40,199,NULL,1,'2005-10-30 18:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526806,'62DD4A4B-FD6E-E511-9449-6C4008BF018F',531,'Measurement',39,199,NULL,1,'2005-10-29 18:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526807,'63DD4A4B-FD6E-E511-9449-6C4008BF018F',532,'Measurement',41,199,NULL,1,'2005-11-13 18:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526808,'64DD4A4B-FD6E-E511-9449-6C4008BF018F',533,'Measurement',40,199,NULL,1,'2005-10-30 19:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526809,'65DD4A4B-FD6E-E511-9449-6C4008BF018F',534,'Measurement',39,199,NULL,1,'2005-10-29 19:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526810,'66DD4A4B-FD6E-E511-9449-6C4008BF018F',535,'Measurement',41,199,NULL,1,'2005-11-14 20:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526811,'67DD4A4B-FD6E-E511-9449-6C4008BF018F',536,'Measurement',39,199,NULL,1,'2005-10-29 20:40:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526812,'68DD4A4B-FD6E-E511-9449-6C4008BF018F',537,'Measurement',41,199,NULL,1,'2005-11-13 20:50:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(6526813,'69DD4A4B-FD6E-E511-9449-6C4008BF018F',538,'Measurement',41,199,NULL,1,'2005-10-30 22:20:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429674,'6ADD4A4B-FD6E-E511-9449-6C4008BF018F',776,'Measurement',40,199,NULL,1,'2009-09-17 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429675,'6BDD4A4B-FD6E-E511-9449-6C4008BF018F',777,'Measurement',40,199,NULL,1,'2009-09-17 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429676,'6CDD4A4B-FD6E-E511-9449-6C4008BF018F',778,'Measurement',41,199,NULL,1,'2009-09-17 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429677,'6DDD4A4B-FD6E-E511-9449-6C4008BF018F',779,'Measurement',63,199,NULL,1,'2009-09-17 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429678,'6EDD4A4B-FD6E-E511-9449-6C4008BF018F',780,'Measurement',41,199,NULL,1,'2009-09-17 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429679,'6FDD4A4B-FD6E-E511-9449-6C4008BF018F',781,'Measurement',39,199,NULL,1,'2009-09-17 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429706,'70DD4A4B-FD6E-E511-9449-6C4008BF018F',787,'Measurement',40,199,NULL,1,'2009-10-01 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429707,'71DD4A4B-FD6E-E511-9449-6C4008BF018F',788,'Measurement',41,199,NULL,1,'2009-10-01 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429708,'72DD4A4B-FD6E-E511-9449-6C4008BF018F',789,'Measurement',63,199,NULL,1,'2009-10-01 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429709,'73DD4A4B-FD6E-E511-9449-6C4008BF018F',790,'Measurement',39,199,NULL,1,'2009-10-01 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429737,'74DD4A4B-FD6E-E511-9449-6C4008BF018F',798,'Measurement',40,199,NULL,1,'2009-10-15 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429738,'75DD4A4B-FD6E-E511-9449-6C4008BF018F',799,'Measurement',41,199,NULL,1,'2009-10-15 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429739,'76DD4A4B-FD6E-E511-9449-6C4008BF018F',800,'Measurement',63,199,NULL,1,'2009-10-15 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429740,'77DD4A4B-FD6E-E511-9449-6C4008BF018F',801,'Measurement',41,199,NULL,1,'2009-10-15 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429741,'78DD4A4B-FD6E-E511-9449-6C4008BF018F',802,'Measurement',39,199,NULL,1,'2009-10-15 11:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429768,'79DD4A4B-FD6E-E511-9449-6C4008BF018F',807,'Measurement',40,199,NULL,1,'2009-10-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429769,'7ADD4A4B-FD6E-E511-9449-6C4008BF018F',808,'Measurement',41,199,NULL,1,'2009-10-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429770,'7BDD4A4B-FD6E-E511-9449-6C4008BF018F',809,'Measurement',63,199,NULL,1,'2009-10-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429771,'7CDD4A4B-FD6E-E511-9449-6C4008BF018F',810,'Measurement',39,199,NULL,1,'2009-10-29 08:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429800,'7DDD4A4B-FD6E-E511-9449-6C4008BF018F',820,'Measurement',40,199,NULL,1,'2009-11-12 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429801,'7EDD4A4B-FD6E-E511-9449-6C4008BF018F',821,'Measurement',41,199,NULL,1,'2009-11-12 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429802,'7FDD4A4B-FD6E-E511-9449-6C4008BF018F',822,'Measurement',63,199,NULL,1,'2009-11-12 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429803,'80DD4A4B-FD6E-E511-9449-6C4008BF018F',823,'Measurement',39,199,NULL,1,'2009-11-12 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429830,'81DD4A4B-FD6E-E511-9449-6C4008BF018F',830,'Measurement',40,199,NULL,1,'2009-11-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429831,'82DD4A4B-FD6E-E511-9449-6C4008BF018F',831,'Measurement',41,199,NULL,1,'2009-11-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429832,'83DD4A4B-FD6E-E511-9449-6C4008BF018F',832,'Measurement',63,199,NULL,1,'2009-11-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429833,'84DD4A4B-FD6E-E511-9449-6C4008BF018F',833,'Measurement',39,199,NULL,1,'2009-11-24 12:30:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429861,'85DD4A4B-FD6E-E511-9449-6C4008BF018F',841,'Measurement',40,199,NULL,1,'2009-12-10 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429862,'86DD4A4B-FD6E-E511-9449-6C4008BF018F',842,'Measurement',41,199,NULL,1,'2009-12-10 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429863,'87DD4A4B-FD6E-E511-9449-6C4008BF018F',843,'Measurement',63,199,NULL,1,'2009-12-10 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1),(15429864,'88DD4A4B-FD6E-E511-9449-6C4008BF018F',844,'Measurement',39,199,NULL,1,'2009-12-10 14:00:00.000000',-7,NULL,NULL,'Complete','Liquid aqueous',1); +/*!40000 ALTER TABLE `Results` ENABLE KEYS */; + +-- +-- Table structure for table `ResultsDataQuality` +-- + +DROP TABLE IF EXISTS `ResultsDataQuality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `ResultsDataQuality` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataQualityID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_ResultsDataQuality_DataQuality` (`DataQualityID`), + KEY `fk_ResultsDataQuality_Results` (`ResultID`), + CONSTRAINT `fk_ResultsDataQuality_DataQuality` FOREIGN KEY (`DataQualityID`) REFERENCES `DataQuality` (`DataQualityID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_ResultsDataQuality_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ResultsDataQuality` +-- + +/*!40000 ALTER TABLE `ResultsDataQuality` DISABLE KEYS */; +/*!40000 ALTER TABLE `ResultsDataQuality` ENABLE KEYS */; + +-- +-- Table structure for table `SamplingFeatureAnnotations` +-- + +DROP TABLE IF EXISTS `SamplingFeatureAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SamplingFeatureAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureID` int(11) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SamplingFeatureAnnotations_Annotations` (`AnnotationID`), + KEY `fk_SamplingFeatureAnnotations_SamplingFeatures` (`SamplingFeatureID`), + CONSTRAINT `fk_SamplingFeatureAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SamplingFeatureAnnotations_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SamplingFeatureAnnotations` +-- + +/*!40000 ALTER TABLE `SamplingFeatureAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `SamplingFeatureAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `SamplingFeatureExtensionPropertyValues` +-- + +DROP TABLE IF EXISTS `SamplingFeatureExtensionPropertyValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SamplingFeatureExtensionPropertyValues` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureID` int(11) NOT NULL, + `PropertyID` int(11) NOT NULL, + `PropertyValue` varchar(255) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties` (`PropertyID`), + KEY `fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures` (`SamplingFeatureID`), + CONSTRAINT `fk_SamplingFeatureExtensionPropertyValues_ExtensionProperties` FOREIGN KEY (`PropertyID`) REFERENCES `ExtensionProperties` (`PropertyID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SamplingFeatureExtensionPropertyValues_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SamplingFeatureExtensionPropertyValues` +-- + +/*!40000 ALTER TABLE `SamplingFeatureExtensionPropertyValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `SamplingFeatureExtensionPropertyValues` ENABLE KEYS */; + +-- +-- Table structure for table `SamplingFeatureExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `SamplingFeatureExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SamplingFeatureExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `SamplingFeatureExternalIdentifier` varchar(255) NOT NULL, + `SamplingFeatureExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems` (`ExternalIdentifierSystemID`), + KEY `fk_SamplingFeatureExternalIdentifiers_SamplingFeatures` (`SamplingFeatureID`), + CONSTRAINT `fk_SamplingFeatureExternalIdentifiers_ExternalIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SamplingFeatureExternalIdentifiers_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SamplingFeatureExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `SamplingFeatureExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `SamplingFeatureExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `SamplingFeatures` +-- + +DROP TABLE IF EXISTS `SamplingFeatures`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SamplingFeatures` ( + `SamplingFeatureID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureUUID` varchar(64) NOT NULL, + `SamplingFeatureTypeCV` varchar(255) NOT NULL, + `SamplingFeatureCode` varchar(50) NOT NULL, + `SamplingFeatureName` varchar(255) DEFAULT NULL, + `SamplingFeatureDescription` varchar(500) DEFAULT NULL, + `SamplingFeatureGeotypeCV` varchar(255) DEFAULT NULL, + `FeatureGeometry` geometry DEFAULT NULL, + `Elevation_m` double DEFAULT NULL, + `ElevationDatumCV` varchar(255) DEFAULT NULL, + PRIMARY KEY (`SamplingFeatureID`), + UNIQUE KEY `SamplingFeatureUUID` (`SamplingFeatureUUID`), + KEY `fk_SamplingFeatures_CV_ElevationDatum` (`ElevationDatumCV`), + KEY `fk_SamplingFeatures_CV_SamplingFeatureGeoType` (`SamplingFeatureGeotypeCV`), + KEY `fk_SamplingFeatures_CV_SamplingFeatureType` (`SamplingFeatureTypeCV`), + CONSTRAINT `fk_SamplingFeatures_CV_ElevationDatum` FOREIGN KEY (`ElevationDatumCV`) REFERENCES `CV_ElevationDatum` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SamplingFeatures_CV_SamplingFeatureGeoType` FOREIGN KEY (`SamplingFeatureGeotypeCV`) REFERENCES `CV_SamplingFeatureGeoType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SamplingFeatures_CV_SamplingFeatureType` FOREIGN KEY (`SamplingFeatureTypeCV`) REFERENCES `CV_SamplingFeatureType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=713 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SamplingFeatures` +-- + +/*!40000 ALTER TABLE `SamplingFeatures` DISABLE KEYS */; +INSERT INTO `SamplingFeatures` VALUES (1,'68D74A4B-FD6E-E511-9449-6C4008BF018F','Site','USU-LBR-Mendon','Little Bear River at Mendon Road near Mendon, Utah','Located below county road bridge at Mendon Road crossing','Point','\0\0\0\0\0\0\0ž·±Ù‘ü[ÀŽ[ìöÛD@',1345,'NGVD29'),(14,'69D74A4B-FD6E-E511-9449-6C4008BF018F','Site','USU-LBR-SFWeather','Little Bear River South Fork Weather Station near Avon, Utah','This is a continuous weather station.','Point','\0\0\0\0\0\0\08gDioô[À+ö—Ý“¿D@',1601,'NGVD29'),(15,'C7D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','11/13 TDP E',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(16,'C8D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','11/13 TP E',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(17,'C9D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','11/21 TDP G',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(18,'CAD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','11/21 TP G',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(19,'CBD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','8355',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(20,'CCD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','8469',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(21,'CDD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','8594',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(22,'CED74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','8719',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(23,'CFD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','9113',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(24,'D0D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','9184',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(25,'D1D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','9393',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(26,'D2D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','9506',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(27,'D3D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-0:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(28,'D4D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-0:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(29,'D5D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-13:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(30,'D6D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-19:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(31,'D7D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-21:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(32,'D8D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-3:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(33,'D9D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-3:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(34,'DAD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-5:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(35,'DBD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020807-PAR-6:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(36,'DCD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020907-PAR-14:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(37,'DDD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020907-PAR-6:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(38,'DED74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP020907-PAR-9:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(39,'DFD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-0:43-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(40,'E0D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-11:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(41,'E1D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-12:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(42,'E2D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-13:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(43,'E3D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-16:43-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(44,'E4D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-18:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(45,'E5D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-18:43-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(46,'E6D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-2:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(47,'E7D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-20:43-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(48,'E8D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-22:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(49,'E9D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-6:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(50,'EAD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP021607-PAR-9:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(51,'EBD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030106-PAR-20:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(52,'ECD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030106-PAR-21:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(53,'EDD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030206-PAR-12:16-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(54,'EED74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030206-PAR-21:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(55,'EFD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030306-PAR-11:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(56,'F0D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030306-PAR-22:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(57,'F1D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030406-PAR-13:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(58,'F2D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030406-PAR-13:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(59,'F3D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030506-PAR-12:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(60,'F4D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030506-PAR-18:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(61,'F5D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030606-PAR-10:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(62,'F6D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030606-PAR-10:55-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(63,'F7D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030606-PAR-18:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(64,'F8D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030606-PAR-20:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(65,'F9D74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-12:16-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(66,'FAD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-14:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(67,'FBD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-15:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(68,'FCD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-17:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(69,'FDD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-18:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(70,'FED74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-20:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(71,'FFD74A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-21:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(72,'00D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-21:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(73,'01D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-4:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(74,'02D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030706-PAR-9:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(75,'03D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-0:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(76,'04D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-10:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(77,'05D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-15:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(78,'06D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-19:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(79,'07D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-3:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(80,'08D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-5:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(81,'09D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-6:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(82,'0AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-6:43-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(83,'0BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP030907-PAR-7:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(84,'0CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031007-PAR-10:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(85,'0DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031007-PAR-14:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(86,'0ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031007-PAR-9:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(87,'0FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031307-PAR-12:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(88,'10D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031307-PAR-15:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(89,'11D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031307-PAR-18:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(90,'12D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031307-PAR-19:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(91,'13D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031307-PAR-22:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(92,'14D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031307-PAR-7:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(93,'15D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031706-PAR-11:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(94,'16D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031806-PAR-12:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(95,'17D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031806-PAR-13:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(96,'18D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP031906-PAR-10:55-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(97,'19D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-0:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(98,'1AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-10:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(99,'1BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-13:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(100,'1CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-18:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(101,'1DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-19:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(102,'1ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-19:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(103,'1FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-2:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(104,'20D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-21:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(105,'21D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032007-PAR-6:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(106,'22D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032506-PAR-12:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(107,'23D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032506-PAR-13:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(108,'24D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032506-PAR-14:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(109,'25D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032506-PAR-14:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(110,'26D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032506-PAR-18:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(111,'27D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032506-PAR-21:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(112,'28D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-14:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(113,'29D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-15:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(114,'2AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-16:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(115,'2BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-16:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(116,'2CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-17:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(117,'2DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-17:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(118,'2ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-18:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(119,'2FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-18:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(120,'30D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-19:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(121,'31D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-2:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(122,'32D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-21:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(123,'33D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-4:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(124,'34D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-4:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(125,'35D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-8:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(126,'36D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032606-PAR-9:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(127,'37D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-0:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(128,'38D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-0:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(129,'39D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-10:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(130,'3AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-15:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(131,'3BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-16:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(132,'3CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-20:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(133,'3DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-23:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(134,'3ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-7:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(135,'3FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032707-PAR-9:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(136,'40D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-10:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(137,'41D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-12:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(138,'42D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-13:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(139,'43D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-2:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(140,'44D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-20:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(141,'45D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-21:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(142,'46D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-22:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(143,'47D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-23:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(144,'48D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-5:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(145,'49D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-5:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(146,'4AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-7:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(147,'4BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032806-PAR-9:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(148,'4CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032807-PAR-12:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(149,'4DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032807-PAR-18:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(150,'4ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032807-PAR-5:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(151,'4FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-0:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(152,'50D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-10:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(153,'51D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-10:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(154,'52D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-11:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(155,'53D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-14:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(156,'54D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-14:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(157,'55D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-15:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(158,'56D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-16:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(159,'57D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-18:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(160,'58D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-18:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(161,'59D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-18:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(162,'5AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-18:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(163,'5BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-2:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(164,'5CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-20:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(165,'5DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-20:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(166,'5ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-21:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(167,'5FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-21:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(168,'60D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-21:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(169,'61D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-4:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(170,'62D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-4:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(171,'63D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP032906-PAR-5:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(172,'64D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-0:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(173,'65D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-10:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(174,'66D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-11:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(175,'67D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-12:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(176,'68D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-14:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(177,'69D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-14:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(178,'6AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-16:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(179,'6BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-18:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(180,'6CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-20:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(181,'6DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-21:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(182,'6ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-3:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(183,'6FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-6:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(184,'70D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-7:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(185,'71D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-8:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(186,'72D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP033006-PAR-9:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(187,'73D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040406-PAR-11:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(188,'74D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040406-PAR-13:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(189,'75D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040406-PAR-18:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(190,'76D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040406-PAR-2:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(191,'77D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040406-PAR-21:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(192,'78D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040406-PAR-4:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(193,'79D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-0:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(194,'7AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-0:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(195,'7BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-0:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(196,'7CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-10:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(197,'7DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-10:45-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(198,'7ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-10:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(199,'7FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-11:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(200,'80D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-11:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(201,'81D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-12:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(202,'82D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-13:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(203,'83D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-14:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(204,'84D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-15:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(205,'85D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-18:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(206,'86D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-18:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(207,'87D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-19:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(208,'88D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-20:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(209,'89D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-21:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(210,'8AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-21:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(211,'8BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-21:45-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(212,'8CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-22:45-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(213,'8DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-3:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(214,'8ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-3:45-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(215,'8FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-4:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(216,'90D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-4:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(217,'91D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-5:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(218,'92D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-6:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(219,'93D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-6:45-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(220,'94D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-7:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(221,'95D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-8:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(222,'96D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040506-PAR-9:50-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(223,'97D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-0:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(224,'98D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-0:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(225,'99D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-10:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(226,'9AD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-19:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(227,'9BD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-20:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(228,'9CD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-22:45-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(229,'9DD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-3:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(230,'9ED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-3:45-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(231,'9FD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP040606-PAR-6:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(232,'A0D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041406-PAR-3:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(233,'A1D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041406-PAR-6:45-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(234,'A2D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041406-PAR-9:15-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(235,'A3D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-10:45-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(236,'A4D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-11:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(237,'A5D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-11:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(238,'A6D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-12:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(239,'A7D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-12:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(240,'A8D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-13:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(241,'A9D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-13:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(242,'AAD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-21:45-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(243,'ABD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-3:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(244,'ACD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-6:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(245,'ADD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-7:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(246,'AED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP041506-PAR-8:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(247,'AFD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP051905-PAR-19:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(248,'B0D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP052005-PAR-19:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(249,'B1D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP052005-PAR-19:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(250,'B2D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP052005-PAR-21:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(251,'B3D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP052005-PAR-7:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(252,'B4D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP052005-PAR-9:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(253,'B5D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-0:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(254,'B6D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-13:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(255,'B7D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-14:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(256,'B8D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-15:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(257,'B9D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-15:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(258,'BAD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-18:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(259,'BBD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-19:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(260,'BCD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-20:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(261,'BDD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-4:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(262,'BED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-6:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(263,'BFD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-8:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(264,'C0D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP060707-PAR-9:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(265,'C1D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-10:45-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(266,'C2D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-12:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(267,'C3D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-14:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(268,'C4D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-15:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(269,'C5D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-16:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(270,'C6D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-18:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(271,'C7D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-18:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(272,'C8D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-19:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(273,'C9D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-22:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(274,'CAD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-22:45-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(275,'CBD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-3:45-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(276,'CCD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-5:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(277,'CDD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-6:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(278,'CED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-6:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(279,'CFD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072506-PAR-6:45-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(280,'D0D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-0:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(281,'D1D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-10:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(282,'D2D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-12:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(283,'D3D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-18:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(284,'D4D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-2:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(285,'D5D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-21:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(286,'D6D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-21:45-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(287,'D7D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-6:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(288,'D8D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP072606-PAR-7:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(289,'D9D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP081605-PAR-0:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(290,'DAD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP081705-PAR-15:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(291,'DBD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP081705-PAR-20:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(292,'DCD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP081705-PAR-23:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(293,'DDD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP081705-PAR-5:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(294,'DED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-0:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(295,'DFD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-0:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(296,'E0D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-0:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(297,'E1D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-14:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(298,'E2D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-15:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(299,'E3D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-16:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(300,'E4D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-18:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(301,'E5D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-19:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(302,'E6D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-2:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(303,'E7D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-20:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(304,'E8D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-20:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(305,'E9D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-22:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(306,'EAD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-4:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(307,'EBD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-4:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(308,'ECD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-6:43-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(309,'EDD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-8:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(310,'EED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-9:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(311,'EFD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP100405-PAR-9:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(312,'F0D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-0:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(313,'F1D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-10:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(314,'F2D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-16:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(315,'F3D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-18:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(316,'F4D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-3:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(317,'F5D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-6:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(318,'F6D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-6:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(319,'F7D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-7:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(320,'F8D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP101906-PAR-9:15-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(321,'F9D84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-11:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(322,'FAD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-12:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(323,'FBD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-12:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(324,'FCD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-12:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(325,'FDD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-13:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(326,'FED84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-15:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(327,'FFD84A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-15:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(328,'00D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-18:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(329,'01D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102006-PAR-18:15-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(330,'02D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102705-PAR-15:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(331,'03D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102705-PAR-18:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(332,'04D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102705-PAR-19:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(333,'05D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102705-PAR-9:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(334,'06D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-0:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(335,'07D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-0:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(336,'08D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-0:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(337,'09D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-0:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(338,'0AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-1:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(339,'0BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-1:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(340,'0CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-10:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(341,'0DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-11:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(342,'0ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-11:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(343,'0FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-11:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(344,'10D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-12:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(345,'11D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-13:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(346,'12D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-14:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(347,'13D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-14:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(348,'14D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-15:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(349,'15D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-15:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(350,'16D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-15:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(351,'17D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-18:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(352,'18D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-19:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(353,'19D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-2:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(354,'1AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-2:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(355,'1BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-2:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(356,'1CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-20:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(357,'1DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-20:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(358,'1ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-21:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(359,'1FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-21:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(360,'20D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-21:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(361,'21D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-22:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(362,'22D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-22:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(363,'23D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-22:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(364,'24D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-22:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(365,'25D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-23:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(366,'26D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-23:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(367,'27D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-23:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(368,'28D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-23:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(369,'29D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-3:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(370,'2AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-3:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(371,'2BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-4:00-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(372,'2CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-4:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(373,'2DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-4:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(374,'2ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-4:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(375,'2FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-5:00-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(376,'30D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-5:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(377,'31D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-5:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(378,'32D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-6:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(379,'33D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-6:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(380,'34D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-7:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(381,'35D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-7:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(382,'36D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-7:50-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(383,'37D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-8:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(384,'38D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-8:30-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(385,'39D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-9:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(386,'3AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102805-PAR-9:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(387,'3BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-0:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(388,'3CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-1:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(389,'3DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-10:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(390,'3ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-10:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(391,'3FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-11:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(392,'40D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-11:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(393,'41D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-11:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(394,'42D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-12:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(395,'43D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-12:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(396,'44D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-13:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(397,'45D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-13:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(398,'46D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-14:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(399,'47D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-14:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(400,'48D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-15:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(401,'49D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-15:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(402,'4AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-16:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(403,'4BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-16:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(404,'4CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-17:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(405,'4DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-17:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(406,'4ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-17:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(407,'4FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-18:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(408,'50D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-18:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(409,'51D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-18:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(410,'52D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-19:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(411,'53D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-2:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(412,'54D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-20:40-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(413,'55D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-3:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(414,'56D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-4:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(415,'57D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-5:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(416,'58D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-6:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(417,'59D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-7:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(418,'5AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-7:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(419,'5BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-8:30-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(420,'5CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-8:30-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(421,'5DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-9:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(422,'5ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP102905-PAR-9:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(423,'5FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-11:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(424,'60D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-12:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(425,'61D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-13:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(426,'62D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-14:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(427,'63D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-19:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(428,'64D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-19:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(429,'65D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-20:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(430,'66D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-20:40-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(431,'67D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111305-PAR-21:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(432,'68D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-10:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(433,'69D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-11:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(434,'6AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-12:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(435,'6BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-12:20-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(436,'6CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-13:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(437,'6DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-13:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(438,'6ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-14:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(439,'6FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-15:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(440,'70D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-15:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(441,'71D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-15:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(442,'72D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-16:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(443,'73D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-16:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(444,'74D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-17:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(445,'75D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-17:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(446,'76D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-18:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(447,'77D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-18:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(448,'78D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-18:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(449,'79D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-18:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(450,'7AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-19:20-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(451,'7BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-19:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(452,'7CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-20:00-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(453,'7DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-20:40-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(454,'7ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-20:50-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(455,'7FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','CEAP111405-PAR-22:20-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(456,'80D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G01008-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(457,'81D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G010308-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(458,'82D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G010308-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(459,'83D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G010308-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(460,'84D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G010609-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(461,'85D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G010609-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(462,'86D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G010609-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(463,'87D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G011708-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(464,'88D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G011708-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(465,'89D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G011708-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(466,'8AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G011708-MEN-U-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(467,'8BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G012209-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(468,'8CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G012209-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(469,'8DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G012209-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(470,'8ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G013108-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(471,'8FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G013108-MEN-F-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(472,'90D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G013108-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(473,'91D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G013108-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(474,'92D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G013108-MEN-U-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(475,'93D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G020509-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(476,'94D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G020509-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(477,'95D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G020509-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(478,'96D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G020509-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(479,'97D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021208-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(480,'98D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021208-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(481,'99D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021208-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(482,'9AD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021208-MEN-U-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(483,'9BD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021909-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(484,'9CD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021909-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(485,'9DD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021909-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(486,'9ED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G021909-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(487,'9FD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G022808-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(488,'A0D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G022808-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(489,'A1D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G022808-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(490,'A2D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030509-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(491,'A3D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030509-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(492,'A4D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030509-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(493,'A5D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030509-MEN-U-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(494,'A6D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030608-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(495,'A7D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030608-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(496,'A8D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G030608-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(497,'A9D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G031308-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(498,'AAD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G031308-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(499,'ABD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G031308-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(500,'ACD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G031909-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(501,'ADD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G031909-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(502,'AED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G031909-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(503,'AFD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032008-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(504,'B0D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032008-MEN-F-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(505,'B1D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032008-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(506,'B2D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032008-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(507,'B3D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032708-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(508,'B4D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032708-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(509,'B5D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032708-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(510,'B6D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032709-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(511,'B7D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032709-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(512,'B8D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G032709-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(513,'B9D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040109-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(514,'BAD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040109-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(515,'BBD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040109-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(516,'BCD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040109-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(517,'BDD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040308-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(518,'BED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040308-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(519,'BFD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040308-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(520,'C0D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040809-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(521,'C1D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040809-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(522,'C2D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G040809-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(523,'C3D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041008-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(524,'C4D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041008-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(525,'C5D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041008-MEN-U-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(526,'C6D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041408-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(527,'C7D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041408-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(528,'C8D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041408-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(529,'C9D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041609-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(530,'CAD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041609-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(531,'CBD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G041609-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(532,'CCD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042309-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(533,'CDD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042309-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(534,'CED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042309-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(535,'CFD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042309-MEN-U-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(536,'D0D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042408-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(537,'D1D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042408-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(538,'D2D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G042408-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(539,'D3D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G043009-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(540,'D4D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G043009-MEN-F-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(541,'D5D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G043009-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(542,'D6D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G043009-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(543,'D7D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G043009-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(544,'D8D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050108-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(545,'D9D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050108-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(546,'DAD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050108-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(547,'DBD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050509-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(548,'DCD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050509-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(549,'DDD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050509-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(550,'DED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050708-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(551,'DFD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050708-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(552,'E0D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G050708-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(553,'E1D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G051209-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(554,'E2D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G051209-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(555,'E3D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G051209-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(556,'E4D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G051508-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(557,'E5D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G051508-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(558,'E6D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G051508-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(559,'E7D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052109-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(560,'E8D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052109-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(561,'E9D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052109-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(562,'EAD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052109-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(563,'EBD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052308-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(564,'ECD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052308-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(565,'EDD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052308-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(566,'EED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052308-MEN-U-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(567,'EFD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052809-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(568,'F0D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052809-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(569,'F1D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052809-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(570,'F2D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052908-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(571,'F3D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052908-MEN-F-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(572,'F4D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052908-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(573,'F5D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G052908-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(574,'F6D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G060409-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(575,'F7D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G060409-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(576,'F8D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G060409-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(577,'F9D94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G060608-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(578,'FAD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G060608-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(579,'FBD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G060608-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(580,'FCD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061008-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(581,'FDD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061008-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(582,'FED94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061008-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(583,'FFD94A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061109-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(584,'00DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061109-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(585,'01DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061109-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(586,'02DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061709-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(587,'03DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061709-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(588,'04DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061709-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(589,'05DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061709-MEN-U-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(590,'06DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061908-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(591,'07DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061908-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(592,'08DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061908-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(593,'09DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G061908-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(594,'0ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G062509-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(595,'0BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G062509-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(596,'0CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G062509-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(597,'0DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G062608-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(598,'0EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G062608-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(599,'0FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G062608-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(600,'10DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G070308-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(601,'11DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G070308-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(602,'12DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G070308-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(603,'13DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G070909-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(604,'14DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G070909-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(605,'15DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G070909-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(606,'16DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G071008-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(607,'17DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G071008-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(608,'18DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G071008-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(609,'19DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G071008-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(610,'1ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G072309-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(611,'1BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G072309-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(612,'1CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G072309-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(613,'1DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G072508-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(614,'1EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G072508-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(615,'1FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G072508-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(616,'20DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G080408-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(617,'21DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G080408-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(618,'22DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G080408-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(619,'23DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G080509-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(620,'24DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G080509-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(621,'25DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G080509-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(622,'26DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082009-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(623,'27DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082009-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(624,'28DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082009-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(625,'29DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082108-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(626,'2ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082108-MEN-F-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(627,'2BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082108-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(628,'2CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082108-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(629,'2DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G082108-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(630,'2EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G090209-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(631,'2FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G090209-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(632,'30DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G090209-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(633,'31DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G090209-MEN-U-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(634,'32DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091208-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(635,'33DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091208-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(636,'34DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091208-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(637,'35DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091208-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(638,'36DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091709-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(639,'37DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091709-MEN-F-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(640,'38DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091709-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(641,'39DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091709-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(642,'3ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G091709-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(643,'3BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G092608-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(644,'3CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G092608-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(645,'3DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G092608-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(646,'3EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G092608-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(647,'3FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G100109-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(648,'40DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G100109-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(649,'41DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G100109-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(650,'42DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101008-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(651,'43DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101008-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(652,'44DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101008-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(653,'45DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101008-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(654,'46DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101509-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(655,'47DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101509-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(656,'48DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101509-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(657,'49DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G101509-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(658,'4ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G102408-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(659,'4BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G102408-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(660,'4CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G102408-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(661,'4DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G102909-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(662,'4EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G102909-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(663,'4FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G102909-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(664,'50DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G110708-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(665,'51DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G110708-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(666,'52DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G110708-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(667,'53DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G110708-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(668,'54DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G110708-MEN-U-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(669,'55DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111209-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(670,'56DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111209-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(671,'57DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111209-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(672,'58DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111708-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(673,'59DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111708-MEN-F-D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(674,'5ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111708-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(675,'5BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111708-MEN-TSS-R',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(676,'5CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G111708-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(677,'5DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G112409-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(678,'5EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G112409-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(679,'5FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G112409-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(680,'60DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G120408-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(681,'61DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G120408-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(682,'62DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G120408-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(683,'63DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G120507-MEN-TDP',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(684,'64DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G120507-MEN-TP',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(685,'65DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G120507-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(686,'66DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G121009-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(687,'67DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G121009-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(688,'68DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G121009-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(689,'69DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G121808-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(690,'6ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G121808-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(691,'6BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G121808-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(692,'6CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G122007-MEN-F',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(693,'6DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G122007-MEN-TSS',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(694,'6EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','G122007-MEN-U',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(695,'6FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4509 #5 Mendon Filtered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(696,'70DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4509 #6 Mendon Unfiltered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(697,'71DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4579 Mendon Filtered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(698,'72DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4579 Mendon Unfiltered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(699,'73DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4655 Mendon Filtered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(700,'74DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4655 Mendon Unfiltered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(701,'75DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4736 Mendon Filtered ',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(702,'76DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4736 Mendon Unfiltered ',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(703,'77DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4855 Mendon Filtered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(704,'78DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4855 Mendon Unfiltered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(705,'79DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4924 J Filtered ',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(706,'7ADA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4924 J Unfiltered ',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(707,'7BDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4988 Mendon B Filtered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(708,'7CDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4988 Mendon B Unfiltered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(709,'7DDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4988 Mendon C Filtered -D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(710,'7EDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-4988 Mendon C Unfiltered -D',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(711,'7FDA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-5112 P Filtered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL),(712,'80DA4A4B-FD6E-E511-9449-6C4008BF018F','Specimen','L07-5112 P Unfiltered',NULL,'Specimen loaded from an ODM 1.1.1 database.','Not applicable',NULL,NULL,NULL); +/*!40000 ALTER TABLE `SamplingFeatures` ENABLE KEYS */; + +-- +-- Table structure for table `SectionResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `SectionResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SectionResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SectionResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_SectionResultValueAnnotations_SectionResultValues` (`ValueID`), + CONSTRAINT `fk_SectionResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValueAnnotations_SectionResultValues` FOREIGN KEY (`ValueID`) REFERENCES `SectionResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SectionResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `SectionResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `SectionResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `SectionResultValues` +-- + +DROP TABLE IF EXISTS `SectionResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SectionResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` bigint(20) NOT NULL, + `ValueDateTimeUTCOffset` bigint(20) NOT NULL, + `XLocation` double NOT NULL, + `XAggregationInterval` double NOT NULL, + `XLocationUnitsID` int(11) NOT NULL, + `ZLocation` bigint(20) NOT NULL, + `ZAggregationInterval` double NOT NULL, + `ZLocationUnitsID` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_SectionResultValues_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_SectionResultValues_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_SectionResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_SectionResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_SectionResultValues_SectionResults` (`ResultID`), + KEY `fk_SectionResultValues_XUnits` (`XLocationUnitsID`), + KEY `fk_SectionResultValues_ZUnits` (`ZLocationUnitsID`), + CONSTRAINT `fk_SectionResultValues_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValues_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValues_SectionResults` FOREIGN KEY (`ResultID`) REFERENCES `SectionResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValues_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResultValues_ZUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SectionResultValues` +-- + +/*!40000 ALTER TABLE `SectionResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `SectionResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `SectionResults` +-- + +DROP TABLE IF EXISTS `SectionResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SectionResults` ( + `ResultID` bigint(20) NOT NULL, + `YLocation` double DEFAULT NULL, + `YLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedXSpacing` double DEFAULT NULL, + `IntendedXSpacingUnitsID` int(11) DEFAULT NULL, + `IntendedZSpacing` double DEFAULT NULL, + `IntendedZSpacingUnitsID` int(11) DEFAULT NULL, + `IntendedTimeSpacing` double DEFAULT NULL, + `IntendedTimeSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_SectionResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_SectionResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_SectionResults_TMUnits` (`IntendedTimeSpacingUnitsID`), + KEY `fk_SectionResults_Units` (`YLocationUnitsID`), + KEY `fk_SectionResults_XUnits` (`IntendedXSpacingUnitsID`), + KEY `fk_SectionResults_ZUnits` (`IntendedZSpacingUnitsID`), + CONSTRAINT `fk_SectionResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResults_TMUnits` FOREIGN KEY (`IntendedTimeSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResults_Units` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResults_XUnits` FOREIGN KEY (`IntendedXSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SectionResults_ZUnits` FOREIGN KEY (`IntendedZSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SectionResults` +-- + +/*!40000 ALTER TABLE `SectionResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `SectionResults` ENABLE KEYS */; + +-- +-- Table structure for table `Simulations` +-- + +DROP TABLE IF EXISTS `Simulations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Simulations` ( + `SimulationID` int(11) NOT NULL AUTO_INCREMENT, + `ActionID` int(11) NOT NULL, + `SimulationName` varchar(255) NOT NULL, + `SimulationDescription` varchar(500) DEFAULT NULL, + `SimulationStartDateTime` datetime NOT NULL, + `SimulationStartDateTimeUTCOffset` int(11) NOT NULL, + `SimulationEndDateTime` datetime NOT NULL, + `SimulationEndDateTimeUTCOffset` int(11) NOT NULL, + `TimeStepValue` double NOT NULL, + `TimeStepUnitsID` int(11) NOT NULL, + `InputDataSetID` int(11) DEFAULT NULL, + `ModelID` int(11) NOT NULL, + PRIMARY KEY (`SimulationID`), + KEY `fk_Simulations_Actions` (`ActionID`), + KEY `fk_Simulations_Models` (`ModelID`), + CONSTRAINT `fk_Simulations_Actions` FOREIGN KEY (`ActionID`) REFERENCES `Actions` (`ActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Simulations_Models` FOREIGN KEY (`ModelID`) REFERENCES `Models` (`ModelID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Simulations` +-- + +/*!40000 ALTER TABLE `Simulations` DISABLE KEYS */; +/*!40000 ALTER TABLE `Simulations` ENABLE KEYS */; + +-- +-- Table structure for table `Sites` +-- + +DROP TABLE IF EXISTS `Sites`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Sites` ( + `SamplingFeatureID` int(11) NOT NULL, + `SiteTypeCV` varchar(255) NOT NULL, + `Latitude` double NOT NULL, + `Longitude` double NOT NULL, + `SpatialReferenceID` int(11) NOT NULL, + PRIMARY KEY (`SamplingFeatureID`), + KEY `fk_Sites_CV_SiteType` (`SiteTypeCV`), + KEY `fk_Sites_SpatialReferences` (`SpatialReferenceID`), + CONSTRAINT `fk_Sites_CV_SiteType` FOREIGN KEY (`SiteTypeCV`) REFERENCES `CV_SiteType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Sites_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Sites_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Sites` +-- + +/*!40000 ALTER TABLE `Sites` DISABLE KEYS */; +INSERT INTO `Sites` VALUES (1,'Stream',41.718473,-111.946402,2),(14,'Atmosphere',41.4967,-111.8193,2); +/*!40000 ALTER TABLE `Sites` ENABLE KEYS */; + +-- +-- Table structure for table `SpatialOffsets` +-- + +DROP TABLE IF EXISTS `SpatialOffsets`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpatialOffsets` ( + `SpatialOffsetID` int(11) NOT NULL AUTO_INCREMENT, + `SpatialOffsetTypeCV` varchar(255) NOT NULL, + `Offset1Value` double NOT NULL, + `Offset1UnitID` int(11) NOT NULL, + `Offset2Value` double DEFAULT NULL, + `Offset2UnitID` int(11) DEFAULT NULL, + `Offset3Value` double DEFAULT NULL, + `Offset3UnitID` int(11) DEFAULT NULL, + PRIMARY KEY (`SpatialOffsetID`), + KEY `fk_SpatialOffsets_CV_SpatialOffsetType` (`SpatialOffsetTypeCV`), + KEY `fk_SpatialOffsets_Offset1Units` (`Offset1UnitID`), + KEY `fk_SpatialOffsets_Offset2Units` (`Offset2UnitID`), + KEY `fk_SpatialOffsets_Offset3Units` (`Offset3UnitID`), + CONSTRAINT `fk_SpatialOffsets_CV_SpatialOffsetType` FOREIGN KEY (`SpatialOffsetTypeCV`) REFERENCES `CV_SpatialOffsetType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpatialOffsets_Offset1Units` FOREIGN KEY (`Offset1UnitID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpatialOffsets_Offset2Units` FOREIGN KEY (`Offset2UnitID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpatialOffsets_Offset3Units` FOREIGN KEY (`Offset3UnitID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpatialOffsets` +-- + +/*!40000 ALTER TABLE `SpatialOffsets` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpatialOffsets` ENABLE KEYS */; + +-- +-- Table structure for table `SpatialReferenceExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `SpatialReferenceExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpatialReferenceExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `SpatialReferenceID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `SpatialReferenceExternalIdentifier` varchar(255) NOT NULL, + `SpatialReferenceExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems` (`ExternalIdentifierSystemID`), + KEY `fk_SpatialReferenceExternalIdentifiers_SpatialReferences` (`SpatialReferenceID`), + CONSTRAINT `fk_SpatialReferenceExternalIdentifiers_ExternalIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpatialReferenceExternalIdentifiers_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpatialReferenceExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `SpatialReferenceExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpatialReferenceExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `SpatialReferences` +-- + +DROP TABLE IF EXISTS `SpatialReferences`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpatialReferences` ( + `SpatialReferenceID` int(11) NOT NULL AUTO_INCREMENT, + `SRSCode` varchar(50) DEFAULT NULL, + `SRSName` varchar(255) NOT NULL, + `SRSDescription` varchar(500) DEFAULT NULL, + `SRSLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`SpatialReferenceID`) +) ENGINE=InnoDB AUTO_INCREMENT=231 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpatialReferences` +-- + +/*!40000 ALTER TABLE `SpatialReferences` DISABLE KEYS */; +INSERT INTO `SpatialReferences` VALUES (0,NULL,'Unknown','The spatial reference system is unknown','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(1,'CUAHSI:4267','NAD27',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(2,'CUAHSI:4269','NAD83',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(3,'CUAHSI:4326','WGS84',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(4,'CUAHSI:26703','NAD27 / UTM zone 3N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(5,'CUAHSI:26704','NAD27 / UTM zone 4N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(6,'CUAHSI:26705','NAD27 / UTM zone 5N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(7,'CUAHSI:26706','NAD27 / UTM zone 6N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(8,'CUAHSI:26707','NAD27 / UTM zone 7N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(9,'CUAHSI:26708','NAD27 / UTM zone 8N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(10,'CUAHSI:26709','NAD27 / UTM zone 9N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(11,'CUAHSI:26710','NAD27 / UTM zone 10N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(12,'CUAHSI:26711','NAD27 / UTM zone 11N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(13,'CUAHSI:26712','NAD27 / UTM zone 12N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(14,'CUAHSI:26713','NAD27 / UTM zone 13N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(15,'CUAHSI:26714','NAD27 / UTM zone 14N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(16,'CUAHSI:26715','NAD27 / UTM zone 15N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(17,'CUAHSI:26716','NAD27 / UTM zone 16N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(18,'CUAHSI:26717','NAD27 / UTM zone 17N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(19,'CUAHSI:26718','NAD27 / UTM zone 18N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(20,'CUAHSI:26719','NAD27 / UTM zone 19N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(21,'CUAHSI:26720','NAD27 / UTM zone 20N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(22,'CUAHSI:26721','NAD27 / UTM zone 21N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(23,'CUAHSI:26722','NAD27 / UTM zone 22N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(24,'CUAHSI:26729','NAD27 / Alabama East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(25,'CUAHSI:26730','NAD27 / Alabama West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(26,'CUAHSI:26732','NAD27 / Alaska zone 2',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(27,'CUAHSI:26733','NAD27 / Alaska zone 3',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(28,'CUAHSI:26734','NAD27 / Alaska zone 4',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(29,'CUAHSI:26735','NAD27 / Alaska zone 5',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(30,'CUAHSI:26736','NAD27 / Alaska zone 6',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(31,'CUAHSI:26737','NAD27 / Alaska zone 7',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(32,'CUAHSI:26738','NAD27 / Alaska zone 8',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(33,'CUAHSI:26739','NAD27 / Alaska zone 9',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(34,'CUAHSI:26740','NAD27 / Alaska zone 10',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(35,'CUAHSI:26741','NAD27 / California zone I',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(36,'CUAHSI:26742','NAD27 / California zone II',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(37,'CUAHSI:26743','NAD27 / California zone III',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(38,'CUAHSI:26744','NAD27 / California zone IV',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(39,'CUAHSI:26745','NAD27 / California zone V',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(40,'CUAHSI:26746','NAD27 / California zone VI',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(41,'CUAHSI:26747','NAD27 / California zone VII',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(42,'CUAHSI:26748','NAD27 / Arizona East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(43,'CUAHSI:26749','NAD27 / Arizona Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(44,'CUAHSI:26750','NAD27 / Arizona West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(45,'CUAHSI:26751','NAD27 / Arkansas North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(46,'CUAHSI:26752','NAD27 / Arkansas South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(47,'CUAHSI:26753','NAD27 / Colorado North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(48,'CUAHSI:26754','NAD27 / Colorado Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(49,'CUAHSI:26755','NAD27 / Colorado South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(50,'CUAHSI:26756','NAD27 / Connecticut',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(51,'CUAHSI:26757','NAD27 / Delaware',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(52,'CUAHSI:26758','NAD27 / Florida East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(53,'CUAHSI:26759','NAD27 / Florida West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(54,'CUAHSI:26760','NAD27 / Florida North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(55,'CUAHSI:26761','NAD27 / Hawaii zone 1',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(56,'CUAHSI:26762','NAD27 / Hawaii zone 2',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(57,'CUAHSI:26763','NAD27 / Hawaii zone 3',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(58,'CUAHSI:26764','NAD27 / Hawaii zone 4',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(59,'CUAHSI:26765','NAD27 / Hawaii zone 5',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(60,'CUAHSI:26766','NAD27 / Georgia East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(61,'CUAHSI:26767','NAD27 / Georgia West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(62,'CUAHSI:26768','NAD27 / Idaho East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(63,'CUAHSI:26769','NAD27 / Idaho Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(64,'CUAHSI:26770','NAD27 / Idaho West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(65,'CUAHSI:26771','NAD27 / Illinois East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(66,'CUAHSI:26772','NAD27 / Illinois West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(67,'CUAHSI:26773','NAD27 / Indiana East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(68,'CUAHSI:26774','NAD27 / Indiana West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(69,'CUAHSI:26775','NAD27 / Iowa North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(70,'CUAHSI:26776','NAD27 / Iowa South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(71,'CUAHSI:26777','NAD27 / Kansas North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(72,'CUAHSI:26778','NAD27 / Kansas South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(73,'CUAHSI:26779','NAD27 / Kentucky North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(74,'CUAHSI:26780','NAD27 / Kentucky South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(75,'CUAHSI:26781','NAD27 / Louisiana North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(76,'CUAHSI:26782','NAD27 / Louisiana South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(77,'CUAHSI:26783','NAD27 / Maine East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(78,'CUAHSI:26784','NAD27 / Maine West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(79,'CUAHSI:26785','NAD27 / Maryland',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(80,'CUAHSI:26786','NAD27 / Massachusetts Mainland',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(81,'CUAHSI:26787','NAD27 / Massachusetts Island',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(82,'CUAHSI:26791','NAD27 / Minnesota North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(83,'CUAHSI:26792','NAD27 / Minnesota Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(84,'CUAHSI:26793','NAD27 / Minnesota South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(85,'CUAHSI:26794','NAD27 / Mississippi East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(86,'CUAHSI:26795','NAD27 / Mississippi West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(87,'CUAHSI:26796','NAD27 / Missouri East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(88,'CUAHSI:26797','NAD27 / Missouri Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(89,'CUAHSI:26798','NAD27 / Missouri West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(90,'CUAHSI:26801','NAD Michigan / Michigan East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(91,'CUAHSI:26802','NAD Michigan / Michigan Old Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(92,'CUAHSI:26803','NAD Michigan / Michigan West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(93,'CUAHSI:26811','NAD Michigan / Michigan North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(94,'CUAHSI:26812','NAD Michigan / Michigan Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(95,'CUAHSI:26813','NAD Michigan / Michigan South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(96,'CUAHSI:26903','NAD83 / UTM zone 3N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(97,'CUAHSI:26904','NAD83 / UTM zone 4N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(98,'CUAHSI:26905','NAD83 / UTM zone 5N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(99,'CUAHSI:26906','NAD83 / UTM zone 6N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(100,'CUAHSI:26907','NAD83 / UTM zone 7N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(101,'CUAHSI:26908','NAD83 / UTM zone 8N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(102,'CUAHSI:26909','NAD83 / UTM zone 9N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(103,'CUAHSI:26910','NAD83 / UTM zone 10N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(104,'CUAHSI:26911','NAD83 / UTM zone 11N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(105,'CUAHSI:26912','NAD83 / UTM zone 12N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(106,'CUAHSI:26913','NAD83 / UTM zone 13N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(107,'CUAHSI:26914','NAD83 / UTM zone 14N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(108,'CUAHSI:26915','NAD83 / UTM zone 15N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(109,'CUAHSI:26916','NAD83 / UTM zone 16N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(110,'CUAHSI:26917','NAD83 / UTM zone 17N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(111,'CUAHSI:26918','NAD83 / UTM zone 18N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(112,'CUAHSI:26919','NAD83 / UTM zone 19N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(113,'CUAHSI:26920','NAD83 / UTM zone 20N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(114,'CUAHSI:26921','NAD83 / UTM zone 21N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(115,'CUAHSI:26922','NAD83 / UTM zone 22N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(116,'CUAHSI:26923','NAD83 / UTM zone 23N',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(117,'CUAHSI:26929','NAD83 / Alabama East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(118,'CUAHSI:26930','NAD83 / Alabama West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(119,'CUAHSI:26932','NAD83 / Alaska zone 2',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(120,'CUAHSI:26933','NAD83 / Alaska zone 3',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(121,'CUAHSI:26934','NAD83 / Alaska zone 4',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(122,'CUAHSI:26935','NAD83 / Alaska zone 5',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(123,'CUAHSI:26936','NAD83 / Alaska zone 6',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(124,'CUAHSI:26937','NAD83 / Alaska zone 7',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(125,'CUAHSI:26938','NAD83 / Alaska zone 8',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(126,'CUAHSI:26939','NAD83 / Alaska zone 9',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(127,'CUAHSI:26940','NAD83 / Alaska zone 10',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(128,'CUAHSI:26941','NAD83 / California zone 1',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(129,'CUAHSI:26942','NAD83 / California zone 2',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(130,'CUAHSI:26943','NAD83 / California zone 3',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(131,'CUAHSI:26944','NAD83 / California zone 4',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(132,'CUAHSI:26945','NAD83 / California zone 5',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(133,'CUAHSI:26946','NAD83 / California zone 6',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(134,'CUAHSI:26948','NAD83 / Arizona East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(135,'CUAHSI:26949','NAD83 / Arizona Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(136,'CUAHSI:26950','NAD83 / Arizona West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(137,'CUAHSI:26951','NAD83 / Arkansas North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(138,'CUAHSI:26952','NAD83 / Arkansas South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(139,'CUAHSI:26953','NAD83 / Colorado North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(140,'CUAHSI:26954','NAD83 / Colorado Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(141,'CUAHSI:26955','NAD83 / Colorado South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(142,'CUAHSI:26956','NAD83 / Connecticut',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(143,'CUAHSI:26957','NAD83 / Delaware',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(144,'CUAHSI:26958','NAD83 / Florida East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(145,'CUAHSI:26959','NAD83 / Florida West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(146,'CUAHSI:26960','NAD83 / Florida North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(147,'CUAHSI:26961','NAD83 / Hawaii zone 1',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(148,'CUAHSI:26962','NAD83 / Hawaii zone 2',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(149,'CUAHSI:26963','NAD83 / Hawaii zone 3',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(150,'CUAHSI:26964','NAD83 / Hawaii zone 4',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(151,'CUAHSI:26965','NAD83 / Hawaii zone 5',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(152,'CUAHSI:26966','NAD83 / Georgia East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(153,'CUAHSI:26967','NAD83 / Georgia West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(154,'CUAHSI:26968','NAD83 / Idaho East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(155,'CUAHSI:26969','NAD83 / Idaho Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(156,'CUAHSI:26970','NAD83 / Idaho West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(157,'CUAHSI:26971','NAD83 / Illinois East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(158,'CUAHSI:26972','NAD83 / Illinois West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(159,'CUAHSI:26973','NAD83 / Indiana East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(160,'CUAHSI:26974','NAD83 / Indiana West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(161,'CUAHSI:26975','NAD83 / Iowa North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(162,'CUAHSI:26976','NAD83 / Iowa South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(163,'CUAHSI:26977','NAD83 / Kansas North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(164,'CUAHSI:26978','NAD83 / Kansas South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(165,'CUAHSI:26979','NAD83 / Kentucky North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(166,'CUAHSI:26980','NAD83 / Kentucky South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(167,'CUAHSI:26981','NAD83 / Louisiana North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(168,'CUAHSI:26982','NAD83 / Louisiana South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(169,'CUAHSI:26983','NAD83 / Maine East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(170,'CUAHSI:26984','NAD83 / Maine West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(171,'CUAHSI:26985','NAD83 / Maryland',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(172,'CUAHSI:26986','NAD83 / Massachusetts Mainland',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(173,'CUAHSI:26987','NAD83 / Massachusetts Island',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(174,'CUAHSI:26988','NAD83 / Michigan North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(175,'CUAHSI:26989','NAD83 / Michigan Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(176,'CUAHSI:26990','NAD83 / Michigan South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(177,'CUAHSI:26991','NAD83 / Minnesota North',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(178,'CUAHSI:26992','NAD83 / Minnesota Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(179,'CUAHSI:26993','NAD83 / Minnesota South',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(180,'CUAHSI:26994','NAD83 / Mississippi East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(181,'CUAHSI:26995','NAD83 / Mississippi West',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(182,'CUAHSI:26996','NAD83 / Missouri East',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(183,'CUAHSI:26997','NAD83 / Missouri Central',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(184,'CUAHSI:26998','NAD83 / Missouri West ',NULL,'http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(185,'CUAHSI:4176','Australian Antarctic','Datum Name: Australian Antarctic Datum 1998 Area of Use: Antarctica - Australian sector. Datum Origin: No Data Available Coord System: ellipsoidal Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(186,'CUAHSI:4203','AGD84','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - Queensland (Qld), South Australia (SA), Western Australia (WA). Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: ellipsoidal Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(187,'CUAHSI:4283','GDA94','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - Australian Capital Territory (ACT); New South Wales (NSW); Northern Territory (NT); Queensland (Qld); South Australia (SA); Tasmania (Tas); Western Australia (WA); Victoria (Vic). Datum Origin: ITRF92 at epoch 1994.0 Coord System: ellipsoidal Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(188,'CUAHSI:5711','Australian Height Datum','Datum Name: Australian Height Datum Area of Use: Australia - Australian Capital Territory (ACT); New South Wales (NSW); Northern Territory (NT); Queensland; South Australia (SA); Western Australia (WA); Victoria. Datum Origin: MSL 1966-68 at 30 gauges around coast. Coord System: vertical Ellipsoid Name: No Data Available Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(189,'CUAHSI:5712','Australian Height Datum (Tasmania)','Datum Name: Australian Height Datum (Tasmania) Area of Use: Australia - Tasmania (Tas). Datum Origin: MSL 1972 at Hobart and Burnie. Coord System: vertical Ellipsoid Name: No Data Available Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(190,'CUAHSI:5714','Mean Sea Level Height','Datum Name: Mean Sea Level Area of Use: World. Datum Origin: No Data Available Coord System: vertical Ellipsoid Name: No Data Available Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(191,'CUAHSI:5715','Mean Sea Level Depth','Datum Name: Mean Sea Level Area of Use: World. Datum Origin: No Data Available Coord System: vertical Ellipsoid Name: No Data Available Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(192,'CUAHSI:20348','AGD84 / AMG zone 48','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 102 and 108 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(193,'CUAHSI:20349','AGD84 / AMG zone 49','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 108 and 114 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(194,'CUAHSI:20350','AGD84 / AMG zone 50','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 114 and 120 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(195,'CUAHSI:20351','AGD84 / AMG zone 51','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 120 and 126 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(196,'CUAHSI:20352','AGD84 / AMG zone 52','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 126 and 132 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(197,'CUAHSI:20353','AGD84 / AMG zone 53','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 132 and 138 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(198,'CUAHSI:20354','AGD84 / AMG zone 54','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 138 and 144 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(199,'CUAHSI:20355','AGD84 / AMG zone 55','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 144 and 150 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(200,'CUAHSI:20356','AGD84 / AMG zone 56','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 150 and 156 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(201,'CUAHSI:20357','AGD84 / AMG zone 57','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 156 and 162 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(202,'CUAHSI:20358','AGD84 / AMG zone 58','Datum Name: Australian Geodetic Datum 1984 Area of Use: Australia - between 162 and 168 deg East. Datum Origin: Fundamental point: Johnson Memorial Cairn. Latitude: 25 deg 56 min 54.5515 sec S; Longitude: 133 deg 12 min 30.0771 sec E (of Greenwich). Coord System: Cartesian Ellipsoid Name: Australian National Spheroid Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(203,'CUAHSI:28348','GDA94 / MGA zone 48','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 102 and 108 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(204,'CUAHSI:28349','GDA94 / MGA zone 49','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 108 and 114 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(205,'CUAHSI:28350','GDA94 / MGA zone 50','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 114 and 120 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(206,'CUAHSI:28351','GDA94 / MGA zone 51','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 120 and 126 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(207,'CUAHSI:28352','GDA94 / MGA zone 52','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 126 and 132 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(208,'CUAHSI:28353','GDA94 / MGA zone 53','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 132 and 138 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(209,'CUAHSI:28354','GDA94 / MGA zone 54','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 138 and 144 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(210,'CUAHSI:28355','GDA94 / MGA zone 55','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 144 and 150 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(211,'CUAHSI:28356','GDA94 / MGA zone 56','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 150 and 156 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(212,'CUAHSI:28357','GDA94 / MGA zone 57','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 156 and 162 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(213,'CUAHSI:28358','GDA94 / MGA zone 58','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - between 162 and 168 deg East. Datum Origin: ITRF92 at epoch 1994.0 Coord System: Cartesian Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(214,'CUAHSI:32748','WGS 84 / UTM zone 48S','Datum Name: World Geodetic System 1984 Area of Use: Between 102 and 108 deg East; southern hemisphere. Indonesia. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(215,'CUAHSI:32749','WGS 84 / UTM zone 49S','Datum Name: World Geodetic System 1984 Area of Use: Between 108 and 114 deg East; southern hemisphere. Australia. Indonesia. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(216,'CUAHSI:32750','WGS 84 / UTM zone 50S','Datum Name: World Geodetic System 1984 Area of Use: Between 114 and 120 deg East; southern hemisphere. Australia. Indonesia. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(217,'CUAHSI:32751','WGS 84 / UTM zone 51S','Datum Name: World Geodetic System 1984 Area of Use: Between 120 and 126 deg East; southern hemisphere. Australia. East Timor. Indonesia. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(218,'CUAHSI:32752','WGS 84 / UTM zone 52S','Datum Name: World Geodetic System 1984 Area of Use: Between 126 and 132 deg East; southern hemisphere. Australia. East Timor. Indonesia. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(219,'CUAHSI:32753','WGS 84 / UTM zone 53S','Datum Name: World Geodetic System 1984 Area of Use: Between 132 and 138 deg East; southern hemisphere. Australia. Indonesia. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(220,'CUAHSI:32754','WGS 84 / UTM zone 54S','Datum Name: World Geodetic System 1984 Area of Use: Between 138 and 144 deg East; southern hemisphere. Australia. Indonesia. Papua New Guinea. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(221,'CUAHSI:32755','WGS 84 / UTM zone 55S','Datum Name: World Geodetic System 1984 Area of Use: Between 144 and 150 deg East; southern hemisphere. Australia. Papua New Guinea. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(222,'CUAHSI:32756','WGS 84 / UTM zone 56S','Datum Name: World Geodetic System 1984 Area of Use: Between 150 and 156 deg East; southern hemisphere. Australia. Papua New Guinea. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(223,'CUAHSI:32757','WGS 84 / UTM zone 57S','Datum Name: World Geodetic System 1984 Area of Use: Between 156 and 162 deg East; southern hemisphere. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(224,'CUAHSI:32758','WGS 84 / UTM zone 58S','Datum Name: World Geodetic System 1984 Area of Use: Between 162 and 168 deg East; southern hemisphere. Datum Origin: Defined through a consistent set of station coordinates. These have changed with time: by 0.7m on 29/6/1994 [WGS 84 (G730)], a further 0.2m on 29/1/1997 [WGS 84 (G873)] and a further 0.06m on 20/1/2002 [WGS 84 (G1150)]. Coord System: Cartesian Ellipsoid Name: WGS 84 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(225,'CUAHSI:3308','GDA94 / NSW Lambert','Datum Name: Geocentric Datum of Australia 1994 Area of Use: Australia - New South Wales (NSW). Datum Origin: ITRF92 at epoch 1994.0 Ellipsoid Name: GRS 1980 Data Source: EPSG','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(226,'CUAHSI:2914','NAD_1983_HARN_StatePlane_Oregon_South_FIPS_3602_Feet_Intl','I wonder if we can\'t just load the entire list at:\nhttp://www.arcwebservices.com/v2006/help/index_Left.htm#StartTopic=support/pcs_name.htm#|SkinName=ArcWeb \ninto the CV??','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(227,'CUAHSI:2276','NAD83 / Texas North Central (ftUS)','ESRI Name: NAD_1983_StatePlane_Texas_North_Central_FIPS_4202_Feet\nArea of Use: United States (USA) - Texas - counties of: Andrews; Archer; Bailey; Baylor; Borden; Bowie; Callahan; Camp; Cass; Clay; Cochran; Collin; Cooke; Cottle; Crosby; Dallas; Dawson; Delta; Denton; Dickens; Eastland; Ellis; Erath; Fannin; Fisher; Floyd; Foard; Franklin; Gaines; Garza; Grayson; Gregg; Hale; Hardeman; Harrison; Haskell; Henderson; Hill; Hockley; Hood; Hopkins; Howard; Hunt; Jack; Johnson; Jones; Kaufman; Kent; ','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(228,'CUAHSI:0','HRAP Grid Coordinate System','Datum Name: Hydrologic Rainfall Analysis Project (HRAP) grid coordinate system Information: a polar stereographic projection true at 60°N / 105°W Link: http://www.nws.noaa.gov/oh/hrl/distmodel/hrap.htm#background','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=SpatialReferences'),(229,NULL,'Distance above ground level',NULL,NULL),(230,NULL,'Depth below soil surface',NULL,NULL); +/*!40000 ALTER TABLE `SpatialReferences` ENABLE KEYS */; + +-- +-- Table structure for table `SpecimenBatchPostions` +-- + +DROP TABLE IF EXISTS `SpecimenBatchPostions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpecimenBatchPostions` ( + `FeatureActionID` int(11) NOT NULL, + `BatchPositionNumber` int(11) NOT NULL, + `BatchPositionLabel` varchar(255) DEFAULT NULL, + PRIMARY KEY (`FeatureActionID`), + CONSTRAINT `fk_SpecimenBatchPostions_FeatureActions` FOREIGN KEY (`FeatureActionID`) REFERENCES `FeatureActions` (`FeatureActionID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpecimenBatchPostions` +-- + +/*!40000 ALTER TABLE `SpecimenBatchPostions` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpecimenBatchPostions` ENABLE KEYS */; + +-- +-- Table structure for table `SpecimenTaxonomicClassifiers` +-- + +DROP TABLE IF EXISTS `SpecimenTaxonomicClassifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpecimenTaxonomicClassifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `SamplingFeatureID` int(11) NOT NULL, + `TaxonomicClassifierID` int(11) NOT NULL, + `CitationID` int(11) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SpecimenTaxonomicClassifiers_Citations` (`CitationID`), + KEY `fk_SpecimenTaxonomicClassifiers_Specimens` (`SamplingFeatureID`), + KEY `fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers` (`TaxonomicClassifierID`), + CONSTRAINT `fk_SpecimenTaxonomicClassifiers_Citations` FOREIGN KEY (`CitationID`) REFERENCES `Citations` (`CitationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpecimenTaxonomicClassifiers_Specimens` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `Specimens` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpecimenTaxonomicClassifiers_TaxonomicClassifiers` FOREIGN KEY (`TaxonomicClassifierID`) REFERENCES `TaxonomicClassifiers` (`TaxonomicClassifierID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpecimenTaxonomicClassifiers` +-- + +/*!40000 ALTER TABLE `SpecimenTaxonomicClassifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpecimenTaxonomicClassifiers` ENABLE KEYS */; + +-- +-- Table structure for table `Specimens` +-- + +DROP TABLE IF EXISTS `Specimens`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Specimens` ( + `SamplingFeatureID` int(11) NOT NULL, + `SpecimenTypeCV` varchar(255) NOT NULL, + `SpecimenMediumCV` varchar(255) NOT NULL, + `IsFieldSpecimen` tinyint(1) NOT NULL, + PRIMARY KEY (`SamplingFeatureID`), + KEY `fk_Specimens_CV_Medium` (`SpecimenMediumCV`), + KEY `fk_Specimens_CV_SpecimenType` (`SpecimenTypeCV`), + CONSTRAINT `fk_Specimens_CV_Medium` FOREIGN KEY (`SpecimenMediumCV`) REFERENCES `CV_Medium` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Specimens_CV_SpecimenType` FOREIGN KEY (`SpecimenTypeCV`) REFERENCES `CV_SpecimenType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Specimens_SamplingFeatures` FOREIGN KEY (`SamplingFeatureID`) REFERENCES `SamplingFeatures` (`SamplingFeatureID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Specimens` +-- + +/*!40000 ALTER TABLE `Specimens` DISABLE KEYS */; +INSERT INTO `Specimens` VALUES (15,'Grab','Liquid aqueous',1),(16,'Grab','Liquid aqueous',1),(17,'Grab','Liquid aqueous',1),(18,'Grab','Liquid aqueous',1),(19,'Grab','Liquid aqueous',1),(20,'Grab','Liquid aqueous',1),(21,'Grab','Liquid aqueous',1),(22,'Grab','Liquid aqueous',1),(23,'Grab','Liquid aqueous',1),(24,'Grab','Liquid aqueous',1),(25,'Grab','Liquid aqueous',1),(26,'Grab','Liquid aqueous',1),(27,'Grab','Liquid aqueous',1),(28,'Grab','Liquid aqueous',1),(29,'Grab','Liquid aqueous',1),(30,'Grab','Liquid aqueous',1),(31,'Grab','Liquid aqueous',1),(32,'Grab','Liquid aqueous',1),(33,'Grab','Liquid aqueous',1),(34,'Grab','Liquid aqueous',1),(35,'Grab','Liquid aqueous',1),(36,'Grab','Liquid aqueous',1),(37,'Grab','Liquid aqueous',1),(38,'Grab','Liquid aqueous',1),(39,'Grab','Liquid aqueous',1),(40,'Grab','Liquid aqueous',1),(41,'Grab','Liquid aqueous',1),(42,'Grab','Liquid aqueous',1),(43,'Grab','Liquid aqueous',1),(44,'Grab','Liquid aqueous',1),(45,'Grab','Liquid aqueous',1),(46,'Grab','Liquid aqueous',1),(47,'Grab','Liquid aqueous',1),(48,'Grab','Liquid aqueous',1),(49,'Grab','Liquid aqueous',1),(50,'Grab','Liquid aqueous',1),(51,'Grab','Liquid aqueous',1),(52,'Grab','Liquid aqueous',1),(53,'Grab','Liquid aqueous',1),(54,'Grab','Liquid aqueous',1),(55,'Grab','Liquid aqueous',1),(56,'Grab','Liquid aqueous',1),(57,'Grab','Liquid aqueous',1),(58,'Grab','Liquid aqueous',1),(59,'Grab','Liquid aqueous',1),(60,'Grab','Liquid aqueous',1),(61,'Grab','Liquid aqueous',1),(62,'Grab','Liquid aqueous',1),(63,'Grab','Liquid aqueous',1),(64,'Grab','Liquid aqueous',1),(65,'Grab','Liquid aqueous',1),(66,'Grab','Liquid aqueous',1),(67,'Grab','Liquid aqueous',1),(68,'Grab','Liquid aqueous',1),(69,'Grab','Liquid aqueous',1),(70,'Grab','Liquid aqueous',1),(71,'Grab','Liquid aqueous',1),(72,'Grab','Liquid aqueous',1),(73,'Grab','Liquid aqueous',1),(74,'Grab','Liquid aqueous',1),(75,'Grab','Liquid aqueous',1),(76,'Grab','Liquid aqueous',1),(77,'Grab','Liquid aqueous',1),(78,'Grab','Liquid aqueous',1),(79,'Grab','Liquid aqueous',1),(80,'Grab','Liquid aqueous',1),(81,'Grab','Liquid aqueous',1),(82,'Grab','Liquid aqueous',1),(83,'Grab','Liquid aqueous',1),(84,'Grab','Liquid aqueous',1),(85,'Grab','Liquid aqueous',1),(86,'Grab','Liquid aqueous',1),(87,'Grab','Liquid aqueous',1),(88,'Grab','Liquid aqueous',1),(89,'Grab','Liquid aqueous',1),(90,'Grab','Liquid aqueous',1),(91,'Grab','Liquid aqueous',1),(92,'Grab','Liquid aqueous',1),(93,'Grab','Liquid aqueous',1),(94,'Grab','Liquid aqueous',1),(95,'Grab','Liquid aqueous',1),(96,'Grab','Liquid aqueous',1),(97,'Grab','Liquid aqueous',1),(98,'Grab','Liquid aqueous',1),(99,'Grab','Liquid aqueous',1),(100,'Grab','Liquid aqueous',1),(101,'Grab','Liquid aqueous',1),(102,'Grab','Liquid aqueous',1),(103,'Grab','Liquid aqueous',1),(104,'Grab','Liquid aqueous',1),(105,'Grab','Liquid aqueous',1),(106,'Grab','Liquid aqueous',1),(107,'Grab','Liquid aqueous',1),(108,'Grab','Liquid aqueous',1),(109,'Grab','Liquid aqueous',1),(110,'Grab','Liquid aqueous',1),(111,'Grab','Liquid aqueous',1),(112,'Grab','Liquid aqueous',1),(113,'Grab','Liquid aqueous',1),(114,'Grab','Liquid aqueous',1),(115,'Grab','Liquid aqueous',1),(116,'Grab','Liquid aqueous',1),(117,'Grab','Liquid aqueous',1),(118,'Grab','Liquid aqueous',1),(119,'Grab','Liquid aqueous',1),(120,'Grab','Liquid aqueous',1),(121,'Grab','Liquid aqueous',1),(122,'Grab','Liquid aqueous',1),(123,'Grab','Liquid aqueous',1),(124,'Grab','Liquid aqueous',1),(125,'Grab','Liquid aqueous',1),(126,'Grab','Liquid aqueous',1),(127,'Grab','Liquid aqueous',1),(128,'Grab','Liquid aqueous',1),(129,'Grab','Liquid aqueous',1),(130,'Grab','Liquid aqueous',1),(131,'Grab','Liquid aqueous',1),(132,'Grab','Liquid aqueous',1),(133,'Grab','Liquid aqueous',1),(134,'Grab','Liquid aqueous',1),(135,'Grab','Liquid aqueous',1),(136,'Grab','Liquid aqueous',1),(137,'Grab','Liquid aqueous',1),(138,'Grab','Liquid aqueous',1),(139,'Grab','Liquid aqueous',1),(140,'Grab','Liquid aqueous',1),(141,'Grab','Liquid aqueous',1),(142,'Grab','Liquid aqueous',1),(143,'Grab','Liquid aqueous',1),(144,'Grab','Liquid aqueous',1),(145,'Grab','Liquid aqueous',1),(146,'Grab','Liquid aqueous',1),(147,'Grab','Liquid aqueous',1),(148,'Grab','Liquid aqueous',1),(149,'Grab','Liquid aqueous',1),(150,'Grab','Liquid aqueous',1),(151,'Grab','Liquid aqueous',1),(152,'Grab','Liquid aqueous',1),(153,'Grab','Liquid aqueous',1),(154,'Grab','Liquid aqueous',1),(155,'Grab','Liquid aqueous',1),(156,'Grab','Liquid aqueous',1),(157,'Grab','Liquid aqueous',1),(158,'Grab','Liquid aqueous',1),(159,'Grab','Liquid aqueous',1),(160,'Grab','Liquid aqueous',1),(161,'Grab','Liquid aqueous',1),(162,'Grab','Liquid aqueous',1),(163,'Grab','Liquid aqueous',1),(164,'Grab','Liquid aqueous',1),(165,'Grab','Liquid aqueous',1),(166,'Grab','Liquid aqueous',1),(167,'Grab','Liquid aqueous',1),(168,'Grab','Liquid aqueous',1),(169,'Grab','Liquid aqueous',1),(170,'Grab','Liquid aqueous',1),(171,'Grab','Liquid aqueous',1),(172,'Grab','Liquid aqueous',1),(173,'Grab','Liquid aqueous',1),(174,'Grab','Liquid aqueous',1),(175,'Grab','Liquid aqueous',1),(176,'Grab','Liquid aqueous',1),(177,'Grab','Liquid aqueous',1),(178,'Grab','Liquid aqueous',1),(179,'Grab','Liquid aqueous',1),(180,'Grab','Liquid aqueous',1),(181,'Grab','Liquid aqueous',1),(182,'Grab','Liquid aqueous',1),(183,'Grab','Liquid aqueous',1),(184,'Grab','Liquid aqueous',1),(185,'Grab','Liquid aqueous',1),(186,'Grab','Liquid aqueous',1),(187,'Grab','Liquid aqueous',1),(188,'Grab','Liquid aqueous',1),(189,'Grab','Liquid aqueous',1),(190,'Grab','Liquid aqueous',1),(191,'Grab','Liquid aqueous',1),(192,'Grab','Liquid aqueous',1),(193,'Grab','Liquid aqueous',1),(194,'Grab','Liquid aqueous',1),(195,'Grab','Liquid aqueous',1),(196,'Grab','Liquid aqueous',1),(197,'Grab','Liquid aqueous',1),(198,'Grab','Liquid aqueous',1),(199,'Grab','Liquid aqueous',1),(200,'Grab','Liquid aqueous',1),(201,'Grab','Liquid aqueous',1),(202,'Grab','Liquid aqueous',1),(203,'Grab','Liquid aqueous',1),(204,'Grab','Liquid aqueous',1),(205,'Grab','Liquid aqueous',1),(206,'Grab','Liquid aqueous',1),(207,'Grab','Liquid aqueous',1),(208,'Grab','Liquid aqueous',1),(209,'Grab','Liquid aqueous',1),(210,'Grab','Liquid aqueous',1),(211,'Grab','Liquid aqueous',1),(212,'Grab','Liquid aqueous',1),(213,'Grab','Liquid aqueous',1),(214,'Grab','Liquid aqueous',1),(215,'Grab','Liquid aqueous',1),(216,'Grab','Liquid aqueous',1),(217,'Grab','Liquid aqueous',1),(218,'Grab','Liquid aqueous',1),(219,'Grab','Liquid aqueous',1),(220,'Grab','Liquid aqueous',1),(221,'Grab','Liquid aqueous',1),(222,'Grab','Liquid aqueous',1),(223,'Grab','Liquid aqueous',1),(224,'Grab','Liquid aqueous',1),(225,'Grab','Liquid aqueous',1),(226,'Grab','Liquid aqueous',1),(227,'Grab','Liquid aqueous',1),(228,'Grab','Liquid aqueous',1),(229,'Grab','Liquid aqueous',1),(230,'Grab','Liquid aqueous',1),(231,'Grab','Liquid aqueous',1),(232,'Grab','Liquid aqueous',1),(233,'Grab','Liquid aqueous',1),(234,'Grab','Liquid aqueous',1),(235,'Grab','Liquid aqueous',1),(236,'Grab','Liquid aqueous',1),(237,'Grab','Liquid aqueous',1),(238,'Grab','Liquid aqueous',1),(239,'Grab','Liquid aqueous',1),(240,'Grab','Liquid aqueous',1),(241,'Grab','Liquid aqueous',1),(242,'Grab','Liquid aqueous',1),(243,'Grab','Liquid aqueous',1),(244,'Grab','Liquid aqueous',1),(245,'Grab','Liquid aqueous',1),(246,'Grab','Liquid aqueous',1),(247,'Grab','Liquid aqueous',1),(248,'Grab','Liquid aqueous',1),(249,'Grab','Liquid aqueous',1),(250,'Grab','Liquid aqueous',1),(251,'Grab','Liquid aqueous',1),(252,'Grab','Liquid aqueous',1),(253,'Grab','Liquid aqueous',1),(254,'Grab','Liquid aqueous',1),(255,'Grab','Liquid aqueous',1),(256,'Grab','Liquid aqueous',1),(257,'Grab','Liquid aqueous',1),(258,'Grab','Liquid aqueous',1),(259,'Grab','Liquid aqueous',1),(260,'Grab','Liquid aqueous',1),(261,'Grab','Liquid aqueous',1),(262,'Grab','Liquid aqueous',1),(263,'Grab','Liquid aqueous',1),(264,'Grab','Liquid aqueous',1),(265,'Grab','Liquid aqueous',1),(266,'Grab','Liquid aqueous',1),(267,'Grab','Liquid aqueous',1),(268,'Grab','Liquid aqueous',1),(269,'Grab','Liquid aqueous',1),(270,'Grab','Liquid aqueous',1),(271,'Grab','Liquid aqueous',1),(272,'Grab','Liquid aqueous',1),(273,'Grab','Liquid aqueous',1),(274,'Grab','Liquid aqueous',1),(275,'Grab','Liquid aqueous',1),(276,'Grab','Liquid aqueous',1),(277,'Grab','Liquid aqueous',1),(278,'Grab','Liquid aqueous',1),(279,'Grab','Liquid aqueous',1),(280,'Grab','Liquid aqueous',1),(281,'Grab','Liquid aqueous',1),(282,'Grab','Liquid aqueous',1),(283,'Grab','Liquid aqueous',1),(284,'Grab','Liquid aqueous',1),(285,'Grab','Liquid aqueous',1),(286,'Grab','Liquid aqueous',1),(287,'Grab','Liquid aqueous',1),(288,'Grab','Liquid aqueous',1),(289,'Grab','Liquid aqueous',1),(290,'Grab','Liquid aqueous',1),(291,'Grab','Liquid aqueous',1),(292,'Grab','Liquid aqueous',1),(293,'Grab','Liquid aqueous',1),(294,'Grab','Liquid aqueous',1),(295,'Grab','Liquid aqueous',1),(296,'Grab','Liquid aqueous',1),(297,'Grab','Liquid aqueous',1),(298,'Grab','Liquid aqueous',1),(299,'Grab','Liquid aqueous',1),(300,'Grab','Liquid aqueous',1),(301,'Grab','Liquid aqueous',1),(302,'Grab','Liquid aqueous',1),(303,'Grab','Liquid aqueous',1),(304,'Grab','Liquid aqueous',1),(305,'Grab','Liquid aqueous',1),(306,'Grab','Liquid aqueous',1),(307,'Grab','Liquid aqueous',1),(308,'Grab','Liquid aqueous',1),(309,'Grab','Liquid aqueous',1),(310,'Grab','Liquid aqueous',1),(311,'Grab','Liquid aqueous',1),(312,'Grab','Liquid aqueous',1),(313,'Grab','Liquid aqueous',1),(314,'Grab','Liquid aqueous',1),(315,'Grab','Liquid aqueous',1),(316,'Grab','Liquid aqueous',1),(317,'Grab','Liquid aqueous',1),(318,'Grab','Liquid aqueous',1),(319,'Grab','Liquid aqueous',1),(320,'Grab','Liquid aqueous',1),(321,'Grab','Liquid aqueous',1),(322,'Grab','Liquid aqueous',1),(323,'Grab','Liquid aqueous',1),(324,'Grab','Liquid aqueous',1),(325,'Grab','Liquid aqueous',1),(326,'Grab','Liquid aqueous',1),(327,'Grab','Liquid aqueous',1),(328,'Grab','Liquid aqueous',1),(329,'Grab','Liquid aqueous',1),(330,'Grab','Liquid aqueous',1),(331,'Grab','Liquid aqueous',1),(332,'Grab','Liquid aqueous',1),(333,'Grab','Liquid aqueous',1),(334,'Grab','Liquid aqueous',1),(335,'Grab','Liquid aqueous',1),(336,'Grab','Liquid aqueous',1),(337,'Grab','Liquid aqueous',1),(338,'Grab','Liquid aqueous',1),(339,'Grab','Liquid aqueous',1),(340,'Grab','Liquid aqueous',1),(341,'Grab','Liquid aqueous',1),(342,'Grab','Liquid aqueous',1),(343,'Grab','Liquid aqueous',1),(344,'Grab','Liquid aqueous',1),(345,'Grab','Liquid aqueous',1),(346,'Grab','Liquid aqueous',1),(347,'Grab','Liquid aqueous',1),(348,'Grab','Liquid aqueous',1),(349,'Grab','Liquid aqueous',1),(350,'Grab','Liquid aqueous',1),(351,'Grab','Liquid aqueous',1),(352,'Grab','Liquid aqueous',1),(353,'Grab','Liquid aqueous',1),(354,'Grab','Liquid aqueous',1),(355,'Grab','Liquid aqueous',1),(356,'Grab','Liquid aqueous',1),(357,'Grab','Liquid aqueous',1),(358,'Grab','Liquid aqueous',1),(359,'Grab','Liquid aqueous',1),(360,'Grab','Liquid aqueous',1),(361,'Grab','Liquid aqueous',1),(362,'Grab','Liquid aqueous',1),(363,'Grab','Liquid aqueous',1),(364,'Grab','Liquid aqueous',1),(365,'Grab','Liquid aqueous',1),(366,'Grab','Liquid aqueous',1),(367,'Grab','Liquid aqueous',1),(368,'Grab','Liquid aqueous',1),(369,'Grab','Liquid aqueous',1),(370,'Grab','Liquid aqueous',1),(371,'Grab','Liquid aqueous',1),(372,'Grab','Liquid aqueous',1),(373,'Grab','Liquid aqueous',1),(374,'Grab','Liquid aqueous',1),(375,'Grab','Liquid aqueous',1),(376,'Grab','Liquid aqueous',1),(377,'Grab','Liquid aqueous',1),(378,'Grab','Liquid aqueous',1),(379,'Grab','Liquid aqueous',1),(380,'Grab','Liquid aqueous',1),(381,'Grab','Liquid aqueous',1),(382,'Grab','Liquid aqueous',1),(383,'Grab','Liquid aqueous',1),(384,'Grab','Liquid aqueous',1),(385,'Grab','Liquid aqueous',1),(386,'Grab','Liquid aqueous',1),(387,'Grab','Liquid aqueous',1),(388,'Grab','Liquid aqueous',1),(389,'Grab','Liquid aqueous',1),(390,'Grab','Liquid aqueous',1),(391,'Grab','Liquid aqueous',1),(392,'Grab','Liquid aqueous',1),(393,'Grab','Liquid aqueous',1),(394,'Grab','Liquid aqueous',1),(395,'Grab','Liquid aqueous',1),(396,'Grab','Liquid aqueous',1),(397,'Grab','Liquid aqueous',1),(398,'Grab','Liquid aqueous',1),(399,'Grab','Liquid aqueous',1),(400,'Grab','Liquid aqueous',1),(401,'Grab','Liquid aqueous',1),(402,'Grab','Liquid aqueous',1),(403,'Grab','Liquid aqueous',1),(404,'Grab','Liquid aqueous',1),(405,'Grab','Liquid aqueous',1),(406,'Grab','Liquid aqueous',1),(407,'Grab','Liquid aqueous',1),(408,'Grab','Liquid aqueous',1),(409,'Grab','Liquid aqueous',1),(410,'Grab','Liquid aqueous',1),(411,'Grab','Liquid aqueous',1),(412,'Grab','Liquid aqueous',1),(413,'Grab','Liquid aqueous',1),(414,'Grab','Liquid aqueous',1),(415,'Grab','Liquid aqueous',1),(416,'Grab','Liquid aqueous',1),(417,'Grab','Liquid aqueous',1),(418,'Grab','Liquid aqueous',1),(419,'Grab','Liquid aqueous',1),(420,'Grab','Liquid aqueous',1),(421,'Grab','Liquid aqueous',1),(422,'Grab','Liquid aqueous',1),(423,'Grab','Liquid aqueous',1),(424,'Grab','Liquid aqueous',1),(425,'Grab','Liquid aqueous',1),(426,'Grab','Liquid aqueous',1),(427,'Grab','Liquid aqueous',1),(428,'Grab','Liquid aqueous',1),(429,'Grab','Liquid aqueous',1),(430,'Grab','Liquid aqueous',1),(431,'Grab','Liquid aqueous',1),(432,'Grab','Liquid aqueous',1),(433,'Grab','Liquid aqueous',1),(434,'Grab','Liquid aqueous',1),(435,'Grab','Liquid aqueous',1),(436,'Grab','Liquid aqueous',1),(437,'Grab','Liquid aqueous',1),(438,'Grab','Liquid aqueous',1),(439,'Grab','Liquid aqueous',1),(440,'Grab','Liquid aqueous',1),(441,'Grab','Liquid aqueous',1),(442,'Grab','Liquid aqueous',1),(443,'Grab','Liquid aqueous',1),(444,'Grab','Liquid aqueous',1),(445,'Grab','Liquid aqueous',1),(446,'Grab','Liquid aqueous',1),(447,'Grab','Liquid aqueous',1),(448,'Grab','Liquid aqueous',1),(449,'Grab','Liquid aqueous',1),(450,'Grab','Liquid aqueous',1),(451,'Grab','Liquid aqueous',1),(452,'Grab','Liquid aqueous',1),(453,'Grab','Liquid aqueous',1),(454,'Grab','Liquid aqueous',1),(455,'Grab','Liquid aqueous',1),(456,'Grab','Liquid aqueous',1),(457,'Grab','Liquid aqueous',1),(458,'Grab','Liquid aqueous',1),(459,'Grab','Liquid aqueous',1),(460,'Grab','Liquid aqueous',1),(461,'Grab','Liquid aqueous',1),(462,'Grab','Liquid aqueous',1),(463,'Grab','Liquid aqueous',1),(464,'Grab','Liquid aqueous',1),(465,'Grab','Liquid aqueous',1),(466,'Grab','Liquid aqueous',1),(467,'Grab','Liquid aqueous',1),(468,'Grab','Liquid aqueous',1),(469,'Grab','Liquid aqueous',1),(470,'Grab','Liquid aqueous',1),(471,'Grab','Liquid aqueous',1),(472,'Grab','Liquid aqueous',1),(473,'Grab','Liquid aqueous',1),(474,'Grab','Liquid aqueous',1),(475,'Grab','Liquid aqueous',1),(476,'Grab','Liquid aqueous',1),(477,'Grab','Liquid aqueous',1),(478,'Grab','Liquid aqueous',1),(479,'Grab','Liquid aqueous',1),(480,'Grab','Liquid aqueous',1),(481,'Grab','Liquid aqueous',1),(482,'Grab','Liquid aqueous',1),(483,'Grab','Liquid aqueous',1),(484,'Grab','Liquid aqueous',1),(485,'Grab','Liquid aqueous',1),(486,'Grab','Liquid aqueous',1),(487,'Grab','Liquid aqueous',1),(488,'Grab','Liquid aqueous',1),(489,'Grab','Liquid aqueous',1),(490,'Grab','Liquid aqueous',1),(491,'Grab','Liquid aqueous',1),(492,'Grab','Liquid aqueous',1),(493,'Grab','Liquid aqueous',1),(494,'Grab','Liquid aqueous',1),(495,'Grab','Liquid aqueous',1),(496,'Grab','Liquid aqueous',1),(497,'Grab','Liquid aqueous',1),(498,'Grab','Liquid aqueous',1),(499,'Grab','Liquid aqueous',1),(500,'Grab','Liquid aqueous',1),(501,'Grab','Liquid aqueous',1),(502,'Grab','Liquid aqueous',1),(503,'Grab','Liquid aqueous',1),(504,'Grab','Liquid aqueous',1),(505,'Grab','Liquid aqueous',1),(506,'Grab','Liquid aqueous',1),(507,'Grab','Liquid aqueous',1),(508,'Grab','Liquid aqueous',1),(509,'Grab','Liquid aqueous',1),(510,'Grab','Liquid aqueous',1),(511,'Grab','Liquid aqueous',1),(512,'Grab','Liquid aqueous',1),(513,'Grab','Liquid aqueous',1),(514,'Grab','Liquid aqueous',1),(515,'Grab','Liquid aqueous',1),(516,'Grab','Liquid aqueous',1),(517,'Grab','Liquid aqueous',1),(518,'Grab','Liquid aqueous',1),(519,'Grab','Liquid aqueous',1),(520,'Grab','Liquid aqueous',1),(521,'Grab','Liquid aqueous',1),(522,'Grab','Liquid aqueous',1),(523,'Grab','Liquid aqueous',1),(524,'Grab','Liquid aqueous',1),(525,'Grab','Liquid aqueous',1),(526,'Grab','Liquid aqueous',1),(527,'Grab','Liquid aqueous',1),(528,'Grab','Liquid aqueous',1),(529,'Grab','Liquid aqueous',1),(530,'Grab','Liquid aqueous',1),(531,'Grab','Liquid aqueous',1),(532,'Grab','Liquid aqueous',1),(533,'Grab','Liquid aqueous',1),(534,'Grab','Liquid aqueous',1),(535,'Grab','Liquid aqueous',1),(536,'Grab','Liquid aqueous',1),(537,'Grab','Liquid aqueous',1),(538,'Grab','Liquid aqueous',1),(539,'Grab','Liquid aqueous',1),(540,'Grab','Liquid aqueous',1),(541,'Grab','Liquid aqueous',1),(542,'Grab','Liquid aqueous',1),(543,'Grab','Liquid aqueous',1),(544,'Grab','Liquid aqueous',1),(545,'Grab','Liquid aqueous',1),(546,'Grab','Liquid aqueous',1),(547,'Grab','Liquid aqueous',1),(548,'Grab','Liquid aqueous',1),(549,'Grab','Liquid aqueous',1),(550,'Grab','Liquid aqueous',1),(551,'Grab','Liquid aqueous',1),(552,'Grab','Liquid aqueous',1),(553,'Grab','Liquid aqueous',1),(554,'Grab','Liquid aqueous',1),(555,'Grab','Liquid aqueous',1),(556,'Grab','Liquid aqueous',1),(557,'Grab','Liquid aqueous',1),(558,'Grab','Liquid aqueous',1),(559,'Grab','Liquid aqueous',1),(560,'Grab','Liquid aqueous',1),(561,'Grab','Liquid aqueous',1),(562,'Grab','Liquid aqueous',1),(563,'Grab','Liquid aqueous',1),(564,'Grab','Liquid aqueous',1),(565,'Grab','Liquid aqueous',1),(566,'Grab','Liquid aqueous',1),(567,'Grab','Liquid aqueous',1),(568,'Grab','Liquid aqueous',1),(569,'Grab','Liquid aqueous',1),(570,'Grab','Liquid aqueous',1),(571,'Grab','Liquid aqueous',1),(572,'Grab','Liquid aqueous',1),(573,'Grab','Liquid aqueous',1),(574,'Grab','Liquid aqueous',1),(575,'Grab','Liquid aqueous',1),(576,'Grab','Liquid aqueous',1),(577,'Grab','Liquid aqueous',1),(578,'Grab','Liquid aqueous',1),(579,'Grab','Liquid aqueous',1),(580,'Grab','Liquid aqueous',1),(581,'Grab','Liquid aqueous',1),(582,'Grab','Liquid aqueous',1),(583,'Grab','Liquid aqueous',1),(584,'Grab','Liquid aqueous',1),(585,'Grab','Liquid aqueous',1),(586,'Grab','Liquid aqueous',1),(587,'Grab','Liquid aqueous',1),(588,'Grab','Liquid aqueous',1),(589,'Grab','Liquid aqueous',1),(590,'Grab','Liquid aqueous',1),(591,'Grab','Liquid aqueous',1),(592,'Grab','Liquid aqueous',1),(593,'Grab','Liquid aqueous',1),(594,'Grab','Liquid aqueous',1),(595,'Grab','Liquid aqueous',1),(596,'Grab','Liquid aqueous',1),(597,'Grab','Liquid aqueous',1),(598,'Grab','Liquid aqueous',1),(599,'Grab','Liquid aqueous',1),(600,'Grab','Liquid aqueous',1),(601,'Grab','Liquid aqueous',1),(602,'Grab','Liquid aqueous',1),(603,'Grab','Liquid aqueous',1),(604,'Grab','Liquid aqueous',1),(605,'Grab','Liquid aqueous',1),(606,'Grab','Liquid aqueous',1),(607,'Grab','Liquid aqueous',1),(608,'Grab','Liquid aqueous',1),(609,'Grab','Liquid aqueous',1),(610,'Grab','Liquid aqueous',1),(611,'Grab','Liquid aqueous',1),(612,'Grab','Liquid aqueous',1),(613,'Grab','Liquid aqueous',1),(614,'Grab','Liquid aqueous',1),(615,'Grab','Liquid aqueous',1),(616,'Grab','Liquid aqueous',1),(617,'Grab','Liquid aqueous',1),(618,'Grab','Liquid aqueous',1),(619,'Grab','Liquid aqueous',1),(620,'Grab','Liquid aqueous',1),(621,'Grab','Liquid aqueous',1),(622,'Grab','Liquid aqueous',1),(623,'Grab','Liquid aqueous',1),(624,'Grab','Liquid aqueous',1),(625,'Grab','Liquid aqueous',1),(626,'Grab','Liquid aqueous',1),(627,'Grab','Liquid aqueous',1),(628,'Grab','Liquid aqueous',1),(629,'Grab','Liquid aqueous',1),(630,'Grab','Liquid aqueous',1),(631,'Grab','Liquid aqueous',1),(632,'Grab','Liquid aqueous',1),(633,'Grab','Liquid aqueous',1),(634,'Grab','Liquid aqueous',1),(635,'Grab','Liquid aqueous',1),(636,'Grab','Liquid aqueous',1),(637,'Grab','Liquid aqueous',1),(638,'Grab','Liquid aqueous',1),(639,'Grab','Liquid aqueous',1),(640,'Grab','Liquid aqueous',1),(641,'Grab','Liquid aqueous',1),(642,'Grab','Liquid aqueous',1),(643,'Grab','Liquid aqueous',1),(644,'Grab','Liquid aqueous',1),(645,'Grab','Liquid aqueous',1),(646,'Grab','Liquid aqueous',1),(647,'Grab','Liquid aqueous',1),(648,'Grab','Liquid aqueous',1),(649,'Grab','Liquid aqueous',1),(650,'Grab','Liquid aqueous',1),(651,'Grab','Liquid aqueous',1),(652,'Grab','Liquid aqueous',1),(653,'Grab','Liquid aqueous',1),(654,'Grab','Liquid aqueous',1),(655,'Grab','Liquid aqueous',1),(656,'Grab','Liquid aqueous',1),(657,'Grab','Liquid aqueous',1),(658,'Grab','Liquid aqueous',1),(659,'Grab','Liquid aqueous',1),(660,'Grab','Liquid aqueous',1),(661,'Grab','Liquid aqueous',1),(662,'Grab','Liquid aqueous',1),(663,'Grab','Liquid aqueous',1),(664,'Grab','Liquid aqueous',1),(665,'Grab','Liquid aqueous',1),(666,'Grab','Liquid aqueous',1),(667,'Grab','Liquid aqueous',1),(668,'Grab','Liquid aqueous',1),(669,'Grab','Liquid aqueous',1),(670,'Grab','Liquid aqueous',1),(671,'Grab','Liquid aqueous',1),(672,'Grab','Liquid aqueous',1),(673,'Grab','Liquid aqueous',1),(674,'Grab','Liquid aqueous',1),(675,'Grab','Liquid aqueous',1),(676,'Grab','Liquid aqueous',1),(677,'Grab','Liquid aqueous',1),(678,'Grab','Liquid aqueous',1),(679,'Grab','Liquid aqueous',1),(680,'Grab','Liquid aqueous',1),(681,'Grab','Liquid aqueous',1),(682,'Grab','Liquid aqueous',1),(683,'Grab','Liquid aqueous',1),(684,'Grab','Liquid aqueous',1),(685,'Grab','Liquid aqueous',1),(686,'Grab','Liquid aqueous',1),(687,'Grab','Liquid aqueous',1),(688,'Grab','Liquid aqueous',1),(689,'Grab','Liquid aqueous',1),(690,'Grab','Liquid aqueous',1),(691,'Grab','Liquid aqueous',1),(692,'Grab','Liquid aqueous',1),(693,'Grab','Liquid aqueous',1),(694,'Grab','Liquid aqueous',1),(695,'Grab','Liquid aqueous',1),(696,'Grab','Liquid aqueous',1),(697,'Grab','Liquid aqueous',1),(698,'Grab','Liquid aqueous',1),(699,'Grab','Liquid aqueous',1),(700,'Grab','Liquid aqueous',1),(701,'Grab','Liquid aqueous',1),(702,'Grab','Liquid aqueous',1),(703,'Grab','Liquid aqueous',1),(704,'Grab','Liquid aqueous',1),(705,'Grab','Liquid aqueous',1),(706,'Grab','Liquid aqueous',1),(707,'Grab','Liquid aqueous',1),(708,'Grab','Liquid aqueous',1),(709,'Grab','Liquid aqueous',1),(710,'Grab','Liquid aqueous',1),(711,'Grab','Liquid aqueous',1),(712,'Grab','Liquid aqueous',1); +/*!40000 ALTER TABLE `Specimens` ENABLE KEYS */; + +-- +-- Table structure for table `SpectraResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `SpectraResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpectraResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_SpectraResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_SpectraResultValueAnnotations_SpectraResultValues` (`ValueID`), + CONSTRAINT `fk_SpectraResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResultValueAnnotations_SpectraResultValues` FOREIGN KEY (`ValueID`) REFERENCES `SpectraResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpectraResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `SpectraResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpectraResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `SpectraResultValues` +-- + +DROP TABLE IF EXISTS `SpectraResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpectraResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + `ExcitationWavelength` double NOT NULL, + `EmissionWavelength` double NOT NULL, + `WavelengthUnitsID` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_SpectraResultValues_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_SpectraResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_SpectraResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_SpectraResultValues_SpectraResults` (`ResultID`), + KEY `fk_SpectraResultValues_WUnits` (`WavelengthUnitsID`), + CONSTRAINT `fk_SpectraResultValues_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResultValues_SpectraResults` FOREIGN KEY (`ResultID`) REFERENCES `SpectraResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResultValues_WUnits` FOREIGN KEY (`WavelengthUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpectraResultValues` +-- + +/*!40000 ALTER TABLE `SpectraResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpectraResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `SpectraResults` +-- + +DROP TABLE IF EXISTS `SpectraResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `SpectraResults` ( + `ResultID` bigint(20) NOT NULL, + `XLocation` double DEFAULT NULL, + `XLocationUnitsID` int(11) DEFAULT NULL, + `YLocation` double DEFAULT NULL, + `YLocationUnitsID` int(11) DEFAULT NULL, + `ZLocation` double DEFAULT NULL, + `ZLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedWavelengthSpacing` double DEFAULT NULL, + `IntendedWavelengthSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_SpectraResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_SpectraResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_SpectraResults_Units` (`IntendedWavelengthSpacingUnitsID`), + KEY `fk_SpectraResults_XUnits` (`XLocationUnitsID`), + KEY `fk_SpectraResults_YUnits` (`YLocationUnitsID`), + KEY `fk_SpectraResults_ZUnits` (`ZLocationUnitsID`), + CONSTRAINT `fk_SpectraResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResults_Units` FOREIGN KEY (`IntendedWavelengthSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResults_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResults_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_SpectraResults_ZUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `SpectraResults` +-- + +/*!40000 ALTER TABLE `SpectraResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `SpectraResults` ENABLE KEYS */; + +-- +-- Table structure for table `TaxonomicClassifierExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `TaxonomicClassifierExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TaxonomicClassifierExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `TaxonomicClassifierID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `TaxonomicClassifierExternalIdentifier` varchar(255) NOT NULL, + `TaxonomicClassifierExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_TaxonomicClassifierExtIDs_ExtIDSystems` (`ExternalIdentifierSystemID`), + KEY `fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers` (`TaxonomicClassifierID`), + CONSTRAINT `fk_TaxonomicClassifierExtIDs_ExtIDSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TaxonomicClassifierExtIDs_TaxonomicClassifiers` FOREIGN KEY (`TaxonomicClassifierID`) REFERENCES `TaxonomicClassifiers` (`TaxonomicClassifierID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TaxonomicClassifierExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `TaxonomicClassifierExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `TaxonomicClassifierExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `TaxonomicClassifiers` +-- + +DROP TABLE IF EXISTS `TaxonomicClassifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TaxonomicClassifiers` ( + `TaxonomicClassifierID` int(11) NOT NULL AUTO_INCREMENT, + `TaxonomicClassifierTypeCV` varchar(255) NOT NULL, + `TaxonomicClassifierName` varchar(255) NOT NULL, + `TaxonomicClassifierCommonName` varchar(255) DEFAULT NULL, + `TaxonomicClassifierDescription` varchar(500) DEFAULT NULL, + `ParentTaxonomicClassifierID` int(11) DEFAULT NULL, + PRIMARY KEY (`TaxonomicClassifierID`), + KEY `fk_ParentTaxon_Taxon` (`ParentTaxonomicClassifierID`), + KEY `fk_TaxonomicClassifiers_CV_TaxonomicClassifierType` (`TaxonomicClassifierTypeCV`), + CONSTRAINT `fk_ParentTaxon_Taxon` FOREIGN KEY (`ParentTaxonomicClassifierID`) REFERENCES `TaxonomicClassifiers` (`TaxonomicClassifierID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TaxonomicClassifiers_CV_TaxonomicClassifierType` FOREIGN KEY (`TaxonomicClassifierTypeCV`) REFERENCES `CV_TaxonomicClassifierType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TaxonomicClassifiers` +-- + +/*!40000 ALTER TABLE `TaxonomicClassifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `TaxonomicClassifiers` ENABLE KEYS */; + +-- +-- Table structure for table `TimeSeriesResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `TimeSeriesResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TimeSeriesResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_TimeSeriesResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues` (`ValueID`), + CONSTRAINT `fk_TimeSeriesResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResultValueAnnotations_TimeSeriesResultValues` FOREIGN KEY (`ValueID`) REFERENCES `TimeSeriesResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TimeSeriesResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `TimeSeriesResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `TimeSeriesResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `TimeSeriesResultValues` +-- + +DROP TABLE IF EXISTS `TimeSeriesResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TimeSeriesResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_TimeSeriesResultValues_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_TimeSeriesResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_TimeSeriesResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_TimeSeriesResultValues_TimeSeriesResults` (`ResultID`), + CONSTRAINT `fk_TimeSeriesResultValues_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResultValues_TimeSeriesResults` FOREIGN KEY (`ResultID`) REFERENCES `TimeSeriesResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=15441286 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TimeSeriesResultValues` +-- + +/*!40000 ALTER TABLE `TimeSeriesResultValues` DISABLE KEYS */; +INSERT INTO `TimeSeriesResultValues` VALUES (3346,14,-9999,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(30250,14,-9999,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(70131,15,0,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(70134,15,0,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(70135,15,0,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(70225,15,0,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(70372,15,0,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(70373,15,0,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(70374,15,0,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(70375,15,0,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(70432,15,0,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(70436,15,0,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(70437,15,0,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(70439,15,0,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(70440,15,0,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(70441,15,0,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(70442,15,0,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(70447,15,0,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(93018,15,0,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(93019,15,0,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(93022,15,0,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(93098,15,0,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(93354,15,0,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(93370,15,0,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(93570,15,0,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(93575,15,0,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(93576,15,0,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(93883,15,0,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(93885,15,0,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(93886,15,0,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(93890,15,0,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(93891,15,0,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(93898,15,0,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(93899,15,0,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(93902,15,0,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(93903,15,0,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(94767,15,0,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(94820,15,0,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(94821,15,0,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(95082,15,0,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(95162,15,0,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(95165,15,0,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(95378,15,0,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(95384,15,0,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(95633,15,0,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(95684,15,0,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(95685,15,0,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(95686,15,0,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(95688,15,0,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(95689,15,0,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(95690,15,0,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(95693,15,0,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(95694,15,0,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(95759,15,0,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(95760,15,0,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(95761,15,0,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(95762,15,0,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(95763,15,0,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(95764,15,0,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(95766,15,0,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(140437,24,0.024821,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(146370,24,0.025949,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(147770,24,0.01575,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(151718,24,0.027274,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(152603,24,0.01974,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(154513,24,0.028493,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(154612,24,0.017728,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(155227,24,0.018581,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(155613,24,0.020081,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(156147,24,0.020524,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(156244,24,0.020596,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(156300,24,0.019695,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(156429,24,0.019876,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(160937,24,0.022292,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(162053,24,0.022875,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(162327,15,0.033333,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(162603,24,0.023087,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(164405,24,0.035542,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(164831,24,0.023559,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(165300,24,0.02367,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(166853,24,0.039782,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(167013,24,0.039941,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(167383,24,0.024002,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(167565,24,0.024036,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(168661,24,0.0242,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(169295,24,0.024343,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(170122,24,0.0454,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(170493,24,0.024446,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(170793,24,0.046672,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(170891,24,0.04699,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(171342,24,0.048103,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(171480,24,0.048792,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(172430,24,0.024684,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(172633,24,0.0507,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(173391,24,0.052714,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(173474,24,0.024991,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(174183,24,0.054357,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(174184,24,0.054357,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(174389,24,0.025207,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(174517,24,0.054993,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(174990,24,0.025264,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(175055,24,0.057643,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(175195,24,0.025025,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(175724,24,0.059339,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(175812,24,0.059975,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(176471,24,0.060028,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(176642,24,0.060452,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(176701,24,0.060823,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(176718,24,0.060929,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(176874,24,0.061194,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(176920,24,0.061512,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(177101,24,0.061989,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(177617,24,0.062678,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(177657,24,0.062943,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(177789,24,0.063367,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(178001,24,0.063844,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(178427,24,0.064321,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(178469,24,0.06448,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(178548,24,0.064533,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(178730,24,0.064798,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(179751,24,0.066388,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(180892,24,0.067872,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(181305,24,0.068349,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(185436,24,0.07084,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(185689,24,0.028175,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(186156,24,0.072059,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(186324,24,0.072165,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(186678,24,0.072536,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(186938,24,0.072854,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(187139,24,0.073172,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(187223,24,0.027062,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(187997,24,0.029076,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(188045,24,0.07402,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(189471,24,0.075716,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(189506,24,0.075875,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(189549,24,0.029871,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(189812,24,0.076352,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(189919,24,0.076511,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(190082,24,0.076617,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(190376,24,0.077253,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(190727,24,0.077624,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(191089,24,0.077942,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(191209,24,0.078154,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(191461,24,0.078525,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(191659,24,0.07879,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(191676,24,0.078843,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(191688,24,0.030878,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(191812,24,0.078896,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(191855,24,0.079002,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(192448,24,0.079744,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(193940,24,0.080857,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(193941,24,0.080857,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(194229,24,0.081387,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(194415,24,0.081599,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(194943,24,0.082076,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(195123,24,0.082235,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(195297,24,0.082394,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(196011,15,0.083333,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(196021,24,0.083348,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(196123,24,0.083454,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(196277,24,0.035277,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(196598,24,0.083772,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(196856,24,0.036867,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(197030,24,0.084302,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(197356,24,0.084779,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(197762,24,0.038934,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(197900,24,0.085044,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(198214,24,0.039782,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(198398,24,0.085839,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(198399,24,0.085839,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(198545,24,0.086104,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(199365,24,0.086846,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(199580,24,0.086952,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(199705,24,0.087164,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(199742,24,0.08727,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(199894,24,0.087323,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(200065,24,0.087482,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(200484,24,0.042326,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(200712,24,0.087906,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(201176,24,0.088542,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(201206,24,0.088648,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(201207,24,0.088648,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(201208,24,0.088648,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(201286,24,0.03215,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(201556,24,0.088754,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(201596,24,0.08886,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(201891,24,0.089231,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(201949,24,0.046566,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(202120,24,0.089549,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(202331,24,0.089814,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(202959,15,0.033333,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(203130,24,0.048898,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(203304,24,0.049269,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(203912,24,0.090026,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(203967,24,0.034376,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(204466,24,0.090662,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(204718,24,0.090874,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(204719,24,0.090874,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(205038,24,0.091245,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(205188,24,0.05335,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(205252,24,0.091722,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(205376,24,0.053774,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(205441,24,0.054251,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(205492,24,0.091934,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(205595,24,0.09204,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(205765,24,0.092199,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(205831,24,0.05494,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(206088,24,0.056371,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(206187,24,0.05706,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(206268,24,0.092623,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(206277,24,0.092676,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(206339,24,0.057272,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(206392,24,0.036178,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(206481,24,0.092941,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(206661,24,0.093153,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(206767,24,0.058597,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(206796,24,0.058809,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(206957,24,0.059127,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(206977,24,0.059286,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(206978,24,0.059286,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(207109,24,0.093418,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(207130,24,0.059498,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(207291,24,0.093683,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(207317,24,0.093789,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(207349,24,0.093895,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(207415,24,0.037927,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(207623,24,0.094213,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(207628,24,0.094266,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(207660,24,0.094372,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(207866,24,0.09469,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(208225,24,0.0613,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(208302,24,0.09522,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(208336,24,0.039199,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(208541,24,0.095432,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(208711,24,0.062042,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(208945,24,0.06289,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(209248,24,0.096492,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(209921,24,0.096969,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(210235,24,0.097446,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(210597,24,0.09787,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(210671,24,0.097923,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(210683,24,0.097976,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(210826,24,0.098294,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(210991,24,0.042061,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(211404,24,0.065911,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(211546,24,0.043386,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(211761,24,0.044181,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(211796,24,0.066335,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(211877,24,0.099725,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(211888,24,0.099778,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(211972,24,0.099831,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(212257,24,0.067024,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(212270,24,0.067077,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(212733,24,0.046354,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(212762,24,0.046566,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(212817,24,0.06766,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(213814,24,0.049322,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(213936,24,0.100573,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(214015,24,0.100626,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(214016,24,0.100626,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(214073,24,0.100891,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(214106,24,0.10105,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(214230,24,0.069356,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(214414,24,0.069992,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(214544,24,0.101951,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(214661,24,0.102216,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(214678,24,0.102322,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(214949,24,0.102428,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(215369,24,0.103329,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(215647,24,0.103806,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(215648,24,0.103806,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(215651,24,0.103859,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(215667,24,0.103912,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(215692,24,0.104071,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(215693,24,0.104071,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(215734,24,0.10423,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(215755,24,0.050647,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(215997,24,0.104601,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(216041,24,0.104813,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(216203,24,0.105025,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(216352,24,0.105449,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(216441,24,0.105608,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(216462,24,0.105714,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(216463,24,0.105714,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(216631,24,0.106032,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(216632,24,0.106032,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(216656,24,0.106191,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(216730,24,0.070575,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(216875,24,0.10635,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(216893,24,0.106403,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(216913,24,0.106562,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(217167,24,0.053615,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(217444,24,0.054304,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(217488,24,0.071582,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(217676,24,0.071794,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(217736,24,0.108099,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(217783,24,0.108311,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(217835,24,0.072165,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(217953,24,0.108629,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(217983,24,0.108841,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(218008,24,0.109,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(218009,24,0.109,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(218028,24,0.109159,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(218036,24,0.109265,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(218043,24,0.072218,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(218123,24,0.072483,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(218136,24,0.072536,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(218201,24,0.072854,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(218237,24,0.109318,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(218414,24,0.109689,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(218593,24,0.073331,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(218924,24,0.074073,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(219150,24,0.074497,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(219570,24,0.075186,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(219661,24,0.057961,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(219963,24,0.11006,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(220005,24,0.110378,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(220043,24,0.11059,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(220057,24,0.110696,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(220068,24,0.110749,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(220161,24,0.110908,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(220162,24,0.110908,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(220171,24,0.110961,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(220172,24,0.110961,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(220184,24,0.111067,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(220355,24,0.111385,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(220371,24,0.111544,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(220373,24,0.111597,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(220545,24,0.111809,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(220548,24,0.111862,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(220559,24,0.111968,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(220704,24,0.112074,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(220719,24,0.11218,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(220734,24,0.112233,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(220739,24,0.112286,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(220740,24,0.112286,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(220754,24,0.112339,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(220789,24,0.076776,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(221018,24,0.112445,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(221224,24,0.113028,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(221225,24,0.113028,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(221226,24,0.113028,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(221288,24,0.113452,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(221289,24,0.113452,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(221316,24,0.113664,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(221356,24,0.060611,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(221357,24,0.060664,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(221464,24,0.113876,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(221650,24,0.114247,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(221665,24,0.114353,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(221821,24,0.114565,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(221822,24,0.114565,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(221934,24,0.062254,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(222110,24,0.115201,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(222123,24,0.115307,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(222149,24,0.078207,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(222261,24,0.115413,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(222263,24,0.115466,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(222284,24,0.115678,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(222381,24,0.063314,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(222393,24,0.063367,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(222500,24,0.116314,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(222575,24,0.11642,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(222765,24,0.116897,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(222963,24,0.064003,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(222996,24,0.064109,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(223012,24,0.079108,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(223079,24,0.117692,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(223091,24,0.117798,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(223139,24,0.118169,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(223165,24,0.118381,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(223317,24,0.118593,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(223384,24,0.06448,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(223436,24,0.079479,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(223456,24,0.079532,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(223500,24,0.119017,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(223527,24,0.119282,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(223579,24,0.079744,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(223682,24,0.119494,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(223703,24,0.119706,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(224178,24,0.120183,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(224179,24,0.120183,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(224197,24,0.120395,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(224235,24,0.12066,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(224288,24,0.121296,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(224527,24,0.08038,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(224553,24,0.080486,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(224554,24,0.080486,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(224679,24,0.080698,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(224743,24,0.122038,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(224781,24,0.122356,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(224836,24,0.065911,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(224872,24,0.08091,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(225047,24,0.122515,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(225106,24,0.123045,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(225121,24,0.123151,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(225145,24,0.123363,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(225153,24,0.123416,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(225154,24,0.123416,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(225180,24,0.081281,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(225296,24,0.123575,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(225310,24,0.123628,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(225388,24,0.066494,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(225626,24,0.124105,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(225630,24,0.124158,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(225720,24,0.081811,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(225740,24,0.124529,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(225760,24,0.124794,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(225839,24,0.125483,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(225855,24,0.081864,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(225856,24,0.081864,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(225975,24,0.125536,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(226005,24,0.125854,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(226021,24,0.12596,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(226117,24,0.067183,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(226198,24,0.126331,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(226201,24,0.126384,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(226249,24,0.082394,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(226301,24,0.067395,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(226347,24,0.126596,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(226376,24,0.126808,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(226606,24,0.127285,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(226631,24,0.127444,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(226632,24,0.127444,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(226720,24,0.127709,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(226756,24,0.128186,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(226905,24,0.128345,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(226910,24,0.128398,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(226958,24,0.128822,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(226960,24,0.128875,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(226990,24,0.083348,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(227012,24,0.083401,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(227036,24,0.128928,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(227056,24,0.12914,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(227141,24,0.068084,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(227226,24,0.068137,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(227428,24,0.083772,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(228205,24,0.130306,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(228835,24,0.084991,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(228912,24,0.131101,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(228921,24,0.131207,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(228931,24,0.131313,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(228981,24,0.085256,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(229020,24,0.131578,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(229154,24,0.085415,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(229197,24,0.085574,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(229321,24,0.085733,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(229340,24,0.132691,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(229341,24,0.132691,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(229467,24,0.133274,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(229478,15,0.133333,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(229805,24,0.134069,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(229943,24,0.134175,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(229979,24,0.134599,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(229985,24,0.134652,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(230009,24,0.086369,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(230198,24,0.134811,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(230218,24,0.135076,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(230235,24,0.135182,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(230242,24,0.135235,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(230381,24,0.135341,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(230415,24,0.135765,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(230507,24,0.13603,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(230516,24,0.136136,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(230545,24,0.136454,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(230546,24,0.136454,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(230748,24,0.136613,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(230797,24,0.137037,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(230801,24,0.13709,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(230815,24,0.137249,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(230827,24,0.137302,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(230913,24,0.070257,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(230947,24,0.137832,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(230978,24,0.138044,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(230979,24,0.138044,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(230994,24,0.13815,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(231142,24,0.138309,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(231143,24,0.138309,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(231221,24,0.087906,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(231318,24,0.138627,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(231351,24,0.138839,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(231413,24,0.088171,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(231414,24,0.088171,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(231451,24,0.070681,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(231516,24,0.13921,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(231517,24,0.13921,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(231529,24,0.139369,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(231530,24,0.139369,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(231557,24,0.088224,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(231683,24,0.139634,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(231846,24,0.071264,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(231914,24,0.088542,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(232050,24,0.071582,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(232074,24,0.071635,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(232275,24,0.088913,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(232387,24,0.071794,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(232552,24,0.089231,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(232608,24,0.141383,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(232624,24,0.141595,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(232772,24,0.089761,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(232773,24,0.089761,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(232828,24,0.08992,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(232840,24,0.089973,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(232861,24,0.142072,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(232873,24,0.142125,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(232888,24,0.142337,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(232893,24,0.14239,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(232989,24,0.142761,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(233003,24,0.142867,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(233022,24,0.143026,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(233063,24,0.14345,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(233091,24,0.143662,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(233092,24,0.143662,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(233099,24,0.143715,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(233374,24,0.072218,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(233469,24,0.072536,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(233493,24,0.144669,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(233523,24,0.144881,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(233671,24,0.145093,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(233697,24,0.145305,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(233714,24,0.14557,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(233830,24,0.07296,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(233905,24,0.146153,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(233906,24,0.146153,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(233918,24,0.146206,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(234138,24,0.147107,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(234150,24,0.147266,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(234357,24,0.147425,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(234459,24,0.090026,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(234472,24,0.148061,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(234476,24,0.148114,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(234481,24,0.14822,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(234523,24,0.148538,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(234677,24,0.090132,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(234816,24,0.148962,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(234835,24,0.149121,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(235006,24,0.149598,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(235011,24,0.149651,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(235084,24,0.090715,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(235354,24,0.091139,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(235381,24,0.091245,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(235899,24,0.075027,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(236140,24,0.150075,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(236190,24,0.092093,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(236320,24,0.092305,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(236362,24,0.150499,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(236379,24,0.150605,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(236527,24,0.150976,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(236552,24,0.151188,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(236553,24,0.151188,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(236561,24,0.151241,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(236689,24,0.076405,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(236771,24,0.151453,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(236817,24,0.151824,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(236900,24,0.152089,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(237042,24,0.076829,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(237081,24,0.152672,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(237123,24,0.153096,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(237202,24,0.0931,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(237235,24,0.093206,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(237279,24,0.153361,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(237310,24,0.153732,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(237716,24,0.154845,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(237720,24,0.154898,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(237831,24,0.094107,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(237883,24,0.155163,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(237884,24,0.155163,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(237980,24,0.094478,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(238297,24,0.157071,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(238363,24,0.094955,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(238480,24,0.15776,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(238605,24,0.158343,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(238977,24,0.095856,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(239248,24,0.096121,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(239285,24,0.09628,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(239487,24,0.079055,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(239488,24,0.079055,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(239525,24,0.096492,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(239592,24,0.160516,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(239601,24,0.160622,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(239733,24,0.096757,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(239750,24,0.160834,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(239757,24,0.160993,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(239765,24,0.161046,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(240302,24,0.162848,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(240424,24,0.097446,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(240474,24,0.097658,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(240629,24,0.163749,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(240635,24,0.163802,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(240652,24,0.164067,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(240683,24,0.097764,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(240684,24,0.097764,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(240781,24,0.164756,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(240838,24,0.080115,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(240853,24,0.080168,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(240858,24,0.097976,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(241097,24,0.166081,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(241205,24,0.080486,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(241206,24,0.080486,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(241207,24,0.080486,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(241266,24,0.166452,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(241332,24,0.098559,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(241390,24,0.167035,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(241420,24,0.098665,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(241466,24,0.098877,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(241648,24,0.099142,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(241754,24,0.16836,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(241801,24,0.099248,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(241880,24,0.169102,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(241946,24,0.081122,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(241983,24,0.081281,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(242008,24,0.081334,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(242286,24,0.099725,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(242653,24,0.082076,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(242927,24,0.082394,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(242959,24,0.0825,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(243257,24,0.082871,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(243273,24,0.170162,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(243400,24,0.082924,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(243401,24,0.082924,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(243427,24,0.082977,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(243715,15,0.083333,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(243726,24,0.083348,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(243798,24,0.171699,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(243832,24,0.100361,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(243861,24,0.100467,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(244135,24,0.101103,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(244266,24,0.083613,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(244276,24,0.083666,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(244362,24,0.173872,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(244393,24,0.174243,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(244600,24,0.08409,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(244766,24,0.175568,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(244841,24,0.102057,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(245336,24,0.177741,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(245431,24,0.103117,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(245432,24,0.103117,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(245582,24,0.103541,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(245588,24,0.103594,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(245598,24,0.103647,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(245691,24,0.084726,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(245836,24,0.103912,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(245837,24,0.103912,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(246000,24,0.104124,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(246001,24,0.104124,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(246049,24,0.104495,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(246382,24,0.104972,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(246414,24,0.105025,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(246415,24,0.105025,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(246570,24,0.105237,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(246571,24,0.105237,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(246572,24,0.105237,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(246594,24,0.105396,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(246715,24,0.105714,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(246735,24,0.10582,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(246741,24,0.105873,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(246884,24,0.105926,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(246900,24,0.106085,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(246916,24,0.106191,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(247159,24,0.106721,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(247212,24,0.086104,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(247408,24,0.107092,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(247435,24,0.086369,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(247561,24,0.107251,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(247590,24,0.10741,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(247724,24,0.107887,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(247747,24,0.107993,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(247772,24,0.108152,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(247773,24,0.108152,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(247956,24,0.10847,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(247957,24,0.10847,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(247968,24,0.108576,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(247980,24,0.108629,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(248078,24,0.108894,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(248321,24,0.187228,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(248364,24,0.109583,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(248388,24,0.109742,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(248413,24,0.109901,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(248417,24,0.109954,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(248721,24,0.087535,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(248753,24,0.087641,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(249636,24,0.110696,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(249743,24,0.110961,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(249759,24,0.11112,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(249772,24,0.111279,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(249914,24,0.111385,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(249929,24,0.111491,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(250092,24,0.11165,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(250314,24,0.112445,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(250867,24,0.113187,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(251044,24,0.113452,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(251045,24,0.113452,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(251056,24,0.113558,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(251180,24,0.088383,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(251348,24,0.114353,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(251546,24,0.088754,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(251599,24,0.11483,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(251639,24,0.115042,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(251688,24,0.089019,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(251818,24,0.115466,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(251909,24,0.089125,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(252374,24,0.116526,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(252385,15,0.116667,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(252535,24,0.116738,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(252541,24,0.116791,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(252556,24,0.116844,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(252582,24,0.117003,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(252591,24,0.117109,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(252839,24,0.117639,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(253029,24,0.118593,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(253061,24,0.118805,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(253062,24,0.118805,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(253106,24,0.089814,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(253227,24,0.119123,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(253390,24,0.205672,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(253443,24,0.119388,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(253444,24,0.119388,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(253460,24,0.119494,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(253487,24,0.119706,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(253733,24,0.120077,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(253743,24,0.120183,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(253932,24,0.120713,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(254007,24,0.120872,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(254008,24,0.120872,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(254017,24,0.120925,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(254580,24,0.122462,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(254590,24,0.122568,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(254838,24,0.123151,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(254879,24,0.123416,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(254913,24,0.123787,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(255043,24,0.090185,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(255051,24,0.123946,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(255052,24,0.123946,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(255252,24,0.124741,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(255270,24,0.124847,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(255499,24,0.125165,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(255500,24,0.125165,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(255599,24,0.090821,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(255720,24,0.125854,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(255721,24,0.125854,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(255821,24,0.126172,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(255844,24,0.126331,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(255858,24,0.090874,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(255907,24,0.091033,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(255981,24,0.126437,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(256175,24,0.12702,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(256181,24,0.127073,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(256228,24,0.127444,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(256321,24,0.091351,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(256386,24,0.091616,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(256504,24,0.127709,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(256557,24,0.128186,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(256621,24,0.091775,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(256683,24,0.12861,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(256699,24,0.128822,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(256700,24,0.128822,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(256838,24,0.129352,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(256862,24,0.129511,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(256882,24,0.129776,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(256886,24,0.129829,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(256887,24,0.129829,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(256890,24,0.129882,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(256901,24,0.129988,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(257441,24,0.092464,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(258037,24,0.130624,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(258039,24,0.130677,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(258056,24,0.130889,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(258093,24,0.092941,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(258145,24,0.093153,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(258261,24,0.131578,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(258288,24,0.093206,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(258425,24,0.131843,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(258587,24,0.132161,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(258612,24,0.132373,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(258707,24,0.093789,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(258708,24,0.093789,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(258778,24,0.132744,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(259032,15,0.133333,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(259062,24,0.133486,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(259063,24,0.133486,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(259070,24,0.133592,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(259071,24,0.133592,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(259129,24,0.094213,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(259346,24,0.134281,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(259362,24,0.134334,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(259395,24,0.094266,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(259461,24,0.134758,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(259475,24,0.134811,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(259477,24,0.134864,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(259815,24,0.135765,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(259837,24,0.094743,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(259970,24,0.13603,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(259977,24,0.136136,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(260199,24,0.136401,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(260200,24,0.136401,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(260229,24,0.136666,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(260325,24,0.136878,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(260326,24,0.136878,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(260342,24,0.13709,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(260362,24,0.137249,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(260390,24,0.137514,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(260427,24,0.137832,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(260464,24,0.095432,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(260499,24,0.095591,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(260604,24,0.095909,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(260616,24,0.095962,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(260824,24,0.138627,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(260848,24,0.138892,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(261044,24,0.096386,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(261067,24,0.13921,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(261078,24,0.139316,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(261082,24,0.139369,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(261132,24,0.096492,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(261541,24,0.234027,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(261660,24,0.097075,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(261764,24,0.140058,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(262036,24,0.140906,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(262182,24,0.141171,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(262356,24,0.098188,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(262567,24,0.141807,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(262578,24,0.141913,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(262770,24,0.142549,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(262784,24,0.142708,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(262786,24,0.142761,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(262799,24,0.142814,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(262926,24,0.142867,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(262939,24,0.142973,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(262965,24,0.143185,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(263108,24,0.098983,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(263177,24,0.144086,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(263227,24,0.144616,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(263230,24,0.144669,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(263231,24,0.144669,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(263254,24,0.099036,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(263362,24,0.144775,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(263369,24,0.144828,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(263370,24,0.144881,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(263381,24,0.144987,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(263410,24,0.145146,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(263504,24,0.099301,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(263553,24,0.145305,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(263770,24,0.146206,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(263859,24,0.146471,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(263910,24,0.146895,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(264297,24,0.147584,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(264324,24,0.147849,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(264332,24,0.147955,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(264347,24,0.148008,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(264348,24,0.148008,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(264596,24,0.148485,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(264726,24,0.148538,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(264762,24,0.148962,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(264939,24,0.149439,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(265100,24,0.149863,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(265875,24,0.100361,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(266202,3,0.2514,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(266254,24,0.150022,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(266291,24,0.101156,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(266328,24,0.101262,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(266430,24,0.150552,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(266451,24,0.150711,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(266453,24,0.150764,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(266454,24,0.150764,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(266555,24,0.101421,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(266593,24,0.150976,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(266613,24,0.151188,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(266623,24,0.151241,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(266928,24,0.102004,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(266959,24,0.102216,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(266966,24,0.102269,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(267146,24,0.15193,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(267171,24,0.152195,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(267194,24,0.152354,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(267217,24,0.152619,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(267240,24,0.152884,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(267348,24,0.102852,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(267407,24,0.153202,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(267449,24,0.153785,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(267557,24,0.103329,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(267558,24,0.103329,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(267809,24,0.103594,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(267823,24,0.154421,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(267846,24,0.154792,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(267859,24,0.154898,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(267988,24,0.103806,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(268032,24,0.155322,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(268048,24,0.155534,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(268170,24,0.104124,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(268196,24,0.104283,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(268208,24,0.104336,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(268307,24,0.156223,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(268308,24,0.156276,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(268398,24,0.104707,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(268449,24,0.156435,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(268589,24,0.157071,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(268612,24,0.15723,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(268626,24,0.157389,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(268865,24,0.158555,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(268934,24,0.159509,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(269431,24,0.160728,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(269555,24,0.105502,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(269569,24,0.160834,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(269570,24,0.160834,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(269764,24,0.162212,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(269775,24,0.162371,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(269792,24,0.162583,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(269803,24,0.162636,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(269804,24,0.162689,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(269898,24,0.16306,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(270018,24,0.106032,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(270128,24,0.16359,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(270148,24,0.163855,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(270194,24,0.10635,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(270195,24,0.10635,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(270236,24,0.106509,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(270237,24,0.106509,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(270252,24,0.106615,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(270422,24,0.164703,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(270508,24,0.10741,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(270509,24,0.10741,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(270592,24,0.165286,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(270798,24,0.16624,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(270805,24,0.166346,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(270815,24,0.166452,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(270863,24,0.107622,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(270901,24,0.107887,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(270902,24,0.107887,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(270916,24,0.107993,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(271259,24,0.108152,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(271456,24,0.108629,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(271457,24,0.108629,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(271463,24,0.108682,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(271481,24,0.168254,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(271526,24,0.168625,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(271527,24,0.168625,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(271558,24,0.169049,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(271740,24,0.169685,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(271751,24,0.169738,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(271945,24,0.109053,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(272394,24,0.109901,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(273160,24,0.171116,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(273193,24,0.171487,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(274010,24,0.11006,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(274153,24,0.174296,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(274250,24,0.110908,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(274319,24,0.175356,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(274413,24,0.11112,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(274414,24,0.11112,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(274711,24,0.111544,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(274890,24,0.111809,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(274891,24,0.111809,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(274912,24,0.111968,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(275084,24,0.112286,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(275098,24,0.112339,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(275334,24,0.112657,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(275335,24,0.112657,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(275346,24,0.11271,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(275776,24,0.113876,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(275777,24,0.113876,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(275778,24,0.113876,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(275790,24,0.114035,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(275795,24,0.114088,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(275796,24,0.114088,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(276214,24,0.181133,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(276266,24,0.1143,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(276502,24,0.115042,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(276524,24,0.115201,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(276525,24,0.115201,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(276553,24,0.115413,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(276820,24,0.116155,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(276821,24,0.116155,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(276847,24,0.116367,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(276848,24,0.116367,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(277256,15,0.116667,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(277619,24,0.117427,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(277649,24,0.117639,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(277654,24,0.117692,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(277655,24,0.117692,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(277894,24,0.118116,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(278178,24,0.118328,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(278198,24,0.118487,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(278391,24,0.119017,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(278422,24,0.119282,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(278558,24,0.119335,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(278559,24,0.119335,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(278614,24,0.119812,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(278631,24,0.119918,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(279106,24,0.120077,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(279140,24,0.120395,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(279166,24,0.120501,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(279317,24,0.120766,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(279426,24,0.121137,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(279447,24,0.121296,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(279469,24,0.121402,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(279729,24,0.121508,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(279730,24,0.121508,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(279759,24,0.121667,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(279780,24,0.121879,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(280368,24,0.123045,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(280659,24,0.123363,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(280707,24,0.123787,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(280906,24,0.12384,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(280938,24,0.124158,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(280958,24,0.124317,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(280978,24,0.124476,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(281780,24,0.125907,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(281792,24,0.126066,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(282039,24,0.126543,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(282048,24,0.126649,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(282049,24,0.126649,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(282050,24,0.126649,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(282082,15,0.316667,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(282187,24,0.127285,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(282453,24,0.127444,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(282490,24,0.127709,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(282503,24,0.127815,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(282504,24,0.127815,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(283023,24,0.128504,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(283046,24,0.128716,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(283064,24,0.128875,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(283259,24,0.128928,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(283310,24,0.129405,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(283493,24,0.129829,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(284957,3,0.3327,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(285170,24,0.130942,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(285172,24,0.130995,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(285388,24,0.13179,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(285397,24,0.131843,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(285414,24,0.132055,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(285469,24,0.209753,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(285650,24,0.132532,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(285666,24,0.132691,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(285712,24,0.21023,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(286734,15,0.133333,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(286735,15,0.133333,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(286759,24,0.133433,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(286762,24,0.133486,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(287215,24,0.13497,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(287389,24,0.135341,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(287614,24,0.136242,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(287615,24,0.136242,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(287705,24,0.137143,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(287706,24,0.137143,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(287779,24,0.137249,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(287780,24,0.137249,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(287811,24,0.13762,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(288035,24,0.137938,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(288058,24,0.13815,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(288078,24,0.138309,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(288501,24,0.139316,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(288676,24,0.139793,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(288677,24,0.139793,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(289309,24,0.140058,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(289321,24,0.140111,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(289409,24,0.140482,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(289450,24,0.140959,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(289664,24,0.141171,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(289816,24,0.223215,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(289917,24,0.223957,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(289999,24,0.141913,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(290133,24,0.142072,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(290141,24,0.142178,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(290161,24,0.14239,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(290354,24,0.143079,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(290355,24,0.143079,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(290715,24,0.144139,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(290718,24,0.144192,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(290735,24,0.144298,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(290740,24,0.144351,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(290741,24,0.144351,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(290742,24,0.144351,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(290776,24,0.144616,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(290777,24,0.144669,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(290982,15,0.366667,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(291074,24,0.145146,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(291095,24,0.145358,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(291115,24,0.145517,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(291267,24,0.145782,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(291343,24,0.146418,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(291579,24,0.146948,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(291599,24,0.14716,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(291618,24,0.147319,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(291688,24,0.147425,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(291704,24,0.147637,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(291730,24,0.147849,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(292060,24,0.148008,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(292078,24,0.14822,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(292133,24,0.148538,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(292159,24,0.14875,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(292318,24,0.149015,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(293544,3,0.3765,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(294026,24,0.150128,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(294164,24,0.150287,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(294180,24,0.150499,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(294181,24,0.150499,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(294236,24,0.150817,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(294247,24,0.150923,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(294256,24,0.151029,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(294268,24,0.151294,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(294603,24,0.151665,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(294888,24,0.152513,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(294890,24,0.152566,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(295029,24,0.152672,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(295118,24,0.153573,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(295119,24,0.153573,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(295126,24,0.153679,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(295144,24,0.153891,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(295145,24,0.153891,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(295330,24,0.15458,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(295531,24,0.154792,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(295539,24,0.154898,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(295680,24,0.155534,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(295716,24,0.155958,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(295756,24,0.156223,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(296424,24,0.157336,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(296426,24,0.157389,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(296596,24,0.157813,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(296820,24,0.15882,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(297459,24,0.159032,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(297689,15,0.4,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(297740,24,0.159827,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(298993,24,0.160834,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(299007,24,0.160993,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(299008,24,0.160993,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(299234,24,0.161894,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(299499,24,0.162,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(299524,24,0.162212,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(299682,24,0.162583,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(299683,24,0.162583,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(300028,24,0.163537,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(300300,24,0.165127,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(300346,24,0.165604,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(300365,24,0.165869,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(300391,24,0.166134,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(300676,24,0.166558,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(301117,24,0.167883,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(301133,24,0.168148,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(301834,24,0.169526,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(301878,15,0.416667,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(303225,24,0.170586,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(304261,24,0.173978,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(304302,24,0.174508,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(304380,24,0.175356,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(306481,24,0.178165,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(309024,24,0.182564,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(310891,24,0.189295,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(312960,24,0.191786,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(315733,3,0.199,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(315760,24,0.199206,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(315940,3,0.3342,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(316043,3,0.4911,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(318281,24,0.204877,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(318994,24,0.207368,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(322879,24,0.217915,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(322893,3,0.2182,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(325111,15,0.533333,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(325112,15,0.533333,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(327800,3,0.3949,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(330885,3,0.4057,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(330990,3,0.5684,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(331922,3,0.5756,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(333514,3,0.5864,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(333697,3,0.5873,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(333739,15,0.416667,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(334015,15,0.25,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(334987,3,0.2527,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(337555,3,0.2589,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(337935,3,0.602,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(339368,3,0.6113,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(341999,3,0.457,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(345471,3,0.6447,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(345755,3,0.6478,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(345797,3,0.6488,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(349294,15,0.3,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(357671,9,0.701686,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(357686,9,0.701994,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(358211,3,0.5399,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(362143,9,0.714603,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(362306,9,0.715064,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(363594,15,0.566667,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(364517,3,0.3566,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(365829,9,0.727943,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(365944,9,0.728751,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(366209,9,0.72975,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(367757,9,0.73321,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(369163,9,0.738592,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(370245,9,0.74136,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(370513,3,0.3815,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(370810,9,0.744936,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(372916,9,0.752779,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(373068,9,0.753124,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(373146,15,0.616667,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(373564,9,0.755585,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(373633,9,0.756354,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(373834,9,0.757392,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(374084,9,0.758199,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(374433,9,0.759468,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(374450,9,0.759622,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(375029,3,0.6295,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(375352,9,0.760621,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(376005,9,0.76239,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(376427,15,0.633333,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(377471,9,0.767772,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(377980,9,0.769463,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(380711,9,0.776153,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(381846,15,0.666667,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(382832,9,0.780997,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(383370,9,0.782342,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(383375,9,0.782419,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(383909,3,0.6746,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(384867,9,0.78684,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(384909,9,0.787225,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(385700,9,0.789454,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(385731,3,0.6855,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(388449,9,0.795375,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(388461,3,0.7956,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(389523,9,0.703416,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(391307,9,0.801718,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(391372,9,0.802833,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(391726,9,0.804025,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(392160,9,0.805832,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(392363,9,0.712989,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(392442,9,0.807485,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(392783,9,0.809253,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(393031,9,0.715949,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(393096,15,0.716667,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(393389,9,0.719755,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(393892,9,0.811983,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(394175,9,0.722138,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(394421,9,0.723791,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(396145,9,0.730327,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(396340,9,0.731211,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(396426,9,0.73148,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(396559,9,0.73248,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(396751,15,0.733333,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(396910,15,0.466667,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(396938,9,0.733902,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(397361,9,0.735863,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(398622,15,0.833333,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(399404,9,0.745974,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(400542,9,0.842008,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(401314,9,0.75028,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(401672,15,0.85,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(401743,9,0.751702,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(401868,9,0.752663,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(401900,9,0.753124,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(402183,9,0.754509,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(402409,9,0.7557,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(402586,9,0.853387,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(402827,9,0.854272,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(402830,9,0.854348,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(402841,9,0.854502,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(402847,9,0.854579,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(402877,9,0.757853,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(403562,9,0.858385,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(403589,9,0.858962,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(403880,9,0.859923,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(404220,9,0.761121,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(404613,9,0.762736,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(404663,9,0.861268,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(404700,9,0.86196,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(404843,9,0.862383,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(404852,9,0.862499,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(405153,9,0.765004,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(405331,9,0.86542,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(405354,9,0.865997,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(405558,9,0.867419,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(405990,9,0.869457,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(406441,9,0.769309,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(406862,9,0.870764,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(406888,9,0.871302,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(406925,9,0.871841,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(406979,9,0.872763,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(407900,9,0.877992,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(408058,9,0.878376,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(408059,9,0.878414,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(408186,9,0.879568,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(408193,9,0.879683,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(408480,9,0.773692,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(408855,9,0.880183,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(409064,9,0.880606,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(409275,9,0.882067,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(409504,9,0.883797,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(409851,9,0.886219,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(409893,9,0.886988,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(410197,9,0.888218,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(410294,9,0.889756,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(410996,3,0.8902,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(411031,9,0.890832,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(411053,9,0.891178,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(411070,9,0.891447,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(411073,9,0.891486,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(411077,9,0.891524,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(411267,9,0.891563,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(411291,9,0.891947,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(411296,9,0.892139,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(411456,9,0.892601,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(411476,9,0.892985,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(411486,9,0.893139,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(411492,9,0.893254,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(411709,9,0.893677,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(411738,9,0.894215,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(411837,9,0.894792,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(411863,9,0.895061,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(412146,9,0.895484,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(412175,9,0.895984,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(412267,9,0.896599,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(412282,9,0.896791,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(412313,9,0.897291,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(412360,15,0.783333,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(412380,9,0.897406,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(412504,9,0.899328,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(412521,9,0.899559,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(412754,15,0.9,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(413475,3,0.5238,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(413730,9,0.787263,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(414174,9,0.90002,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(414175,9,0.900097,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(414181,9,0.900174,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(414196,9,0.900366,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(414210,9,0.900674,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(414388,9,0.901327,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(414509,9,0.902365,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(414529,9,0.902596,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(414624,9,0.903096,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(414627,9,0.903134,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(414640,9,0.903327,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(414657,9,0.90348,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(414766,9,0.90448,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(414768,9,0.904518,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(414998,9,0.905095,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(415011,9,0.905479,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(415025,9,0.905748,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(415224,9,0.905979,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(415604,9,0.90817,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(415647,9,0.908786,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(415925,9,0.909478,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(416025,9,0.792261,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(416930,9,0.910785,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(417017,9,0.911246,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(417057,9,0.911707,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(417141,9,0.912015,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(417165,9,0.912668,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(417182,9,0.912976,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(417356,9,0.91386,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(417398,9,0.796797,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(417669,9,0.798604,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(417758,9,0.91536,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(417815,9,0.91609,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(417820,9,0.916167,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(417833,9,0.916321,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(417881,9,0.799911,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(417952,9,0.917013,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(418191,9,0.917782,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(418215,9,0.918243,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(418513,9,0.919934,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(419108,9,0.920088,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(419251,9,0.920434,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(419265,9,0.920665,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(419292,9,0.921318,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(419503,9,0.92178,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(419508,9,0.921818,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(419511,9,0.921857,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(419693,9,0.923125,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(419703,9,0.923318,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(419714,9,0.923395,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(419859,9,0.923817,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(419866,9,0.924086,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(419879,9,0.924394,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(419881,9,0.924432,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(419897,9,0.924701,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(419898,9,0.924701,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(419902,9,0.92474,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(419985,9,0.925048,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(420008,9,0.925355,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(420016,9,0.925509,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(420213,9,0.926701,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(420250,9,0.802064,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(420298,9,0.927008,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(420301,9,0.927085,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(420328,3,0.9275,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(420446,9,0.928661,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(420506,9,0.803064,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(420607,9,0.92943,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(420637,9,0.929968,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(420720,9,0.803448,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(420746,9,0.803909,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(420755,9,0.804063,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(421400,9,0.806639,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(421449,9,0.807408,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(421520,9,0.930084,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(421570,9,0.930814,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(421600,9,0.807831,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(421664,9,0.80883,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(421714,9,0.931083,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(421718,9,0.931122,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(421721,9,0.931199,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(421762,9,0.932044,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(422179,9,0.933082,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(422238,9,0.934197,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(422380,9,0.935466,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(422737,9,0.812213,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(422746,9,0.812329,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(422810,9,0.938042,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(422827,9,0.812675,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(423139,9,0.814712,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(423356,9,0.816365,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(423496,9,0.816558,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(423508,15,0.816667,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(423580,9,0.940156,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(423681,9,0.941002,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(424209,9,0.943808,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(424218,9,0.944116,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(424386,9,0.945077,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(424400,9,0.945423,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(424401,9,0.945423,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(424550,9,0.946,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(424556,9,0.946192,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(424591,9,0.946999,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(424701,9,0.947883,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(424720,9,0.948191,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(424830,9,0.948921,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(425103,9,0.820594,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(425501,9,0.950382,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(425511,9,0.950536,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(425519,9,0.950728,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(425525,9,0.950805,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(425655,9,0.951036,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(425677,9,0.951651,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(425692,9,0.951766,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(425701,9,0.952036,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(425782,9,0.952458,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(425793,9,0.95265,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(425822,9,0.953304,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(425974,9,0.953766,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(425994,9,0.95415,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(426208,9,0.954688,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(426215,9,0.95488,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(426251,9,0.955418,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(426262,9,0.955534,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(426267,9,0.955611,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(426459,9,0.956995,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(426627,9,0.830628,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(426788,9,0.958686,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(426798,9,0.958994,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(426895,9,0.95984,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(426904,9,0.959917,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(427077,15,0.833333,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(427624,9,0.960186,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(427632,9,0.960301,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(427917,9,0.962838,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(428109,9,0.964299,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(428117,9,0.964684,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(428374,9,0.964876,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(428377,9,0.964953,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(428392,9,0.965029,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(428393,9,0.965068,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(428401,9,0.965183,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(428407,9,0.965337,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(428416,9,0.965568,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(428514,9,0.966337,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(428661,9,0.96799,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(428670,9,0.968144,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(428875,9,0.96849,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(428884,9,0.968643,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(428902,9,0.969028,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(428916,9,0.969374,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(429932,9,0.970566,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(429965,9,0.97145,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(430046,9,0.971796,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(430067,9,0.972411,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(430081,9,0.97268,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(430266,9,0.851811,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(430318,9,0.973641,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(430328,9,0.973795,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(430337,9,0.97391,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(430679,9,0.854195,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(430693,9,0.854387,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(430710,9,0.854656,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(430719,9,0.854771,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(430748,9,0.855194,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(430778,9,0.855771,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(430898,9,0.976448,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(431009,9,0.857462,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(431015,9,0.857616,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(431172,9,0.858231,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(431246,9,0.97714,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(431252,3,0.9773,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(431260,9,0.977524,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(431343,9,0.977909,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(431409,9,0.859346,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(431426,9,0.859769,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(431438,9,0.859961,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(431529,9,0.979139,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(431531,9,0.979177,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(431538,9,0.979408,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(431896,9,0.860384,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(431901,9,0.860499,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(432113,9,0.862383,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(432171,9,0.981176,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(432206,9,0.982022,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(432240,9,0.982829,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(432327,9,0.983329,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(432339,9,0.983367,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(432340,9,0.983406,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(432347,9,0.98356,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(432543,9,0.864805,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(432683,9,0.865074,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(432699,9,0.865344,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(432701,9,0.865382,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(432757,9,0.987327,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(432759,9,0.987366,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(432809,9,0.866458,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(432838,9,0.866843,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(432856,9,0.867266,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(432948,9,0.988634,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(432956,9,0.988865,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(432973,9,0.989288,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(433001,9,0.867727,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(433038,9,0.868381,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(433077,9,0.869111,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(433085,9,0.869226,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(434009,9,0.870226,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(434136,9,0.990326,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(434397,9,0.872379,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(434562,9,0.872955,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(434829,9,0.994824,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(434839,9,0.874647,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(434866,9,0.875031,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(434918,9,0.995208,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(434953,9,0.996131,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(435070,9,0.876415,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(435083,9,0.876685,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(435460,9,0.998438,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(435477,9,0.998745,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(435567,9,0.879491,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(435568,9,0.879491,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(435708,9,0.879606,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(435713,9,0.879683,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(435864,15,1,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(435872,15,1,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(436304,9,0.880337,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(436447,9,0.880567,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(436495,9,0.881375,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(436744,9,1.000168,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(436773,9,0.881836,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(436775,9,0.881875,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(436937,9,0.882682,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(436946,9,0.882836,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(436976,15,0.883333,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(436993,9,1.001398,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(437210,9,0.884297,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(437239,9,1.002436,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(437240,9,1.002474,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(437246,9,1.002628,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(437253,9,1.00282,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(437257,9,1.002974,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(437266,9,1.003128,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(437365,9,1.003705,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(437369,9,1.00382,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(437373,9,1.003897,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(437386,9,1.004089,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(437389,9,1.004128,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(437518,9,1.005435,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(437530,9,1.005742,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(437532,9,1.005781,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(437534,9,1.005819,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(437555,9,0.88568,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(437718,9,0.887334,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(437795,9,1.007357,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(437802,9,1.007472,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(437806,9,1.007511,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(437810,9,1.007626,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(437852,9,1.008472,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(437921,9,1.008549,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(438182,9,0.888641,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(438610,9,1.01001,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(438616,9,1.010163,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(438618,9,1.01024,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(438938,3,1.0125,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(438939,9,1.012508,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(438952,9,1.01297,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(439063,9,1.013662,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(439066,9,1.013739,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(439312,9,1.014969,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(439483,9,0.891178,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(439488,9,0.891293,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(439494,9,0.89137,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(439630,3,0.6461,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(439705,9,0.892524,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(439734,9,1.016084,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(439846,9,0.893754,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(439852,9,0.893831,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(439856,9,0.893869,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(439857,9,0.893869,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(439858,3,0.8939,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(439862,9,0.893908,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(440039,9,0.89483,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(440044,9,0.894946,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(440193,9,0.896099,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(440202,9,0.896253,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(440244,9,1.019313,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(440392,9,0.896291,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(440419,9,0.896599,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(440422,9,0.896637,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(440575,9,0.897022,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(440602,9,0.897444,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(440844,9,0.898329,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(440870,9,0.898675,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(440922,9,0.899367,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(440930,9,0.899559,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(441115,9,1.020313,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(441677,9,1.022504,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(441828,9,1.022965,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(441834,9,1.023004,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(441843,9,1.023081,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(441849,9,1.023157,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(441940,9,1.023773,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(441959,9,1.024042,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(441960,9,1.024042,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(442050,9,1.025541,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(442308,9,1.025772,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(442325,9,1.026118,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(442335,9,1.026271,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(442337,9,1.02631,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(442444,9,1.027002,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(442486,9,1.027848,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(442531,9,0.900443,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(442536,9,0.900559,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(442537,9,0.900559,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(442547,9,0.900828,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(442554,9,1.027963,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(442566,9,1.028078,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(442595,9,1.028501,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(442746,9,0.900981,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(442753,9,0.90102,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(442757,9,0.901097,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(442927,9,0.901789,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(442930,9,0.901827,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(442952,9,0.902135,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(442961,9,0.902327,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(442981,9,0.902558,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(443116,9,0.902711,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(443117,9,0.90275,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(443144,9,0.903173,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(443236,9,0.903442,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(443243,9,0.903634,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(443433,9,0.90471,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(443442,9,0.904864,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(443447,9,0.904941,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(443459,9,0.905018,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(443694,9,0.905748,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(443709,9,0.905979,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(443720,3,0.9062,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(443884,9,0.906671,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(443906,9,0.907017,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(444053,9,0.907363,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(444238,9,0.908286,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(444243,9,0.908324,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(444263,9,0.908516,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(444281,9,0.908709,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(444314,9,1.03546,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(444350,9,0.908862,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(444402,9,0.909862,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(444405,9,0.9099,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(444532,9,0.909977,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(445583,9,0.911899,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(445792,9,0.914091,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(445817,9,0.914437,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(446031,9,0.914898,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(446256,9,0.916321,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(446453,9,0.916474,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(446494,9,0.916936,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(446729,9,0.917743,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(446811,9,1.045455,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(446978,9,0.91882,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(446981,9,0.918858,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(447378,9,0.919396,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(447384,9,0.91955,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(447387,9,0.919588,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(447413,9,0.919973,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(448006,9,0.920588,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(448022,9,0.920819,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(448028,9,0.920972,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(448035,9,0.921088,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(448064,9,0.921588,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(448086,9,0.921857,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(448194,9,0.922741,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(448231,9,0.923471,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(448235,9,0.923548,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(448308,9,0.92374,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(448321,9,0.923933,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(448322,9,0.923971,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(448326,9,0.92401,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(448346,9,0.924394,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(448354,9,0.924548,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(448492,9,0.924855,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(448497,9,0.924971,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(448538,9,0.925663,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(448559,9,1.052567,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(448617,9,0.925932,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(448619,9,0.92597,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(448666,9,0.926624,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(448807,9,0.926701,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(448826,9,0.927123,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(448871,9,0.927815,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(448911,9,0.928469,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(448912,9,0.928508,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(448946,15,0.683333,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(448947,15,0.683333,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(449108,9,0.929738,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(449670,9,0.931006,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(449681,9,0.931237,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(449801,9,0.93216,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(449822,9,0.932429,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(449834,9,0.932698,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(449920,9,0.933082,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(449921,9,0.933082,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(449930,15,0.933333,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(450230,9,0.93562,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(450274,9,0.936504,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(450462,9,0.936581,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(450497,9,0.937273,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(450594,9,0.93808,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(450604,9,0.938234,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(450638,9,0.938734,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(450723,9,0.939234,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(450727,9,0.93931,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(450735,9,0.939464,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(451490,3,1.068,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(451572,9,0.940156,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(451587,9,0.940579,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(451607,9,0.940925,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(451616,9,0.941117,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(451718,9,0.941809,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(451743,9,0.942194,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(451754,9,0.942424,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(451884,9,0.942732,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(451891,9,0.942847,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(452195,9,0.944962,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(452218,9,0.945385,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(452448,9,0.946576,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(452630,9,0.947499,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(452652,9,0.948076,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(452682,9,0.948806,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(452690,9,0.949075,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(452698,9,0.949267,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(452702,9,0.949344,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(452712,9,0.949575,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(453237,15,0.7,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(453748,9,0.950113,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(453759,9,0.950305,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(453866,9,0.951305,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(453877,9,0.951612,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(454044,9,0.952112,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(454075,9,0.952997,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(454237,9,0.953689,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(454257,9,0.95415,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(454270,9,0.95438,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(454375,9,0.955188,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(454377,9,0.955226,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(454379,9,0.955265,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(454380,9,0.955265,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(454412,9,0.955995,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(454537,9,0.956034,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(454581,9,0.956918,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(454588,9,0.95711,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(454593,9,0.957302,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(454653,9,0.700417,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(454722,9,0.957495,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(454742,9,0.958033,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(454755,9,0.958302,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(454765,9,0.95834,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(454862,9,0.959302,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(454884,9,0.959801,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(455383,9,0.961339,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(455476,9,0.9618,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(455480,9,0.961916,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(455483,9,0.961992,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(455491,9,0.962108,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(455495,9,0.962185,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(455519,9,0.962838,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(455641,9,0.964222,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(455947,9,0.965299,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(456031,9,0.706222,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(456391,9,0.968374,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(456442,9,0.969451,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(456444,9,0.969451,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(456558,9,0.708798,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(456726,3,1.0964,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(457204,9,1.098854,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(457341,9,0.970066,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(457375,9,0.970835,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(457512,9,0.971258,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(457828,9,0.974141,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(457841,9,0.974449,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(458276,9,0.97564,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(458282,9,0.975794,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(458287,9,0.975871,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(458295,9,0.97614,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(458298,9,0.976217,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(458494,9,0.976448,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(458513,9,0.976794,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(458692,9,0.978024,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(458709,9,0.978331,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(458763,9,0.979562,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(459110,9,1.102276,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(459190,9,0.980792,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(459209,9,0.981368,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(459417,9,1.106697,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(459475,9,0.982983,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(459630,9,0.983406,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(459661,9,0.98429,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(459665,9,0.984444,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(459808,9,0.984867,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(459980,9,0.985982,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(459986,9,0.986097,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(459990,9,0.986174,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(460009,9,0.986635,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(460027,9,0.986751,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(460126,9,0.987673,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(460141,9,0.987904,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(460360,9,0.988673,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(460370,9,0.988865,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(460374,9,0.988904,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(460868,9,0.719947,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(461357,9,0.991249,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(461389,3,0.9918,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(461542,9,0.992633,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(461564,3,0.9933,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(461581,9,0.993555,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(461978,9,0.9964,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(462012,9,0.996977,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(462211,9,0.997246,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(462380,9,0.999437,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(463297,9,0.726444,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(463531,9,0.728136,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(463645,9,0.728674,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(463874,3,1.1325,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(464153,9,1.000744,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(464305,9,1.001129,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(464340,9,1.001629,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(464553,9,1.002128,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(464561,9,1.002282,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(464565,9,1.002359,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(464570,9,1.002436,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(464590,9,1.002859,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(464601,9,1.003128,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(464739,9,1.003512,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(464743,9,1.003666,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(464755,9,1.003935,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(464756,9,1.003935,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(464792,9,1.004704,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(464814,9,0.731327,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(465098,9,1.005704,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(465099,9,1.005819,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(465163,9,0.73298,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(465238,9,1.006357,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(465244,9,1.006588,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(465269,9,1.007126,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(465276,9,1.007242,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(465373,15,0.733333,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(465505,9,1.008203,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(465514,9,1.008356,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(465515,9,1.008356,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(465516,9,1.008356,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(465524,9,1.008549,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(465611,9,1.009048,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(465639,9,1.009548,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(465653,9,1.00974,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(465663,9,1.009894,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(466058,9,1.010625,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(466059,9,1.010625,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(466070,9,1.010855,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(466137,9,1.012239,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(466138,9,1.012239,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(466144,9,1.012355,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(466145,9,1.012355,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(466237,9,1.012854,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(466244,9,1.012893,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(466446,9,1.014046,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(466453,9,1.014123,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(466532,9,1.014469,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(466552,9,1.014892,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(466586,9,1.015276,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(466597,3,1.1488,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(466715,9,1.016045,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(467080,9,0.738516,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(467121,9,1.017698,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(467144,9,1.018121,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(467257,9,0.739246,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(467358,9,1.018698,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(467364,9,1.01889,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(467382,9,1.019313,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(467391,9,1.019467,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(467392,9,1.019467,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(467468,9,1.019774,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(467478,9,1.019928,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(468020,9,1.020735,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(468023,9,1.020812,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(468048,9,1.02112,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(468265,9,1.02162,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(468298,9,1.022196,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(468299,9,1.022196,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(468300,9,1.022235,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(468467,9,1.023081,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(468508,9,1.023542,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(468585,9,1.023696,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(468613,9,1.024196,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(468622,9,1.024426,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(468634,9,1.024695,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(468637,9,1.024887,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(468640,9,1.024926,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(468681,9,1.025656,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(468700,9,1.025887,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(468717,9,1.026233,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(468942,9,1.026694,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(468950,9,1.02681,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(468986,9,1.02754,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(469157,9,0.741399,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(469208,9,1.028232,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(469214,9,1.028309,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(469421,9,1.02977,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(469428,9,1.029808,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(469729,9,0.744398,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(470363,9,1.032423,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(470611,9,1.033384,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(470872,9,0.747858,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(470998,9,1.034844,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(471234,9,1.03546,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(471236,9,1.035498,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(471491,9,1.036536,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(472082,9,0.75101,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(472516,9,0.753201,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(472584,9,0.754124,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(472790,9,0.754393,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(472855,9,0.7552,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(472867,9,0.755431,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(473404,9,1.04238,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(473516,9,0.758084,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(474151,3,1.1885,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(474222,9,0.75916,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(474369,3,1.0493,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(476283,9,0.762005,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(476351,9,0.762774,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(476352,9,0.762774,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(476515,9,0.763274,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(477088,9,1.060064,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(477157,9,0.764542,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(477381,9,0.764965,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(477419,9,0.765158,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(478723,9,0.768425,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(479078,9,0.769886,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(479592,9,1.073404,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(480148,9,0.77054,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(480281,9,0.771232,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(480469,3,1.2174,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(480609,9,0.771924,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(480613,9,0.771962,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(481569,9,0.77423,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(481699,9,1.081823,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(481874,15,1.083333,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(482094,9,0.775768,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(482425,9,1.08709,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(482697,9,0.777613,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(485693,9,1.103852,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(485708,3,1.1043,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(485788,9,0.780689,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(486997,3,1.2552,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(487952,3,1.2617,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(488983,9,0.787955,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(489185,9,0.789147,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(490424,9,0.790646,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(491386,9,0.793376,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(492300,9,0.79772,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(492761,9,0.798796,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(493027,15,0.8,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(494980,3,1.1531,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(496280,9,0.804102,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(496317,9,0.804755,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(496480,9,0.805255,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(496524,9,0.805908,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(497111,15,1.166667,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(497200,3,0.8068,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(497412,9,0.80833,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(497422,9,0.808369,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(497614,9,0.809407,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(497620,9,0.809522,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(498348,9,0.810945,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(498374,9,0.811329,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(498722,9,0.812828,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(499216,9,0.813751,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(499371,15,0.816667,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(502823,3,1.1929,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(503325,3,1.3205,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(503899,3,0.827,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(506284,3,1.3312,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(507331,3,1.2172,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(509355,3,1.3425,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(509641,9,0.850696,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(509916,9,0.852465,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(510121,9,0.852849,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(510340,9,0.854618,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(510350,9,0.854848,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(510587,3,1.3499,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(510632,9,0.855194,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(510638,9,0.855271,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(510665,9,0.855694,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(510687,15,1.233333,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(510794,9,0.855886,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(511033,3,1.3503,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(512270,9,0.860461,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(512274,9,0.860538,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(512449,9,0.86146,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(513083,9,0.862845,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(513084,9,0.862883,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(513128,9,0.863575,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(513221,3,1.3611,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(513767,9,0.866574,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(513772,9,0.866612,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(513788,9,0.866766,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(513892,9,0.867573,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(513917,9,0.86815,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(514148,9,0.868842,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(514537,3,1.2559,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(514877,3,1.2577,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(515137,9,0.870188,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(515493,9,0.872071,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(515500,9,0.872187,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(515692,9,0.87334,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(515698,9,0.873417,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(515927,9,0.874301,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(515934,9,0.874378,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(515940,9,0.874455,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(515963,9,0.874878,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(516205,9,0.875762,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(516227,9,0.876146,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(516416,9,0.877377,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(516568,9,0.878069,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(516581,9,0.878222,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(516593,9,0.878338,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(516666,9,0.878645,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(516711,9,0.879568,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(516715,9,0.879722,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(517583,9,0.880029,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(517592,9,0.880145,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(517735,3,0.8805,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(517775,9,0.881259,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(518038,9,0.88149,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(518044,9,0.881567,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(518060,9,0.881836,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(518284,9,0.883297,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(518530,9,0.885065,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(518541,9,0.885219,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(518565,9,0.88568,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(518705,9,0.885911,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(518740,9,0.886565,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(519635,9,0.888602,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(519667,9,0.889102,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(520319,9,0.890025,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(520347,9,0.890448,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(520436,3,1.396,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(520524,9,0.891216,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(520529,9,0.891293,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(520544,9,0.891563,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(520556,9,0.891678,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(521818,9,0.892062,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(521833,9,0.892408,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(522131,9,0.893254,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(522164,9,0.893715,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(522453,9,0.894292,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(522859,9,0.894792,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(522866,9,0.894907,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(523068,9,0.896061,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(523081,9,0.896291,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(523082,9,0.896291,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(523096,9,0.896522,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(523327,9,0.897175,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(523329,9,0.897176,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(523335,9,0.897252,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(523632,9,0.898213,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(523654,9,0.898521,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(523681,9,0.899098,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(525201,3,1.4084,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(526375,9,0.903096,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(526376,9,0.903096,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(526401,9,0.903442,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(526447,9,0.904288,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(526470,9,0.904749,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(526475,9,0.904826,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(526492,9,0.905172,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(526627,9,0.905364,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(526634,9,0.905441,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(526660,3,0.9058,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(526845,9,0.907709,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(527103,9,0.909016,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(527106,9,0.909055,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(527116,9,0.909247,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(528241,9,0.910746,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(528493,9,0.912399,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(528494,9,0.912399,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(528498,9,0.912438,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(528507,9,0.912592,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(528517,9,0.912707,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(528691,9,0.91336,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(528865,9,0.914129,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(528868,9,0.914206,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(529322,9,0.916397,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(529512,15,1.316667,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(529601,9,0.916744,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(529636,9,0.917359,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(529648,9,0.917551,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(529909,9,0.917782,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(529914,9,0.917974,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(529964,9,0.918627,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(530230,9,0.918896,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(530240,9,0.91905,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(530267,9,0.919435,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(530268,9,0.919473,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(530289,3,1.4308,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(530535,9,0.919934,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(531062,9,0.92028,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(531084,9,0.920665,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(531090,9,0.920819,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(531127,9,0.921434,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(531131,9,0.921472,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(531143,9,0.921664,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(531336,3,1.4385,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(531530,9,0.921741,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(531541,9,0.92201,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(531545,3,0.9221,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(531551,9,0.922318,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(531552,9,0.922356,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(531572,9,0.922702,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(531574,9,0.922741,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(531575,9,0.922741,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(531576,9,0.922741,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(531767,9,0.922818,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(531783,9,0.923125,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(531820,9,0.92374,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(532019,9,0.923894,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(532026,9,0.923933,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(532035,9,0.924202,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(532037,9,0.92424,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(532042,9,0.924355,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(532045,9,0.924394,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(532049,9,0.924471,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(532058,9,0.924701,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(532066,9,0.924971,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(532067,9,0.924971,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(532323,9,0.925009,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(532335,9,0.925278,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(532769,9,0.927662,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(532800,9,0.928123,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(532893,9,0.928584,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(532942,3,0.9296,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(532946,9,0.929699,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(534036,9,0.930122,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(534041,9,0.930199,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(534672,15,0.933333,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(534871,9,0.934659,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(535172,9,0.935658,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(535181,9,0.935812,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(535182,9,0.93585,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(535221,9,0.936542,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(535707,9,0.937657,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(535723,9,0.937926,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(535754,9,0.938465,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(535760,9,0.938542,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(535768,9,0.938657,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(535823,9,0.939964,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(536437,9,0.94031,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(536445,9,0.940656,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(536588,9,0.941233,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(536593,9,0.941386,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(536602,9,0.941617,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(536673,9,0.943001,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(536679,9,0.943155,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(536721,3,1.344,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(536752,3,1.3445,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(536842,9,0.94377,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(536881,9,0.944654,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(536917,9,0.945269,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(536945,9,0.946,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(537076,3,1.4716,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(537249,3,1.4725,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(537273,9,0.947576,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(537277,9,0.947653,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(537368,3,0.9494,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(537380,9,0.949575,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(537516,9,0.949844,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(537742,3,1.4757,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(538253,9,0.950536,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(538273,9,0.951113,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(538594,3,1.4811,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(539626,9,0.952958,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(539661,9,0.953496,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(539725,9,0.954957,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(539890,9,0.955572,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(539896,9,0.955688,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(540040,9,0.956264,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(540049,9,0.956495,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(540093,9,0.957225,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(540101,9,0.957379,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(540251,9,0.958033,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(540258,9,0.958225,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(540259,9,0.958263,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(540272,9,0.95834,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(540417,9,0.958725,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(540436,9,0.959302,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(540812,15,1.5,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(541158,9,0.960109,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(541182,9,0.960532,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(541365,9,0.961723,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(541637,9,0.963453,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(541643,9,0.963569,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(541776,9,0.963761,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(541789,9,0.964069,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(542012,3,1.3664,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(542085,9,0.965183,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(542111,9,0.96576,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(542129,9,0.966145,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(542294,9,0.966875,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(542298,9,0.96699,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(542594,9,0.968028,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(542607,9,0.968374,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(542610,9,0.968451,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(542617,9,0.968605,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(542635,9,0.968912,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(542698,3,1.5032,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(542828,9,0.969066,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(542831,9,0.969182,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(542842,9,0.969489,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(542843,9,0.969489,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(543129,3,1.507,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(543797,9,0.971834,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(543947,9,0.972334,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(543951,9,0.972372,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(543969,9,0.972642,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(543973,9,0.972719,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(544154,9,0.973987,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(544397,9,0.97514,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(544417,9,0.975487,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(544605,9,0.976717,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(544748,15,1.516667,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(544870,9,0.977101,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(544873,9,0.977255,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(544887,9,0.977486,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(544904,9,0.977793,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(545035,3,1.5186,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(545045,9,0.978178,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(545615,3,1.384,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(545849,9,0.9806,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(545866,9,0.980907,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(545923,3,1.3866,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(546049,9,0.982214,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(546059,9,0.982483,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(546060,9,0.982483,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(546067,9,0.982714,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(546080,9,0.983098,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(546119,9,0.983791,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(546537,9,0.986635,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(546571,9,0.987251,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(546583,9,0.987519,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(546810,9,0.988442,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(546811,9,0.988442,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(546818,9,0.988596,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(546827,9,0.988788,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(546958,9,0.988865,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(546960,9,0.988904,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(546984,9,0.989403,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(546986,9,0.989442,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(547682,3,1.3953,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(547927,9,0.990518,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(547932,9,0.990633,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(548011,9,0.991018,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(548018,9,0.991133,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(548396,9,0.992633,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(548407,9,0.992863,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(548411,9,0.992979,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(548674,9,0.994209,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(548680,9,0.994478,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(548685,9,0.994593,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(548944,9,0.995977,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(549311,9,0.998476,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(549331,9,0.998976,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(550815,9,1.000129,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(550999,9,1.001398,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(551011,9,1.001629,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(551106,9,1.002128,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(551121,9,1.002474,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(551123,9,1.002551,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(551133,9,1.002744,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(551138,9,1.002897,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(551158,9,1.003282,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(551176,9,1.003474,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(551183,9,1.003781,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(551204,9,1.004358,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(551222,9,1.004704,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(551338,9,1.00555,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(551423,9,1.006088,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(551443,9,1.006549,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(551469,9,1.006857,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(551621,9,1.007588,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(551634,9,1.007895,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(551636,9,1.007933,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(551643,9,1.008049,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(551807,9,1.008702,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(551815,9,1.008933,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(551824,9,1.009087,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(552406,9,1.009548,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(552425,9,1.009817,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(553135,15,1.566667,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(553253,9,1.010509,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(553453,9,1.010702,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(553483,9,1.01147,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(553754,9,1.0132,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(553979,9,1.013739,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(554041,9,1.014623,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(554137,9,1.015084,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(554242,9,1.016391,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(554379,9,1.01666,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(554412,9,1.01693,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(554431,9,1.017352,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(554624,9,1.01766,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(554625,9,1.01766,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(554651,9,1.018275,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(554834,9,1.019313,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(554847,9,1.019505,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(556479,9,1.020005,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(556732,9,1.02162,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(557047,9,1.023696,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(557050,9,1.023734,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(557090,9,1.024541,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(557355,9,1.024926,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(557373,9,1.025003,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(557381,9,1.025118,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(557698,9,1.026079,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(557775,9,1.026425,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(557785,9,1.026541,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(557787,9,1.026579,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(557795,9,1.026656,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(558284,9,1.027348,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(558323,9,1.028117,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(558541,9,1.028501,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(558669,9,1.029655,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(559108,3,1.447,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(560783,9,1.03519,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(560814,9,1.035536,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(560824,9,1.035614,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(562227,15,1.466667,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(562488,9,1.040304,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(565124,3,1.4819,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(565273,3,1.4837,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(565481,9,1.051837,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(568190,3,1.062,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(568253,3,1.6479,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(568260,3,1.6481,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(569097,9,1.067292,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(570643,9,1.073866,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(571250,3,1.6605,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(571537,9,1.078671,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(573665,9,1.083938,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(574230,3,1.6765,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(574338,9,1.089782,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(574631,3,1.6779,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(574702,9,1.091435,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(575281,9,1.09674,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(576174,3,1.6836,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(576224,3,1.533,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(577411,9,1.102545,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(577893,3,1.107,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(578081,9,1.10885,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(579212,3,1.5532,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(587487,3,1.1506,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(587488,3,1.1506,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(588826,3,1.5986,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(591648,3,1.6052,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(591950,3,1.7511,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(592428,3,1.1773,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(592651,3,1.1781,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(594397,3,1.7641,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(594425,3,1.7645,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(594574,3,1.765,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(596465,3,1.1909,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(597728,3,1.782,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(599268,3,1.7908,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(600841,3,1.2105,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(604216,3,1.2281,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(604545,3,1.6647,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(605201,3,1.6682,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(605770,3,1.8268,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(605789,3,1.8273,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(605800,15,1.233333,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(605921,3,1.8295,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(606393,3,1.6715,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(606802,3,1.6728,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(608600,3,1.8421,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(608769,3,1.8433,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(611424,3,1.2573,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(612220,3,1.8695,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(612353,3,1.87,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(612724,15,1.7,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(613522,3,1.2648,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(613945,3,1.2697,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(614738,3,1.8799,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(615965,3,1.8865,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(616201,3,1.8891,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(622323,15,1.916667,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(625925,15,1.933333,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(626215,3,1.7438,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(630233,3,1.9484,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(630685,15,1.95,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(631999,3,1.7698,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(634233,3,1.7815,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(634481,15,1.783333,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(636266,3,1.7932,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(637060,3,1.9651,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(637072,3,1.9652,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(639491,3,1.8023,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(640729,3,1.8091,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(642233,15,1.816667,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(642356,3,1.3557,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(644948,3,1.3669,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(646026,3,1.835,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(651062,3,1.8618,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(651842,3,1.8668,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(653202,3,1.8706,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(655238,3,1.8852,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(656994,3,1.8921,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(658042,3,2.0156,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(660011,3,1.4311,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(660231,15,1.433333,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(662481,3,1.9063,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(663348,3,1.9113,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(663903,3,2.0382,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(665341,3,2.0426,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(665503,3,2.0438,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(666036,3,1.9244,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(667934,15,1.933333,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(670274,3,1.4806,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(670560,3,1.4826,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(672747,3,1.4927,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(673466,3,2.0761,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(673675,3,2.0776,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(675507,3,1.9545,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(676189,3,2.0898,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(677120,3,1.5125,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(677770,15,1.516667,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(678314,3,2.0993,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(679260,3,1.5235,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(679505,3,1.965,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(680263,3,1.5286,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(681043,15,1.533333,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(682760,3,1.9739,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(685143,3,1.5481,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(685492,15,1.55,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(686919,3,1.9846,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(689545,3,2.1306,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(694220,3,2.1525,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(696550,3,2.0003,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(698605,3,2.1718,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(699346,3,2.1787,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(700581,3,2.0132,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(701529,3,2.1887,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(703726,3,1.6322,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(704365,3,1.6363,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(704559,3,1.6374,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(709956,3,2.2166,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(711451,3,2.2217,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(712016,3,2.0513,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(714827,3,1.6768,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(715665,3,2.2365,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(716570,3,1.6835,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(716660,3,2.0735,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(719022,3,1.6902,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(719631,3,2.2553,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(722547,3,2.0999,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(724205,3,2.2717,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(725206,3,2.2788,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(726801,3,2.289,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(730563,3,1.7354,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(731876,3,2.306,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(733300,3,2.3119,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(733323,3,2.3127,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(733372,3,1.7477,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(734081,3,2.3174,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(735871,3,1.754,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(737114,3,1.7593,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(737906,3,2.3389,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(738649,15,1.766667,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(740907,3,2.1578,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(741120,3,1.7796,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(741306,3,2.3507,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(741591,3,2.1599,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(744417,3,2.367,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(745069,3,2.1723,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(746047,3,2.3739,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(746230,3,2.3754,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(746266,3,2.3765,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(747054,3,1.8005,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(747965,3,2.3886,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(748203,3,2.1851,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(750802,3,2.1982,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(750976,3,1.8243,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(752825,3,2.4047,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(753582,3,2.2021,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(755884,3,2.2125,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(757171,3,2.2182,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(757658,3,1.8518,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(758390,3,2.2201,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(759549,3,2.4449,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(760210,15,1.866667,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(760776,3,2.4514,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(762595,3,2.2342,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(763866,3,1.8861,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(765195,3,1.8903,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(766409,3,1.8983,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(766833,15,2.25,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(770031,3,2.2592,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(772405,3,1.9195,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(774007,3,2.5308,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(774819,3,2.5388,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(775076,3,2.2796,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(775426,3,1.9313,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(775845,3,1.9335,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(775969,3,2.2827,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(776530,3,1.9374,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(778270,3,2.5597,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(779278,3,2.5649,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(779447,3,2.5663,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(780809,3,2.5716,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(781107,3,2.5753,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(782558,3,2.5825,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(782639,15,2.583333,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(782988,3,2.3078,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(783977,3,1.9539,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(784145,3,2.5918,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(786624,3,2.6007,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(789372,3,2.6117,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(789380,3,2.6125,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(792569,3,2.6314,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(792610,3,2.6332,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(793090,3,1.9741,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(793737,3,1.976,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(794000,3,2.6444,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(794912,3,2.3645,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(796400,3,2.6609,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(796763,3,2.6685,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(796935,3,2.3719,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(797304,3,2.3768,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(797470,15,1.983333,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(797940,3,2.6722,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(798287,3,2.6752,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(799193,15,2.383333,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(799432,3,2.3864,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(799469,3,2.3878,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(799525,3,1.9887,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(800206,3,2.6873,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(800904,3,2.6901,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(800967,3,1.9909,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(801326,3,2.391,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(801328,3,2.3911,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(801581,3,2.6966,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(804183,3,1.9985,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(805425,3,2.4017,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(805774,3,2.4032,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(806353,3,2.4082,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(808089,3,2.0024,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(808503,3,2.7253,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(809432,3,2.4249,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(809502,3,2.7326,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(811048,15,2.433333,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(812926,3,2.7556,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(813190,3,2.4416,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(813863,3,2.4476,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(814636,3,2.0212,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(815969,3,2.772,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(816150,3,2.4579,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(816371,3,2.4586,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(818441,3,2.0355,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(818539,3,2.4668,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(818975,3,2.7927,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(819738,3,2.4718,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(821946,3,2.487,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(822474,3,2.0493,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(823224,3,2.4921,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(823301,3,2.8091,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(823597,3,2.0508,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(823957,3,2.0544,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(824029,3,2.4993,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(825080,3,2.8152,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(825083,3,2.8154,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(826312,3,2.5005,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(826383,3,2.5008,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(826513,3,2.8229,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(828145,3,2.837,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(828464,3,2.0697,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(828905,3,2.5165,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(830119,3,2.8473,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(830594,3,2.5255,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(832095,3,2.0825,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(833546,3,2.5426,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(834206,15,2.55,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(834612,3,2.8715,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(834806,3,2.0933,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(836059,15,2.1,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(836393,3,2.8864,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(836398,3,2.8866,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(838025,3,2.5678,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(838807,3,2.8982,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(839804,3,2.5718,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(840170,3,2.5789,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(841047,3,2.111,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(844559,3,2.1236,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(845487,3,2.9205,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(845784,3,2.9267,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(845944,3,2.6001,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(846727,3,2.6084,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(847015,3,2.9337,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(848837,15,2.616667,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(848995,3,2.95,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(849363,3,2.6177,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(849460,3,2.9522,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(849462,3,2.9524,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(850714,3,2.1444,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(850923,3,2.9645,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(851108,3,2.6221,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(851338,3,2.6261,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(851339,3,2.6261,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(851779,3,2.6292,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(852358,3,2.9738,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(852413,3,2.1515,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(852677,3,2.6306,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(853118,3,2.6383,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(853411,3,2.1566,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(853717,15,2.983333,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(855862,3,2.1648,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(855869,3,2.165,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(857748,3,2.6614,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(857919,3,2.6632,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(858649,3,3.0007,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(859097,3,3.0061,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(859839,3,2.6782,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(859868,3,2.6788,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(860484,3,3.0131,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(863743,3,3.0389,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(864422,15,2.7,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(867215,3,3.0597,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(867485,3,2.7069,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(868995,3,3.0672,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(871433,3,2.7253,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(871825,3,2.2198,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(871967,3,3.0895,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(872524,3,2.7321,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(872892,3,2.2216,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(873600,3,2.7398,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(873918,3,2.2277,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(876091,15,2.233333,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(876850,3,3.1052,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(877839,3,2.2401,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(879090,3,2.2474,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(879177,3,3.1215,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(879199,3,3.1226,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(879323,3,3.1255,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(880343,3,2.2488,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(880448,3,2.7722,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(881083,15,2.25,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(881435,3,3.1424,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(881448,3,3.1431,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(884562,3,2.7938,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(884661,3,3.1609,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(884680,3,2.7953,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(885908,3,3.1713,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(886354,3,3.1755,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(888375,3,2.281,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(889080,3,2.286,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(890244,3,3.1974,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(890290,3,2.2926,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(890349,3,3.1993,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(891494,3,2.817,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(893427,3,3.208,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(894407,3,3.2151,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(896230,3,3.2248,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(896696,3,2.3166,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(896953,3,2.3179,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(896988,3,2.3185,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(897366,3,3.2365,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(897618,3,3.2388,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(898432,3,3.2414,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(898787,3,3.2497,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(900642,15,2.866667,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(900676,3,2.8676,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(901206,3,3.2618,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(902613,3,2.3379,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(903885,15,3.283334,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(904062,3,3.2859,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(904567,3,2.3476,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(905714,3,3.2997,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(907678,3,2.3612,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(910055,3,3.317,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(911349,3,2.3829,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(913260,3,3.3392,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(914282,3,2.3995,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(914871,15,3.35,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(915813,3,2.9259,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(917551,3,2.9386,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(918014,3,3.3741,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(919239,3,3.3805,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(919295,3,3.3834,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(919819,3,2.4177,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(921775,3,2.4296,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(923031,3,2.4388,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(923648,3,3.4066,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(923957,3,2.969,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(924661,3,2.4434,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(924803,3,3.4135,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(924838,3,3.4162,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(924861,3,3.4176,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(926272,3,3.4255,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(926820,3,2.9873,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(927526,3,2.4587,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(927562,3,3.4357,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(928191,3,2.9929,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(928353,3,2.9947,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(928891,3,2.4643,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(929508,3,2.4691,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(930115,3,3.4595,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(930621,3,2.4737,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(931076,3,3.4603,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(932214,3,3.4725,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(932237,3,3.474,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(932340,3,3.0028,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(932364,3,3.4744,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(932811,3,3.0089,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(933458,3,3.4839,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(934174,3,3.0136,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(934322,3,3.0172,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(934354,3,3.4952,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(934410,3,3.0181,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(934436,3,3.0186,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(935168,15,3.5,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(935354,3,2.4985,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(935538,3,3.0208,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(935683,3,3.0238,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(937197,3,3.5041,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(937630,3,3.5074,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(937751,3,2.5009,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(938983,15,3.516667,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(939845,3,2.5164,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(940077,3,3.5222,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(941461,3,3.0528,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(942491,3,3.5403,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(943116,3,2.5369,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(943144,3,2.538,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(943718,3,3.0634,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(944400,3,3.5505,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(945027,3,3.5596,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(946127,3,3.5634,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(946613,3,2.5579,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(946807,3,3.082,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(948258,3,2.5636,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(948263,3,2.5637,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(948416,3,2.5645,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(948441,3,2.5654,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(949036,3,3.5823,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(950211,3,3.5951,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(953273,3,3.6032,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(953274,3,3.6032,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(957371,3,3.6328,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(957390,3,3.1372,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(957484,3,3.6359,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(958508,3,2.6126,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(958534,3,2.6135,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(958673,3,3.1428,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(958984,3,3.1493,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(959004,3,3.6445,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(960742,3,3.1538,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(961081,3,3.669,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(961086,3,3.6695,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(961901,3,3.6759,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(962009,3,3.6796,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(962868,3,2.6368,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(963022,3,3.6852,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(963893,3,3.692,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(964471,3,2.6439,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(965006,3,2.648,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(965350,3,2.65,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(966166,3,2.6519,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(966300,3,3.7021,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(966375,3,2.656,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(966707,3,3.7084,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(968091,3,2.667,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(970565,3,3.7411,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(974590,3,3.2214,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(975022,3,2.6981,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(975130,3,3.2285,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(976050,15,3.233333,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(976219,15,2.7,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(977712,3,3.2484,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(980931,3,2.7131,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(980965,3,2.7139,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(982375,15,3.816667,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(983736,3,3.8251,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(983871,3,3.287,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(984047,3,3.2896,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(984537,3,3.8313,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(984538,3,3.8313,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(985533,3,3.8405,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(985843,3,2.7391,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(986177,3,3.299,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(987818,3,3.8621,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(988005,3,3.8655,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(988015,15,3.866667,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(988016,15,3.866667,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(988031,3,3.8673,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(988614,15,2.75,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(989074,3,3.305,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(989247,3,3.3071,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(989912,3,2.755,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(991227,3,3.3168,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(993963,3,3.9026,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(994145,3,3.9054,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(994689,3,3.336,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(994891,3,2.7838,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(994899,3,2.7842,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(995399,3,3.916,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(995698,3,3.9188,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(996606,3,3.3467,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(998113,3,3.9381,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(998173,3,3.3544,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(998271,3,3.94,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(998272,3,3.94,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(999096,3,3.9449,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(999281,3,3.9475,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1001649,3,3.9659,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1001671,3,3.9675,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1002346,3,2.8147,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1002524,3,3.9723,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1008517,3,4.0124,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1009413,3,3.4101,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1009419,3,3.4106,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1010266,3,2.8525,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1011432,3,3.4263,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1011725,3,3.4297,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1012816,3,4.0401,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1012996,3,4.0479,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1013639,3,2.8707,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1013798,3,2.8752,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1014012,3,3.4416,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1014072,3,3.4452,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1014078,3,3.4455,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1015494,15,4.066667,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1015590,3,4.0698,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1017882,3,2.8961,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1018288,3,2.8992,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1021274,3,4.1019,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1021276,3,4.1023,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1023960,3,2.9149,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1024121,3,2.9164,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1024330,3,4.1339,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1025836,3,3.5129,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1026115,3,2.9275,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1026179,3,3.5183,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1026505,3,4.1591,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1026507,3,4.1598,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1027334,3,2.9317,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1027594,3,4.17,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1027859,3,3.5268,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1028064,3,4.1746,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1029286,3,3.5318,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1029866,3,3.5392,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1030244,3,4.196,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1032181,3,2.9594,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1032597,3,3.554,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1033634,3,4.2104,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1033673,3,2.963,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1033728,3,3.5627,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1033893,15,2.966667,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1033903,3,2.9671,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1035066,3,2.9724,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1035469,3,2.9785,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1037104,15,3.583333,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1037282,3,3.5865,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1037340,3,4.2429,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1037520,3,2.9888,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1038588,3,4.2524,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1039247,3,2.9993,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1039681,3,4.2693,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1040812,3,4.2732,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1041530,3,3.6019,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1042328,3,3.6153,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1043179,3,4.2946,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1047280,3,4.3202,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1049922,3,4.3434,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1050561,3,3.6772,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1050713,3,3.6788,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1050993,3,4.3585,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1051367,3,3.0556,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1051575,3,3.0566,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1051588,3,3.0567,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1053179,3,4.3736,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1053215,3,4.3783,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1054637,3,4.3839,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1054752,3,3.0719,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1056368,3,3.7023,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1056506,3,3.084,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1057630,3,3.712,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1058043,3,3.7197,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1059277,3,4.4105,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1059382,3,4.4161,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1059384,15,4.416667,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1060435,3,3.7313,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1061619,3,3.7404,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1062267,15,3.75,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1062419,3,4.4449,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1062594,3,4.45,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1063839,3,3.1048,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1064868,3,3.7641,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1064922,3,4.4614,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1066052,3,4.4724,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1066104,3,4.4768,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1067397,3,4.487,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1068785,3,4.4999,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1071980,3,3.1528,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1073676,3,3.8114,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1073781,3,3.8144,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1073786,3,3.815,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1075524,3,3.8267,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1075540,3,3.8281,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1076767,3,3.8328,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1076773,15,3.833333,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1077945,3,4.5546,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1077964,3,3.842,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1078671,15,3.85,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1079072,3,4.5607,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1079132,3,3.1952,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1079487,3,3.8543,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1081307,3,4.5805,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1081308,3,4.581,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1082275,3,3.8727,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1085067,3,3.8971,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1085069,3,3.8976,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1086295,15,4.616667,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1086319,3,4.6187,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1087144,3,3.2225,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1087604,3,4.6204,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1090664,3,3.9202,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1090732,15,3.25,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1093801,3,3.2694,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1095801,3,3.2746,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1096304,3,3.9634,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1097119,15,3.283334,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1098885,3,3.9812,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1099209,3,4.7054,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1099346,3,3.9866,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1100401,3,4.7191,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1102942,3,4.7339,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1102995,3,4.7399,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1103349,3,3.3108,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1103547,3,4.0005,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1103860,3,4.0035,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1105283,3,3.3264,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1108349,15,4.766667,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1108583,3,3.3449,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1108831,3,4.0438,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1109033,3,4.0482,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1110014,3,3.3518,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1111503,3,4.0607,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1111781,15,4.783333,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1112089,15,3.366667,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1112302,3,3.3679,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1112801,3,4.0718,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1112841,3,4.0753,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1113113,3,4.7966,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1114492,3,3.3762,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1115905,3,4.0989,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1117172,3,4.8138,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1119125,3,4.8267,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1120604,3,3.4037,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1120917,3,4.1239,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1120919,3,4.1242,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1121861,3,4.1328,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1121985,3,4.1393,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1122396,3,3.4133,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1123033,3,4.8439,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1123910,3,3.4241,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1125607,15,4.166667,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1128330,3,4.1898,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1130275,3,3.4682,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1130290,3,3.4698,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1130950,3,4.8816,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1130960,3,4.8819,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1131702,3,3.4776,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1133309,3,3.4873,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1133996,3,3.4941,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1134216,3,4.9048,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1134530,15,3.5,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1135598,3,4.9106,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1135599,3,4.9108,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1135613,3,4.9118,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1135786,3,4.2288,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1138038,3,4.2426,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1138040,3,4.2428,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1139205,3,4.2532,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1139252,3,4.2568,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1139415,3,3.5231,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1139454,3,4.2593,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1139807,3,4.2639,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1145554,3,4.9844,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1145854,3,3.5568,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1145887,3,3.5587,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1146467,3,4.9981,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1148433,3,4.3214,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1148435,3,4.3215,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1149803,15,5.016666,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1151112,3,4.3439,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1151692,3,4.3516,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1151708,3,4.3532,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1152938,3,4.3634,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1153155,15,4.366667,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1156379,3,3.6249,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1156577,3,4.3933,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1157727,3,5.0812,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1157776,3,5.0853,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1157855,3,5.088,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1158745,3,4.4028,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1159052,3,4.407,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1159442,15,5.1,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1162717,3,3.6618,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1162868,3,3.6643,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1162996,3,3.6687,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1164013,3,3.6757,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1165222,15,4.45,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1165952,3,4.4577,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1165954,3,4.4581,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1166917,3,5.1556,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1168386,3,4.4682,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1169324,3,5.1704,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1169648,3,3.7012,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1169651,3,3.7014,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1172777,3,4.4976,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1173097,3,3.7293,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1174148,3,3.7303,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1176633,3,5.2316,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1176878,3,3.7406,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1177105,3,3.7478,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1177731,3,4.5267,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1177991,3,4.5283,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1178617,3,3.7552,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1179265,15,5.266667,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1180195,3,5.2706,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1180573,15,3.766666,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1181182,3,5.2853,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1182026,3,3.7716,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1183352,3,4.5652,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1183399,3,3.7813,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1183439,15,3.783334,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1183631,3,4.5687,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1185520,15,4.583333,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1185551,3,4.5862,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1186011,3,5.313,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1186175,15,5.316667,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1187210,15,4.6,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1188351,3,5.3307,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1188366,15,5.333333,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1189353,3,5.3413,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1190214,3,5.3531,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1191134,3,3.8207,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1191813,3,3.8276,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1192990,3,3.8304,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1194083,3,4.6424,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1194322,3,5.3992,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1194639,15,5.4,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1195684,3,4.652,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1196646,3,5.4097,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1200420,15,5.45,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1200676,3,3.8712,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1200897,3,4.6962,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1201809,3,5.4615,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1203636,3,3.8927,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1204011,3,4.7088,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1204016,3,4.7097,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1204568,3,5.4969,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1206134,3,4.7159,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1206136,15,4.716667,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1207417,15,5.516667,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1207758,3,4.7268,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1209225,3,4.7321,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1209238,3,4.734,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1211175,3,3.9362,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1211427,3,3.9396,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1212049,3,5.5649,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1212050,3,5.565,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1213435,3,4.7628,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1213593,15,4.766667,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1213726,3,5.5874,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1213741,3,5.5892,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1215040,3,3.9589,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1217345,3,3.9719,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1217448,3,3.9748,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1218843,3,3.9842,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1218953,3,4.796,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1220120,3,5.6396,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1221849,3,5.6551,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1223086,3,5.6681,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1223898,3,5.6741,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1224010,3,4.813,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1224129,3,4.8186,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1226048,3,4.0299,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1226474,3,4.8259,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1226963,3,4.0314,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1227271,3,4.0371,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1228062,3,5.7059,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1229224,3,5.716,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1230004,3,5.7254,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1231012,3,4.0575,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1232088,3,4.0644,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1233911,3,5.7652,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1234618,15,4.083333,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1234685,3,5.7758,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1234816,3,4.0887,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1235031,3,5.78,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1241465,3,4.1204,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1241530,15,5.833333,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1243190,3,5.8512,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1244376,15,5.866667,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1244556,15,4.15,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1245530,3,4.1597,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1246728,3,4.1692,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1250296,6,5.92,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1251025,3,5.9271,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1252222,3,5.936,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1254564,15,5.966667,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1259739,3,6.0158,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1260144,3,4.2431,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1260151,3,4.2439,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1260200,10,6.02,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1260553,15,4.25,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1261517,3,4.2533,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1261687,10,6.035,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1262750,3,5.039,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1262834,3,4.2637,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1264538,3,6.0676,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1264749,10,6.07,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1265215,3,5.061,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1265216,3,5.0615,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1265927,15,4.283333,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1266413,3,5.0707,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1266590,3,6.0863,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1266812,3,6.0896,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1268687,3,5.0956,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1269935,10,6.101667,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1269984,3,4.3095,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1270346,6,6.11,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1270347,6,6.11,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1270691,10,6.111667,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1270747,3,6.1182,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1271291,3,4.3177,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1271588,3,5.1031,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1272132,3,4.3218,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1273318,15,4.333333,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1273591,3,5.1224,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1273761,3,5.1273,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1274002,10,6.146666,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1276476,3,5.145,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1277238,10,6.18,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1277356,3,5.1532,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1277768,15,6.183333,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1277983,10,6.185,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1278994,3,6.1959,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1279718,3,5.1758,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1281346,3,6.2068,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1281618,6,6.21,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1282231,3,5.1941,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1282310,10,6.22,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1282784,10,6.228333,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1284415,10,6.246666,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1284565,3,5.2078,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1285590,3,4.414,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1285796,10,6.264999,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1287927,3,4.4372,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1289241,3,4.4413,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1290354,3,4.4523,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1291516,10,6.306667,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1291603,10,6.308333,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1292857,10,6.316666,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1293350,3,5.2716,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1294765,3,6.3348,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1295210,10,6.34,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1295212,6,6.34,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1295622,3,6.342,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1298467,10,6.373333,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1298935,3,4.5063,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1298951,3,4.5081,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1299266,10,6.381666,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1299445,10,6.386667,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1299666,10,6.388334,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1300007,15,5.316667,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1300697,3,4.5195,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1301735,3,5.3303,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1302704,3,4.5274,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1302939,10,6.41,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1303229,10,6.413333,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1303329,10,6.416667,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1303330,15,6.416667,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1303351,10,6.418333,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1304142,15,4.533333,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1304386,3,6.4257,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1304947,10,6.431667,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1305271,10,6.44,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1305949,10,6.446667,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1305958,10,6.448333,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1305959,10,6.448333,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1305979,15,6.449999,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1306356,10,6.45,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1306936,10,6.451666,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1306955,10,6.453333,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1306956,10,6.453333,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1307113,3,4.5549,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1307762,3,5.3886,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1307901,3,4.5604,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1307970,10,6.468333,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1307985,10,6.468334,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1308649,3,5.3994,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1310917,3,6.4925,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1310954,3,4.5863,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1311034,3,5.4022,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1311075,10,6.496666,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1311851,6,6.5,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1313854,10,6.505,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1313968,15,5.433333,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1315178,3,5.4474,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1316388,10,6.531666,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1316549,10,6.535,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1316711,10,6.536667,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1317074,3,5.4563,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1317281,3,4.622,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1317297,3,4.6237,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1317925,3,5.4633,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1320404,3,4.6413,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1320417,3,4.6428,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1320659,3,5.4931,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1321207,10,6.581666,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1321364,3,6.585,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1322737,6,6.6,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1323597,15,4.666667,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1324323,10,6.600001,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1324432,10,6.603334,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1325490,10,6.619999,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1326068,3,6.6212,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1326328,3,5.5333,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1328116,3,4.6961,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1328307,3,5.5544,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1329349,3,5.5619,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1329375,10,6.66,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1329805,10,6.664999,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1329814,10,6.665,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1330518,10,6.675,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1330745,10,6.678333,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1330762,10,6.678334,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1330807,3,4.7013,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1331003,3,4.7076,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1331007,3,4.7083,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1331082,10,6.68,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1331380,3,5.5826,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1331632,3,6.6845,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1333580,3,4.7246,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1335068,3,5.6015,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1336719,10,6.726667,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1337506,3,5.6397,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1338913,10,6.75,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1339489,10,6.758333,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1340343,3,4.7643,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1341459,10,6.775,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1342117,3,5.6765,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1342394,10,6.783333,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1342395,15,6.783333,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1342428,3,6.7849,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1342642,10,6.786667,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1343111,3,5.6839,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1345757,10,6.805,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1348133,3,5.7218,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1348384,3,6.8389,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1349628,3,4.805,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1349899,10,6.85,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1349903,15,6.85,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1350395,15,5.75,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1350697,10,6.853334,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1350712,10,6.855,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1351277,3,4.813,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1351382,10,6.863333,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1351430,15,6.866666,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1353666,10,6.881667,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1354241,3,4.8381,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1354598,3,5.7823,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1355175,15,6.9,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1355177,15,6.9,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1355562,3,5.7948,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1355600,3,5.798,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1356859,10,6.903333,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1356946,10,6.905,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1356972,10,6.906667,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1359067,10,6.923334,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1359129,10,6.928333,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1359619,15,6.933333,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1359657,10,6.936666,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1360605,10,6.948333,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1361782,15,5.833333,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1362456,10,6.966667,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1363415,3,4.8775,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1365359,10,6.995,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1366400,3,5.8778,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1366884,3,4.8937,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1367816,10,7.003334,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1368132,3,7.0084,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1369748,10,7.021666,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1369787,10,7.025,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1370027,10,7.033333,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1372008,4,7.06,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1372578,10,7.066667,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1372579,10,7.066667,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1373371,3,5.92,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1373400,10,7.076666,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1373796,3,5.9227,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1374368,10,7.083333,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1374396,10,7.085,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1374480,3,4.9335,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1375616,10,7.093333,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1375639,10,7.095,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1376172,15,5.95,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1376482,15,4.95,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1377142,3,4.9516,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1378087,10,7.105,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1378281,3,4.9697,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1378773,2,7.11,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1379434,6,5.98,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1380481,10,7.126667,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1381394,3,4.9996,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1381589,10,7.133333,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1381691,10,7.136667,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1381725,10,7.138333,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1381823,2,7.14,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1381979,10,7.143333,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1382157,10,7.146667,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1382520,10,7.15,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1383180,10,7.156667,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1383219,3,7.1597,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1383900,10,7.164999,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1384722,3,6.0078,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1385050,6,7.18,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1385846,10,7.181666,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1386005,10,6.023334,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1386536,10,7.186667,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1386837,3,5.0257,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1387344,10,7.199999,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1387777,5,7.2,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1389677,10,7.211666,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1389819,10,7.213333,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1389998,15,7.216667,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1390936,3,6.0761,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1391124,10,7.233334,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1391445,3,5.0524,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1391631,10,7.241666,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1391787,3,6.0809,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1391815,10,7.244999,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1392985,3,5.0657,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1393792,2,7.26,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1393849,3,5.0735,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1393875,3,5.0771,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1394383,10,7.266666,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1394464,10,7.268333,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1395058,10,7.275,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1395245,3,5.0883,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1395448,3,7.2759,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1395454,10,7.276667,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1396652,10,7.29,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1398386,3,6.1396,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1399371,3,5.1067,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1400465,3,7.3139,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1400615,3,6.164,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1400675,3,7.3151,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1400749,3,5.1124,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1400753,3,5.1129,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1401608,10,7.323333,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1402143,10,7.33,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1403662,3,6.1973,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1404500,10,7.351667,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1404750,10,7.359999,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1404802,2,7.36,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1406525,3,5.1519,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1406528,3,5.1524,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1407523,3,5.1631,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1407710,3,5.1691,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1407937,10,6.221666,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1407975,10,7.386667,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1408877,10,7.393333,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1408898,10,7.395,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1408910,3,5.1752,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1410358,3,6.2483,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1410830,10,7.406666,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1410916,15,5.183333,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1411249,10,6.26,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1411787,10,7.416667,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1412255,3,5.1935,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1412257,3,5.1939,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1412371,10,6.266666,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1412528,3,7.4207,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1412784,10,7.425001,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1412812,10,6.27,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1412896,10,7.428333,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1414083,10,7.44,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1414416,10,6.283333,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1414566,10,7.441667,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1414697,10,7.446667,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1414790,10,6.288334,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1415062,10,6.29,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1415175,10,7.45,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1415534,10,7.451666,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1415745,3,5.2148,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1416448,10,7.465,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1416886,3,5.2237,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1417464,3,5.2265,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1417939,5,7.48,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1418583,10,7.488333,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1419187,10,7.491666,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1419684,10,7.5,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1422065,10,6.341667,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1422090,10,6.343334,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1422181,10,7.51,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1422184,10,7.51,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1422186,10,7.51,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1422190,10,7.51,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1422725,10,7.515,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1422757,3,5.2781,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1422877,10,7.516666,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1423419,10,6.358334,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1423784,10,7.525,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1424224,10,7.53,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1425797,10,7.541666,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1425915,10,7.543334,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1426101,3,7.5473,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1426369,3,7.551,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1426440,10,7.555,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1426442,10,7.555,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1427375,15,6.4,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1427412,15,7.566666,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1427502,10,7.568333,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1428683,3,5.3036,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1429274,10,7.588333,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1429537,10,6.411666,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1429706,10,7.59,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1430926,15,7.6,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1430927,10,7.6,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1431528,10,6.431667,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1431706,3,6.4369,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1431854,3,6.4391,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1432196,10,7.601667,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1432409,10,7.606667,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1432411,10,7.606667,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1432542,3,6.441,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1433212,3,5.3465,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1433548,3,7.6148,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1433741,10,7.618333,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1433832,10,6.453333,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1434612,10,7.626667,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1434869,10,6.461667,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1435153,10,6.469999,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1435374,6,6.47,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1435565,10,7.631667,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1435581,3,7.6319,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1435772,10,7.635,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1436079,10,7.64,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1436576,3,5.3712,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1436997,10,7.648334,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1437113,3,6.4882,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1437898,10,7.66,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1438372,10,6.496666,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1438670,10,7.666667,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1438698,10,7.668333,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1439539,10,7.671667,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1439574,10,7.673334,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1439591,15,5.4,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1440010,10,7.68,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1440622,10,7.685,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1440830,10,7.69,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1441017,10,7.69,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1441018,10,7.69,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1441701,10,7.691667,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1441749,10,7.695,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1443178,3,5.4242,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1443239,10,6.528333,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1443512,10,6.53,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1443513,10,6.53,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1444016,3,6.5318,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1444084,10,7.705,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1444508,10,7.71,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1444509,10,7.71,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1444981,10,7.715,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1445138,10,6.550001,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1445284,10,6.558333,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1445770,3,6.5666,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1446677,10,7.728333,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1446910,6,7.73,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1447588,3,5.4532,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1447609,10,7.735,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1447626,10,7.736666,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1447628,10,7.736666,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1447786,10,7.738333,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1447871,10,6.583333,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1448638,10,7.741666,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1449414,3,5.4703,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1449447,3,5.4738,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1450999,4,7.76,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1451210,3,6.601,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1451212,3,6.6014,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1451633,10,7.765,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1452576,10,7.771667,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1452800,10,6.615,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1453595,10,6.625,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1454344,10,6.633333,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1455102,10,6.643333,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1455211,3,7.7916,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1455350,3,6.6469,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1455589,15,6.65,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1456401,10,6.653333,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1456661,10,6.658333,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1457964,10,7.803333,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1458552,10,7.809999,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1459066,15,5.55,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1459650,10,7.815,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1459651,10,7.815,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1460349,10,6.688334,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1460641,10,7.821667,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1461084,10,7.826667,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1461370,2,7.83,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1462357,10,7.831667,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1462372,15,7.833333,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1463647,10,7.843334,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1464878,10,6.718334,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1465102,10,7.853333,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1465136,3,5.5965,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1465211,10,7.853334,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1465415,15,5.6,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1465612,10,6.726667,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1466814,10,6.731667,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1467125,10,6.736666,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1467274,3,5.6097,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1467538,15,7.866667,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1467778,10,6.741667,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1467800,10,6.743333,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1467896,10,7.869999,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1469120,10,6.758334,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1470805,10,6.776667,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1470835,10,6.778334,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1471805,15,7.883333,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1472495,10,6.793334,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1472920,10,6.798334,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1474674,15,6.800001,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1474814,10,6.801667,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1474847,3,6.804,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1475072,10,6.81,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1475658,3,7.8989,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1475960,10,7.9,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1476613,10,6.821667,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1477009,3,5.6923,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1477021,3,5.6941,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1477988,10,7.903334,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1481149,3,6.8618,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1481318,15,7.916667,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1482836,3,5.7336,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1482930,10,6.883333,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1484092,10,6.896667,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1485192,15,6.9,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1488157,3,5.7815,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1488282,3,6.915,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1488404,3,5.7875,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1490728,10,6.933333,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1491503,10,6.941667,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1491504,10,6.941667,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1491726,15,6.949999,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1492289,15,5.816666,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1492978,10,6.958333,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1493126,5,6.96,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1494188,3,7.9601,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1494677,10,7.963333,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1494964,14,7.965,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1495329,10,6.975,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1496279,10,6.983333,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1496367,3,5.8542,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1496810,10,7.975,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1497531,10,6.991666,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1497545,10,6.991667,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1497947,10,6.998333,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1497972,3,6.9999,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1498538,15,7,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1498850,10,7.985,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1498970,14,7.986666,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1499749,3,7.005,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1500442,3,5.8836,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1501120,3,5.8959,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1501170,3,7.9964,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(1501906,15,5.9,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1502116,10,7.025,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1502996,10,7.038333,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1503847,10,7.046667,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1504216,15,7.05,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1504217,5,7.05,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1504706,10,8.006667,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1506048,10,7.068333,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1506257,10,7.07,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1506259,4,7.07,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1506260,6,7.07,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1506442,3,5.9263,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1507039,10,7.074999,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1507457,10,7.083333,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1507748,15,5.933333,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1507834,10,7.086667,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1507952,10,8.018333,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1510373,15,5.966667,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1510897,10,8.028334,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1510937,10,8.03,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1511137,10,7.103333,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1512212,3,5.9813,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1512272,15,8.033334,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1512662,10,7.111666,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1512978,10,7.119999,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1513194,3,5.9957,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1513209,3,5.9981,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1513336,2,7.12,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1513969,10,7.13,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1514038,6,6,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1515765,10,7.15,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1516165,10,8.046666,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1516247,10,7.153334,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1516287,3,6.0059,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1517694,10,7.170001,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1517896,3,7.1757,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1518238,10,7.178333,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1518779,10,6.025,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1518946,10,7.181666,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1519086,10,7.183333,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1519134,10,7.186667,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1519326,3,7.1874,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1519510,10,7.19,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1519511,10,7.19,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1519513,2,7.19,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1519514,5,7.19,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1520996,10,7.2,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1521014,10,8.061666,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1522678,10,6.061667,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1522759,10,7.205,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1522760,10,7.205,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1524555,10,7.218334,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1524954,10,8.071668,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1524999,10,7.22,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1525103,10,8.073334,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1526614,3,7.2266,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1527041,4,7.23,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1527042,4,7.23,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1527681,15,7.233333,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1527799,10,7.236666,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1528129,10,7.24,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1528898,15,6.116667,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1529147,4,8.09,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1529338,10,7.25,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1529339,15,7.25,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1529813,3,7.2561,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1530671,10,7.268333,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1530672,10,7.268333,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1530730,10,7.27,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1530855,10,7.27,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1531221,10,8.093333,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1531224,10,8.093333,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1531713,10,7.28,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1531717,2,7.28,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1532525,3,7.2831,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(1532655,15,7.283333,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1535524,10,7.306667,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1536398,10,7.315,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1536570,10,7.318333,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1536913,10,7.32,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1537959,10,7.323334,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1537972,10,7.325,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1538114,10,7.326666,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1538610,10,7.331666,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1538622,10,7.331667,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1538724,10,8.111667,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1541336,10,7.356667,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1541569,4,7.36,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1542026,10,6.218334,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1542453,10,7.366666,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1542668,3,6.2225,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1542705,3,6.2263,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1543221,10,6.23,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1543227,3,6.23,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1543892,10,7.378334,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1544790,10,6.241666,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1545425,15,6.25,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1545719,10,7.396667,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1546070,10,6.258334,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1546518,15,7.4,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1546797,10,6.261667,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1547019,10,6.27,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1547165,10,8.134999,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1548958,3,6.2803,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1549363,3,6.2896,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1549827,6,6.29,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1550236,10,6.291667,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1550525,10,7.426666,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1551082,10,8.148333,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1551524,10,7.431667,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1552010,10,7.434999,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1553122,10,7.445,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1553441,10,7.45,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1553526,10,8.153334,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1554566,3,6.3179,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1554604,10,7.453333,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1554859,10,7.456667,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1555225,10,6.326666,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1556597,10,7.471666,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1556644,10,7.475,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1557566,10,7.488333,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1558591,10,8.17,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1558649,10,6.351667,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1558821,10,7.491667,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1558907,10,6.358334,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1559015,10,7.496666,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1559472,15,7.5,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1559739,3,6.3644,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1560515,10,8.176666,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1561364,10,8.18,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1561485,10,6.383333,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1561544,10,6.388333,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1562187,10,7.515,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1562294,10,7.516668,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1562566,3,6.3914,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1562829,10,6.398333,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1563117,10,7.523333,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1563234,10,7.526667,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1563407,10,7.529999,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1563461,2,7.53,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1564039,3,8.186,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1564103,15,7.533333,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1564104,10,7.533333,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1564105,10,7.533333,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1564133,10,7.535,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1564284,10,7.536667,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1565068,10,8.19,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1565211,10,7.543333,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1565227,10,7.545,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1565251,10,7.546667,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1565345,10,7.548333,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1565614,3,6.4084,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1565703,15,7.55,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1565957,10,7.551666,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1565989,10,7.553333,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1566713,10,6.413334,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1566840,10,7.561666,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1566882,3,6.4182,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1566963,10,8.194999,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1566994,10,8.195,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1567076,10,7.565,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1567116,10,7.566667,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1567471,10,7.57,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1567472,10,7.57,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1567787,10,8.198333,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1568116,10,7.575,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1568192,10,7.576666,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1568193,10,7.576666,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1568221,10,7.578333,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1568732,10,7.581666,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1569057,10,6.435,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1569068,3,6.4358,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1569093,3,6.4371,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1569972,10,6.446666,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1569975,10,6.446667,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1570730,10,7.591667,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1571101,15,7.6,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1572352,10,6.453333,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1573240,10,6.461667,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1573386,3,6.4691,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1573754,10,7.611666,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1573793,10,6.47,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1573841,10,7.613333,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1573867,10,7.615,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1573998,10,7.618333,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1574278,3,7.619,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1574382,10,6.478333,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1575105,10,7.623333,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1575386,15,6.483333,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1577102,10,8.223332,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1577336,10,7.638334,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1577387,10,8.223334,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1577388,10,8.223334,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1578436,10,7.646666,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1578470,10,7.648333,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1578969,10,6.51,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1579051,10,8.23,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1579058,10,8.23,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1579107,10,7.651666,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1580363,10,7.661667,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1580382,10,7.663333,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1581812,3,6.5389,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1581855,14,8.238334,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1581887,10,7.673334,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1582806,10,6.543333,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1582948,10,6.545,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1583860,3,7.6872,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(1584663,10,6.566666,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1584961,10,7.696667,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1585023,10,7.699999,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1585416,10,8.25,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1585800,10,6.576667,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1585810,10,6.578333,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1586159,10,6.58,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1587193,3,6.5918,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1587861,10,6.6,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1587970,10,7.706666,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1588007,3,7.7073,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(1588013,10,7.708333,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1588030,10,8.256667,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1588642,10,7.715,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1588682,10,7.716667,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1589451,10,7.721667,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1591351,10,6.611666,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1591397,3,7.7356,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(1591399,10,7.736666,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1591441,15,8.266667,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1592308,10,6.625,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1593112,10,6.635,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1593530,10,8.271667,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1594095,10,8.273334,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1594569,10,7.755,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1594833,10,7.76,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1594848,10,6.65,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1595550,10,7.761667,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1597068,10,7.773333,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1597232,10,7.775,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1597455,10,7.776666,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1597532,10,7.778334,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1598187,10,8.288333,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1598189,10,8.288333,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1598339,10,6.683333,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1598698,10,7.781667,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1598712,15,7.783333,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1600066,10,7.791667,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1600237,10,8.293333,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1600379,10,7.793334,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1600723,10,8.296666,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1602022,8,8.3,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',0,100),(1603736,3,6.7251,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1604227,10,7.809999,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1605251,10,7.815,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1606401,10,6.751667,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1607216,10,7.823334,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1607329,10,8.311666,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1607683,6,7.83,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1608002,3,6.7642,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1608038,10,6.768333,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1608346,10,7.831667,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1608606,10,7.835,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1608833,10,8.318334,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1609038,10,6.778334,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1609099,10,7.838333,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1609916,10,6.783333,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1610545,10,8.325,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1611157,10,7.846667,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1611747,10,8.329999,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1614394,10,6.813334,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1614398,3,6.8135,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1614750,10,6.82,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1615028,10,6.821667,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1615092,10,7.868333,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1615262,10,7.868334,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1615270,14,7.869999,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1615785,10,8.341666,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1615786,10,8.341666,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1615787,10,8.341666,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1615883,10,8.341667,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1615886,10,8.341667,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1616516,10,8.345,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1616831,10,8.346666,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1616832,10,8.346666,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1617213,10,7.876666,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1617559,10,8.349999,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1617737,6,7.88,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1619392,14,7.886667,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1619870,10,7.888333,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1619911,10,6.87,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1622192,10,7.895,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1622486,15,8.366666,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1622725,3,6.8941,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1623723,10,8.37,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1625234,14,8.373333,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1625768,10,8.375,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1625818,10,7.905,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1625909,3,6.913,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1625946,3,6.9154,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1626261,10,7.906667,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1627163,3,6.9212,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1627662,10,8.381667,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1628243,10,7.913333,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1628358,3,6.9338,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1628905,10,7.918333,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1629169,10,7.918334,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1632374,10,6.963333,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1632763,6,6.97,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1634015,3,7.9331,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1634192,10,6.984999,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1634857,10,6.99,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1635442,10,7.94,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1635684,10,6.998333,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1637046,10,7.945,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1637386,10,8.415,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1637664,10,7.948333,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1637962,3,7.0082,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1638860,15,7.95,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1638861,15,7.95,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1638948,10,7.02,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1638949,10,7.02,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1639766,10,7.953333,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1640368,10,8.428333,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1640836,3,7.038,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1641528,10,7.043334,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1641541,10,7.045,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1641760,10,8.431667,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1642638,10,7.055,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1642713,10,8.44,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1643257,15,7.966667,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1643267,3,8.4409,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1644025,10,8.446667,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1644471,15,7.066666,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1644587,10,7.971666,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1644695,10,8.45,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1645054,10,7.973334,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1645359,10,7.075,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1645786,10,7.978334,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1646184,10,8.456667,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1647383,10,7.093334,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1647421,10,7.095001,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1647429,10,7.096666,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1647501,10,8.461667,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1647732,10,8.463333,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1648162,10,8.466667,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1648163,10,8.466667,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1648164,10,8.466667,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1649451,10,7.99,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1649494,10,7.101667,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1649649,10,8.474999,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1649799,10,7.106667,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1651006,10,7.994999,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1651151,4,7.12,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1651439,10,7.123333,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1652489,10,8.491667,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1652735,10,8,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1652738,8,8,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',0,100),(1652739,8,8,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',0,100),(1652740,8,8,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',0,100),(1652894,10,8.493334,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1653159,10,7.143333,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1653185,10,8.495,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1654480,10,7.16,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1654608,4,7.16,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1654609,2,7.16,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1655348,10,7.168333,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1655423,10,7.17,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1655760,10,8.005,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1655763,10,8.005,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1655913,10,7.171667,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1655914,10,7.171667,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1655938,10,7.173334,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1656165,10,7.176667,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1656166,10,7.176667,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1656640,10,8.008332,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1657074,10,8.511667,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1657219,10,7.185,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1658821,10,8.523334,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1658883,3,8.0146,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1660871,10,8.021667,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1660872,10,8.021667,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1661048,10,8.023334,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1661566,10,8.543334,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1661683,10,8.545,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1661739,10,7.208333,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1662636,3,7.2162,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1663158,10,8.558333,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1663287,10,8.558333,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1663288,10,8.558333,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1663807,10,8.561666,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1664324,10,8.033334,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1664436,10,8.568334,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1664437,10,8.568334,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1664680,10,8.57,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1665285,10,7.233333,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1665305,10,7.235,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1665651,10,8.573334,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1666503,3,8.0414,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1666912,15,8.583333,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1667476,10,8.046666,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1667685,10,8.046667,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1667712,2,7.26,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1668423,10,8.596666,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1668958,5,7.27,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1669368,10,8.051667,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1670692,10,8.606668,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1671700,10,8.611667,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1671901,3,7.2964,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1672093,10,7.296667,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1672232,5,8.62,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1672487,3,8.0601,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1672493,10,8.061666,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1672500,10,8.061666,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1673267,10,8.063334,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1673337,10,8.628333,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1673960,10,8.633333,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1674198,10,7.301666,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1675352,10,7.311666,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1675479,2,8.65,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1676238,2,7.32,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1676879,3,7.3201,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1676903,10,7.321667,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1678785,10,7.346667,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1679357,10,8.693334,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1679626,10,8.696667,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1679935,10,7.355001,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1681098,3,7.3636,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1681103,3,7.3649,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1681719,10,7.373333,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1682348,10,8.713333,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1682925,10,8.085,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1683376,10,7.390001,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1683424,10,7.395,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1683556,3,8.7252,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1684232,10,8.088334,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1684974,10,8.746666,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1685755,3,8.7513,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1686207,10,8.091666,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1686671,10,8.760001,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1686679,10,8.761666,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1686982,15,8.766667,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1687427,10,7.425,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1688308,15,7.433333,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1688309,15,7.433333,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1689034,10,7.438334,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1689241,10,8.793333,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1689633,10,8.798333,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1689848,10,7.440001,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1689870,10,7.441667,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1689918,8,8.1,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',0,100),(1689919,5,8.1,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1690058,6,8.8,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1691203,10,8.808333,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1692234,10,8.821667,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1692307,3,8.1019,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1692426,10,8.825,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1692676,10,8.828334,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1692687,3,8.8295,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1693493,14,8.106667,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1693875,10,8.841666,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1693905,10,8.843333,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1694064,10,7.481667,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1694254,10,7.485,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1694280,10,7.486666,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1694419,10,7.486667,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1694556,10,8.11,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1694804,6,7.49,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1694805,4,7.49,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1695584,10,7.491667,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1695804,10,8.860001,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1695984,14,8.863334,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1696161,10,8.866666,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1697453,15,8.116668,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1697454,15,8.116668,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1699054,10,8.895,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1699653,8,8.9,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',0,100),(1700069,10,7.526667,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1700221,5,7.53,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1700500,10,7.531666,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1700525,10,7.533333,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1700651,10,7.536667,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1700864,15,8.900001,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1700898,10,8.903333,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1701528,10,8.13,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1701533,10,8.13,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1702765,10,7.541666,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1702767,10,7.541667,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1702768,10,7.541667,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1703082,10,7.548334,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1703147,7,8.93,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1703148,6,8.93,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1703233,10,7.55,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1703779,10,7.555,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1704161,2,7.56,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1704736,10,7.561667,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1704778,10,7.565001,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1704816,10,7.568333,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1704906,7,8.95,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(1704997,10,8.14,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1705276,10,8.951667,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1705617,10,7.571667,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1706035,10,7.578333,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1707502,6,8.98,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1707904,10,8.985,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1707905,14,8.985,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1708172,10,7.595,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1708173,10,7.595,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1708429,10,8.991667,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1710246,10,7.603333,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1711305,10,7.610001,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1711482,10,7.615,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1711511,10,7.616666,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1711709,10,7.616667,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1712862,10,9.023334,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1714429,10,7.645,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1714557,10,9.041667,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1715651,10,7.653333,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1716452,10,9.063333,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1716701,10,9.066667,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1716940,10,7.665,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1717622,10,9.075001,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1717822,10,7.671667,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1718229,10,7.678333,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1718763,10,7.681666,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1718925,10,7.683333,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1718926,15,7.683333,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1719301,10,7.688333,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1720281,10,8.179999,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1720390,10,7.698333,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1720890,10,7.7,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1720893,15,7.7,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1721032,10,9.101666,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1721443,6,9.11,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1723375,10,7.711667,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1723468,10,7.716667,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1724583,10,9.143333,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1724674,10,7.723333,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1725641,10,7.735,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1725655,10,7.735001,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1725764,3,7.7381,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1725766,10,7.738333,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1726086,10,9.156667,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1726095,10,8.191667,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1726672,10,9.165,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1726705,15,9.166667,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1727180,10,7.746666,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1727265,10,8.196666,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1727324,10,8.196667,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1727403,10,7.748333,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1728170,10,9.185,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1728218,10,7.753333,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1729581,10,7.761667,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1730068,10,7.768333,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1730965,10,7.773333,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1731201,10,7.775,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1731614,10,7.778334,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1731888,10,7.78,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1731892,10,7.78,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1732451,10,9.221667,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1732503,3,7.7831,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1733417,10,9.233334,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1736381,10,7.801667,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1736416,7,9.27,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1737596,10,8.216667,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1737597,10,8.216667,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1737702,15,9.283334,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1738157,3,7.8129,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(1738581,10,8.22,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1738585,10,8.22,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1739220,10,9.296666,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1739734,15,9.3,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1740336,10,7.826666,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1741915,7,9.32,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1742762,3,7.8391,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1743164,10,9.331666,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1743799,10,7.845,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1743837,10,9.339999,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1743963,10,8.233333,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1744143,10,8.235,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1744144,10,8.235,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1745100,10,9.355,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1745327,10,7.848334,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1746131,10,7.851667,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1746337,10,9.37,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1746402,10,7.853334,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1746416,10,7.855,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1747088,10,9.376667,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1747170,10,8.241667,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1747745,10,8.245,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1748591,10,7.865,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1748918,15,7.866666,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1749058,10,7.868333,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1749127,10,7.869999,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1749543,8,9.4,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',0,100),(1750410,10,8.251666,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1751799,10,9.411667,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1752457,7,9.42,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(1752657,10,7.881666,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1752770,10,9.421666,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1753171,3,9.4285,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1753272,10,7.885,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1754686,7,9.45,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1755673,10,7.893333,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1755957,10,7.895,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1757934,10,9.49,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1758018,3,9.4908,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1759667,10,8.275001,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1760397,10,8.278333,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1761624,14,9.515,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1762442,10,9.526667,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1762453,10,9.526668,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1763054,14,9.531667,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1763894,10,9.545,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1765039,10,9.556666,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1765123,10,7.921667,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1765535,3,9.5609,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(1765537,14,9.561666,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1765596,10,7.923334,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1765840,10,7.925,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1766075,10,7.926667,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1766451,10,9.576667,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1766521,3,7.9298,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1766621,10,9.579999,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1767000,10,9.581668,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1767435,10,9.59,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1768096,10,9.599999,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1768919,10,7.935,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1768920,10,7.935,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1769677,10,9.603333,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1769706,10,9.605,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1771202,10,9.624999,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1771638,10,7.941667,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1772024,10,7.945,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1772348,10,9.638333,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1772595,10,9.64,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1773680,10,9.653333,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1773859,14,9.656667,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1774314,10,7.955,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1775197,14,9.666666,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1775263,10,9.669999,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1775264,10,9.669999,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1776531,10,9.681666,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1776610,10,7.966667,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1776690,15,9.683333,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1777911,8,9.7,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',0,100),(1777912,8,9.7,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',0,100),(1778488,10,7.973333,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1778489,10,7.973333,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1778490,10,7.973333,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1778706,10,8.328334,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1780281,10,9.719999,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1780651,3,9.7222,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1780786,10,9.723333,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1781219,3,7.9826,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1781278,10,8.335,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1781347,15,7.983334,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1783036,15,9.75,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1783643,14,9.756666,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1783655,10,9.756667,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1784653,15,9.766666,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1784745,10,7.998333,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1785320,10,9.775001,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1786616,6,9.79,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1787060,10,8.351666,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1787424,10,8.353333,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1788412,10,8.356667,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1788919,10,8.358334,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1789280,10,9.808333,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1789418,6,9.809999,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1790166,14,9.818334,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1790765,10,9.828333,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1790902,10,8.360001,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1791370,10,9.835,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1792187,15,9.849999,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1792188,14,9.849999,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1792304,10,8.366667,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1793483,10,8.025001,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1794061,10,8.373334,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1794423,10,9.873333,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1794555,10,9.88,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1795069,10,8.026667,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1795265,10,8.38,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1795268,4,8.38,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1795586,10,8.03,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1796381,10,9.895,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1797315,10,8.388333,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1797348,10,8.036666,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1798551,10,8.04,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1799463,10,9.918333,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1799579,10,8.396667,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1799811,10,8.398334,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1800112,10,9.921667,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1800841,10,9.931666,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1800972,10,9.935,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1801634,10,8.048333,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1803390,10,8.406667,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1803391,10,8.406667,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1803479,15,9.966666,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1805105,3,9.9855,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1805240,10,8.411667,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1806553,15,10,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1806556,8,10,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',0,100),(1806557,8,10,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',0,100),(1806558,8,10,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',0,100),(1807290,10,8.42,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1808617,10,8.068333,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1808757,10,8.428333,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1808831,10,10.01333,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1808988,10,10.015,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1809445,10,10.02833,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1810336,10,8.431666,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1810866,10,8.433333,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1810996,10,8.433334,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1811104,3,10.0477,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1811569,10,8.438333,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1812132,14,10.06167,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1813395,10,8.441667,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1813901,10,10.08,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1814170,10,10.08333,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1814639,10,8.448333,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1814737,10,8.083333,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1814808,10,10.09333,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1814866,15,8.45,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1814996,14,10.09667,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1815491,10,8.451666,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1815590,15,10.1,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1815602,8,10.1,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',0,100),(1815689,10,8.451667,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1815690,10,8.451667,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1816787,10,10.10833,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1816950,10,10.11,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1817015,3,10.1102,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(1817236,10,10.11667,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1817598,14,10.12333,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1817647,10,10.12667,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1817890,3,10.1298,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1818205,14,10.13167,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1818598,10,8.464999,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1818834,10,8.466666,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1819331,10,8.091666,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1819511,10,8.091667,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1819598,4,10.15,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1821045,10,10.17167,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1821082,10,8.096667,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1821939,14,10.18333,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1822025,7,8.48,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(1822631,10,8.481666,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1822811,3,10.1965,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1823406,8,10.2,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',0,100),(1825093,3,10.2072,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1825124,8,8.5,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',0,100),(1825405,10,8.105,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1825723,10,10.21167,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1826065,10,8.503333,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1826226,14,10.21667,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1826695,14,10.22667,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1826696,10,10.22667,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1826864,10,8.106668,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1826929,3,10.2296,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1826967,14,8.508333,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1827029,10,8.509999,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1827233,10,8.51,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1827239,4,8.51,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1827463,14,10.235,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1828027,10,10.23833,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1828097,10,10.24,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1828720,14,10.245,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1828983,15,10.25,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1829346,3,10.2557,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(1829980,10,8.526667,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1830134,10,8.526668,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1830391,3,8.5294,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1831591,10,8.536666,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1832350,10,10.295,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1832744,8,10.3,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',0,100),(1832745,8,10.3,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',0,100),(1832887,10,8.121667,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1834035,3,8.1256,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1835872,10,8.561666,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1836441,10,10.335,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1836491,15,8.566667,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1836699,10,8.568334,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1836701,10,8.568334,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1836763,4,8.57,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(1837843,10,8.575,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1838697,6,10.36,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1838954,2,8.14,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1839102,10,10.36667,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1839249,10,8.581667,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1839316,10,8.585,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1839990,2,10.38,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(1840854,10,8.143333,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1841198,10,8.145,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1841287,10,8.598333,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1841699,8,10.4,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',0,100),(1841845,10,8.148334,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1843005,14,10.40667,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1844122,14,10.42,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1844171,10,8.618333,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1844206,3,8.619699,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(1845297,10,8.626666,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1846031,15,10.45,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1846032,15,10.45,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1846220,14,8.634999,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1846463,10,8.636666,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1846503,10,8.638333,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1846671,23,10.458396,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1846829,2,10.46,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1846985,10,8.158333,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1846987,10,8.158333,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1847111,10,8.158334,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1848883,10,8.658334,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1849638,10,10.49833,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1850007,8,10.5,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',0,100),(1850010,8,10.5,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',0,100),(1852629,10,8.171666,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1852634,10,8.171666,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1853160,10,8.698334,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1853224,10,8.173333,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1853392,15,8.7,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1853399,8,8.7,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',0,100),(1854987,10,8.701667,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1855016,15,10.55,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1855073,10,8.18,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1856965,6,10.57,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1857940,15,10.58333,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1857941,15,10.58333,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1858092,14,10.585,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1858316,2,10.59,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1859136,8,10.6,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',0,100),(1859139,8,10.6,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',0,100),(1860734,14,8.755,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1861148,10,8.759999,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1861333,10,8.76,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1861426,10,8.761666,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1861427,10,8.761666,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1861500,7,10.62,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1863571,14,10.64833,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1863741,7,10.65,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1864528,10,8.201667,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1864898,10,8.203332,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1864946,10,8.798333,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1865010,14,10.66833,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1865548,14,10.675,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1867502,8,10.7,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',0,100),(1867505,8,10.7,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',0,100),(1867506,8,10.7,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',0,100),(1868078,7,8.82,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(1869119,3,10.7161,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1869576,10,8.830001,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1869678,10,8.213334,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1869904,10,8.833334,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1870066,3,8.8365,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1870138,10,8.216666,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1870250,14,10.73,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1870379,10,8.84,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1870380,2,8.84,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(1870715,23,10.741016,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(1870816,10,8.841666,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1871066,10,8.848333,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1871091,10,8.849999,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1871092,15,8.849999,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1872892,3,10.7776,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1873074,10,8.221665,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1873076,10,8.221666,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1873815,10,8.871667,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1874282,10,8.224999,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1875116,15,10.8,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1875123,8,10.8,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',0,100),(1875316,10,8.889999,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1875724,10,8.23,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1876298,10,8.898334,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1876873,10,8.231667,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1877152,14,10.815,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1877311,15,10.81667,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1877457,2,10.82,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1877676,10,8.233334,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1878377,6,10.83,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(1879449,3,10.8471,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(1879452,10,10.84833,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1880288,10,8.926666,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1880731,5,8.93,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1880732,7,8.93,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(1880838,10,10.86667,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1880900,10,8.241667,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1880989,3,8.930799,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(1880990,3,8.9316,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(1882262,4,8.95,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1882649,15,10.88333,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1883736,8,10.9,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',0,100),(1883739,15,10.9,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1883740,4,10.9,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1883741,8,10.9,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',0,100),(1884342,3,8.971,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(1885648,10,8.988334,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1886576,3,8.9942,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(1887497,15,9,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1887545,15,10.95,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1890310,15,9.016667,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1890463,10,9.018333,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1890700,8,11,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',0,100),(1890889,8,11,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',0,100),(1890890,8,11,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',0,100),(1891476,14,11.00333,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1891504,14,11.005,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1892285,5,11.02,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1893973,10,8.273334,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1895595,3,9.069,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1896034,14,11.07667,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1896363,10,9.078334,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1897913,2,11.1,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1897914,8,11.1,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',0,100),(1898697,10,9.1,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1898966,10,8.285,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1899221,14,11.11333,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1899301,10,8.286666,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1899904,14,11.12167,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1900954,15,9.116666,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1900955,10,9.116666,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1901036,10,8.291667,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1901476,10,9.121666,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1901542,10,9.124999,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1901583,14,11.14,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1901873,10,9.128333,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1902581,10,8.299999,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1902971,8,8.3,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',0,100),(1903555,10,9.145,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1903590,10,9.146667,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1904138,14,11.16667,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1904770,14,11.175,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1905683,14,8.303332,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1905744,15,11.18333,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1906006,10,9.173333,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1906065,4,11.19,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(1906372,14,11.19667,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1906461,10,9.178333,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1906607,10,8.306666,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1906745,8,11.2,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',0,100),(1906748,8,11.2,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',0,100),(1906847,10,9.18,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1907659,14,9.186666,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1907955,14,11.20833,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1908269,14,11.21667,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1908294,14,11.21833,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1908603,3,9.1979,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(1908629,7,11.22,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1909242,8,9.2,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',0,100),(1909244,4,9.2,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1909496,14,11.23667,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1909600,10,8.315,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1909976,10,8.316667,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1911176,10,9.21,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1911565,14,11.26333,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1911929,10,11.27,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1913825,10,8.33,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1913828,10,8.33,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1913975,5,9.24,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1914522,8,11.3,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',0,100),(1914523,14,11.3,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1914524,8,11.3,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',0,100),(1914527,8,11.3,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',0,100),(1914763,10,9.245,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1915446,3,9.2539,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(1915667,10,9.258334,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1915980,10,9.263333,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1915981,10,9.263333,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1916511,15,11.31667,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1917519,4,11.33,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(1917841,15,9.283334,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1917842,15,9.283334,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1918924,10,8.344999,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1918931,10,8.345,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1918933,10,8.345,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1922347,10,8.353333,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1923051,8,11.4,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',0,100),(1924207,14,9.335,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1924590,14,11.41167,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1925061,10,9.341667,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1925665,10,8.360001,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1925674,10,9.353333,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1926716,15,9.366666,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1926741,10,9.368333,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1926952,14,11.45833,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1927012,10,8.366666,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1927325,14,11.46333,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1927355,10,8.366668,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1927563,15,11.46667,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1927713,10,9.378333,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1928761,14,11.48167,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1929412,6,11.49,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(1930037,10,8.378333,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1930189,8,9.4,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',0,100),(1930276,15,11.5,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1930288,8,11.5,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',0,100),(1930615,5,8.38,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1931861,10,9.405,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1932833,10,9.418333,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1932894,10,8.388333,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1933704,14,9.425,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1933775,10,11.54167,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1933965,3,9.427999,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1934452,14,11.55167,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1934635,10,9.433333,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1934802,10,9.435,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1935593,3,8.3976,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(1935609,10,8.398334,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1935882,10,9.448333,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1936176,4,11.58,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1936276,10,8.4,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1937739,8,11.6,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',0,100),(1938220,10,8.401668,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1938835,10,9.474999,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1939212,10,9.48,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1939740,10,8.408334,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1941102,2,11.64,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1941504,8,9.5,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',0,100),(1941694,10,8.418333,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1941723,10,8.418334,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1942103,10,8.419999,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1942849,10,8.42,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1943005,10,9.506666,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1943083,14,11.67,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1944377,10,9.52,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1945390,8,11.7,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',0,100),(1945391,2,11.7,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(1945464,10,8.431666,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1946550,10,9.536667,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1946698,10,8.438334,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1947495,14,11.71667,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1947519,1,11.71689,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1948350,1,11.73368,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1948545,14,11.74,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1948754,14,11.74333,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1949129,14,11.75,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1949322,14,9.56,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1949767,14,11.755,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1949815,10,8.451667,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1950412,14,11.76333,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1950803,6,9.58,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(1951235,15,9.583333,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1951237,15,9.583333,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1952245,8,9.6,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',0,100),(1952427,1,11.79663,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1952630,8,11.8,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',0,100),(1952631,8,11.8,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',0,100),(1952632,8,11.8,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',0,100),(1953292,3,8.4648,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1953589,14,9.605,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1953964,10,8.468333,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(1954181,14,11.81333,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(1954426,10,9.618333,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1954982,10,8.471667,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1954983,10,8.471667,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1955496,1,11.83189,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1955507,15,11.83333,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1955653,10,8.476666,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1955822,14,11.84167,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1956189,14,9.634999,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1956631,2,9.64,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(1957688,10,8.488333,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1957822,1,11.86547,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1957972,2,8.49,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(1957989,1,11.86799,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1958319,1,11.87302,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1958737,10,8.491666,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1958988,14,11.88333,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1958989,15,11.88333,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1959011,1,11.88478,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1959052,10,8.493334,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1959232,1,11.88561,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1959233,1,11.88561,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1959257,1,11.88729,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1959258,1,11.88729,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1959749,1,11.89905,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1959750,1,11.89905,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1960041,8,11.9,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',0,100),(1960042,8,11.9,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',0,100),(1960049,8,11.9,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',0,100),(1960052,8,11.9,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',0,100),(1960054,8,11.9,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',0,100),(1960055,8,11.9,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',0,100),(1960056,8,11.9,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',0,100),(1960057,8,11.9,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',0,100),(1960302,8,8.5,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',0,100),(1960304,5,8.5,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1960836,1,11.90324,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1960860,1,11.90492,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1960877,1,11.90576,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1961032,1,11.90828,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1961515,1,11.91667,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1961568,4,11.92,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(1961604,10,8.501667,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1961819,10,9.691667,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1961854,10,9.693333,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1962070,14,11.92833,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1962311,1,11.93094,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1962448,1,11.93178,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1962470,1,11.93346,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1962554,8,9.7,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',0,100),(1962556,8,9.7,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',0,100),(1962557,8,9.7,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',0,100),(1962559,8,9.7,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',0,100),(1962571,10,8.509999,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1963138,1,11.94605,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1963623,1,11.95193,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1963832,1,11.95781,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1963850,1,11.95865,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1963851,1,11.95865,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1963858,1,11.95949,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1964135,10,9.705,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(1964207,1,11.96032,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1964411,10,8.52,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1964690,1,11.96872,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1964795,10,9.711666,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1965020,10,9.716666,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1965021,15,9.716666,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1965047,1,11.97543,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1965191,10,8.524999,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1965298,1,11.97963,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1965559,1,11.98215,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1965994,3,11.9907,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(1966134,10,9.723333,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1966296,3,9.7259,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(1966563,8,12,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',0,100),(1966566,8,12,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',0,100),(1966568,8,12,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',0,100),(1966570,8,12,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',0,100),(1967224,1,12.00146,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1967452,10,9.74,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1968177,1,12.01825,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1968664,1,12.02412,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1968690,1,12.0258,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1968887,7,12.03,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(1969111,1,12.03168,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1969855,10,9.763333,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1970003,10,9.764999,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1970058,15,9.766666,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1970214,1,12.05098,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1970280,14,8.558333,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1970376,1,12.0535,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1970399,1,12.05518,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1970583,1,12.05938,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1970584,1,12.05938,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1970904,1,12.06525,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1970905,1,12.06525,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1970915,15,12.06667,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1971058,1,12.06777,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1971345,10,9.778333,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1971645,1,12.07365,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(1972285,1,12.08624,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1972430,1,12.08792,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1972841,1,12.09212,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1973047,10,9.796666,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1973108,1,12.09883,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(1973220,10,8.578334,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1973342,15,12.1,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1973414,8,12.1,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',0,100),(1973416,8,12.1,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',0,100),(1973515,2,8.58,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(1973844,8,9.8,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',0,100),(1973845,8,9.8,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',0,100),(1974316,1,12.10639,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(1974411,10,8.583333,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1974452,15,8.583334,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1974532,10,8.585,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1974911,10,9.803333,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1975116,1,12.11982,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1975117,1,12.11982,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1975583,6,9.809999,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(1975688,1,12.12989,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(1975961,10,8.598332,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1976092,1,12.13073,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1976100,1,12.13157,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1976119,1,12.13241,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1976388,1,12.13577,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1976824,1,12.1408,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1977029,1,12.14668,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1977204,1,12.1492,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1977362,1,12.15256,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1977511,1,12.15675,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(1977703,7,12.16,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(1977984,1,12.16095,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1978271,1,12.16767,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1978295,1,12.16851,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1978448,1,12.17102,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1978580,10,9.836666,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1978729,1,12.18026,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1978944,1,12.18949,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1978998,7,9.84,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(1979594,10,9.848334,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1979721,8,12.2,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',0,100),(1979722,8,12.2,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',0,100),(1979723,8,12.2,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',0,100),(1980160,10,9.853333,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1980765,1,12.2046,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(1981462,1,12.21551,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1981463,1,12.21551,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1981495,10,9.863333,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1981502,10,9.863334,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1981731,15,12.21667,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(1981751,1,12.21719,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1981778,1,12.21887,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1981785,1,12.21971,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1981825,14,12.22,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1981827,5,12.22,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(1982062,1,12.22223,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1982434,10,8.64,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1982532,1,12.22475,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1982560,1,12.22559,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1982561,1,12.22559,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1982573,1,12.22643,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(1982986,1,12.23146,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1983286,1,12.23482,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1983462,1,12.23734,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1983617,6,12.24,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(1983689,1,12.24154,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1983833,1,12.24238,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(1984062,1,12.24825,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1984063,1,12.24825,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1984064,1,12.24825,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1984065,1,12.24825,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1984072,14,12.24833,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1984245,15,12.25,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1984470,1,12.25245,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1984471,1,12.25245,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1984493,1,12.25329,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1984494,1,12.25329,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1984754,8,9.9,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',0,100),(1984774,1,12.25833,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1984793,1,12.25916,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1984943,8,9.9,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',0,100),(1985132,10,8.665,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1985361,10,8.668334,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1985594,14,12.265,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1985606,1,12.26504,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1985621,1,12.26588,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1985883,15,12.26667,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1985898,1,12.26672,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1986465,10,8.686666,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(1986466,10,8.686666,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1986690,1,12.27008,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1986691,1,12.27008,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1986868,1,12.2726,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1986888,1,12.27344,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1986897,1,12.27427,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1986971,10,9.916667,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1986972,10,9.916667,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(1987052,1,12.27595,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1987071,1,12.27679,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1987088,1,12.27763,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1987248,1,12.27931,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1987473,1,12.28015,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1987474,1,12.28015,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1987614,1,12.28099,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1987615,1,12.28099,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1987637,1,12.28183,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1987650,1,12.28267,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1987663,15,12.28333,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1987806,1,12.28435,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1987807,1,12.28435,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1987840,1,12.28519,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1988124,1,12.28687,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1988141,1,12.28771,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1988164,1,12.28855,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1988209,14,12.29,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1988210,6,12.29,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(1988431,1,12.29106,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1988432,1,12.29106,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1988433,1,12.29106,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(1988447,1,12.2919,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1988459,1,12.29274,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1988569,1,12.29442,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1988581,14,12.295,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1988606,1,12.2961,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1988607,1,12.2961,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1988632,1,12.29694,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1988633,1,12.29694,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1988634,1,12.29694,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(1988816,1,12.29946,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1988817,1,12.29946,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(1989092,15,12.3,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1989224,8,12.3,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',0,100),(1989225,8,12.3,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',0,100),(1989226,8,12.3,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',0,100),(1989232,8,12.3,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',0,100),(1989592,10,8.703334,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(1989933,1,12.30114,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1989995,1,12.30365,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1990023,1,12.30449,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1990405,1,12.31037,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(1990416,1,12.31121,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(1990453,1,12.31289,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1990682,1,12.31457,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1990683,1,12.31457,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1990896,1,12.31541,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1990912,1,12.31625,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1991182,1,12.31876,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1991553,10,9.966667,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1991624,1,12.32128,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1991965,1,12.32464,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1991994,1,12.32548,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(1991995,1,12.32548,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(1992017,1,12.32632,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(1992603,10,9.976666,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(1992717,1,12.33304,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1992745,1,12.33387,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1992746,1,12.33387,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1992927,1,12.33555,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1992980,10,8.736667,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1993042,1,12.33723,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1993043,1,12.33723,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1993251,1,12.33807,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1993384,7,8.74,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(1993496,1,12.34059,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1993636,1,12.34143,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1993751,14,9.988334,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(1993817,1,12.34311,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1993973,1,12.34563,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1994448,1,12.34898,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1994655,1,12.35066,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1994656,1,12.35066,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1994676,1,12.3515,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1994801,1,12.3515,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(1994843,1,12.35318,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(1994844,1,12.35318,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(1994939,1,12.35402,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1994956,1,12.35486,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(1995052,1,12.3557,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1995089,1,12.35654,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1995090,1,12.35654,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1995186,1,12.35738,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(1995443,15,8.766666,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1995542,14,12.36167,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1995670,8,10,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',0,100),(1995853,1,12.3641,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1996000,1,12.36493,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1996312,1,12.36829,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(1996437,1,12.36997,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1996633,1,12.37081,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(1997024,1,12.37333,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(1997600,1,12.37753,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1997601,1,12.37753,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(1997656,1,12.37921,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(1997772,3,10.0108,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(1998025,1,12.38088,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1998076,1,12.38172,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(1998137,10,8.799999,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1998192,15,10.01667,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(1998353,1,12.3834,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(1998515,8,8.8,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',0,100),(1998627,1,12.38592,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(1998628,1,12.38592,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(1998681,14,10.02167,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(1998837,14,12.38667,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(1998852,1,12.38676,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1998879,1,12.3876,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(1999125,1,12.38928,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(1999621,1,12.39264,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1999710,1,12.39347,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(1999711,1,12.39347,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(1999735,1,12.39431,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(1999802,10,10.03167,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(1999900,1,12.39515,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2000148,1,12.39683,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2001043,10,10.04667,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2001077,8,12.4,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2001078,8,12.4,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2001087,8,12.4,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2001091,8,12.4,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2001776,10,10.055,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2001801,10,10.05667,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2001816,1,12.40019,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2002532,1,12.40607,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2002533,1,12.40607,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2002627,15,10.06667,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2002986,1,12.40775,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2003757,1,12.4111,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2004012,1,12.41278,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2004013,1,12.41278,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2004145,1,12.41446,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2004270,1,12.41614,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2004271,1,12.41614,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2004899,10,8.861667,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2004965,1,12.42034,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2005058,10,8.863334,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2005122,1,12.42118,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2005123,1,12.42118,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2005244,10,8.866666,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2005251,15,8.866667,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2005300,1,12.42202,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2005568,8,10.1,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2005571,8,10.1,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2005572,8,10.1,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2005600,1,12.42453,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2005601,1,12.42453,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2005636,14,12.425,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2005718,1,12.42537,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2005749,1,12.42621,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2005930,1,12.42873,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2006232,1,12.43125,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2006361,1,12.43209,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2006386,1,12.43293,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2006437,1,12.43377,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2006682,1,12.43629,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2006792,1,12.43713,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2006825,1,12.43796,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2006871,1,12.43881,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2006872,1,12.43881,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2006873,1,12.43881,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2006992,14,8.871667,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2007156,1,12.43964,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2007157,1,12.43964,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2007235,10,8.875,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2007313,10,10.11333,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2007359,15,10.11667,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2007443,1,12.44048,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2007559,1,12.44132,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2007814,1,12.44384,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2008195,1,12.44552,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2008220,1,12.44636,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2008317,14,10.12667,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2008464,10,8.888333,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2008553,1,12.44888,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2009041,10,8.893332,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2009066,15,12.45,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2009578,10,10.14333,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2010022,6,8.9,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2010502,1,12.45895,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2010547,1,12.45979,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2010764,14,10.15667,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2010790,10,10.15833,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2010828,1,12.46063,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2010829,1,12.46063,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2011183,10,8.905,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2012026,1,12.46735,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2012027,1,12.46735,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2012028,1,12.46735,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2012029,1,12.46735,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2012378,1,12.46819,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2012493,1,12.46902,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2012557,10,10.17167,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2012830,1,12.4707,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2013330,15,8.933333,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2013810,10,8.938334,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2013956,14,12.47833,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2014544,1,12.48078,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2014545,1,12.48078,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2014577,1,12.48162,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2014694,1,12.48246,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2014749,10,8.944999,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2014919,15,10.2,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2014925,8,10.2,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2014969,1,12.48413,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2015191,1,12.48581,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2015430,10,8.951667,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2015866,2,8.96,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2016187,14,10.20667,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2016188,14,10.20667,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2016257,5,12.49,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2016537,1,12.49001,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2016538,1,12.49001,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2016673,10,8.965,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2016763,1,12.49169,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2016803,1,12.49253,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2016857,10,10.21333,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2016961,10,8.966667,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2017209,23,10.218169,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2017287,1,12.49505,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2017288,1,12.49505,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2017289,1,12.49505,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2017720,1,12.49673,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2017768,1,12.49757,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2017769,1,12.49757,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2017875,14,10.225,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2017921,10,10.22833,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2018023,1,12.49841,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2018200,1,12.49924,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2018483,10,10.23333,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2018792,8,12.5,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2019296,10,8.990001,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2019406,3,10.2498,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2019623,1,12.50008,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2019659,1,12.50092,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2019768,10,8.999999,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2020040,10,10.25167,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2020136,1,12.5026,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2020137,1,12.5026,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2020207,14,10.25833,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2020251,10,9,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2021216,1,12.5068,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2021463,1,12.50848,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2021680,14,10.27333,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2021851,10,9.008332,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2022296,10,10.28,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2022297,6,10.28,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2022371,1,12.51268,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2022372,1,12.51268,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2022938,1,12.51519,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2022973,10,10.29,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2023298,10,9.023334,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2023417,14,12.51667,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2023472,10,9.026666,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2023690,1,12.51771,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2023691,1,12.51771,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2023866,14,12.51833,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2023877,1,12.51855,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2023957,8,10.3,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2023958,8,10.3,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2023959,8,10.3,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2024049,1,12.51939,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2024050,1,12.51939,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2024428,1,12.52023,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2025312,10,9.045,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2025370,14,10.30667,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2025456,1,12.52527,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2025500,10,9.048333,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2025551,3,9.05,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2025832,1,12.52779,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2026746,1,12.53114,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2027606,1,12.53534,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2027859,1,12.53618,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2029001,10,10.35333,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2029150,1,12.54038,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2029151,1,12.54038,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2029642,14,9.085,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2029943,1,12.54373,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2030017,15,10.36667,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2030067,10,10.36833,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2030460,14,10.37333,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2030620,14,12.54667,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2030980,1,12.54793,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2030981,1,12.54793,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2031179,1,12.54877,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2031426,15,12.55,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2031922,8,9.1,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2031965,14,12.55167,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2032343,8,10.4,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2032346,8,10.4,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2032348,8,10.4,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2032349,8,10.4,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2032350,8,10.4,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2032351,8,10.4,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2032354,8,10.4,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2033157,23,10.401872,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2033250,1,12.55717,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2033652,1,12.55884,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2033653,1,12.55884,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2034125,15,10.41667,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2034528,1,12.56136,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2034692,10,9.111668,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2034960,10,10.42833,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2035354,14,10.43167,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2035525,1,12.56556,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2035594,1,12.5664,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2035823,15,12.56667,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2036046,10,9.126667,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2036260,5,10.44,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2036570,1,12.56976,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2036571,1,12.56976,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2036572,1,12.56976,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2036808,10,9.136666,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2036857,10,10.445,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2036958,1,12.5706,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2037166,1,12.57144,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2037167,1,12.57144,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2037631,10,9.146667,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2037804,14,10.455,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2038166,14,10.46,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2038337,1,12.57479,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2038338,1,12.57479,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2038918,10,10.47,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2039328,14,9.168334,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2039466,1,12.57815,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2039663,1,12.57899,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2039717,1,12.57983,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2040141,1,12.58067,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2040312,10,10.48333,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2040392,1,12.58151,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2040547,3,9.1835,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2040608,1,12.58235,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2040609,1,12.58235,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2040739,1,12.58319,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2041439,10,9.196667,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2041570,10,10.49667,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2041722,1,12.58655,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2041723,1,12.58655,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2041912,15,10.5,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2041916,8,10.5,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2041917,8,10.5,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2042273,1,12.58823,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2042747,1,12.5899,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2043944,14,10.515,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2044224,6,9.21,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2044439,10,9.211667,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2044471,1,12.59494,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2044550,1,12.59578,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2044903,10,9.216667,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2045473,1,12.59914,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2045994,8,12.6,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2045996,8,12.6,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2045997,8,12.6,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2047178,3,9.2481,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2047360,15,9.25,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2047876,10,9.255,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2048352,14,12.60667,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2048363,1,12.60669,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2048396,10,9.261666,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2048418,10,9.263333,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2048718,14,10.56167,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2048895,1,12.60837,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2048896,1,12.60837,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2049306,10,9.271667,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2050306,10,10.57667,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2050307,10,10.57667,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2050402,1,12.61341,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2050540,15,9.283334,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2050877,10,9.29,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2051049,14,12.615,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2051597,1,12.61761,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2052006,15,9.3,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2052007,8,9.3,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2052170,23,10.599706,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2052688,8,10.6,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2052691,8,10.6,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2052692,8,10.6,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2052694,8,10.6,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2052983,14,12.62167,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2053736,14,10.60333,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2053991,1,12.62516,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2054067,10,9.32,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2054236,10,9.320001,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2055202,5,10.62,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2056408,1,12.63104,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2056965,10,9.349999,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2057105,15,10.65,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2057107,6,10.65,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2057693,10,9.358333,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2057993,1,12.63607,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2058054,14,10.65833,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2058409,1,12.63775,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2059246,10,9.373334,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2059389,1,12.64027,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2059390,1,12.64027,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2059814,2,10.68,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2059879,1,12.64279,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2060097,1,12.64363,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2060246,1,12.64447,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2060247,1,12.64447,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2060275,10,9.378333,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2060397,10,9.38,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2061590,8,10.7,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2061591,8,10.7,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2061595,8,10.7,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2061597,8,10.7,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2062310,1,12.65118,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2063159,1,12.6537,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2063160,1,12.6537,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2063835,10,9.403334,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2064376,1,12.6579,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2066150,10,9.43,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2066278,1,12.66293,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2066538,10,9.434999,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2066770,10,9.44,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2066800,15,10.75,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2066802,4,10.75,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2067173,10,9.443334,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2067280,1,12.66545,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2067281,1,12.66545,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2069484,1,12.67133,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2069631,10,10.79,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2069961,1,12.67301,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2070135,10,10.79667,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2070488,8,10.8,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2070489,8,10.8,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2070492,8,10.8,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2070494,8,10.8,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2070863,10,9.48,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2071670,1,12.67888,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2071823,10,9.486667,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2071979,5,10.81,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2073368,15,9.5,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2073374,8,9.5,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2073423,14,10.83,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2073424,6,10.83,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2073927,14,10.83667,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2074790,10,9.501667,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2074877,14,12.68833,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2075194,10,9.51,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2075441,1,12.6898,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2075442,1,12.6898,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2075749,14,12.69,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2076925,10,9.528334,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2078789,1,12.69903,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2079257,10,9.554999,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2079453,8,12.7,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2079455,8,12.7,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2079456,14,12.7,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2079458,8,12.7,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2079460,14,12.7,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2079461,8,12.7,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2079849,8,10.9,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2079852,8,10.9,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2079935,10,9.563333,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2080406,1,12.70155,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2081183,23,10.910588,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2081478,1,12.70491,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2081984,23,10.924719,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2082041,1,12.70659,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2082129,10,9.583334,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2082753,3,9.5919,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2083043,14,9.596667,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2083143,1,12.70994,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2084342,1,12.71246,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2085985,15,12.71667,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2086681,15,10.98333,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2087998,1,12.72338,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2088140,1,12.72421,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2088341,8,11,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2088401,3,9.6488,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2088611,1,12.72505,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2089158,1,12.72757,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2089557,14,9.66,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2089985,10,9.661667,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2090390,14,11.015,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2090498,10,9.669999,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2090553,1,12.73177,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2091674,2,11.03,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2091866,1,12.73597,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2091867,1,12.73597,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2091944,15,11.03333,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2092395,14,11.04,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2092557,1,12.73764,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2092707,3,11.0452,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2092952,1,12.73849,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2093501,8,9.7,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2093738,1,12.741,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2094022,1,12.74184,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2094944,3,9.7063,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2095653,10,9.711667,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2096770,1,12.75191,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2097423,1,12.75359,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2097676,8,11.1,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2097677,8,11.1,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2097679,8,11.1,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2098613,10,9.741667,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2098903,14,9.748334,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2099034,1,12.75947,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2099706,10,9.755,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2099829,6,11.12,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2101005,14,11.13333,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2101742,4,9.78,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2102404,10,11.145,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2102586,1,12.77122,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2102820,15,11.15,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2104265,1,12.7771,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2104761,14,9.801666,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2104787,10,9.803333,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2105047,3,11.1745,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2105589,14,12.78167,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2105590,14,12.78167,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2105876,10,9.816667,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2106374,10,9.826667,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2107290,1,12.78717,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2107657,8,11.2,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2108529,7,12.79,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2108829,14,11.20667,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2109606,1,12.79473,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2109834,14,9.865,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2109866,10,9.866667,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2109867,14,9.866667,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2110909,1,12.79892,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2111201,10,9.884999,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2111662,8,12.8,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2111664,8,12.8,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2112635,1,12.80228,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2112735,14,11.25167,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2113742,1,12.80648,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2113809,14,12.80667,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2114905,14,12.81167,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2114934,1,12.81236,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2117047,1,12.82159,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2117197,8,11.3,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2117199,8,11.3,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2117841,10,9.931666,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2117842,14,9.931666,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2117864,15,9.933333,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2118124,1,12.82495,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2118762,14,12.82667,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2119612,15,11.31667,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2119826,14,12.83167,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2120400,15,9.966667,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2121629,10,9.981667,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2121806,14,9.985,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2122563,14,9.991667,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2123048,8,10,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2123052,8,10,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2124142,10,10.005,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2125333,14,10.02333,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2125451,10,10.02667,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2126132,15,12.85,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2127089,14,12.85333,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2127183,8,11.4,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2127604,14,12.855,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2127960,10,10.055,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2129516,14,10.075,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2129883,10,10.08,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2129884,14,10.08,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2130399,15,10.08333,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2131311,14,10.09833,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2131790,8,10.1,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2131792,8,10.1,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2132303,15,11.45,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2132569,10,11.455,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2133848,10,10.11833,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2135323,10,10.13833,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2135503,14,10.14167,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2135799,10,10.145,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2136071,3,10.1482,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2136072,10,10.14833,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2136533,14,10.15833,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2137237,14,12.88333,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2138726,14,10.18833,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2139096,4,11.52,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2139610,5,11.53,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2140034,8,10.2,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2140035,8,10.2,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2142009,8,12.9,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2142014,2,12.9,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2142015,5,12.9,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2142016,8,12.9,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2142398,14,10.205,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2142978,15,11.58333,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2143255,14,11.58833,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2143383,10,10.215,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2143408,15,10.21667,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2143439,1,12.90385,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2143568,14,12.905,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2143634,6,11.59,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2143844,14,11.59167,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2144516,8,11.6,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2144517,8,11.6,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2144881,14,10.23167,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2144938,14,12.90833,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2145621,5,10.25,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2145740,14,11.60667,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2146125,14,10.25833,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2146330,3,10.2598,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2146415,15,11.61667,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2147269,14,10.27167,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2147431,14,11.62333,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2148272,10,10.29,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2148791,14,10.29667,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2148928,14,11.65,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2149264,8,10.3,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2149265,8,10.3,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2149267,8,10.3,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2149268,8,10.3,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2149269,8,10.3,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2149271,8,10.3,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2150495,6,11.67,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2150496,14,11.67,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2150595,10,10.31167,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2150705,1,11.67659,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2150747,10,10.31333,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2150748,14,10.31333,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2150943,4,10.32,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2151229,14,10.32333,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2151487,1,11.68331,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2151524,1,11.68583,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2151735,23,10.331217,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2151772,15,10.33333,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2152067,14,10.34,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2152828,8,11.7,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2152829,14,11.7,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2152830,8,11.7,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2152832,8,11.7,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2153211,5,10.35,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2153735,14,10.35833,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2154489,15,12.93333,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2154712,14,11.71833,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2155203,1,11.72864,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2155835,14,10.39167,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2155954,10,10.39833,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2156089,8,10.4,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2156090,8,10.4,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2156092,8,10.4,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2156155,14,11.73167,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2156345,14,11.73667,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2156357,1,11.73703,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2156646,14,11.74,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2156792,1,12.93827,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2157327,1,11.75046,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2157863,14,10.41167,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2158072,15,10.41667,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2158548,14,11.76833,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2159196,1,12.94583,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2159365,14,12.94667,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2159366,14,12.94667,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2159459,10,10.435,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2159867,14,12.95,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2160878,14,10.45833,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2161011,1,11.7916,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2161473,1,11.79831,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2161945,2,10.47,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2161985,8,11.8,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2161986,8,11.8,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2161988,8,11.8,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2161989,8,11.8,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2161991,8,11.8,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2162877,1,11.80167,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2163331,14,10.48167,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2163773,1,11.81846,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2164567,15,12.96667,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2164739,8,10.5,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2164740,8,10.5,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2164871,8,10.5,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2165428,1,11.84616,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2165967,1,12.97017,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2166388,1,12.97185,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2166767,1,11.86211,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2166769,1,11.86295,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2167165,1,11.86967,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2167176,14,11.87,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2167272,14,11.87333,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2167379,1,11.87638,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2167380,1,11.87638,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2167407,1,11.87806,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2167522,6,11.88,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2167799,1,11.88058,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2167822,1,11.88226,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2167846,1,11.88478,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2167900,1,11.88813,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2167992,1,11.88981,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2168021,5,11.89,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2168468,14,11.89167,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2168517,14,11.895,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2169091,8,11.9,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2169093,8,11.9,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2169099,8,11.9,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2169100,8,11.9,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2169101,8,11.9,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2169102,8,11.9,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2169103,8,11.9,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2169489,10,10.53833,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2169713,10,10.54,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2170330,1,11.9066,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2170660,14,12.99,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2170798,23,10.557313,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2170956,1,11.91416,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2170960,1,11.915,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2170975,1,11.91583,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2170979,15,11.91667,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2171093,1,12.99032,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2171362,14,10.56167,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2171499,1,11.92423,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2171500,1,11.92423,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2171585,14,11.925,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2171598,1,11.92507,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2171713,1,11.92843,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2172434,1,11.93094,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2172479,1,11.93346,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2172513,10,10.58,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2172694,1,11.93598,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2173367,1,11.94186,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2173375,1,11.9427,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2173393,1,11.94354,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2173403,14,11.945,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2173567,1,11.94773,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2173613,8,13,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2173622,8,13,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2174011,1,11.95025,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2174210,1,13.00039,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2174290,3,10.5976,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2174833,15,10.6,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2174847,8,10.6,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2174973,5,10.6,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2175709,1,11.96956,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2175710,1,11.96956,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2176345,15,10.61667,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2177096,1,13.0113,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2177414,1,11.99054,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2177440,1,11.99306,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2178024,4,10.64,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2178238,8,12,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2178239,8,12,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2178240,8,12,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2178242,8,12,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2178244,8,12,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2178246,8,12,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2178305,14,10.645,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2179108,14,13.02,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2179176,1,12.00482,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2179180,14,12.005,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2179281,3,12.0074,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2179310,1,12.00901,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2179735,15,10.66667,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2179894,10,10.66833,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2180041,1,12.01321,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2180239,15,12.01667,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2180316,1,12.01741,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2180972,14,12.02833,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2181023,14,13.02833,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2181114,1,12.02916,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2181416,14,10.68667,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2181566,10,10.68833,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2181697,1,12.03336,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2181725,1,12.03587,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2181802,1,12.03671,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2182027,1,12.04007,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2182091,1,12.04427,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2182162,15,13.03333,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2182165,14,10.69333,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2182198,14,10.695,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2182547,3,10.6992,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2182736,8,10.7,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2182812,1,12.05098,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2182836,1,12.05434,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2182843,14,12.055,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2183015,14,12.05667,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2183640,1,12.0619,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2183803,1,12.06525,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2183963,1,12.06693,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2183966,1,12.06777,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2184006,1,12.06945,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2184162,4,12.07,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2184502,14,12.07167,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2184622,10,10.71167,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2184839,1,12.08037,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2185144,15,13.05,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2185204,14,12.085,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2185499,1,13.0516,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2185574,1,12.09212,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2186032,14,12.09833,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2186033,14,12.09833,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2186592,8,12.1,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2186598,8,12.1,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2186603,8,12.1,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2186605,8,12.1,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2187220,15,10.75,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2187221,7,10.75,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2187419,1,12.10051,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2187591,1,12.10975,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2187898,1,13.06167,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2188211,1,12.11646,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2188223,1,12.1173,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2188373,1,12.11898,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2188605,14,10.77,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2188720,15,13.06667,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2188721,15,13.06667,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2189288,14,13.07,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2189320,15,12.13333,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2189321,14,12.13333,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2189351,1,12.13409,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2189541,1,13.07006,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2190167,14,13.075,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2190171,14,13.075,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2190417,1,12.14836,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2190451,2,12.15,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2190539,4,10.79,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2190979,6,13.08,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2190980,6,13.08,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2191036,1,12.15339,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2191291,8,10.8,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2191293,8,10.8,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2191295,15,10.8,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2192067,1,12.16934,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2192172,1,13.08601,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2192275,1,12.1727,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2192325,14,12.175,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2192468,1,12.17606,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2192588,1,12.17942,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2192823,14,12.18167,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2192907,1,12.18278,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2192936,1,12.18445,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2193081,1,12.18529,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2193118,14,12.18667,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2193387,6,12.19,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2193643,14,10.81667,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2193664,14,10.81833,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2193889,1,12.19537,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2193901,1,12.19621,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2194370,8,12.2,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2194371,8,12.2,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2194377,8,12.2,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2194441,8,12.2,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2194689,8,13.1,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2195061,1,12.20208,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2195187,1,12.20712,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2195375,10,10.82833,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2195516,14,12.21167,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2195679,1,12.21719,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2195693,1,12.21803,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2195922,14,10.83167,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2196200,1,12.22139,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2196372,1,12.22391,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2196387,1,12.22475,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2196577,14,13.10833,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2196706,14,10.84667,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2196744,1,12.22643,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2196764,1,12.22727,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2196795,1,12.22894,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2196911,10,10.85,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2196951,1,13.11036,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2197214,10,10.85333,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2197309,14,12.23167,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2197325,1,12.2323,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2197537,1,12.23818,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2197692,1,12.23902,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2197693,1,12.23902,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2197919,14,12.24,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2198369,1,12.24405,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2198378,1,12.24489,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2198379,1,12.24489,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2198400,1,12.24573,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2198550,1,12.24993,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2198881,1,12.25077,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2198892,1,12.25161,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2199052,1,12.25245,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2199069,1,12.25329,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2199070,1,12.25329,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2199138,14,13.12167,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2199285,1,12.25413,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2199319,1,12.25581,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2199320,1,12.25581,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2199464,1,12.25749,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2199571,14,10.88167,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2199775,4,12.26,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2199919,14,12.26167,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2199948,1,12.26252,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2199949,1,12.26252,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2200288,1,12.2642,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2200289,1,12.2642,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2200327,1,12.26504,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2200328,1,12.26504,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2200467,1,12.26588,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2200481,15,12.26667,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2200494,1,12.26672,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2200593,1,12.26924,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2200977,8,10.9,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2200978,8,10.9,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2200979,8,10.9,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2200980,8,10.9,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2201242,1,12.27176,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2201255,1,12.2726,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2201281,1,12.27344,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2201539,1,12.27931,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2201936,1,12.28267,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2201990,1,12.28519,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2201991,1,12.28519,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2201992,1,12.28519,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2202604,14,10.91167,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2202809,1,12.2919,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2202810,1,12.2919,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2202965,14,10.91833,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2203032,1,12.29358,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2203033,1,12.29358,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2203052,1,12.29442,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2203295,1,12.29694,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2203307,1,12.29778,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2203308,1,12.29778,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2203309,1,12.29778,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2203316,14,12.29833,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2203334,1,12.29862,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2203704,8,12.3,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2203714,8,12.3,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2203715,8,12.3,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2203717,8,12.3,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2203718,8,12.3,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2204005,14,10.93,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2204309,15,10.93333,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2204357,14,10.93667,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2204485,1,12.30114,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2204486,1,12.30114,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2204487,1,12.30114,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2204676,1,12.30365,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2204717,1,12.30533,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2205060,1,12.30953,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2205215,14,10.95,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2205638,14,13.15667,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2205808,1,12.31121,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2205978,1,12.31289,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2206090,6,13.16,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2206195,14,12.31667,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2206211,1,12.31709,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2206212,1,12.31709,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2206316,14,10.96333,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2206366,1,12.31793,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2206367,1,12.31793,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2206837,1,13.16492,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2207082,1,12.32296,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2207180,1,12.3238,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2207375,1,13.16828,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2207421,1,12.32548,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2207439,1,12.32632,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2207543,1,12.328,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2207565,1,12.32884,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2207710,1,12.32968,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2207717,3,12.3298,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2208170,1,12.3322,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2208273,1,12.33387,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2208470,1,12.33639,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2208471,1,12.33639,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2208472,1,12.33639,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2208673,1,12.33891,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2209051,1,12.34059,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2209065,1,12.34143,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2209291,1,12.34227,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2209310,1,12.34311,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2209497,8,11,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2209500,8,11,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2209679,14,13.18167,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2209768,1,12.34563,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2209788,1,12.34647,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2209789,1,12.34647,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2209823,1,12.34731,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2209824,1,12.34731,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2209825,1,12.34731,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2209878,1,12.34898,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2210400,1,12.35066,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2210401,1,12.35066,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2210662,1,12.35318,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2210676,14,12.35333,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2210989,1,13.18758,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2211079,1,12.35654,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2211093,14,12.35667,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2211159,14,11.01833,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2211349,1,12.35906,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2211694,1,12.3599,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2211937,1,12.36074,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2211966,1,12.36158,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2212116,1,12.36242,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2212154,14,12.36333,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2212240,1,12.3641,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2212260,1,12.36493,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2212261,1,12.36493,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2212364,1,13.19346,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2212502,1,12.36829,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2212530,1,12.36913,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2212621,1,12.36997,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2213130,1,12.37081,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2213193,8,13.2,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2213194,8,13.2,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2213196,8,13.2,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2213199,8,13.2,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2213200,8,13.2,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2213205,8,13.2,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2213207,5,13.2,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2213328,1,12.37333,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2213468,1,12.37501,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2213685,1,12.37585,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2213755,15,11.05,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2213850,1,12.37669,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2213851,1,12.37669,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2214197,1,13.20102,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2214441,1,12.38004,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2214442,1,12.38004,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2214443,1,12.38004,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2214539,1,12.38088,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2214540,1,12.38088,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2214857,1,13.20521,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2214887,1,13.20605,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2215159,1,12.3834,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2215223,1,12.38508,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2215634,1,12.38928,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2215922,6,13.21,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2216003,1,12.39096,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2216183,1,12.39264,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2216311,1,12.39431,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2216344,1,12.39515,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2216383,1,12.39599,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2216498,1,13.21193,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2216688,1,12.39851,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2216757,6,11.09,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2217138,14,13.21667,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2217427,8,12.4,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2218160,8,11.1,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2218163,8,11.1,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2218164,8,11.1,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2218232,3,13.224,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2218283,1,12.40019,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2218303,1,12.40103,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2218342,1,12.40187,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2218343,1,12.40187,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2218584,14,13.225,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2218652,1,12.40355,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2219100,1,12.40691,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2219241,1,12.40775,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2219744,1,12.41026,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2219780,1,12.4111,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2219934,1,12.41362,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2219966,1,12.41446,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2220384,1,12.41698,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2220723,1,12.4195,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2220825,1,12.42034,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2221296,1,13.23879,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2221539,1,12.42621,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2221827,1,13.24215,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2222274,1,12.43293,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2223009,1,12.43713,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2223010,1,12.43713,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2224770,1,12.44804,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2225249,15,11.16667,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2225250,15,11.16667,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2225344,1,13.26145,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2225700,14,13.26333,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2225759,1,12.45056,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2226026,1,12.45224,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2226205,1,12.45308,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2226774,15,11.18333,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2226825,14,11.18667,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2227800,1,12.46147,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2227948,8,11.2,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2227950,8,11.2,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2228122,1,12.46315,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2228123,1,12.46315,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2228281,14,13.27833,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2228705,15,12.46667,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2229030,1,12.46819,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2229279,1,12.46902,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2229348,14,13.285,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2230083,1,12.47154,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2230587,1,12.47406,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2230588,1,12.47406,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2230646,1,12.4749,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2230880,1,12.47574,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2231343,1,12.47742,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2231493,14,13.29834,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2231522,1,12.47826,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2231523,1,12.47826,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2231552,14,12.47833,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2231707,1,12.4791,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2232713,1,12.48413,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2232857,15,11.25,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2232858,15,11.25,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2233202,1,12.48581,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2233250,1,12.48665,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2233313,1,12.48749,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2233483,1,12.48833,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2233704,14,13.305,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2234115,1,12.49001,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2234346,1,12.49085,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2234589,1,12.49169,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2234691,1,12.49253,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2234734,14,12.49333,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2234875,1,12.49337,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2235057,1,12.49421,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2235294,1,12.49589,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2235367,6,11.28,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2235867,1,12.49924,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2236388,8,12.5,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2236393,8,12.5,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2236394,8,12.5,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2236513,14,11.295,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2236602,14,13.32167,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2236764,14,13.32333,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2236765,14,13.32333,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2237224,8,11.3,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2237225,8,11.3,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2237231,8,11.3,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2237579,1,12.50092,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2237752,1,12.50176,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2238447,10,11.31,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2238545,1,12.50512,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2238678,14,13.33333,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2238815,1,12.50764,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2239049,1,12.50932,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2239301,14,11.32,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2239729,1,12.511,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2239928,1,12.51184,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2240102,1,12.51268,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2240246,1,12.51352,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2240358,1,12.51435,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2240359,1,12.51435,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2240398,23,13.34112,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2240541,1,12.51519,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2240542,1,12.51519,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2241161,14,12.51833,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2241176,1,12.51855,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2241177,1,12.51855,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2241678,1,12.52191,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2242084,3,11.3541,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2242708,1,12.52527,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2242898,14,13.35667,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2243570,3,12.527,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2243796,14,11.375,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2243836,14,11.37667,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2244233,1,12.52862,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2245101,1,12.53198,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2245102,1,12.53198,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2245234,8,11.4,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2245235,8,11.4,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2245436,15,12.53333,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2246203,1,12.53702,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2246457,1,12.53786,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2246837,1,12.5387,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2246967,15,11.41667,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2246990,14,11.41833,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2247591,14,13.37833,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2247779,1,12.54122,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2248245,14,12.54333,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2248415,15,13.38333,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2248416,15,13.38333,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2248587,2,11.44,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2248634,1,12.54457,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2248635,1,12.54457,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2249216,1,12.54625,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2249480,14,11.45833,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2249513,14,12.54667,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2249717,1,12.54793,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2249800,1,12.54877,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2250888,1,12.55213,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2250978,1,12.55297,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2251202,14,12.55333,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2251494,8,13.4,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2251496,8,13.4,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2251498,8,13.4,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2251501,8,13.4,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2252342,1,12.55717,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2252799,1,12.55884,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2252921,8,11.5,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2252922,8,11.5,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2254037,1,12.56304,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2254232,10,11.50833,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2254401,10,11.51,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2254636,14,11.51167,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2254755,1,12.56556,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2255047,15,12.56667,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2256028,14,11.53833,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2256205,4,11.54,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2256403,1,12.5706,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2257462,14,13.43,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2258021,14,13.43333,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2258150,5,11.57,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2259038,2,11.58,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2259292,14,12.58167,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2259458,3,11.5843,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2259785,14,13.44333,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2259830,1,12.58319,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2260055,15,12.58333,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2260071,1,12.58403,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2260438,8,11.6,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2260787,1,12.58571,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2261234,14,11.61,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2261684,14,12.58833,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2263123,15,11.63333,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2263545,2,13.47,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2264210,1,12.59494,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2264211,1,12.59494,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2264212,1,12.59494,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2264598,1,12.59662,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2264658,14,13.47833,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2265702,14,11.66167,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2265782,15,11.66667,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2266141,8,12.6,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2266148,8,12.6,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2266149,8,12.6,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2266150,8,12.6,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2266155,8,12.6,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2266156,8,12.6,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2267196,1,11.68583,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2267534,1,12.60333,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2267841,1,11.69086,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2268071,1,11.69758,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2268430,8,11.7,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2268432,8,11.7,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2268550,8,13.5,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2268552,8,13.5,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2268553,8,13.5,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2268557,8,13.5,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2268558,5,13.5,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2268666,1,12.60585,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2268667,1,12.60585,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2269790,1,11.70681,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2269823,1,11.70933,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2270068,6,12.61,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2270294,3,13.5097,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2271988,1,12.61677,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2272551,14,11.74,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2272668,1,12.61844,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2272769,14,11.74333,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2272867,1,12.61928,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2272868,1,12.61928,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2272962,14,11.74833,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2273142,4,11.75,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2273357,1,11.75046,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2273417,14,11.755,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2273835,15,13.53333,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2274452,1,12.62264,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2274535,1,12.62348,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2274795,14,11.77333,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2274835,1,11.77565,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2274839,14,11.77667,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2275227,14,13.545,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2275329,14,11.78333,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2275380,14,12.625,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2275392,1,12.62516,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2275502,14,11.78667,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2275527,14,11.78833,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2275819,2,13.55,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2276136,14,11.79667,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2276238,1,11.79999,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2276398,15,11.8,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2276599,8,11.8,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2276601,8,11.8,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2277749,15,13.56667,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2278092,14,11.81333,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2278284,1,12.63272,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2278285,1,12.63272,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2278657,1,12.63439,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2279026,14,13.57333,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2279082,14,11.82833,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2279152,1,12.63607,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2279662,1,12.63775,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2279720,1,11.83525,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2279884,1,11.83945,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2280063,14,13.58,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2280461,14,13.58333,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2281454,1,11.8512,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2281721,14,11.85667,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2282401,1,12.64699,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2282635,8,13.6,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2282640,6,13.6,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2282642,8,13.6,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2282645,8,13.6,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2282646,8,13.6,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2282649,8,13.6,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2282651,8,13.6,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2282760,1,11.87218,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2282956,1,11.87722,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2283252,1,12.64866,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2284085,14,13.61333,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2284186,1,11.88226,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2284213,1,11.88478,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2284214,1,11.88478,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2284469,1,11.88897,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2284747,1,11.89653,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2284773,1,11.89821,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2285176,1,12.65454,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2285547,1,12.65622,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2285632,14,12.65667,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2285667,14,13.62833,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2286062,1,12.65874,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2286237,8,11.9,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2286238,8,11.9,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2286239,8,11.9,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2286249,8,11.9,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2286250,8,11.9,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2286251,8,11.9,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2286254,8,11.9,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2286255,8,11.9,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2286256,8,11.9,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2286611,14,13.63667,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2286612,14,13.63667,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2287374,1,11.9024,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2287524,1,11.90408,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2287552,1,11.90576,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2287584,1,11.90912,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2287877,1,11.91248,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2287878,1,11.91248,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2287934,15,11.91667,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2287935,14,11.91667,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2287988,1,12.66293,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2288138,14,12.66333,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2288678,1,11.92591,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2288767,1,11.92759,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2289009,14,11.93,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2289127,1,11.93094,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2289182,1,11.93598,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2289388,14,11.94,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2289389,5,11.94,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2289589,15,12.66667,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2289687,1,11.94438,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2289823,14,13.66,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2290140,1,11.95781,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2290552,14,13.66833,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2290656,1,11.96116,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2290948,1,12.66965,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2291847,1,11.97711,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2292075,1,11.98215,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2292207,1,12.67217,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2292273,1,11.98803,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2292723,14,13.685,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2292804,1,11.99558,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2292828,1,11.9981,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2292917,1,11.99978,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2293161,8,12,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2293166,8,12,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2293167,8,12,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2293170,8,12,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2293171,2,12,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2293280,1,12.67469,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2294052,1,12.00062,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2294079,1,12.0023,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2294083,1,12.00314,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2294115,1,12.00482,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2294276,1,12.00733,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2294550,1,12.01069,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2294555,1,12.01153,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2294616,15,13.7,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2294620,8,13.7,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2294621,8,13.7,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2294624,8,13.7,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2294627,8,13.7,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2294630,8,13.7,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2294631,8,13.7,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2294766,1,12.01321,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2294792,1,12.01489,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2294828,1,12.67888,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2294987,1,12.01825,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2294988,1,12.01825,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2295013,1,12.01908,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2295057,14,12.02,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2295697,1,12.02412,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2295751,14,13.70167,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2296307,1,12.03084,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2296363,14,12.035,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2296470,15,12.68333,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2296750,14,13.71,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2296805,1,12.04091,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2296834,1,12.04259,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2296966,1,12.04763,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2297214,14,12.05333,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2297804,1,12.0619,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2297811,14,12.06333,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2297841,1,12.06525,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2298066,14,12.07,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2298418,1,12.07617,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2298421,14,12.07667,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2298461,1,12.07953,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2298607,1,12.68896,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2298874,1,12.6898,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2298953,1,12.0896,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2299214,1,12.09296,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2299987,8,12.1,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2299998,8,12.1,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2299999,8,12.1,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2300032,6,13.73,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2300678,14,13.735,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2300910,1,12.10219,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2300914,1,12.10303,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2301029,14,12.10667,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2301067,1,12.10891,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2301321,1,12.11142,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2301343,14,13.74,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2301554,1,12.11478,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2301770,15,12.11667,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2301801,1,12.11898,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2301973,14,12.12167,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2302204,1,12.12486,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2302223,1,12.12569,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2302345,1,12.12989,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2302938,1,12.13745,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2303448,1,12.14248,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2303694,1,12.14584,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2303845,15,12.15,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2303883,1,12.69987,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2303885,1,12.69987,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2304176,15,13.76667,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2304382,8,12.7,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2304384,8,12.7,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2304385,8,12.7,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2304386,8,12.7,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2304388,8,12.7,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2304394,8,12.7,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2305015,1,12.16347,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2305193,1,12.16683,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2305301,1,12.17019,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2305514,1,12.17522,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2306065,23,12.182378,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2306820,1,12.19369,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2306828,1,12.19453,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2306848,1,12.19537,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2307137,8,12.2,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2307138,8,12.2,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2307140,8,12.2,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2307142,8,12.2,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2307881,1,12.70659,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2308065,14,12.70667,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2308131,8,13.8,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2308133,8,13.8,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2308134,8,13.8,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2308136,8,13.8,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2308137,8,13.8,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2308138,8,13.8,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2308197,1,12.2004,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2308473,1,12.20796,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2308721,1,12.21216,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2308743,1,12.213,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2308801,1,12.21635,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2308916,1,12.21971,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2309352,1,12.22223,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2309641,1,12.22811,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2310039,14,13.81167,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2310274,1,12.23482,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2310434,15,13.81667,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2310546,14,13.81833,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2310843,1,12.24154,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2310866,1,12.24322,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2311023,1,12.24489,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2311274,1,12.24825,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2311296,1,12.24909,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2311375,1,12.24993,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2311578,1,12.25077,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2311596,1,12.25161,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2311687,4,13.83,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2311785,1,12.25413,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2311791,1,12.25497,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2312069,1,12.25581,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2312107,14,12.25833,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2312188,14,13.83667,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2312248,1,12.25916,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2312297,1,12.26,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2312299,1,12.26,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2312676,1,12.26084,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2312697,1,12.26168,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2312707,1,12.26252,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2312733,1,12.26336,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2312734,1,12.26336,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2312735,1,12.26336,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2312810,14,13.84167,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2312849,14,13.84333,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2312875,1,12.2642,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2312876,1,12.2642,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2313050,1,12.26588,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2313051,1,12.26588,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2313072,15,12.26667,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2313213,1,12.7175,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2313425,15,13.85,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2313880,1,12.2684,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2313886,1,12.26924,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2313887,1,12.26924,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2314323,1,12.27092,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2314335,14,12.27167,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2314560,1,12.27344,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2314578,1,12.27427,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2314723,1,12.27511,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2314729,1,12.27595,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2314760,1,12.27679,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2314883,14,13.86333,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2314884,14,13.86333,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2314929,1,12.27931,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2315037,1,12.28099,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2315065,1,12.28183,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2315074,1,12.28267,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2315075,1,12.28267,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2315181,1,12.28435,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2315343,14,13.86667,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2315413,1,12.28603,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2315928,1,12.29442,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2316217,1,12.2961,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2316607,8,12.3,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2316608,8,12.3,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2316609,8,12.3,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2316610,8,12.3,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2316908,1,12.72925,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2316910,1,12.72925,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2317195,1,12.3003,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2317273,1,12.30114,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2317274,1,12.30114,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2317401,14,12.73,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2317831,1,12.30953,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2318285,1,12.31205,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2318303,1,12.31289,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2318304,1,12.31289,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2318500,1,12.31541,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2318655,14,12.31667,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2318767,1,12.31793,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2318908,8,13.9,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2318912,8,13.9,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2318913,8,13.9,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2318915,8,13.9,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2318916,8,13.9,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2319038,14,12.32,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2319122,1,12.32128,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2319404,1,12.32548,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2319414,3,12.3262,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2319443,1,12.73429,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2319581,1,12.328,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2319615,1,12.32884,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2319616,1,12.32884,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2320124,1,12.32968,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2320125,1,12.32968,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2320222,1,12.33052,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2320223,1,12.33052,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2320302,1,12.33136,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2320566,1,12.33639,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2321009,14,12.34,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2321305,1,12.34227,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2321329,1,12.34311,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2321330,1,12.34311,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2321467,14,12.74,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2321676,1,12.34563,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2321720,1,12.34731,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2322166,14,13.935,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2322167,14,13.935,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2322202,14,13.93667,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2322240,1,12.3515,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2322303,1,12.35318,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2322304,1,12.35318,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2322419,1,12.35486,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2322452,1,12.3557,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2322570,1,12.74184,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2322699,1,12.35738,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2322724,4,13.94,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2322846,1,12.35822,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2322991,14,12.74333,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2323159,1,12.36074,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2323160,1,12.36074,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2323176,3,12.3615,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2323184,1,12.36158,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2323288,14,13.94667,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2323354,1,12.36326,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2323360,14,12.36333,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2323476,15,13.95,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2323537,1,12.36493,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2323638,1,12.7452,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2323639,1,12.7452,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2323714,23,12.366081,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2323738,1,12.36745,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2323902,7,12.37,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2324144,1,12.37165,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2324304,1,12.37249,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2324305,1,12.37249,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2324600,1,12.37417,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2324601,1,12.37417,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2324636,1,12.37501,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2324908,1,12.37585,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2324944,1,12.37669,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2325651,1,12.38256,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2325820,14,13.97333,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2325852,14,13.975,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2325853,14,13.975,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2326215,14,13.98,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2326216,14,13.98,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2326256,1,12.38844,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2326369,14,13.98333,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2326538,1,12.39096,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2327241,1,12.75611,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2327357,1,12.39767,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2327358,1,12.39767,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2327865,1,12.39935,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2328184,8,12.4,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2328186,15,12.4,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2328190,8,12.4,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2328191,8,12.4,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2328193,8,12.4,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2328194,8,12.4,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2328238,8,14,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2328242,8,14,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2328245,8,14,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2329330,14,14.00667,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2329377,1,12.40355,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2329421,14,14.00833,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2329528,1,12.76283,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2329749,1,12.76367,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2329873,1,12.40523,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2330070,1,12.40691,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2330096,1,12.40775,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2330221,1,12.40775,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2330438,14,14.02333,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2330688,1,12.4111,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2330845,1,12.41194,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2331055,1,12.76787,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2331434,14,14.04167,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2331630,14,14.04833,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2331671,15,14.05,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2331672,15,14.05,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2331727,1,12.41782,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2331916,1,12.4195,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2331917,1,12.4195,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2332300,1,12.42034,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2332518,14,14.06333,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2332550,15,14.06667,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2332551,15,14.06667,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2332634,1,12.42286,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2332801,1,12.4237,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2332802,1,12.4237,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2333250,1,12.7729,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2333414,1,12.42789,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2334035,14,14.09667,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2334446,8,14.1,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2334447,8,14.1,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2334451,8,14.1,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2334452,8,14.1,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2334455,8,14.1,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2334457,8,14.1,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2334459,8,14.1,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2334461,8,14.1,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2334525,1,12.43377,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2334526,1,12.43377,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2334906,1,12.43629,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2334947,1,12.43713,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2335168,14,14.105,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2335389,1,12.43964,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2335663,14,14.115,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2335752,15,14.11667,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2336132,14,14.12167,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2336192,1,12.443,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2336846,14,14.14,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2336904,14,14.14167,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2337114,1,12.44972,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2337161,6,12.45,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2337283,15,14.15,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2337284,6,14.15,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2337468,14,14.15167,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2337521,1,12.45056,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2337724,23,12.450867,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2337741,1,12.4514,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2337763,14,12.45167,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2338463,1,12.45643,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2339633,1,12.46315,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2339634,1,12.46315,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2339720,8,14.2,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2339721,8,14.2,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2339726,8,14.2,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2339728,7,14.2,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2339998,1,12.46483,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2340110,1,12.46567,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2340277,1,12.46651,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2340303,15,12.46667,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2340398,14,14.20167,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2340493,1,12.46819,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2340494,1,12.46819,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2341424,15,14.23333,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2341425,15,14.23333,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2342006,1,12.4749,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2342228,1,12.47658,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2342429,14,14.26,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2342430,14,14.26,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2342511,1,12.47826,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2342821,1,12.4791,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2342880,14,14.275,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2343164,14,12.79833,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2343525,14,14.29167,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2343540,14,14.29333,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2343859,15,12.48333,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2343947,8,14.3,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2343950,8,14.3,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2343951,8,14.3,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2343952,8,14.3,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2343955,7,14.3,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2344012,1,12.48413,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2344112,8,12.8,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2344113,8,12.8,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2344115,8,12.8,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2344119,8,12.8,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2344121,8,12.8,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2344123,8,12.8,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2344237,1,12.48497,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2344238,1,12.48497,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2345263,14,12.80167,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2346038,15,14.35,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2346583,4,14.37,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2346593,1,12.49001,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2346632,1,12.49085,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2346735,1,12.80816,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2346921,14,12.80833,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2347006,14,14.375,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2347039,1,12.49253,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2347362,1,12.49421,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2348304,8,14.4,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2348306,8,14.4,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2348307,8,14.4,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2348309,8,14.4,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2348310,8,14.4,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2348559,8,12.5,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2348561,8,12.5,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2348564,7,12.5,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2348817,14,14.40833,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2349433,1,12.50008,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2349642,14,14.435,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2350031,1,12.50344,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2350032,1,12.50344,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2350144,15,14.45,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2350751,1,12.50596,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2350943,1,12.5068,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2350990,23,12.507391,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2351542,6,14.49,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2352005,1,12.82243,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2352143,14,12.51167,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2352155,1,12.51184,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2352238,8,14.5,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2352240,8,14.5,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2352243,8,14.5,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2352246,8,14.5,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2352925,1,12.51352,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2353456,14,12.51667,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2353724,1,12.51771,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2353807,14,12.82833,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2354009,15,14.53333,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2354247,14,14.54,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2354543,15,14.55,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2354747,3,14.5576,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2354749,14,14.55833,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2355111,14,14.56833,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2355258,1,12.52359,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2355384,1,12.52443,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2355707,1,12.52527,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2355864,14,14.585,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2356273,1,12.52779,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2356646,8,14.6,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2356647,8,14.6,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2356654,8,14.6,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2356655,8,14.6,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2356656,8,14.6,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2356663,8,14.6,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2357185,6,12.84,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2357186,6,12.84,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2357187,6,12.84,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2357284,14,14.60833,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2357474,15,14.61667,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2357782,14,14.62333,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2358044,1,12.5345,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2358541,14,12.53667,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2358689,1,12.53702,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2358755,14,14.65333,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2358764,14,14.655,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2358880,1,12.5387,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2358961,1,12.53954,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2359248,15,14.66667,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2359420,14,14.67167,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2359497,14,14.67667,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2359502,14,14.67833,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2359526,2,14.68,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2359697,23,14.683565,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2359777,14,12.54,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2360090,8,14.7,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2360092,8,14.7,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2360483,15,12.85,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2360565,1,12.54122,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2361056,1,12.54373,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2361435,1,12.54541,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2361581,1,12.85349,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2361622,1,12.54625,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2362245,6,14.75,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2362448,14,14.75167,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2362459,14,14.75333,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2362865,1,12.85769,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2362866,1,12.85769,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2362908,14,14.76167,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2363351,1,12.55297,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2363469,14,12.86,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2363720,14,14.78833,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2364150,8,14.8,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2364151,6,14.8,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2364156,8,14.8,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2364157,8,14.8,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2364159,8,14.8,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2364161,8,14.8,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2364233,1,12.55549,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2365411,15,14.81667,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2365581,5,14.82,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2365858,5,14.83,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2366226,14,12.56167,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2366600,1,12.56388,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2367128,14,14.865,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2367136,15,14.86667,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2367161,14,14.86833,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2367315,1,12.56556,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2367316,1,12.56556,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2367834,1,12.56808,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2367879,1,12.87195,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2368156,1,12.56976,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2368416,14,14.895,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2368655,8,14.9,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2368785,8,14.9,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2368786,8,14.9,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2368787,15,14.9,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2368788,8,14.9,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2368790,8,14.9,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2368792,8,14.9,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2369571,14,14.905,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2369749,14,14.91,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2369971,1,12.57563,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2369972,1,12.57563,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2370183,14,14.92,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2370452,14,14.93167,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2370671,14,14.93667,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2371310,14,14.96,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2371334,1,12.57983,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2371757,14,14.97833,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2371818,1,12.58067,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2371908,6,14.98,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2372570,15,12.58333,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2372967,8,15,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2372974,8,15,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2372977,8,15,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2373023,1,12.88706,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2373808,3,15.0027,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2373810,14,15.00333,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2374152,14,15.01667,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2374262,5,15.02,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2374375,14,15.02333,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2374405,14,15.03,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2374972,14,15.045,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2375484,15,15.06667,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2376015,14,12.89667,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2376046,14,15.08667,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2376679,8,15.1,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2376680,8,15.1,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2376681,8,15.1,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2376682,8,15.1,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2376686,8,15.1,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2376688,8,15.1,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2376690,8,15.1,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2376758,1,12.59494,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2376760,1,12.59494,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2376761,1,12.59494,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2377277,8,12.9,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2377278,8,12.9,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2377281,8,12.9,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2377282,8,12.9,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2377284,8,12.9,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2377285,8,12.9,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2377835,1,12.59998,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2377987,8,12.6,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2377993,8,12.6,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2377994,8,12.6,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2378359,15,15.11667,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2378383,14,15.12,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2378790,1,12.60082,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2379625,14,15.16,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2379811,1,12.90553,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2380327,4,15.18,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2381250,8,15.2,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2381251,8,15.2,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2381255,8,15.2,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2381256,8,15.2,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2381257,8,15.2,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2381258,8,15.2,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2381259,8,15.2,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2381260,8,15.2,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2381264,8,15.2,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2382048,1,12.61005,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2382054,5,15.21,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2382150,14,12.91167,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2382151,14,12.91167,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2382374,1,12.61089,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2382466,4,15.22,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2382812,1,12.91477,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2383007,1,12.61341,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2383056,14,15.22667,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2383260,1,12.91645,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2383261,1,12.91645,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2383332,1,12.91728,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2383576,14,15.24333,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2383747,1,12.61593,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2384180,2,15.25,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2384635,1,12.61844,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2385095,14,12.92333,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2385195,14,15.28667,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2385480,1,12.62012,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2385749,1,12.6218,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2386208,8,15.3,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2386209,8,15.3,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2386215,8,15.3,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2386216,8,15.3,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2386460,1,12.62516,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2387311,15,15.31667,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2387430,6,15.32,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2387789,14,15.32833,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2387991,14,15.335,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2388321,5,15.35,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2388322,6,15.35,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2388590,15,12.93333,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2388950,1,12.63188,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2389650,5,15.39,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2390099,8,15.4,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2390103,8,15.4,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2390105,8,15.4,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2390106,8,15.4,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2390231,8,15.4,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2390237,8,15.4,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2390813,15,15.41667,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2390934,6,15.43,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2391105,14,15.43167,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2391436,14,15.44833,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2391464,6,15.45,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2391573,14,12.94167,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2392589,6,15.48,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2392720,1,12.64195,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2392847,14,15.49167,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2393147,1,12.64363,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2393245,8,15.5,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2393246,8,15.5,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2393247,8,15.5,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2393249,8,15.5,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2393252,8,15.5,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2393254,8,15.5,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2394349,14,15.51667,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2394642,14,15.525,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2394643,14,15.525,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2394652,14,15.52667,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2394693,6,15.53,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2394951,23,15.531425,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2394997,14,15.53833,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2395094,1,12.95086,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2395189,14,15.54167,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2395239,1,12.65118,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2395491,14,12.65167,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2396334,5,15.58,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2396518,15,15.58333,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2396519,15,15.58333,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2396533,14,15.585,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2396606,14,12.655,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2396627,1,12.65538,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2397404,8,15.6,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2397405,8,15.6,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2397407,8,15.6,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2397415,8,15.6,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2397416,2,15.6,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2397976,6,15.61,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2398025,1,12.65958,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2398306,15,15.61667,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2399456,14,15.65167,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2399499,1,12.66293,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2399974,15,15.66667,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2400345,14,15.67667,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2401280,1,12.66797,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2401470,8,15.7,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2401471,8,15.7,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2401473,8,15.7,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2401474,8,15.7,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2402610,2,15.72,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2402960,14,15.73667,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2403065,7,15.74,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2403422,14,15.75167,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2403597,14,12.67333,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2403924,14,15.77167,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2403944,1,12.67469,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2404233,14,15.78667,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2404399,6,15.79,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2404750,8,15.8,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2404751,8,15.8,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2404753,8,15.8,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2404756,8,15.8,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2404758,8,15.8,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2404760,8,15.8,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2404761,8,15.8,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2404766,8,15.8,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2404767,5,15.8,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2405408,15,15.81667,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2405409,15,15.81667,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2405809,1,12.67804,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2405920,14,15.835,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2406287,1,12.98696,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2406319,14,15.85167,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2406335,14,15.855,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2406346,14,15.85667,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2406877,6,15.87,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2407225,14,15.87833,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2407429,15,15.88333,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2407543,14,15.89,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2407843,14,15.895,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2408165,8,15.9,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2408168,8,15.9,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2408169,6,15.9,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2408171,8,15.9,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2408175,8,15.9,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2408176,8,15.9,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2408178,6,15.9,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2408179,6,15.9,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2408538,14,15.905,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2408855,14,15.915,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2409416,1,12.99787,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2409514,1,12.68728,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2409516,1,12.68728,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2410024,1,12.68896,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2410556,8,13,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2410557,8,13,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2410558,8,13,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2410560,8,13,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2410561,8,13,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2411253,1,12.69148,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2411643,8,16,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2411644,8,16,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2411645,4,16,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2411646,8,16,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2411648,8,16,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2411649,8,16,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2411652,8,16,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2411655,8,16,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2413010,1,12.69651,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2413279,14,16.04,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2413419,14,16.045,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2413519,14,16.05167,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2413632,14,13.005,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2413847,15,16.06667,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2414381,8,12.7,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2414382,8,12.7,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2414383,8,12.7,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2414387,8,12.7,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2414388,8,12.7,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2414390,8,12.7,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2414416,6,16.08,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2414483,15,16.08333,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2414787,1,13.00878,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2414839,1,13.00962,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2415320,8,16.1,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2415322,8,16.1,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2416794,1,12.70575,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2416945,1,12.70659,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2417318,14,16.15,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2417880,3,16.1636,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2418199,14,16.17667,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2418248,6,16.18,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2418249,6,16.18,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2419092,8,16.2,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2419098,8,16.2,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2419101,8,16.2,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2420213,14,16.21833,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2420710,14,16.23167,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2421243,14,12.71833,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2421244,14,12.71833,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2421545,15,16.25,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2421914,6,16.26,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2422186,14,13.03833,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2422696,14,13.04,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2422716,6,16.29,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2423245,8,16.3,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2423246,8,16.3,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2423247,8,16.3,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2423249,8,16.3,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2423845,7,16.31,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2424017,14,16.32,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2424333,15,16.33333,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2424654,14,16.34667,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2425077,2,16.36,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2425078,5,16.36,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2425310,15,13.05,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2425335,1,12.73009,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2425573,14,16.37833,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2425905,5,16.39,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2426288,8,16.4,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2426289,8,16.4,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2426297,8,16.4,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2426407,14,12.73333,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2426983,14,16.41667,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2427030,5,16.42,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2427723,1,12.7368,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2427890,14,16.44667,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2428032,14,13.06167,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2428047,14,16.45,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2428547,4,16.47,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2428897,2,16.49,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2428962,1,12.74016,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2429012,14,13.065,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2429094,14,16.49833,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2429309,1,12.741,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2429626,8,16.5,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2429627,8,16.5,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2429628,8,16.5,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2429630,8,16.5,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2429631,4,16.5,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2429633,8,16.5,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2430013,1,12.74268,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2430118,14,16.50833,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2430396,14,16.51667,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2430425,1,12.74436,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2430636,14,13.07333,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2430708,1,12.74604,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2430853,1,12.74688,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2430982,14,13.075,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2431105,14,16.53,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2431624,15,16.55,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2431625,6,16.55,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2431792,14,16.55167,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2431983,14,13.08,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2432168,15,16.56667,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2432243,1,13.08098,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2433142,1,12.75443,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2433223,14,12.755,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2433834,8,16.6,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2433835,15,16.6,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2433838,8,16.6,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2433839,15,16.6,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2433844,8,16.6,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2433847,7,16.6,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2433878,4,13.09,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2434432,14,16.61667,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2434462,5,16.62,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2434827,6,16.63,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2435180,14,16.64667,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2435413,14,16.65167,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2435581,2,16.66,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2436044,8,13.1,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2436049,8,13.1,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2436050,8,13.1,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2436055,8,13.1,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2436057,8,13.1,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2436059,8,13.1,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2436145,1,12.76031,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2436178,22,16.674088,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2436291,4,16.68,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2436292,6,16.68,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2436818,1,12.76199,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2437270,8,16.7,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2437275,8,16.7,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2438094,6,16.71,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2438095,6,16.71,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2438374,1,12.76703,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2438485,15,16.71667,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2438978,22,16.732097,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2440009,15,16.76667,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2440546,14,12.77333,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2440680,14,16.79,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2441279,1,12.77542,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2441319,8,16.8,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2441320,8,16.8,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2441325,4,16.8,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2441848,4,16.81,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2441849,2,16.81,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2442038,14,16.81333,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2442531,15,16.83333,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2442581,14,12.78,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2442785,5,16.84,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2442868,14,13.13167,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2443120,1,12.7813,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2443262,6,16.86,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2443747,2,16.87,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2444791,1,12.78717,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2445231,8,16.9,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2445232,8,16.9,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2445630,14,16.91,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2445631,6,16.91,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2447432,14,12.795,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2447578,1,12.79557,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2447978,14,16.985,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2448052,1,12.79725,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2449038,8,17,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2449042,8,17,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2449043,8,17,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2449050,8,17,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2449051,15,17,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2449776,8,12.8,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2451399,4,17.03,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2451935,1,13.18255,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2452236,15,17.05,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2453899,8,17.1,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2453901,8,17.1,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2453902,8,17.1,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2453903,8,17.1,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2453904,8,17.1,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2454150,1,12.8132,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2454797,14,13.19667,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2454904,1,13.1985,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2455258,1,13.19934,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2455353,22,17.142209,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2455469,8,13.2,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2455472,8,13.2,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2455473,8,13.2,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2455474,8,13.2,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2455482,8,13.2,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2455484,8,13.2,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2455485,8,13.2,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2455487,8,13.2,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2455490,8,13.2,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2455652,6,17.15,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2456121,14,17.17333,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2456168,6,12.82,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2456248,14,17.175,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2456284,6,17.18,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2456518,15,17.18333,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2456701,1,13.20353,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2456940,1,12.82243,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2457018,14,17.19833,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2457166,8,17.2,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2457172,8,17.2,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2457198,1,12.82327,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2458137,15,17.23333,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2458363,14,13.21,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2458602,6,17.25,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2459245,1,13.21613,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2459286,5,17.28,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2459287,6,17.28,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2459440,14,17.28833,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2459543,1,13.21696,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2460101,2,13.22,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2460219,8,17.3,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2460220,8,17.3,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2460221,8,17.3,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2460643,14,17.30667,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2460655,1,12.83334,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2460754,5,17.31,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2460832,14,17.31667,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2461397,14,17.33667,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2461461,14,17.34167,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2461520,14,13.225,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2461596,1,13.2262,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2461597,1,13.2262,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2461641,2,17.35,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2461954,2,17.36,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2461994,14,17.36333,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2462136,14,17.36667,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2462165,4,17.37,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2463184,8,17.4,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2463187,8,17.4,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2463313,8,17.4,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2463314,8,17.4,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2463315,8,17.4,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2463872,14,17.40833,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2463983,1,13.23795,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2464095,14,17.415,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2464269,4,17.42,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2464491,14,17.42667,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2464505,14,17.42834,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2464690,14,17.43167,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2464691,14,17.43167,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2464963,6,17.44,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2464964,4,17.44,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2464965,7,17.44,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2465131,14,13.245,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2465796,6,17.46,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2465847,14,17.46667,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2466099,2,17.48,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2466270,5,17.49,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2466388,14,17.49167,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2466694,1,12.84929,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2466805,8,17.5,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2466806,8,17.5,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2466807,8,17.5,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2466808,8,17.5,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2466809,8,17.5,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2466971,14,13.25667,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2467326,15,17.51667,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2467463,1,13.25978,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2467577,14,12.85167,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2467767,4,13.26,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2468182,6,17.54,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2468236,14,17.545,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2468522,14,17.55333,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2469040,6,17.57,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2469304,15,17.58333,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2469620,7,17.59,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2469766,14,17.59833,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2470012,8,17.6,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2470013,8,17.6,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2470014,8,17.6,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2470015,2,17.6,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2470674,14,17.62,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2470913,14,12.86333,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2471270,4,17.63,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2471310,15,17.63333,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2471349,2,17.64,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2472029,14,13.27833,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2472466,14,12.86833,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2472467,14,12.86833,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2473010,14,17.69,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2473145,14,17.69833,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2473344,8,17.7,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2473346,2,17.7,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2473347,15,17.7,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2474420,1,12.87447,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2474477,15,17.71667,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2474717,14,17.72833,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2475458,2,17.76,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2476529,5,17.79,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2476614,1,12.88035,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2476759,8,13.3,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2476760,8,13.3,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2476762,8,13.3,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2476778,14,17.79833,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2477076,1,12.88287,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2477136,4,13.3,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2477137,8,13.3,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2477138,8,13.3,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2477243,8,17.8,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2477244,8,17.8,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2477246,6,17.8,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2477247,2,17.8,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2477248,8,17.8,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2477757,5,17.81,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2477949,15,17.81667,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2478036,1,12.88623,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2478252,6,17.83,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2478253,5,17.83,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2478366,4,17.84,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2478459,14,13.30167,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2479757,22,17.880653,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2479799,14,17.88833,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2480237,8,17.9,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2480541,7,13.31,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2480832,4,17.91,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2480833,2,17.91,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2482052,14,17.94667,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2482078,14,17.95,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2482179,14,12.9,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2482180,8,12.9,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2482185,8,12.9,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2482189,8,12.9,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2482190,8,12.9,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2482191,8,12.9,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2482192,8,12.9,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2482194,8,12.9,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2483140,2,17.98,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2483402,2,17.99,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2483585,22,17.995334,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2483700,14,13.32833,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2484059,8,18,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2484060,8,18,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2484063,8,18,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2484069,2,18,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2484070,4,18,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2484546,14,12.905,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2485170,14,13.33667,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2485532,23,18.00435,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2486043,6,18.04,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2486697,7,18.06,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2486890,14,18.06667,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2486891,15,18.06667,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2486922,14,18.07,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2487319,1,12.91393,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2487376,14,18.08333,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2487520,6,18.09,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2487713,14,18.09333,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2488075,8,18.1,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2488076,8,18.1,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2488077,8,18.1,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2488080,5,18.1,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2488084,15,18.1,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2488359,15,13.35,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2488360,15,13.35,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2488727,5,18.11,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2488826,1,12.9198,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2489009,4,12.92,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2489733,5,18.15,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2490000,15,18.16667,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2490485,4,18.18,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2491261,8,18.2,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2491263,8,18.2,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2491265,8,18.2,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2491266,8,18.2,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2491267,8,18.2,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2492264,6,13.37,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2492265,5,13.37,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2492371,22,18.234018,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2492747,6,18.25,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2492779,14,13.37167,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2493190,5,18.27,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2493601,14,18.29833,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2494000,8,18.3,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2494002,8,18.3,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2494003,8,18.3,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2494005,15,18.3,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2494367,5,18.31,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2494414,15,18.31667,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2494468,2,18.32,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2494650,14,18.32667,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2495020,14,18.34167,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2495109,14,12.93667,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2495188,14,13.38667,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2495269,1,12.93743,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2496168,14,18.39333,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2496930,14,13.39333,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2497270,2,18.41,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2497809,5,18.44,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2497978,14,18.44667,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2498087,15,18.45,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2498088,15,18.45,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2498289,8,13.4,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2498292,8,13.4,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2498293,8,13.4,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2498295,8,13.4,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2498303,5,13.4,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2499242,14,12.95167,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2499790,8,18.5,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2499791,8,18.5,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2499792,8,18.5,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2499793,15,18.5,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2499795,8,18.5,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2499797,8,18.5,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2499800,15,18.5,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2500158,1,12.95422,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2501395,5,18.55,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2501745,5,18.56,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2501746,7,18.56,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2501802,14,18.56667,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2502194,1,12.96261,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2502363,2,18.59,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2502774,15,13.41667,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2502840,4,18.6,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2503313,15,12.96667,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2503452,6,18.61,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2503453,2,18.61,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2503455,6,18.61,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2503534,2,18.62,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2503641,22,18.624163,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2504138,15,18.65,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2504374,22,18.656272,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2504602,6,18.66,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2504603,6,18.66,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2504605,7,18.66,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2504842,5,18.68,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2505026,22,18.686715,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2505193,2,18.69,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2505244,22,18.693484,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2506024,8,18.7,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2506026,8,18.7,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2506030,5,18.7,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2506031,4,18.7,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2506315,14,13.43667,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2506316,14,13.43667,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2506388,6,18.71,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2506810,14,13.44,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2506853,14,12.97667,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2507340,5,18.75,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2507765,14,12.98,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2508039,1,12.98108,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2508132,6,18.77,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2508133,5,18.77,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2508189,14,18.77833,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2508628,6,18.79,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2509037,14,13.45167,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2509313,14,12.98667,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2509410,14,18.80333,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2509824,5,18.83,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2509897,14,12.98833,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2510080,14,18.84833,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2510432,6,18.85,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2510879,5,18.87,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2510977,15,18.88333,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2511045,14,18.885,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2511237,22,18.891925,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2511583,8,18.9,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2511584,8,18.9,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2511589,15,18.9,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2512654,14,18.94,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2512993,7,18.95,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2512994,4,18.95,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2513594,4,18.98,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2513595,5,18.98,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2513646,14,18.98667,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2513923,8,13,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2513924,8,13,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2513925,8,13,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2513928,8,13,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2513929,8,13,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2513933,8,13,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2513934,8,13,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2514229,14,13.48,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2514752,14,13.48333,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2515542,14,13.48833,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2515598,14,19.00833,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2515614,5,19.01,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2515768,22,19.016191,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2515771,15,19.01667,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2516201,1,13.00459,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2516465,22,19.055417,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2516483,2,19.06,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2516724,14,19.06833,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2516882,5,19.07,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2516935,14,13.00833,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2517204,22,19.081021,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2517869,8,19.1,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2517871,8,19.1,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2517872,2,19.1,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2517997,8,13.5,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2517999,8,13.5,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2518002,8,13.5,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2518003,8,13.5,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2518007,8,13.5,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2518008,8,13.5,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2518209,7,19.11,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2518210,5,19.11,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2518580,22,19.127143,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2518808,6,19.13,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2519456,15,13.01667,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2519589,22,19.175022,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2520336,8,19.2,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2520339,4,19.2,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2520360,14,13.51,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2520769,2,19.21,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2520893,14,13.51334,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2521396,14,19.22833,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2521417,2,19.23,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2521614,4,19.24,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2521740,7,13.52,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2522152,7,19.26,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2522153,6,19.26,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2522468,22,19.274371,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2522846,4,19.29,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2522847,6,19.29,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2523211,14,13.52667,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2523566,8,19.3,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2523567,8,19.3,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2523569,15,19.3,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2523570,8,19.3,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2523571,8,19.3,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2523573,5,19.3,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2523574,15,19.3,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2524019,22,19.305253,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2524143,15,19.31667,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2524206,5,19.32,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2524207,6,19.32,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2524208,6,19.32,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2524582,7,19.34,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2524583,6,19.34,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2524623,14,19.34167,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2524690,14,19.355,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2524703,14,19.35833,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2524885,6,19.37,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2524886,6,19.37,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2525015,14,13.03667,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2525105,14,13.54167,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2525106,14,13.54167,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2525851,15,19.4,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2525854,2,19.4,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2526328,22,19.411771,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2526429,14,13.04167,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2526521,6,19.42,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2526599,14,13.04333,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2526770,22,19.428974,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2526963,15,19.43333,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2526964,15,19.43333,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2526974,14,19.43667,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2527327,6,19.45,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2527557,2,13.56,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2527824,5,19.47,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2528286,14,13.565,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2528353,15,13.05,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2528354,5,13.05,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2528646,8,19.5,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2528647,8,19.5,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2528898,15,19.5,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2529116,1,13.05495,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2529293,1,13.05579,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2529405,22,19.518544,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2529614,14,19.52833,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2529914,4,19.55,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2530681,1,13.06167,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2530696,15,19.58333,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2532260,14,19.62667,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2532473,4,13.59,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2532508,14,19.63833,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2532532,4,19.64,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2532533,2,19.64,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2533037,22,19.660153,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2534133,8,19.7,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2534314,8,13.6,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2534318,8,13.6,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2534320,8,13.6,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2534321,8,13.6,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2534323,8,13.6,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2534325,8,13.6,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2534433,1,13.08349,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2534796,14,19.71667,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2535489,5,19.75,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2535813,15,19.76667,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2535814,15,19.76667,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2535816,14,19.76833,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2536039,5,19.77,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2536479,14,19.79167,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2537082,8,19.8,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2537083,8,19.8,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2537085,8,19.8,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2537339,15,13.61667,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2537340,15,13.61667,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2537540,14,13.61833,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2537574,6,19.81,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2537575,6,19.81,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2537702,15,19.81667,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2537762,8,13.1,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2537766,8,13.1,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2537768,8,13.1,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2537769,8,13.1,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2537772,8,13.1,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2538037,2,19.83,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2538245,4,19.84,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2538640,14,19.85,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2538676,23,19.855511,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2538783,14,13.62833,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2538924,7,19.86,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2539557,1,13.10532,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2540254,1,13.10952,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2540425,14,13.11,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2540574,14,19.90833,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2540588,2,19.91,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2540613,1,13.11036,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2540911,14,19.92667,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2541164,14,13.115,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2541692,14,13.11833,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2541716,1,13.11875,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2541961,15,19.96667,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2542395,6,19.97,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2542396,5,19.97,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2542555,2,13.66,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2542648,22,19.979533,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2542679,5,19.98,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2542700,22,19.981278,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2542716,14,19.98333,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2542883,6,19.99,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2542884,7,19.99,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2542885,2,19.99,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2543625,8,20,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2543626,8,20,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2543627,8,20,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2544290,14,20.00167,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2544611,1,13.1305,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2544684,2,20.02,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2545014,4,20.03,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2545068,15,20.03333,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2545093,23,20.039214,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2545094,23,20.039214,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2545111,2,20.04,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2545190,1,13.13386,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2545250,6,20.05,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2545251,4,20.05,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2545252,4,20.05,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2545425,1,13.13722,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2545487,14,13.13833,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2545719,4,13.14,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2545825,15,20.06667,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2545873,2,20.07,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2546372,23,20.081607,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2546376,15,20.08333,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2546445,15,13.68333,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2547135,6,20.1,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2547137,6,20.1,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2547667,14,13.15,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2547796,14,13.69667,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2547809,4,20.12,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2547810,6,20.12,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2548030,15,20.13333,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2548384,15,20.15,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2548385,6,20.15,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2548582,15,13.7,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2548585,8,13.7,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2548588,8,13.7,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2548590,8,13.7,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2548593,8,13.7,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2548594,8,13.7,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2548638,22,20.161037,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2548737,2,20.17,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2548816,2,20.18,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2548896,2,20.19,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2548919,14,13.15667,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2549601,8,20.2,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2549602,8,20.2,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2549603,8,20.2,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2549605,4,20.2,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2549883,14,13.70333,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2549960,15,20.21667,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2550427,1,13.16492,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2550924,2,20.26,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2550957,15,20.26667,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2551112,4,20.27,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2551283,22,20.278354,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2551696,14,20.29833,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2551841,15,20.3,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2551946,1,13.17163,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2552258,14,13.72333,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2552288,7,20.31,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2552289,6,20.31,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2552455,22,20.311673,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2552720,6,20.33,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2553060,6,13.73,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2553269,4,20.35,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2553408,6,20.36,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2553409,6,20.36,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2553585,14,20.36833,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2553974,22,20.380143,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2553986,15,20.38333,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2554120,8,20.4,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2554122,2,20.4,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2554957,14,20.41833,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2555280,15,20.43333,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2555284,22,20.434641,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2555526,14,13.18667,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2555539,1,13.18674,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2555762,1,13.18842,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2555888,15,13.75,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2556371,1,13.19178,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2556499,5,20.48,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2557270,8,20.5,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2557479,14,13.76167,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2557833,8,13.2,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2557834,8,13.2,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2557838,8,13.2,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2557844,8,13.2,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2557845,8,13.2,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2557847,8,13.2,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2558031,2,20.53,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2558184,6,20.54,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2558185,4,20.54,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2558528,2,13.77,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2558683,14,13.77167,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2558803,14,13.77333,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2558841,2,20.57,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2558925,14,13.775,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2558981,5,20.58,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2559072,2,20.59,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2559074,6,20.59,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2559307,8,20.6,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2559352,4,13.78,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2559725,14,13.785,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2559903,14,13.78667,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2560107,4,20.62,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2560367,14,13.79167,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2560774,6,20.65,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2560775,15,20.65,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2560776,6,20.65,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2560777,6,20.65,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2560849,22,20.651493,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2560905,14,13.20667,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2561016,4,20.66,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2561043,14,20.66166,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2561111,6,20.67,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2561671,8,13.8,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2561672,8,13.8,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2561674,8,13.8,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2561675,8,13.8,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2561681,8,13.8,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2561682,8,13.8,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2561799,8,20.7,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2561801,8,20.7,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2561802,6,20.7,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2561807,8,13.8,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2561811,8,13.8,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2562270,22,20.716923,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2562449,4,20.72,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2562612,15,20.73333,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2562685,1,13.21613,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2563274,14,20.76667,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2563460,7,20.78,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2563768,14,13.81167,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2564259,8,20.8,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2564260,8,20.8,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2564261,8,20.8,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2564263,7,20.8,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2564559,1,13.22788,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2565326,7,20.85,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2565349,14,13.82333,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2565406,14,13.23,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2565650,1,13.23124,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2565799,22,20.860471,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2566203,4,20.89,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2566790,5,20.91,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2566791,6,20.91,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2566920,3,20.9275,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2567101,5,20.93,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2567239,14,13.83833,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2567305,22,20.943962,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2567572,22,20.959962,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2567740,1,13.24131,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2568153,6,20.98,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2568394,22,20.988431,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2568403,2,20.99,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2568784,14,13.85333,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2568914,14,13.25,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2568915,2,13.25,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2568916,5,13.25,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2569566,2,13.86,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2570806,6,13.26,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2572131,14,13.88667,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2572520,22,21.04541,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2572700,22,21.052534,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2572708,22,21.054318,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2572884,6,21.06,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2573331,14,13.89667,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2573360,15,21.08333,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2573443,14,13.27333,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2573841,8,13.9,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2574114,2,21.12,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2574251,1,13.27824,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2574895,15,21.15,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2574951,14,13.90167,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2575016,2,21.16,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2575017,5,21.16,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2575219,6,21.17,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2575220,6,21.17,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2575265,22,21.172077,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2575449,5,13.91,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2575656,14,13.91167,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2576288,23,21.212087,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2576537,6,21.22,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2576647,7,13.29,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2576731,14,13.92333,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2576926,4,21.25,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2576927,15,21.25,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2576976,1,13.29167,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2577154,22,21.250737,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2577191,14,13.92667,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2577648,7,21.27,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2577649,6,21.27,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2578195,5,21.3,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2578196,6,21.3,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2578197,5,21.3,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2578460,15,21.31667,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2578563,2,21.32,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2578680,2,21.33,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2578774,8,13.3,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2578775,8,13.3,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2578776,8,13.3,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2578778,8,13.3,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2578779,15,13.3,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2578783,8,13.3,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2578785,14,13.3,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2578877,5,21.34,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2578878,4,21.34,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2578983,14,13.945,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2579146,4,21.35,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2579147,7,21.35,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2579772,6,21.38,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2580215,2,21.39,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2580684,14,13.30833,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2580928,6,13.31,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2581078,4,21.43,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2581079,4,21.43,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2581176,4,13.97,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2581249,22,21.437175,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2581537,6,21.45,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2581894,15,21.46667,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2582335,15,21.48334,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2582742,22,21.503671,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2583244,6,21.53,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2583293,23,21.5371,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2583518,22,21.548648,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2583541,5,21.55,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2583615,8,14,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2583618,8,14,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2583619,8,14,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2583745,4,21.56,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2583746,5,21.56,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2584419,14,13.32833,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2584672,14,14.00667,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2584780,15,21.6,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2584783,2,21.6,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2584905,14,13.33,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2584906,14,13.33,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2585149,4,21.62,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2585150,4,21.62,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2586050,5,21.66,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2586051,4,21.66,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2586052,5,21.66,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2586053,5,21.66,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2586250,5,21.67,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2586369,2,21.68,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2586462,4,14.03,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2586552,4,21.69,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2586553,7,21.69,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2586719,4,21.7,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2586792,7,13.34,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2587071,15,21.71667,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2587925,6,21.77,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2587927,2,21.77,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2587987,2,21.78,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2588103,15,14.05,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2588175,2,21.79,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2588176,4,21.79,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2588387,5,21.8,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2588995,15,21.83333,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2589243,6,21.85,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2589244,2,21.85,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2589245,6,21.85,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2589300,15,14.06667,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2589710,15,21.86667,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2589744,5,21.87,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2589746,4,21.87,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2589747,6,21.87,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2589813,14,14.085,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2590060,14,14.09833,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2590278,15,21.88333,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2590300,5,21.89,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2590635,8,14.1,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2590639,8,14.1,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2590640,8,14.1,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2590644,8,14.1,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2590645,8,14.1,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2590815,4,21.92,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2590873,2,21.93,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2591219,15,21.93333,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2591258,2,21.94,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2591516,6,21.95,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2591517,6,21.95,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2591568,14,14.10167,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2591668,2,21.96,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2591669,5,21.96,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2591790,5,21.97,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2591921,15,14.11667,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2591922,15,14.11667,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2591923,14,14.11667,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2592074,14,14.11833,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2592106,14,14.12,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2592107,14,14.12,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2593346,4,22,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2593354,2,22,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2593355,15,22,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2593609,14,13.37,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2594009,4,22.01,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2594057,5,22.02,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2594058,2,22.02,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2594372,5,22.03,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2594373,6,22.03,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2594562,4,22.04,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2594823,5,22.05,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2594824,6,22.05,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2594825,5,22.05,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2595365,7,22.08,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2595366,6,22.08,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2595369,2,22.08,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2595411,4,13.38,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2595613,15,22.1,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2596114,5,22.13,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2596115,5,22.13,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2596393,5,22.15,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2596459,15,13.38333,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2596593,6,22.16,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2596596,6,22.16,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2596639,8,14.2,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2596640,8,14.2,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2596643,8,14.2,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2596644,8,14.2,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2596819,14,13.38667,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2596843,5,22.17,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2597644,4,13.39,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2597698,6,22.21,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2597699,7,22.21,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2597700,7,22.21,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2597842,15,14.21667,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2597957,4,22.22,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2598233,4,22.24,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2598434,5,22.25,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2598435,5,22.25,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2598498,15,22.25,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2598633,7,22.26,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2598634,6,22.26,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2598635,6,22.26,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2599021,15,22.28333,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2599202,4,22.29,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2599340,15,22.3,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2599454,15,13.4,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2599458,8,13.4,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2599465,8,13.4,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2599472,8,13.4,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2599540,6,14.25,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2599542,15,14.25,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2599849,14,14.25667,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2600190,6,22.34,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2600442,15,22.35,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2600656,15,22.36667,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2600815,2,22.37,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2600816,6,22.37,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2600856,14,14.275,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2601065,2,22.38,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2601509,5,22.41,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2602170,15,22.43333,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2602375,5,22.45,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2602376,2,22.45,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2602377,6,22.45,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2602509,8,14.3,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2602510,8,14.3,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2602512,8,14.3,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2602513,8,14.3,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2602514,8,14.3,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2602516,8,14.3,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2602517,8,14.3,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2602518,8,14.3,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2602519,8,14.3,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2602520,8,14.3,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2602522,8,14.3,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2602523,8,14.3,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2603098,14,14.30333,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2603146,4,22.48,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2603441,4,22.5,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2603442,7,22.5,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2603443,5,22.5,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2603444,6,22.5,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2603711,6,22.52,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2603782,14,13.42167,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2604308,4,22.58,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2604772,6,22.6,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2604904,2,22.61,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2604905,4,22.61,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2604999,14,13.43,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2605284,14,14.35,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2605314,4,22.63,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2605315,4,22.63,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2605316,6,22.63,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2605591,14,14.355,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2605656,6,14.36,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2605931,4,22.68,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2606313,15,14.36667,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2606314,15,14.36667,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2606434,6,22.71,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2606435,6,22.71,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2606436,2,22.71,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2606739,6,22.73,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2606740,6,22.73,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2606965,2,22.75,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2607069,14,14.38167,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2607070,14,14.38167,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2607161,6,22.76,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2607162,6,22.76,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2607163,6,22.76,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2607422,7,22.78,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2607462,15,22.78333,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2607767,6,22.81,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2607768,5,22.81,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2607973,14,14.39833,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2608286,8,14.4,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2608349,4,22.84,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2608667,2,22.87,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2608718,4,22.88,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2608719,4,22.88,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2608720,5,22.88,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2609012,14,14.40333,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2609028,14,14.40667,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2609054,4,22.89,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2609222,14,14.41667,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2609257,4,14.42,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2609320,15,22.9,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2609321,2,22.9,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2609530,14,14.43,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2609577,15,14.43333,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2609603,6,22.91,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2609605,6,22.91,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2610017,23,22.936069,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2610123,6,22.94,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2610632,6,14.46,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2611346,5,14.47,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2611734,14,13.46833,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2611994,14,14.48833,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2612124,4,23.01,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2612230,3,13.4709,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2612275,6,14.49,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2612315,5,23.02,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2612317,7,23.02,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2612482,14,14.49667,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2612686,2,23.04,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2612742,15,23.05,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2612743,2,23.05,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2612887,8,14.5,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2612888,8,14.5,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2612889,8,14.5,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2612892,8,14.5,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2612893,8,14.5,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2612896,8,14.5,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2612982,5,23.06,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2612983,5,23.06,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2613169,4,23.07,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2613170,4,23.07,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2613171,6,23.07,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2613225,5,23.08,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2613711,4,23.11,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2613760,14,14.50833,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2613925,15,23.11667,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2613964,7,23.12,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2613965,6,23.12,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2613966,6,23.12,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2614070,14,14.51333,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2614096,14,14.51667,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2614444,7,23.15,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2614507,14,13.485,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2614637,2,23.16,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2614678,2,14.53,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2614746,2,23.17,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2614873,4,23.18,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2615215,14,13.49,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2615286,6,23.2,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2615452,15,23.21667,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2615568,14,14.54333,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2615649,6,23.23,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2615677,15,14.55,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2615678,15,14.55,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2616145,2,23.26,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2616380,5,23.28,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2616381,7,23.28,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2616509,14,14.57333,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2616988,6,23.31,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2617186,5,23.32,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2617187,2,23.32,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2617188,2,23.32,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2617480,15,23.35,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2617540,8,13.5,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2617545,14,13.5,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2617548,8,13.5,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2617552,8,13.5,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2617553,8,13.5,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2617556,8,13.5,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2617558,8,13.5,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2617559,8,13.5,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2617604,8,14.6,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2617606,8,14.6,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2617608,8,14.6,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2617610,8,14.6,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2617611,8,14.6,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2617923,6,23.38,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2617924,6,23.38,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2618538,6,23.41,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2618539,4,23.41,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2618573,15,23.41667,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2618630,14,13.50167,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2618791,22,23.431727,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2618792,22,23.431727,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2618862,4,14.62,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2619031,6,23.44,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2619178,15,14.63333,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2619357,6,23.46,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2619428,14,14.645,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2619741,3,23.4863,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2619754,14,14.66167,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2619904,6,14.67,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2619906,6,14.67,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2620250,23,23.501309,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2620266,22,23.508324,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2620296,6,23.51,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2620297,2,23.51,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2620298,6,23.51,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2620338,14,14.685,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2620452,22,23.513936,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2620720,6,23.54,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2620721,6,23.54,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2620747,14,13.51,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2620917,15,23.55,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2621018,8,14.7,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2621020,8,14.7,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2621023,8,14.7,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2621024,8,14.7,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2621026,8,14.7,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2621141,6,23.57,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2621142,7,23.57,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2621343,6,23.59,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2621344,2,23.59,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2621802,22,23.59065,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2622035,14,14.71833,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2622154,6,13.52,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2622194,6,23.62,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2622195,6,23.62,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2622451,5,23.63,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2622555,14,14.72833,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2622770,3,13.5242,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2622870,15,23.65,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2622871,15,23.65,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2623343,4,23.67,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2623463,5,23.68,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2623515,5,23.69,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2623839,6,23.7,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2623875,22,23.703109,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2624032,2,23.71,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2624166,4,23.72,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2624167,2,23.72,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2624168,6,23.72,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2624282,6,14.77,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2624376,22,23.736898,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2624435,14,13.535,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2624436,14,13.535,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2624575,5,23.75,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2624576,6,23.75,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2624632,2,23.76,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2624675,14,14.77333,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2624786,15,23.76666,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2624989,6,23.78,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2624990,6,23.78,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2625230,14,14.79167,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2625431,4,23.8,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2625527,8,14.8,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2625531,8,14.8,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2625532,8,14.8,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2625537,8,14.8,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2625898,6,23.83,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2625927,22,23.830847,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2626091,5,23.84,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2626484,15,14.81667,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2626643,14,14.82333,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2627128,7,23.88,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2627129,5,23.88,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2627571,2,23.89,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2627613,14,14.85667,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2627862,14,13.55833,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2627992,7,23.91,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2627993,6,23.91,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2627995,6,23.91,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2627996,6,23.91,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2628854,22,23.962653,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2628895,4,23.97,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2629017,2,23.98,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2629018,6,23.98,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2629077,5,23.99,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2629129,8,14.9,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2629134,8,14.9,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2629138,8,14.9,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2629140,8,14.9,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2629573,14,13.57,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2630542,14,14.91167,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2630566,15,14.91667,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2630745,4,24.01,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2630747,6,24.01,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2630828,14,14.92167,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2630899,15,24.01667,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2630927,4,24.02,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2630958,14,14.92333,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2631138,15,14.93333,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2631139,15,14.93333,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2631140,14,14.93333,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2631162,22,24.030568,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2631273,14,14.935,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2631467,5,24.04,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2631468,5,24.04,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2631470,7,24.04,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2631541,14,13.58333,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2631636,14,14.95833,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2631712,5,24.05,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2631787,14,13.585,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2631839,4,24.06,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2631840,6,24.06,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2631841,2,24.06,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2631842,5,24.06,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2632010,15,14.96667,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2632289,23,24.08068,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2632346,6,24.09,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2632347,6,24.09,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2632348,7,24.09,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2632349,6,24.09,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2632638,23,24.094811,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2632665,4,24.1,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2632919,14,14.99667,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2633065,6,24.11,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2633097,22,24.113679,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2633226,4,24.13,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2633227,4,24.13,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2633228,2,24.13,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2633359,8,15,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2633360,8,15,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2633363,4,15,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2633365,8,15,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2633367,8,15,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2633379,15,24.13333,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2633882,15,24.16667,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2633918,7,24.17,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2634142,6,24.19,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2634143,7,24.19,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2634193,5,24.2,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2634292,8,13.6,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2634294,8,13.6,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2634396,22,24.213962,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2634399,15,24.21667,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2634488,14,13.6,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2634491,8,13.6,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2634566,6,24.22,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2634911,4,24.26,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2635097,6,24.27,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2635187,7,15.01,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2635465,2,24.29,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2635648,6,24.3,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2635649,4,24.3,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2635650,6,24.3,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2635666,14,15.02667,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2635688,2,15.03,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2635807,2,15.04,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2635808,6,15.04,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2635810,7,15.04,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2636493,6,24.35,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2636494,4,24.35,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2636495,4,24.35,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2636693,15,24.36667,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2636769,14,13.61,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2636902,7,24.38,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2636903,6,24.38,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2637028,7,24.38,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2637063,15,24.38333,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2637167,14,15.08,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2637270,6,24.4,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2637449,14,15.08833,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2637752,6,24.43,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2638121,8,15.1,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2638123,8,15.1,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2638127,8,15.1,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2638128,8,15.1,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2638516,15,24.46667,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2638744,2,24.48,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2638745,4,24.48,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2638804,5,24.49,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2639083,6,24.51,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2639084,6,24.51,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2639085,6,24.51,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2639107,15,24.51666,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2639286,14,15.12167,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2639293,14,15.12333,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2639386,4,24.52,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2639900,2,24.54,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2640116,6,24.56,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2640418,14,13.63333,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2640475,14,15.16333,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2640492,14,15.16667,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2640694,2,24.59,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2640716,22,24.594005,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2640907,22,24.603539,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2641041,5,15.18,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2641075,4,24.61,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2641123,22,24.618799,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2641365,4,24.64,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2641366,5,24.64,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2641491,4,24.64,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2641535,2,24.65,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2641795,22,24.674144,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2641994,22,24.679876,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2642049,22,24.683696,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2642094,6,24.69,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2642096,6,24.69,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2642097,4,24.69,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2642098,4,24.69,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2642219,8,15.2,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2642223,8,15.2,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2642224,8,15.2,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2642229,8,15.2,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2642342,15,24.7,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2642662,6,24.71,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2642663,5,24.71,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2642664,6,24.71,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2643067,22,24.727635,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2643281,15,15.21667,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2643346,6,24.74,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2643347,6,24.74,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2643348,7,24.74,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2643536,15,24.75,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2643695,2,24.77,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2643935,2,24.78,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2644149,22,24.79073,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2644171,15,24.8,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2644305,15,15.23333,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2644408,4,24.81,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2644409,4,24.81,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2644410,2,24.81,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2644659,4,24.82,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2644660,6,24.82,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2644661,4,24.82,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2645009,6,15.27,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2645011,6,15.27,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2645012,5,15.27,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2645150,22,24.8405,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2645376,22,24.863487,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2645662,2,24.87,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2645664,7,24.87,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2645729,14,15.29833,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2645734,14,15.29834,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2645798,4,24.88,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2645799,4,24.88,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2645841,14,13.67334,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2645981,6,15.3,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2645984,8,15.3,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2645985,15,15.3,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2645987,8,15.3,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2645988,14,15.3,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2645994,8,15.3,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2646205,6,24.9,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2646206,5,24.9,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2646207,5,24.9,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2646263,14,13.67667,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2646721,6,24.92,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2646722,5,24.92,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2646723,5,24.92,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2646724,7,24.92,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2646827,14,13.68167,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2646926,14,15.31167,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2646941,14,15.31333,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2646964,2,24.93,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2646965,2,24.93,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2647196,2,24.94,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2647393,14,15.33667,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2647457,6,24.95,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2647458,6,24.95,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2647459,6,24.95,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2647460,6,24.95,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2647653,5,24.96,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2647678,15,24.96667,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2647744,6,15.35,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2647952,6,24.98,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2647953,4,24.98,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2647990,22,24.982383,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2648052,14,13.69167,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2648113,22,24.993905,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2648200,14,15.35833,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2648316,14,15.36667,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2648470,7,25,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2648720,14,15.37167,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2648769,2,15.38,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2649147,8,13.7,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2649150,8,13.7,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2649153,8,13.7,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2649154,8,13.7,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2649155,8,13.7,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2649157,8,13.7,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2649159,8,13.7,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2649164,8,13.7,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2649168,8,13.7,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2649814,8,15.4,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2649816,8,15.4,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2650501,22,25.00927,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2650569,2,25.02,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2650593,22,25.026553,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2650697,6,25.03,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2650807,5,25.04,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2650808,5,25.04,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2650947,7,25.05,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2650948,7,25.05,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2650949,2,25.05,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2650950,4,25.05,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2651198,14,15.41833,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2651215,14,15.42,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2651297,22,25.05346,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2651436,6,25.08,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2651437,5,25.08,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2651499,22,25.088068,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2651517,5,25.09,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2651679,15,25.1,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2651901,14,15.43167,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2651922,4,25.11,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2652176,5,25.12,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2652270,14,15.44,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2652339,22,25.128468,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2652411,14,13.71833,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2652613,2,25.14,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2652637,22,25.143864,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2652776,2,25.15,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2652803,22,25.15927,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2652834,6,25.16,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2652835,4,25.16,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2653116,14,15.465,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2653145,6,25.18,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2653184,15,25.18333,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2653455,5,25.19,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2653484,23,25.197029,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2653643,5,25.2,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2653808,4,25.22,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2654045,14,13.72833,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2654157,8,15.5,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2654160,8,15.5,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2654167,8,15.5,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2654168,8,15.5,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2654242,6,25.24,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2654243,2,25.24,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2654669,22,25.257561,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2654793,22,25.263342,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2654805,22,25.267205,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2654848,22,25.271059,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2654856,22,25.274919,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2654919,6,25.29,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2654920,6,25.29,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2655016,4,15.51,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2655017,7,15.51,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2655463,14,15.52833,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2655506,2,25.32,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2655549,4,25.33,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2655619,7,15.53,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2655739,5,25.34,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2655754,14,15.53167,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2655779,14,15.535,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2655981,5,25.35,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2656294,6,25.37,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2656350,14,15.55,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2656718,6,25.39,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2656998,22,25.390804,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2657013,15,25.4,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2657014,5,25.4,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2657065,4,25.41,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2657078,22,25.410143,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2657120,2,25.42,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2657121,6,25.42,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2657123,4,25.42,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2657124,7,25.42,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2657166,23,25.423125,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2657297,5,13.75,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2657457,15,25.43333,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2657565,7,25.44,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2657592,22,25.441094,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2657597,22,25.446897,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2657670,14,15.58167,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2657708,23,15.587949,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2657732,5,25.45,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2657760,22,25.452706,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2657975,14,15.59,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2658101,4,25.47,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2658102,6,25.47,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2658103,7,25.47,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2658140,22,25.474,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2658300,2,25.48,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2658319,15,25.48334,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2658328,2,25.49,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2658399,7,13.76,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2658500,8,15.6,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2658502,8,15.6,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2658503,8,15.6,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2658505,8,15.6,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2658673,14,13.76167,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2658951,7,25.52,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2658952,6,25.52,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2659113,22,25.526292,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2659140,22,25.530163,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2659148,15,25.53333,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2659230,14,15.60333,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2659239,14,15.605,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2659455,22,25.553426,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2659456,22,25.553426,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2659604,2,25.56,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2659605,2,25.56,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2659785,14,15.62,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2659834,23,25.564435,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2659836,22,25.565061,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2659918,14,13.77167,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2659949,3,13.7726,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2659986,5,25.58,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2660167,2,25.59,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2660192,23,25.592697,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2660296,14,15.63333,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2660355,4,25.6,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2660356,7,25.6,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2660398,23,25.606828,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2660434,22,25.611619,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2660623,14,15.64667,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2660658,14,15.65,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2660659,15,15.65,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2660705,5,25.62,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2660783,7,25.63,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2660784,7,25.63,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2660841,14,15.655,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2661019,6,15.66,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2661090,15,15.66667,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2661339,4,25.67,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2661374,23,25.677483,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2661589,7,25.68,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2661613,15,25.68333,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2661625,22,25.689291,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2661644,15,13.78333,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2661645,15,13.78333,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2661844,15,15.68333,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2661852,14,15.685,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2662040,14,15.69,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2662338,8,15.7,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2662339,8,15.7,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2662340,8,15.7,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2662341,8,15.7,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2662342,8,15.7,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2662344,8,15.7,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2662349,8,15.7,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2662500,4,25.72,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2662501,5,25.72,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2662772,22,25.730115,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2662775,22,25.732057,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2662956,22,25.743727,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2662971,23,25.748138,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2662982,15,25.75,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2663066,22,25.757348,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2663501,23,25.7764,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2663539,6,25.78,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2663582,22,25.788482,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2663704,15,13.8,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2663714,8,13.8,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2663718,8,13.8,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2663719,8,13.8,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2663723,5,13.8,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2663814,2,25.8,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2663858,22,25.809892,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2663887,14,15.72667,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2664179,22,25.819627,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2664180,22,25.819627,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2664233,5,25.83,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2664319,14,15.73833,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2664347,4,15.74,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2664387,23,25.832924,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2664396,22,25.839108,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2664557,14,15.74667,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2664866,15,25.85,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2664891,22,25.85859,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2664892,22,25.85859,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2665105,6,25.86,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2665125,22,25.860541,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2665138,22,25.862488,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2665266,22,25.878078,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2665350,14,15.77333,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2665372,5,13.81,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2665505,2,25.9,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2665506,5,25.9,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2665531,22,25.905379,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2665532,22,25.905379,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2665605,14,15.775,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2665633,14,15.78,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2665872,5,25.91,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2665873,6,25.91,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2665874,5,25.91,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2666029,4,25.93,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2666030,5,25.93,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2666130,14,15.79333,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2666240,23,25.931841,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2666392,8,15.8,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2666400,8,15.8,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2666401,8,15.8,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2666467,8,15.8,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2666545,2,25.94,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2666579,22,25.946342,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2666719,2,25.95,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2666738,22,25.952201,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2666745,22,25.956105,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2666908,22,25.963914,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2667002,14,15.805,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2667102,22,25.973675,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2667117,22,25.977581,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2667132,4,25.98,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2667325,5,25.99,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2667326,4,25.99,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2667327,7,25.99,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2667374,22,25.995157,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2667684,5,26,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2667785,6,15.82,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2668588,14,15.845,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2668687,14,13.84,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2668865,14,15.85667,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2668998,14,13.845,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2669028,2,15.86,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2669029,2,15.86,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2669330,14,15.86167,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2669372,6,15.87,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2669588,22,26.004928,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2669637,14,15.87333,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2669653,14,15.875,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2669733,5,26.02,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2669734,2,26.02,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2669736,6,26.02,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2669750,22,26.020555,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2669776,4,26.03,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2669802,15,26.03333,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2669971,2,26.04,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2670032,14,15.88833,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2670033,14,15.88833,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2670052,14,15.89,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2670088,15,26.05,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2670252,5,26.06,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2670627,4,26.08,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2670653,15,26.08333,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2670936,6,15.9,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2670938,8,15.9,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2670939,8,15.9,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2670941,8,15.9,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2670942,8,15.9,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2670943,8,15.9,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2670944,8,15.9,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2670947,8,15.9,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2671181,7,26.1,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2671234,5,26.11,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2671235,5,26.11,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2671236,2,26.11,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2671438,15,26.11667,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2671466,7,26.12,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2671467,5,26.12,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2671593,2,26.13,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2671672,22,26.133992,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2671847,2,13.87,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2672049,2,26.16,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2672050,2,26.16,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2672067,22,26.161411,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2672201,14,13.875,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2672236,7,26.17,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2672237,7,26.17,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2672238,6,26.17,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2672263,22,26.171203,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2672267,23,26.172068,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2672307,14,15.93667,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2672509,4,26.19,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2672510,2,26.19,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2672511,4,26.19,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2672736,14,15.94833,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2672755,15,15.95,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2672756,6,15.95,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2672812,22,26.202554,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2672831,5,26.21,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2672910,15,13.88333,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2672917,22,26.218233,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2672918,22,26.218238,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2672929,2,26.22,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2673118,5,26.23,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2673119,5,26.23,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2673120,2,26.23,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2673121,5,26.23,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2673149,22,26.233926,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2673234,4,26.24,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2673254,22,26.249613,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2673313,14,13.88667,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2673351,14,13.88833,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2673444,15,15.96667,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2673474,4,26.25,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2673476,5,26.25,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2673656,14,15.97,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2673838,3,13.896,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2673843,14,15.97667,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2674279,4,26.29,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2674282,5,26.29,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2674344,8,13.9,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2674346,8,13.9,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2674348,8,13.9,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2674349,8,13.9,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2674351,8,13.9,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2674357,8,13.9,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2674359,8,13.9,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2674360,8,13.9,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2674361,8,13.9,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2674362,8,13.9,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2674363,8,13.9,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2674416,14,15.98333,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2674470,5,26.3,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2674471,5,26.3,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2674507,22,26.306524,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2674542,4,15.99,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2674543,2,15.99,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2674597,23,26.313378,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2674598,23,26.313378,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2674862,4,26.33,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2674864,2,26.33,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2674891,15,26.33333,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2674892,22,26.334011,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2675049,5,26.34,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2675050,2,26.34,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2675051,4,26.34,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2675222,5,26.35,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2675236,23,26.355771,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2675391,6,26.36,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2675392,6,26.36,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2675414,22,26.361521,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2675664,5,26.39,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2675701,2,26.4,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2675702,2,26.4,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2675723,22,26.406739,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2675752,4,26.41,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2675753,7,26.41,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2675754,6,26.41,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2675860,5,16,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2675861,8,16,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2675864,8,16,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2675865,8,16,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2675867,8,16,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2675868,7,16,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2676143,14,13.91333,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2676194,4,26.42,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2676195,5,26.42,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2676196,5,26.42,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2676229,5,26.43,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2676230,2,26.43,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2676355,14,13.92,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2676545,5,26.44,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2676546,4,26.44,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2676547,6,26.44,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2676548,2,26.44,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2676795,5,26.45,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2677011,6,26.46,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2677012,2,26.46,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2677183,22,26.483483,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2677280,6,26.49,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2677475,4,26.5,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2677661,5,26.51,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2677850,22,26.524841,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2677857,23,26.525343,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2677914,14,16.02167,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2677998,2,26.53,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2677999,4,26.53,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2678023,22,26.532725,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2678031,22,26.536667,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2678129,6,26.54,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2678164,22,26.540614,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2678328,22,26.550469,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2678347,22,26.558345,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2678369,14,13.94167,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2678447,22,26.568212,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2678479,6,26.57,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2678481,5,26.57,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2678720,15,13.95,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2678814,22,26.585956,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2678986,2,26.59,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2679425,22,26.617527,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2679470,7,26.62,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2679471,2,26.62,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2679472,6,26.62,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2679595,15,26.63333,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2679715,2,26.64,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2679753,2,26.65,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2679809,6,16.08,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2679899,14,16.08666,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2679951,15,26.66666,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2680183,8,16.1,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2680184,8,16.1,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2680187,8,16.1,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2680189,8,16.1,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2680192,8,16.1,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2680297,7,26.67,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2680298,4,26.67,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2680299,7,26.67,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2680491,15,26.68333,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2680696,6,13.97,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2680814,4,26.7,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2680815,4,26.7,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2680954,15,26.71667,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2680988,4,26.72,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2681014,22,26.72023,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2681028,2,26.73,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2681067,4,26.74,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2681091,14,16.10167,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2681281,22,26.741973,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2681542,22,26.751865,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2681558,2,26.76,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2681575,23,26.76557,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2681719,15,16.11667,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2681891,4,26.79,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2681892,2,26.79,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2682093,22,26.803305,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2682099,22,26.807265,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2682118,5,26.81,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2682120,5,26.81,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2682122,5,26.81,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2682208,22,26.815189,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2682244,22,26.825083,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2682462,6,26.83,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2682463,4,26.83,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2682464,5,26.83,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2682541,22,26.842906,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2682574,6,26.85,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2682575,6,26.85,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2682762,22,26.862719,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2682773,22,26.868667,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2682801,2,26.87,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2682802,4,26.87,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2682925,6,26.88,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2682926,7,26.88,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2683048,14,16.14333,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2683080,22,26.882533,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2683143,8,14,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2683144,8,14,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2683145,8,14,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2683148,8,14,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2683150,8,14,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2683151,8,14,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2683153,8,14,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2683154,8,14,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2683155,8,14,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2683156,8,14,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2683157,8,14,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2683158,15,14,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2683271,6,26.9,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2683272,4,26.9,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2683273,5,26.9,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2683274,4,26.9,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2683370,6,16.16,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2683448,5,26.91,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2683480,22,26.914251,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2683578,15,16.16667,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2683724,22,26.926152,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2683807,14,16.17834,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2683886,4,26.93,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2683887,5,26.93,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2683911,15,26.93333,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2684189,5,26.94,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2684190,2,26.94,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2684191,4,26.94,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2684212,22,26.945981,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2684234,15,26.95,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2684249,22,26.951942,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2684296,7,26.96,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2684297,7,26.96,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2684449,22,26.963845,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2684559,22,26.971779,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2684568,22,26.977743,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2684613,4,26.98,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2684614,5,26.98,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2684615,4,26.98,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2684843,2,26.99,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2685145,8,16.2,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2685146,8,16.2,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2685147,8,16.2,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2685148,8,16.2,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2685149,8,16.2,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2685150,8,16.2,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2685252,14,14.02333,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2685579,15,27,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2685581,4,27,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2685596,4,27,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2685715,15,14.03333,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2685724,14,14.03334,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2686320,14,14.045,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2686430,23,27.005797,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2686457,6,27.01,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2686458,6,27.01,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2686596,14,14.05667,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2686613,22,27.011494,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2686617,15,27.01667,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2686771,14,14.06,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2686819,6,27.03,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2687196,22,27.043278,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2687210,23,27.04819,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2687309,14,14.06833,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2687411,15,27.05,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2687412,4,27.05,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2687457,6,27.06,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2687459,7,27.06,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2687549,6,14.07,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2687685,22,27.067126,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2687702,5,27.07,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2687767,22,27.088997,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2687864,4,27.09,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2688025,14,16.26333,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2688157,6,27.11,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2688158,4,27.11,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2688159,7,27.11,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2688538,22,27.154655,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2688549,2,27.16,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2688558,22,27.160626,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2688838,14,14.09333,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2688882,14,14.09667,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2689019,6,27.19,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2689182,8,14.1,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2689185,8,14.1,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2689186,8,14.1,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2689189,8,14.1,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2689190,8,14.1,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2689193,8,14.1,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2689197,8,14.1,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2689199,8,14.1,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2689494,22,27.212411,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2689726,6,27.22,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2689758,22,27.222368,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2689808,22,27.236324,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2689930,8,16.3,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2689931,8,16.3,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2690022,2,27.24,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2690023,6,27.24,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2690056,22,27.244293,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2690202,2,27.25,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2690592,2,27.28,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2690683,6,16.31,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2690701,5,27.29,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2690702,2,27.29,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2690716,22,27.290165,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2690866,14,16.31333,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2690879,6,27.3,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2690880,15,27.3,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2691009,15,16.31667,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2691019,14,16.31833,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2691161,15,14.13333,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2691162,14,14.13333,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2691394,3,14.1419,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2691568,7,27.32,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2691569,7,27.32,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2691570,2,27.32,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2691612,5,27.33,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2691613,2,27.33,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2691683,14,16.33333,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2691786,22,27.344046,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2691901,6,27.35,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2691902,6,27.35,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2691974,5,27.36,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2692128,15,27.36667,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2692157,7,27.37,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2692159,6,27.37,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2692191,2,27.38,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2692225,2,27.39,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2692226,4,27.39,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2692374,22,27.397985,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2692396,4,27.4,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2692397,4,27.4,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2692439,23,27.401465,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2692539,2,27.43,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2692540,7,27.43,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2692659,15,14.16667,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2692702,14,16.355,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2692896,15,27.45,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2692897,7,27.45,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2693102,2,27.47,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2693114,14,16.365,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2693125,15,16.36667,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2693126,15,16.36667,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2693262,22,27.479971,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2693359,6,27.48,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2693361,5,27.48,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2693362,4,27.48,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2693411,4,27.49,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2693466,4,16.38,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2693681,22,27.499982,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2693710,2,27.5,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2693712,6,27.5,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2693791,14,16.39,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2693858,5,14.19,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2693960,15,27.51667,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2694118,22,27.522009,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2694157,5,27.53,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2694158,4,27.53,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2694297,15,27.53333,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2694314,5,27.54,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2694370,8,16.4,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2694462,5,27.56,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2694463,6,27.56,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2694485,15,14.2,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2694493,8,14.2,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2694494,8,14.2,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2694495,14,14.2,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2694498,8,14.2,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2694499,8,14.2,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2694500,8,14.2,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2694501,8,14.2,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2694502,14,14.2,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2694503,8,14.2,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2694505,8,14.2,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2694506,8,14.2,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2694578,5,27.57,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2694660,22,27.576089,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2694687,5,27.58,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2694720,22,27.580098,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2694850,15,27.58333,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2694893,23,27.599299,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2694979,5,27.6,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2695228,2,27.61,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2695229,5,27.61,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2695230,7,27.61,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2695256,15,27.61667,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2695287,4,27.62,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2695288,4,27.62,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2695332,6,27.63,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2695333,4,27.63,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2695334,7,27.63,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2695611,2,27.65,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2695612,2,27.65,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2695613,2,27.65,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2695676,4,27.66,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2695677,6,27.66,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2695678,6,27.66,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2695679,6,27.66,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2695796,3,14.2107,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2695810,14,14.21333,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2695913,14,14.21833,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2696055,6,27.69,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2696056,4,27.69,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2696084,22,27.696447,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2696214,6,27.71,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2696215,2,27.71,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2696216,6,27.71,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2696217,7,27.71,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2696243,22,27.718537,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2696383,6,27.74,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2696497,5,14.23,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2696548,4,27.75,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2696623,14,14.23333,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2696666,4,27.76,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2696667,4,27.76,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2696701,22,27.766762,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2696747,6,16.44,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2696790,22,27.776812,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2696809,5,27.78,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2697045,7,27.79,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2697368,5,27.81,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2697380,22,27.810999,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2697452,22,27.817032,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2697484,6,27.82,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2697583,15,16.46667,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2697644,22,27.82306,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2697685,22,27.835139,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2697785,6,27.84,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2697786,5,27.84,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2697787,2,27.84,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2697788,4,27.84,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2697816,22,27.843185,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2697962,5,27.85,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2698124,4,27.87,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2698191,15,27.88333,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2698320,22,27.885464,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2698670,4,27.92,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2698672,4,27.92,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2698821,23,27.924312,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2698935,14,14.29333,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2698937,14,14.29333,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2699044,2,27.95,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2699045,7,27.95,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2699148,22,27.957995,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2699165,4,27.96,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2699333,8,16.5,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2699334,8,16.5,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2699335,6,16.5,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2699520,7,27.97,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2699521,6,27.97,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2699635,8,14.3,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2699636,14,14.3,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2699643,8,14.3,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2699644,8,14.3,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2699727,5,27.99,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2699973,3,16.5161,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2700087,5,16.52,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2700089,2,16.52,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2700405,14,14.31167,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2700542,2,28,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2700543,4,28,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2700932,15,16.53333,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2701320,14,16.54167,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2701519,22,28.00236,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2701582,4,16.55,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2701708,22,16.555135,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2701793,15,14.35,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2701794,15,14.35,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2701871,5,16.56,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2701943,15,16.56667,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2701944,14,16.56667,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2702020,14,16.57167,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2702028,14,16.57333,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2702057,14,16.57833,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2702090,6,16.58,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2702112,14,14.355,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2702224,23,28.023229,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2702359,15,28.03333,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2702385,2,28.04,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2702537,14,14.37,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2702637,14,14.375,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2702655,14,14.37833,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2702671,5,28.05,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2702717,5,28.06,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2703056,6,28.08,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2703090,15,28.08333,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2703190,14,14.39667,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2703414,8,16.6,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2703420,8,16.6,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2703421,8,16.6,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2703422,8,16.6,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2703564,15,14.4,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2703571,8,14.4,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2703572,8,14.4,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2703573,8,14.4,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2703575,15,14.4,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2703579,8,14.4,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2703580,8,14.4,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2703581,8,14.4,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2703583,8,14.4,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2703584,8,14.4,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2703592,4,28.1,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2703593,6,28.1,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2703594,5,28.1,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2703669,5,28.12,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2703670,2,28.12,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2703941,2,28.14,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2703942,4,28.14,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2703943,4,28.14,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2703945,5,28.14,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2704008,15,16.61667,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2704102,5,28.15,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2704205,4,28.17,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2704206,4,28.17,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2704233,14,16.62,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2704269,2,28.17,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2704321,5,28.18,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2704354,22,28.182171,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2704360,22,28.188238,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2704721,6,28.21,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2704753,15,28.21667,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2704773,2,14.41,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2704848,22,28.222645,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2704875,4,28.23,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2704876,2,28.23,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2704877,5,28.23,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2705090,15,28.23333,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2705121,22,28.248968,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2705202,2,28.25,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2705386,4,28.26,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2705387,7,28.26,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2705388,7,28.26,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2705420,22,28.261117,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2705426,15,28.26667,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2705585,22,28.275297,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2705586,22,28.275297,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2705597,23,28.277587,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2705598,23,28.277587,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2705628,22,28.285426,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2705731,6,28.29,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2705837,14,16.655,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2705882,6,28.31,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2705906,22,28.31178,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2706019,14,16.66167,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2706070,22,28.325965,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2706121,22,28.338134,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2706309,5,28.35,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2706392,14,16.67333,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2706475,2,28.36,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2706694,7,16.68,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2706740,14,16.68333,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2706950,22,28.380732,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2706986,6,28.39,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2706988,7,28.39,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2706990,5,28.39,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2707020,22,28.390884,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2707025,22,28.394943,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2707106,14,16.69,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2707345,15,14.48333,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2707382,7,28.42,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2707383,7,28.42,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2707425,2,28.43,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2707517,15,28.43333,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2707548,6,28.44,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2707923,8,14.5,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2707967,22,28.468054,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2707987,8,16.7,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2707991,8,16.7,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2707998,5,16.7,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2708111,8,14.5,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2708116,8,14.5,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2708118,8,14.5,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2708119,8,14.5,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2708245,7,28.47,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2708458,3,14.5033,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2708541,4,28.49,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2708635,2,16.71,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2708836,23,28.517814,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2708837,23,28.517814,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2708988,6,28.52,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2708989,7,28.52,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2708990,7,28.52,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2709034,4,28.53,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2709172,22,28.531071,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2709190,22,28.539204,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2709196,2,28.54,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2709209,22,28.54531,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2709236,7,28.55,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2709237,6,28.55,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2709238,7,28.55,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2709239,5,28.55,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2709240,6,28.55,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2709266,22,28.551412,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2709273,22,28.559546,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2709407,4,28.57,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2709440,15,16.73334,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2709548,22,28.575834,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2709552,22,28.577867,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2709684,2,28.59,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2709686,2,28.59,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2709770,22,28.604334,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2709801,5,16.75,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2709871,22,28.614515,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2709889,5,28.62,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2709907,22,28.626737,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2709933,6,28.63,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2709990,4,28.64,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2709991,4,28.64,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2710019,22,28.649142,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2710031,15,28.65,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2710177,2,28.67,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2710238,7,28.68,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2710356,14,14.52833,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2710412,5,28.69,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2710465,2,28.7,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2710466,5,28.7,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2710661,14,14.53833,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2710686,2,14.54,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2710740,14,16.77167,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2710751,14,16.775,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2710800,14,16.78,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2710801,7,16.78,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2710913,2,28.72,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2710998,14,14.54167,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2711038,15,28.73333,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2711076,22,28.744979,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2711256,15,14.55,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2711311,22,28.759269,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2711400,5,28.76,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2711451,5,28.77,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2711513,8,16.8,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2711514,8,16.8,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2711518,8,16.8,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2711522,8,16.8,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2711670,14,14.56167,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2711789,23,28.772172,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2711794,22,28.775601,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2711795,22,28.775601,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2711818,6,28.78,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2711819,2,28.78,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2712084,15,28.8,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2712125,6,28.81,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2712126,7,28.81,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2712127,4,28.81,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2712128,5,28.81,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2712129,5,28.81,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2712166,5,16.81,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2712168,5,16.81,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2712261,14,14.57167,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2712478,2,28.83,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2712731,22,28.84096,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2712934,6,28.86,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2712935,6,28.86,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2713078,14,16.84,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2713257,22,16.840284,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2713416,23,28.88522,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2713438,7,28.89,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2713439,2,28.89,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2713479,5,28.9,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2713591,5,28.91,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2713592,6,28.91,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2713627,14,14.6,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2713629,8,14.6,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2713632,8,14.6,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2713692,4,28.92,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2713693,2,28.92,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2713744,22,28.932977,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2713782,4,28.94,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2713783,4,28.94,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2713784,6,28.94,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2713943,4,28.95,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2714114,22,16.872638,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2714123,4,28.96,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2714124,6,28.96,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2714125,7,28.96,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2714258,14,16.87833,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2714281,14,16.88,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2714319,2,28.98,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2714320,5,28.98,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2714321,5,28.98,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2714341,22,28.986201,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2714365,6,28.99,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2714394,14,14.60667,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2714470,22,28.996445,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2714521,14,14.61167,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2714534,14,14.615,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2714807,14,16.88833,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2715215,5,29,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2715223,4,29,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2715350,14,14.63667,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2715490,8,16.9,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2715498,8,16.9,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2715502,15,16.9,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2715801,14,14.64667,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2715802,14,14.64667,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2715842,15,14.65,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2716344,5,16.91,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2716371,22,29.012831,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2716405,6,29.02,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2716406,6,29.02,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2716408,4,29.02,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2716519,14,16.91167,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2716624,22,29.029231,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2716867,4,29.04,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2717016,2,29.06,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2717089,14,16.93833,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2717099,15,14.68333,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2717200,7,29.07,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2717201,6,29.07,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2717202,7,29.07,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2717256,14,14.695,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2717320,22,29.080472,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2717325,22,29.082532,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2717381,6,16.94,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2717382,6,16.94,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2717487,4,29.09,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2717488,4,29.09,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2717489,2,29.09,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2717490,4,29.09,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2717571,23,16.944525,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2717630,8,14.7,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2717632,8,14.7,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2717635,8,14.7,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2717639,8,14.7,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2717641,8,14.7,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2717643,8,14.7,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2717681,22,29.109195,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2717696,2,29.11,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2717697,4,29.11,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2717698,4,29.11,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2717748,7,29.12,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2718171,2,29.16,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2718192,23,29.16784,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2718304,14,16.96167,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2718408,6,29.17,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2718409,5,29.17,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2718554,14,16.97167,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2718659,5,29.19,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2718776,15,29.2,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2718777,7,29.2,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2718778,15,29.2,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2718779,4,29.2,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2718930,2,29.22,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2718932,5,29.22,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2719027,15,16.98333,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2719171,15,29.23334,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2719184,22,29.238587,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2719193,4,29.24,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2719251,14,14.72167,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2719266,22,29.24064,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2719306,7,29.25,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2719344,22,29.259145,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2719354,2,29.26,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2719409,14,14.72667,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2719508,2,29.27,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2719558,6,29.28,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2719586,22,29.283824,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2719589,22,29.287939,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2719602,4,29.29,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2719668,15,14.73333,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2719846,6,29.3,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2719857,22,29.30234,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2720152,5,29.32,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2720381,4,29.34,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2720400,22,29.349688,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2720480,4,14.76,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2720511,6,29.36,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2720513,6,29.36,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2720563,8,17,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2720564,8,17,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2720565,8,17,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2720722,14,14.76333,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2720726,14,14.765,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2720743,2,29.37,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2720803,7,29.38,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2720804,6,29.38,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2721271,5,29.42,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2721291,22,29.423851,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2721454,6,29.43,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2721455,2,29.43,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2721456,5,29.43,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2721457,7,29.43,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2721483,15,29.43333,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2721641,5,29.45,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2721695,6,29.46,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2721771,14,14.79333,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2721802,14,17.00333,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2722039,22,17.016935,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2722124,6,14.8,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2722125,8,14.8,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2722128,8,14.8,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2722129,8,14.8,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2722130,8,14.8,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2722132,8,14.8,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2722134,8,14.8,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2722200,6,29.49,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2722201,7,29.49,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2722330,6,17.02,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2722508,6,29.51,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2722509,6,29.51,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2722711,2,29.53,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2722767,4,29.54,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2722768,6,29.54,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2722807,14,14.80667,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2722869,2,29.55,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2722905,4,29.56,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2723021,15,14.81667,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2723070,22,29.568302,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2723267,6,29.59,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2723268,2,29.59,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2723269,2,29.59,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2723391,5,29.6,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2723420,14,14.82333,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2723456,14,14.82833,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2723649,5,29.62,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2723650,6,29.62,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2723651,7,29.62,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2723856,14,17.05166,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2723890,14,17.05833,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2723954,6,29.64,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2724098,22,29.640645,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2724109,22,29.648919,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2724118,5,29.65,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2724199,6,17.07,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2724200,4,17.07,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2724260,4,29.67,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2724261,6,29.67,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2724263,7,29.67,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2724264,6,29.67,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2724350,22,29.675807,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2724502,22,29.692364,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2724532,22,29.706852,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2724555,4,29.71,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2724572,15,29.71667,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2724577,23,29.718949,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2724606,14,14.86,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2724660,7,29.72,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2724687,22,29.727552,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2724691,22,29.729631,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2724722,14,17.08,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2724802,15,14.86667,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2724848,15,29.73333,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2724854,22,29.735836,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2724900,6,29.75,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2724922,22,29.75862,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2724937,4,29.76,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2724958,2,14.87,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2725018,15,17.08333,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2725019,15,17.08333,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2725062,14,17.09,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2725186,5,29.77,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2725363,14,14.88167,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2725459,22,29.771058,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2725477,23,29.775473,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2725891,23,29.803735,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2726096,6,29.82,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2726097,4,29.82,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2726098,4,29.82,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2726125,5,29.83,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2726134,15,17.11667,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2726242,8,14.9,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2726245,8,14.9,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2726251,8,14.9,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2726342,22,29.837386,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2726402,4,29.85,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2726403,7,29.85,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2726418,22,29.851904,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2726462,23,29.860259,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2726578,2,29.88,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2726627,5,17.12,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2726628,6,17.12,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2726689,2,29.89,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2726720,15,29.9,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2726845,14,17.125,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2727007,4,29.92,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2727092,14,17.13167,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2727193,14,14.91167,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2727226,15,14.91667,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2727262,5,29.93,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2727263,5,29.93,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2727264,7,29.93,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2727299,2,29.94,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2727349,7,29.95,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2727458,2,29.96,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2727603,6,17.15,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2727675,2,29.98,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2727676,7,29.98,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2727677,6,29.98,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2727687,23,14.923792,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2727839,2,29.99,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2727840,5,29.99,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2728586,6,17.18,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2728656,14,14.955,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2728663,14,14.95667,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2728722,6,14.96,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2728723,2,14.96,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2729029,14,14.96167,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2729188,14,14.96833,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2729583,8,17.2,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2729587,8,17.2,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2729588,8,17.2,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2729589,8,17.2,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2729660,7,14.98,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2729700,22,30.003499,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2729744,22,30.01597,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2729748,15,30.01667,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2729909,15,14.98333,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2729948,7,30.03,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2729949,7,30.03,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2729950,6,30.03,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2730040,22,30.03677,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2730043,22,30.038853,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2730064,22,30.045091,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2730078,4,30.05,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2730095,22,30.05133,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2730247,6,30.06,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2730248,6,30.06,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2730249,7,30.06,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2730381,14,14.99667,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2730457,7,30.08,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2730458,5,30.08,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2730624,5,30.09,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2730681,8,15,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2730682,8,15,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2730683,8,15,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2730688,8,15,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2730689,8,15,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2730880,14,17.235,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2731036,22,30.115854,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2731037,15,30.11667,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2731073,22,30.124185,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2731956,6,30.19,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2732066,4,30.2,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2732067,4,30.2,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2732255,22,30.21796,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2732301,6,17.28,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2732364,15,17.28333,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2732417,14,15.01167,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2732425,14,15.01333,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2732463,6,30.22,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2732511,5,30.23,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2732512,5,30.23,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2732687,6,30.24,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2732688,4,30.24,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2732689,6,30.24,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2732690,6,30.24,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2732704,14,15.01833,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2732899,14,15.02333,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2733035,8,17.3,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2733036,8,17.3,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2733037,8,17.3,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2733040,8,17.3,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2733113,4,30.28,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2733285,6,30.29,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2733313,22,30.299342,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2733319,5,30.3,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2733349,14,15.03833,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2733371,6,15.04,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2733570,15,30.31667,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2733596,6,30.32,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2733597,5,30.32,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2733681,6,17.31,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2733682,6,17.31,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2733738,22,30.334853,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2733806,22,17.312045,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2733855,14,15.05,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2733926,6,30.35,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2733966,23,15.050971,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2734022,14,17.31833,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2734077,22,30.359922,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2734103,22,30.366184,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2734197,7,30.37,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2734361,14,15.065,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2734395,2,30.39,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2734539,6,17.33,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2734653,5,30.42,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2735018,14,17.345,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2735027,14,17.34667,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2735231,6,15.09,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2735343,14,15.09167,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2735454,15,30.46667,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2735471,22,30.468664,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2735569,14,17.37,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2735647,6,30.48,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2735648,7,30.48,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2735649,4,30.48,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2735650,7,30.48,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2735802,15,30.48334,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2735812,22,30.487503,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2735849,23,30.496154,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2735872,8,15.1,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2735877,8,15.1,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2735879,8,15.1,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2735880,15,15.1,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2736064,6,30.5,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2736065,2,30.5,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2736187,23,30.510285,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2736319,4,30.53,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2736320,2,30.53,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2736321,7,30.53,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2736462,5,30.55,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2736568,2,30.56,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2736597,22,30.569194,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2736598,22,30.5692,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2736730,4,30.57,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2736731,2,30.57,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2736732,2,30.57,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2736776,6,30.58,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2736777,7,30.58,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2736778,7,30.58,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2736779,7,30.58,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2736780,7,30.58,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2736831,15,15.11667,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2736832,15,15.11667,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2736833,15,15.11667,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2736888,8,17.4,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2736889,8,17.4,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2736890,8,17.4,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2736891,8,17.4,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2736893,8,17.4,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2736894,8,17.4,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2736933,22,30.585966,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2736951,5,30.59,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2736952,2,30.59,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2736953,5,30.59,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2737223,15,30.6,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2737224,5,30.6,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2737355,14,17.405,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2737467,14,17.41333,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2737479,15,17.41667,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2737545,22,30.619516,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2737556,4,30.62,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2737603,7,30.63,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2737604,6,30.63,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2737605,5,30.63,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2737606,2,30.63,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2737607,6,30.63,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2737673,14,15.13833,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2737744,14,17.42333,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2737805,4,30.65,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2737806,5,30.65,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2737906,14,15.14333,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2738034,14,17.43667,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2738169,5,30.66,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2738350,14,15.165,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2738408,2,30.67,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2738455,5,30.68,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2738502,22,30.69087,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2738554,15,17.45,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2738739,6,17.46,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2738778,6,30.71,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2738812,4,30.72,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2738830,5,30.73,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2739066,15,15.18333,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2739196,4,30.74,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2739197,4,30.74,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2739306,5,17.48,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2739359,15,30.75,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2739360,4,30.75,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2739386,22,30.751773,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2739485,7,30.76,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2739486,7,30.76,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2739487,6,30.76,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2739488,5,30.76,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2739489,7,30.76,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2739490,4,30.76,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2739515,14,15.19333,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2739648,8,15.2,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2739656,8,15.2,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',0,100),(2739658,8,15.2,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2739660,8,15.2,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2739661,8,15.2,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2739668,8,15.2,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2739669,8,15.2,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2739670,15,15.2,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2739777,15,17.48333,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2740000,14,17.49167,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2740032,7,30.79,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2740033,6,30.79,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2740162,23,30.807036,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2740182,6,30.81,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2740183,4,30.81,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2740184,4,30.81,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2740219,5,30.82,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2740230,22,30.821159,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2740409,8,17.5,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2740410,8,17.5,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2740411,8,17.5,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2740414,8,17.5,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2740415,8,17.5,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2740416,8,17.5,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2740474,4,30.85,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2740475,2,30.85,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2740477,5,30.85,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2740708,23,30.86356,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2740735,2,30.87,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2740736,6,30.87,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2740737,7,30.87,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2740962,5,30.88,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2741013,7,30.89,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2741076,5,30.91,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2741109,2,30.92,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2741288,4,30.93,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2741289,2,30.93,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2741409,2,30.94,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2741410,4,30.94,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2741411,2,30.94,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2741423,22,30.941154,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2741597,4,30.96,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2741883,6,30.97,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2741884,7,30.97,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2741921,5,30.98,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2741998,22,30.985435,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2742095,4,15.24,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2742354,6,31,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2742355,2,31,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2742356,5,31,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2742448,2,15.25,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2743281,14,15.28333,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2743350,2,17.58,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2743677,22,17.589582,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2743715,4,17.59,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2743896,8,15.3,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2743900,8,15.3,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2743901,2,15.3,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2743905,8,15.3,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2743909,8,15.3,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2743976,8,15.3,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2743977,4,15.3,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2743978,6,15.3,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2744333,8,17.6,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2744334,14,17.6,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2744428,6,31.02,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2744429,4,31.02,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2744430,5,31.02,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2744805,2,31.04,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2744806,2,31.04,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2745104,22,31.061374,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2745110,23,31.061394,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2745116,15,31.06667,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2745121,2,31.07,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2745167,4,15.32,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2745225,6,17.62,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2745285,4,31.08,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2745312,22,31.088773,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2745374,7,31.1,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2745375,6,31.1,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2745392,22,31.101461,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2745399,23,31.103787,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2745403,22,31.105691,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2745476,14,17.62333,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2745523,5,17.63,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2745550,7,31.13,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2745567,22,31.131019,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2745581,22,31.13525,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2745591,14,15.32167,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2745619,14,15.32667,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2745620,14,15.32667,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2745640,14,15.33,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2745720,4,31.14,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2745735,22,31.143714,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2745757,6,31.15,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2745758,6,31.15,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2745760,5,31.15,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2745761,7,31.15,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2745788,22,31.152179,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2745829,22,31.169056,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2745983,22,31.175434,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2745991,22,31.179613,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2746121,4,31.19,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2746133,22,31.196552,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2746135,22,31.198697,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2746191,5,17.65,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2746264,22,17.6539,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2746456,7,31.21,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2746457,2,31.21,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2746479,22,31.211349,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2746629,14,15.35167,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2746679,2,31.23,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2746680,6,31.23,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2746748,23,31.245097,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2746771,14,15.35667,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2746850,22,17.662152,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2746927,5,31.26,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2746928,6,31.26,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2746997,6,17.67,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2746998,6,17.67,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2747189,22,17.685274,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2747272,2,31.27,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2747273,5,31.27,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2747290,22,31.276955,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2747410,22,31.285436,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2747423,22,31.289676,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2747443,22,31.293862,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2747515,14,17.695,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2747580,4,31.3,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2747609,22,31.306586,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2747639,4,31.31,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2747716,22,31.331985,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2747797,23,15.375984,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2748022,6,31.36,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2748094,8,17.7,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2748096,8,17.7,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2748098,6,17.7,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2748147,22,31.376525,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2748196,7,31.39,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2748197,5,31.39,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2748198,6,31.39,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2748246,23,31.400538,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2748247,23,31.400538,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2748261,14,15.38167,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2748272,15,15.38333,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2748288,14,15.38667,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2748314,22,31.406196,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2748337,7,31.41,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2748338,2,31.41,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2748339,5,31.41,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2748340,4,31.41,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2748743,15,17.71667,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2748830,4,31.44,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2749036,8,15.4,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2749039,8,15.4,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2749041,8,15.4,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2749046,6,15.4,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2749131,15,31.45,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2749148,2,31.46,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2749173,15,31.46667,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2749249,7,31.47,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2749263,22,31.47198,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2749453,4,31.49,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2749454,7,31.49,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2749455,5,31.49,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2749523,5,31.51,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2749618,15,17.73333,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2749725,22,31.52296,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2749872,22,31.531414,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2749898,6,31.54,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2750031,14,17.75,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2750032,4,17.75,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2750147,22,17.754706,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2750156,22,17.756364,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2750228,14,17.765,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2750564,7,31.57,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2750593,2,31.58,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2750594,5,31.58,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2750660,14,15.445,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2750828,15,15.45,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2750830,15,15.45,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2750988,2,31.6,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2750989,6,31.6,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2751058,15,31.61667,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2751059,15,31.61667,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2751166,14,17.78667,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2751194,14,17.79,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2751240,2,31.63,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2751369,4,31.65,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2751370,2,31.65,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2751371,6,31.65,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2751372,4,31.65,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2751393,22,31.652642,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2751398,23,31.654896,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2751472,14,15.475,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2751585,22,17.79941,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2751604,5,31.66,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2751900,22,31.686691,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2752099,8,17.8,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2752100,8,17.8,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2752184,2,31.71,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2752185,2,31.71,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2752356,22,31.729288,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2752374,4,31.73,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2752375,2,31.73,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2752464,8,15.5,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2752465,8,15.5,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2752466,8,15.5,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2752467,8,15.5,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2752469,8,15.5,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2752470,8,15.5,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2752581,7,31.75,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2752794,22,31.750568,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2752803,2,31.76,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2752947,14,15.50333,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2753087,4,31.77,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2753136,4,31.78,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2753137,6,31.78,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2753139,7,31.78,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2753286,22,31.782555,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2753494,2,31.81,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2753620,7,31.83,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2753621,4,31.83,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2753789,23,31.838599,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2753809,4,31.84,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2753851,23,31.85273,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2753882,5,31.86,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2753976,14,17.85,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2754057,2,31.87,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2754072,22,31.876381,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2754108,14,15.53333,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2754160,7,31.88,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2754161,6,31.88,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2754196,22,31.884931,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2754364,4,31.9,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2754365,2,31.9,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2754366,2,31.9,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2754410,14,15.545,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2754417,14,15.54667,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2754505,5,31.92,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2754539,22,31.929755,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2754624,14,15.55333,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2754629,14,15.555,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2754634,4,31.94,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2754660,22,31.94687,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2754668,4,31.95,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2754753,14,17.865,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2754826,4,31.96,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2754827,6,31.96,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2754828,5,31.96,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2754857,5,31.97,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2754877,22,31.974663,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2754922,4,17.87,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2754935,22,17.870694,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2755016,4,17.88,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2755183,7,31.99,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2755209,15,17.88333,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2755366,14,15.57333,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2755394,5,17.89,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2755826,15,32,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2755828,5,32,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2755872,8,17.9,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2755874,15,17.9,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2756001,15,15.58333,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2756470,8,15.6,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2756474,8,15.6,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2756475,8,15.6,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2756478,8,15.6,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2756877,2,32.01,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2756878,7,32.01,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2756905,2,32.02,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2757056,5,32.03,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2757079,22,32.038792,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2757299,22,32.047361,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2757348,15,32.06667,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2757378,6,32.07,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2757379,7,32.07,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2757401,22,32.077307,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2757402,22,32.077307,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2757600,23,32.092957,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2757744,4,32.1,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2757915,22,32.117959,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2757939,6,32.12,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2757940,2,32.12,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2757974,4,32.13,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2758096,14,15.63167,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2758134,23,32.13535,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2758138,22,32.139408,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2758161,6,32.14,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2758291,15,15.63333,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2758500,22,32.167273,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2758527,7,32.17,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2758528,7,32.17,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2758681,4,32.18,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2758697,22,32.186562,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2758789,14,17.97333,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2758855,6,17.98,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2758856,6,17.98,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2758857,4,17.98,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2758920,22,32.199387,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2759156,23,32.206005,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2759167,4,32.21,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2759208,5,32.22,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2759341,15,32.23333,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2759370,22,32.242283,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2759373,22,32.244459,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2759374,22,32.244459,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2759381,22,32.248755,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2759382,22,32.248755,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2759410,14,17.99167,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2759467,5,32.25,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2759468,5,32.25,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2759486,22,32.252996,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2759498,5,32.26,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2759499,4,32.26,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2759500,4,32.26,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2759573,14,15.67333,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2759582,14,15.675,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2759691,5,32.28,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2759707,22,32.283082,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2759708,22,32.283082,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2759837,22,32.285203,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2759838,22,32.28738,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2759856,5,32.29,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2759858,4,32.29,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2759969,7,32.3,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2759970,7,32.3,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2760205,4,32.33,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2760208,4,32.33,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2760232,8,18,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2760234,8,18,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2760314,14,15.69667,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2760346,22,32.330271,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2760357,22,32.338875,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2760368,5,32.34,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2760496,8,15.7,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2760500,8,15.7,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2760502,8,15.7,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2760507,8,15.7,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2760508,8,15.7,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2760604,4,32.35,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2760625,22,32.356084,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2760794,2,32.37,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2760795,5,32.37,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2760812,22,32.375422,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2760839,2,32.38,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2760840,4,32.38,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2760841,7,32.38,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2760867,23,32.389708,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2761055,4,32.4,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2761111,22,32.416239,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2761390,22,32.424852,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2761393,22,32.426977,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2761416,5,32.43,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2761590,14,15.71667,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2761641,2,32.44,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2761642,4,32.44,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2761659,22,32.444208,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2761672,15,32.45,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2761832,2,32.46,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2761833,7,32.46,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2761834,5,32.46,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2761835,4,32.46,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2761850,23,32.460363,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2761855,22,32.467878,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2761939,14,15.72667,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2761955,6,18.01,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2761995,14,18.01167,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2762015,4,32.48,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2762016,5,32.48,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2762095,4,15.73,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2762197,22,32.497994,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2762205,5,32.5,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2762271,15,15.73333,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2762281,14,15.735,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2762380,6,32.51,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2762464,4,32.53,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2762465,7,32.53,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2762466,7,32.53,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2762485,22,32.53462,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2762516,6,15.74,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2762519,6,15.74,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2762626,14,18.03666,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2762715,22,32.551819,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2762861,14,18.04,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2762914,5,32.57,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2762958,23,32.587542,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2762983,5,32.59,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2762984,7,32.59,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2762985,7,32.59,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2763138,2,32.6,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2763312,2,32.61,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2763346,15,32.61666,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2763509,4,32.63,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2763688,7,32.66,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2763689,6,32.66,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2763706,2,32.67,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2763735,4,32.68,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2763772,14,15.775,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2763898,5,32.69,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2763900,5,32.69,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2763901,7,32.69,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2763902,7,32.69,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2763903,5,32.69,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2764068,14,18.08167,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2764141,14,15.79,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2764432,23,32.714721,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2764606,8,15.8,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2764607,8,15.8,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2764626,4,32.73,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2764629,2,32.73,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2764733,5,32.74,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2764734,2,32.74,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2764770,2,32.75,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2764809,15,32.76667,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2764838,5,32.77,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2764857,8,15.8,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2764858,8,15.8,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2764859,15,15.8,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2764864,8,15.8,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2764865,8,15.8,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2764866,8,15.8,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2764943,8,18.1,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2764944,8,18.1,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2764945,8,18.1,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2764986,22,32.77189,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2764998,5,32.78,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2765194,7,32.8,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2765195,6,32.8,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2765196,15,32.8,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2765353,4,32.81,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2765447,4,18.11,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2765448,4,18.11,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2765449,4,18.11,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2765450,7,18.11,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2765481,22,32.825912,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2765496,2,32.83,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2765641,15,18.11666,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2765643,15,18.11667,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2765676,7,32.85,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2765677,4,32.85,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2765678,5,32.85,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2765679,6,32.85,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2765708,23,32.856031,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2765758,7,32.87,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2765759,7,32.87,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2765778,2,32.88,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2765806,5,32.89,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2765917,2,18.12,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2765939,14,18.12167,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2765967,14,18.12667,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2766006,2,32.91,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2766106,3,15.8203,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2766178,22,32.927539,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2766195,5,32.93,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2766196,2,32.93,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2766259,4,18.13,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2766355,14,15.83,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2766410,2,32.94,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2766412,5,32.94,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2766618,6,18.14,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2766651,22,18.142056,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2766657,22,32.951419,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2766762,15,15.85,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2766825,14,15.85833,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2766843,14,18.145,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2766873,15,18.15,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2767217,14,15.86167,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2767258,5,15.87,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2767369,6,33,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2767370,15,33,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2767781,3,18.1776,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2767847,14,15.88333,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2767856,23,15.8847,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2767966,15,18.18333,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2768205,8,15.9,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2768208,8,15.9,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2768211,8,15.9,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2768218,6,15.9,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2768408,6,18.19,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2768835,8,18.2,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2768836,8,18.2,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2768837,8,18.2,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2768838,8,18.2,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2769237,22,33.003371,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2769240,22,33.007711,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2769248,2,33.01,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2769311,6,15.92,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2769404,4,33.02,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2769435,7,33.03,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2769436,7,33.03,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2769437,7,33.03,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2769587,14,15.93,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2769588,14,15.93,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2769642,15,33.03334,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2769659,5,33.04,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2769680,5,33.05,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2769734,5,33.06,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2769817,23,33.067996,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2769818,23,33.067996,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2769819,23,33.067996,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2769989,23,33.096258,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2769990,23,33.096258,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2770111,22,18.235694,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2770138,2,33.12,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2770159,23,33.12452,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2770174,2,33.13,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2770175,7,33.13,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2770234,14,18.24333,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2770298,6,18.25,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2770299,5,18.25,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2770408,14,15.93833,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2770481,2,33.15,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2770697,15,18.26666,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2770757,14,15.94833,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2770870,7,18.27,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2771254,7,33.21,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2771255,4,33.21,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2771256,4,33.21,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2771257,5,33.21,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2771616,14,15.98667,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2771696,14,15.995,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2771794,2,18.29,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2771926,6,33.26,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2772019,5,33.29,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2772020,2,33.29,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2772021,5,33.29,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2772184,2,33.3,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2772185,4,33.3,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2772321,8,18.3,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2772323,8,18.3,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2772330,5,18.3,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2772332,6,18.3,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2772438,7,33.32,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2772473,2,33.33,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2772647,7,33.34,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2772648,2,33.34,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2772649,7,33.34,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2772650,5,33.34,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2772681,5,33.35,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2772771,8,16,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2772772,2,16,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2772774,8,16,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2772776,8,16,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2772778,8,16,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2772857,7,33.37,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2772887,23,33.378878,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2772888,23,33.378878,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2772898,5,33.38,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2772899,4,33.38,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2773412,7,33.42,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2773413,5,33.42,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2773414,7,33.42,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2773449,4,33.43,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2773450,4,33.43,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2773603,2,33.44,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2773645,6,33.45,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2773646,4,33.45,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2773647,7,33.45,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2773648,7,33.45,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2773803,4,33.46,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2773825,23,33.463664,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2773919,15,18.35,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2773920,6,18.35,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2774002,2,33.48,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2774045,14,18.35333,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2774124,6,33.5,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2774125,6,33.5,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2774126,2,33.5,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2774127,2,33.5,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2774267,22,18.366465,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2774278,22,33.507768,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2774317,7,33.52,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2774318,2,33.52,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2774352,14,18.37,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2774451,15,16.01667,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2774573,4,33.54,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2774608,14,16.02833,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2774760,2,33.56,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2774761,2,33.56,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2774819,7,33.58,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2774820,6,33.58,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2774893,6,18.38,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2774894,4,18.38,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2774895,5,18.38,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2775015,5,33.6,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2775016,4,33.6,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2775041,23,33.604974,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2775064,15,33.61666,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2775102,14,16.03167,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2775111,15,16.03333,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2775287,4,18.39,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2775429,5,33.63,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2775505,14,16.06,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2775584,5,33.64,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2775676,14,16.065,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2775690,14,16.06833,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2775713,7,33.66,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2775732,23,33.661498,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2775748,4,33.67,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2775924,15,33.68333,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2775939,5,33.69,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2775940,2,33.69,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2776024,14,16.08,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2776122,6,33.71,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2776123,7,33.71,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2776142,8,18.4,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2776143,8,18.4,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2776224,14,16.08667,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2776342,2,33.72,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2776369,6,33.73,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2776371,7,33.73,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2776372,4,33.73,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2776373,4,33.73,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2776374,4,33.73,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2776402,23,33.732153,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2776428,2,33.75,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2776429,4,33.75,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2776489,14,16.09167,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2776579,6,33.76,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2776645,4,18.41,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2776646,5,18.41,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2776684,14,18.41167,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2776706,15,18.41667,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2776892,2,33.78,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2776923,6,33.79,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2777005,5,18.43,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2777074,5,33.8,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2777099,7,33.81,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2777100,4,33.81,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2777160,8,16.1,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2777164,8,16.1,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2777166,5,16.1,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2777167,8,16.1,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2777168,8,16.1,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2777169,8,16.1,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2777170,8,16.1,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2777171,8,16.1,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2777323,6,33.84,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2777505,23,33.859332,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2777523,2,33.86,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2777684,22,33.870732,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2777713,23,33.887594,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2777928,14,16.11167,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2778030,23,33.901725,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2778040,5,33.91,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2778049,2,18.46,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2778099,15,18.46667,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2778100,15,18.46667,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2778198,7,33.92,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2778199,2,33.92,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2778258,4,33.94,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2778424,5,33.95,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2778478,5,33.97,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2778495,23,33.97238,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2778913,2,18.49,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2779210,15,16.15,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2779373,23,16.153189,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2779636,8,18.5,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2779638,14,18.5,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2779640,8,18.5,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2779800,14,16.16167,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2779834,14,16.16667,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2780252,14,18.51167,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2780484,4,34.01,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2780498,23,34.014773,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2780520,7,34.02,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2780522,4,34.02,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2780523,7,34.02,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2780554,5,34.03,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2780582,23,34.043035,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2780605,7,34.05,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2780606,7,34.05,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2780637,2,34.06,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2780662,15,16.18333,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2780729,22,18.529661,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2780798,5,34.07,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2780799,7,34.07,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2780830,2,34.08,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2780831,2,34.08,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2780976,5,34.09,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2780977,5,34.09,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2781015,4,34.1,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2781195,7,34.12,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2781229,14,18.54667,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2781407,23,34.127821,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2781445,4,34.14,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2781472,8,16.2,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2781474,8,16.2,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2781475,8,16.2,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2781478,15,16.2,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2781604,4,34.15,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2781605,7,34.15,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2781643,5,34.16,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2781644,5,34.16,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2781699,6,34.18,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2781854,4,34.19,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2781953,4,34.2,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2781954,7,34.2,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2781955,2,34.2,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2781990,23,34.212607,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2781991,23,34.212607,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2782042,14,16.20833,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2782203,14,16.21,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2782292,2,34.23,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2782293,6,34.23,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2782391,4,34.24,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2782428,5,34.25,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2782429,4,34.25,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2782458,15,16.21667,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2782614,23,34.269131,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2782615,23,34.269131,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2782679,14,16.22667,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2782715,4,34.28,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2782750,4,34.29,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2782828,5,34.3,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2782856,2,34.31,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2782857,2,34.31,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2782975,8,18.6,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2782977,8,18.6,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2782978,8,18.6,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2783009,23,34.311524,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2783026,2,34.32,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2783062,4,34.33,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2783116,5,34.35,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2783274,4,34.36,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2783275,7,34.36,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2783309,2,34.37,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2783408,6,34.38,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2783409,4,34.38,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2783410,5,34.38,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2783411,4,34.38,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2783591,4,18.61,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2783670,14,16.25,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2783695,2,34.39,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2783809,2,34.43,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2784022,2,34.46,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2784023,4,34.46,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2784113,7,16.26,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2784125,2,34.47,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2784140,5,34.48,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2784206,5,34.5,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2784272,22,18.620784,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2784321,5,34.52,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2784469,5,18.64,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2784470,5,18.64,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2784471,4,18.64,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2784568,7,34.54,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2784955,23,34.565882,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2784977,2,34.57,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2784978,4,34.57,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2785047,4,18.66,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2785048,6,18.66,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2785131,2,34.58,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2785192,23,34.594144,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2785213,5,34.61,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2785284,6,16.29,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2785303,14,18.665,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2785306,15,18.66667,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2785309,22,18.668108,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2785509,22,18.683331,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2785577,7,34.65,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2785595,2,34.66,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2785736,22,34.661448,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2785764,4,34.67,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2785919,2,34.68,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2785975,7,34.7,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2786011,5,34.71,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2786043,7,34.72,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2786063,5,34.73,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2786090,4,34.74,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2786172,23,34.749585,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2786188,5,34.75,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2786189,5,34.75,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2786363,8,16.3,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2786366,2,16.3,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2786369,8,16.3,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2786495,2,34.77,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2786526,7,34.78,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2786527,7,34.78,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2786583,5,34.8,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2786701,15,34.81667,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2786722,22,18.700254,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2786790,4,34.83,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2786860,6,18.71,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2786942,14,16.30167,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2786987,5,34.85,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2786988,4,34.85,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2787106,5,34.87,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2787121,23,34.876764,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2787146,4,34.88,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2787173,22,18.729032,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2787306,14,16.31167,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2787328,14,16.31667,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2787356,2,34.89,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2787438,22,18.7375,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2787472,4,34.91,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2787473,7,34.91,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2787496,23,34.919157,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2787537,7,34.93,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2787538,6,34.93,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2787539,7,34.93,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2787577,2,34.94,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2787607,6,18.74,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2787679,15,18.75,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2787796,22,18.752747,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2787842,23,34.947419,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2787852,2,34.95,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2787892,5,34.96,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2787893,4,34.96,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2787894,4,34.96,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2787914,14,16.32333,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2787949,4,16.33,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2787965,22,18.762917,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2788012,6,18.77,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2788103,2,34.97,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2788339,5,18.78,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2788566,6,18.79,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2788758,23,16.351023,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2788906,5,35,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2789463,8,18.8,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2789466,8,18.8,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2789469,15,18.8,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2790229,22,18.810402,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2790359,4,35.01,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2790537,5,35.03,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2790808,8,16.4,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2790810,8,16.4,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2790812,8,16.4,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2790816,15,16.4,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2790988,15,18.83333,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2791132,7,35.06,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2791133,5,35.06,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2791134,7,35.06,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2791276,7,35.09,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2791277,5,35.09,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2791422,6,18.85,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2791423,6,18.85,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2791424,5,18.85,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2791491,5,35.12,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2791828,5,35.13,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2791829,4,35.13,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2791844,22,35.136638,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2791862,7,35.14,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2791863,4,35.14,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2791906,22,18.868129,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2792019,5,35.15,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2792020,5,35.15,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2792077,2,18.87,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2792078,4,18.87,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2792135,7,16.44,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2792234,4,35.18,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2792700,15,18.9,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2792702,8,18.9,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2792779,4,35.22,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2792780,7,35.22,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2792823,14,16.45833,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2793054,4,35.23,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2793090,4,35.24,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2793324,15,35.28334,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2793335,23,35.286563,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2793337,2,35.29,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2793383,5,16.48,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2793384,5,16.48,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2793483,7,35.3,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2793484,7,35.3,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2793485,7,35.3,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2793577,22,16.489387,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2793744,4,35.32,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2793773,5,35.33,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2793799,4,35.34,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2793920,22,18.925933,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2794068,7,35.37,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2794069,4,35.37,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2794108,22,18.937843,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2794255,23,35.399611,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2794256,23,35.399611,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2794268,6,35.4,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2794269,2,35.4,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2794308,8,16.5,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',0,100),(2794311,8,16.5,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2794312,8,16.5,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2794313,8,16.5,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2794418,4,35.41,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2794419,5,35.41,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2794420,4,35.41,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2794458,23,35.427873,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2794618,15,35.43334,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2794627,4,35.44,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2794833,22,18.959972,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2794856,4,18.96,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2794968,2,35.49,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2794969,2,35.49,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2795022,5,35.51,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2795050,2,35.52,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2795152,14,16.51,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2795215,22,18.973597,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2795222,14,18.97667,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2795268,2,35.53,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2795270,2,35.53,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2795312,23,35.540921,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2795541,2,35.56,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2795542,7,35.56,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2795543,2,35.56,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2795603,7,35.58,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2795604,7,35.58,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2795634,5,35.59,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2795672,2,16.53,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2795938,14,16.54167,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2795961,14,16.545,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2796021,6,16.55,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2796093,2,35.62,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2796391,7,35.64,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2796392,4,35.64,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2796608,14,16.56167,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2796630,4,35.66,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2796778,8,19,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2796780,8,19,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2796803,6,19,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2796964,4,35.69,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2796993,2,35.7,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2797020,7,35.71,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2797318,4,16.58,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2797728,2,19.01,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2797872,5,35.79,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2797980,22,19.029833,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2798031,23,35.823541,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2798136,6,19.03,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2798137,7,19.03,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2798138,6,19.03,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2798139,6,19.03,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2798246,8,16.6,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2798247,8,16.6,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2798249,8,16.6,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2798252,8,16.6,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2798253,8,16.6,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2798313,5,35.84,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2798511,7,35.87,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2798538,4,35.88,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2798620,5,35.89,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2798837,15,19.06667,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2798950,6,19.08,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2798951,7,19.08,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2798952,2,19.08,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2799040,23,35.908327,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2799049,2,35.91,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2799071,15,35.91667,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2799085,7,35.92,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2799086,7,35.92,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2799087,6,35.92,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2799088,4,35.92,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2799285,2,35.95,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2799368,14,19.09333,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2799537,23,16.619512,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2799712,7,35.97,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2799974,15,16.63333,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2800570,14,16.65,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2800882,14,16.66166,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2800974,23,19.13483,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2801349,14,19.15333,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2801350,14,19.15333,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2801376,22,19.159626,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2801789,2,19.16,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2801790,6,19.16,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2801910,15,16.68333,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2801921,14,16.685,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2802044,22,19.176736,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2802147,4,16.69,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2802284,6,19.18,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2802362,2,19.19,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2802870,8,16.7,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',0,100),(2802874,8,16.7,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',0,100),(2802875,8,16.7,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2802877,8,16.7,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2802878,8,16.7,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2803006,23,36.021375,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2803029,7,36.03,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2803030,2,36.03,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2803079,23,16.704298,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2803141,23,36.049637,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2803152,7,36.05,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2803206,8,19.2,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2803209,8,19.2,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2803211,8,19.2,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2803212,8,19.2,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2803451,2,36.09,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2803492,7,36.1,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2803595,15,16.71667,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2803640,22,19.2007,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2803689,7,36.13,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2803777,5,19.21,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2803778,2,19.21,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2803886,7,36.16,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2803887,7,36.16,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2803888,2,36.16,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2803919,2,36.17,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2804063,14,16.72833,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2804356,7,36.21,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2804357,4,36.21,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2804517,23,19.247878,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2804660,7,36.23,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2804814,14,16.74333,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2804991,7,36.26,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2805013,23,36.261602,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2805064,14,19.27,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2805143,7,36.29,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2805165,4,36.3,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2805339,4,19.28,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2805368,22,19.282945,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2805370,15,19.28333,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2805378,14,19.28666,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2805423,14,16.76333,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2805494,7,19.29,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2805566,5,36.31,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2805567,7,36.31,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2805600,2,36.32,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2805712,7,36.34,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2805788,22,36.345783,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2805902,2,16.78,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2805931,23,36.37465,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2805966,23,36.388781,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2806188,8,19.3,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2806189,8,19.3,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2806190,8,19.3,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2806491,7,36.44,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2806492,4,36.44,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2806818,6,19.32,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2806844,4,36.48,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2806865,5,36.49,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2806889,7,36.5,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2806950,8,16.8,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',0,100),(2806956,15,16.8,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2807497,4,36.59,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2807540,2,19.35,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2807646,7,36.6,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2807666,5,36.61,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2807845,7,36.63,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2807895,7,36.65,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2807918,5,36.66,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2807919,2,36.66,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2807993,6,16.81,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2807995,4,16.81,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2808030,7,36.68,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2808032,7,36.68,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2808054,23,36.685532,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2808134,14,19.37833,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2808156,2,36.7,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2808157,7,36.7,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2808315,15,19.38333,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2808322,14,19.385,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2808389,2,36.72,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2808489,4,16.82,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2808565,22,19.399732,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2808622,7,36.76,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2808623,7,36.76,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2808717,14,16.82333,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2808811,2,36.78,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2808812,4,36.78,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2808830,8,19.4,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2808831,8,19.4,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2808832,8,19.4,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',0,100),(2808915,2,36.8,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2809131,7,36.81,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2809132,4,36.81,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2809133,4,36.81,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2809194,7,36.83,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2809241,23,36.855104,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2809429,2,36.88,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2809551,15,36.9,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2809577,7,36.91,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2809610,5,36.92,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2809679,6,19.42,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2809878,23,36.925759,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2809919,5,36.94,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2809953,2,19.43,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2810100,14,16.87,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2810207,5,36.98,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2810208,2,36.98,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2810289,14,16.87667,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2810365,7,36.99,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2810682,6,19.45,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2810683,6,19.45,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2810684,6,19.45,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2811042,14,19.46167,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2811069,8,16.9,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2811070,8,16.9,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',0,100),(2811072,8,16.9,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2811153,6,19.47,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2811213,3,19.4759,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2811634,4,37,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2812131,2,16.92,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2812174,8,19.5,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2812176,6,19.5,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2812256,5,37.01,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2812389,14,16.92833,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2812409,14,19.50167,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2812591,4,37.04,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2812695,15,19.51667,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2812866,4,19.52,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2813162,7,37.12,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2813188,2,37.13,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2813205,23,37.137724,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2813312,14,16.96667,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2813446,4,37.16,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2813447,2,37.16,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2813636,23,37.180117,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2813729,6,19.55,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2813853,14,16.98667,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2814021,6,16.99,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2814022,6,16.99,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2814074,22,37.188407,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2814088,23,37.194248,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2814109,7,37.2,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2814311,23,37.22251,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2814318,2,37.23,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2814347,6,19.58,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2814571,23,37.250772,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2814624,5,37.28,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2814677,4,37.3,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2815113,4,37.35,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2815218,15,37.36666,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2815244,23,37.377951,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2815272,8,19.6,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',0,100),(2815275,8,19.6,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2815276,15,19.6,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2815277,6,19.6,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2815322,2,37.38,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2815324,7,37.38,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2815336,15,37.38334,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2815382,8,17,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2815384,8,17,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2815386,8,17,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2815389,8,17,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2815393,8,17,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2815475,23,37.420344,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2815576,15,37.43333,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2815583,23,37.434475,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2815584,23,37.434475,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2815713,14,19.60333,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2815763,7,37.46,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2816222,5,19.63,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2816464,14,19.645,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2816562,15,19.65,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2816563,5,19.65,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2816627,23,37.547523,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2816638,2,37.55,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2816664,2,37.56,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2816823,4,37.58,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2816929,14,17.00167,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2817030,14,19.67333,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2817130,5,17.02,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2817372,15,19.68333,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2817397,22,19.689569,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2817476,23,37.618178,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2817681,23,37.64644,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2817721,23,37.660571,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2817792,14,19.69667,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2817901,6,17.05,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2818075,8,19.7,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2818076,8,19.7,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2818132,5,17.06,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2818189,14,17.06833,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2818256,14,17.07167,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2818309,5,37.69,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2818310,2,37.69,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2818481,15,17.08333,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2818730,6,19.71,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2818731,6,19.71,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2818732,2,19.71,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2819004,7,37.77,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2819091,8,17.1,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2819092,6,17.1,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2819096,8,17.1,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2819205,5,19.73,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2819213,2,37.78,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2819214,5,37.78,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2819231,23,37.78775,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2819232,23,37.78775,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2819264,2,37.8,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2819448,2,37.82,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2819576,7,37.85,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2819577,7,37.85,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2819645,15,17.11667,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2819654,14,17.11833,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2819655,14,17.11833,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2819847,23,37.858405,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2819890,2,37.88,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2819891,5,37.88,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2819941,4,19.75,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2819972,23,37.886667,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2820300,2,17.14,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2820375,4,19.77,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2820376,4,19.77,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2820377,4,19.77,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2820422,4,37.95,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2820510,2,17.15,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2820511,7,17.15,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2820636,6,17.15,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2820898,5,19.78,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2821000,15,17.16667,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2821998,8,19.8,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2821999,8,19.8,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2822000,8,19.8,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2822001,4,19.8,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2822401,15,19.81667,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2822497,5,19.82,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2822625,8,17.2,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2822626,4,17.2,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2822627,8,17.2,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2822630,15,17.2,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2822720,7,38.01,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2822919,15,19.85,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2822954,14,17.20333,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2823072,4,17.21,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2823209,7,38.03,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2823281,22,17.217238,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2823310,22,19.866457,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2823401,7,38.06,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2823548,23,38.07037,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2823564,2,38.08,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2823594,2,38.09,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2823638,5,17.23,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2823639,7,17.23,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2823690,14,19.88,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2823691,5,19.88,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2823843,14,17.23667,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2823857,14,19.885,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2823868,14,19.88833,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2823901,14,19.89,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2823902,14,19.89,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2824028,14,19.89667,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2824066,4,17.24,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2824367,8,19.9,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2824371,15,19.9,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2824423,4,38.2,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2824450,7,38.21,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2824744,2,38.23,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2825024,23,38.268204,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2825042,14,17.27333,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2825115,2,38.28,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2825165,14,17.28,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2825243,15,17.28333,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2825499,4,38.31,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2825514,23,38.310597,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2825554,6,19.94,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2825555,4,19.94,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2825593,7,38.32,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2825594,7,38.32,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2825639,23,38.338859,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2825840,7,38.34,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2825878,5,38.36,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2826003,15,19.96667,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2826085,23,38.395383,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2826140,5,38.42,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2826142,7,38.42,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2826221,5,38.43,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2826268,7,38.45,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2826269,7,38.45,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2826306,4,19.98,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2826332,15,17.3,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2826334,8,17.3,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',0,100),(2826335,8,17.3,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',0,100),(2826337,8,17.3,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2826433,23,38.466038,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2826449,7,38.47,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2826587,7,19.99,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2826770,4,17.31,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2826822,14,17.31333,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2826864,23,38.4943,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2826880,7,38.5,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2826881,7,38.5,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2827070,2,38.53,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2827128,14,17.32667,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2827221,4,38.54,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2827395,23,38.564955,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2827412,23,38.579086,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2827827,4,38.62,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2827839,23,38.621479,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2827954,23,38.649741,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2828048,14,20.00667,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2828242,14,20.01666,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2828279,6,17.36,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2828321,23,38.692134,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2828322,23,38.692134,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2828557,5,20.03,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2828611,14,17.36833,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2828612,14,17.36833,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2828652,23,38.748658,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2828653,23,38.748658,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2828722,14,20.03167,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2828790,23,38.77692,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2828877,4,38.79,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2828902,2,38.8,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2829050,5,17.38,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2829310,4,38.84,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2829348,2,38.86,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2829373,14,17.38667,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2829397,2,17.39,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2829496,4,38.87,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2829497,7,38.87,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2829498,7,38.87,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2829668,5,38.92,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2829701,14,17.39667,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2829704,23,17.396717,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2829860,5,20.08,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2829861,5,20.08,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2830007,23,38.946492,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2830063,2,20.09,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2830093,14,20.09167,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2830138,8,17.4,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2830139,8,17.4,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',0,100),(2830140,8,17.4,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2830142,15,17.4,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2830525,5,20.1,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2830564,22,17.405436,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2830565,14,17.40667,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2831193,14,20.11333,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2831236,14,17.42167,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2831422,6,20.12,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2831587,14,17.44,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2831588,2,17.44,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2831803,7,39,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2831850,14,20.135,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2831884,14,20.14,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2832014,5,20.15,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2832070,2,17.45,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2832071,14,17.45,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2832311,2,17.46,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2832312,5,17.46,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2832724,4,20.18,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2832725,4,20.18,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2832726,6,20.18,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2833028,22,17.476034,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2833068,5,17.48,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2833113,14,20.195,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2833598,8,20.2,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2833600,8,20.2,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2833601,6,20.2,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2834018,8,17.5,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2834021,8,17.5,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2834022,8,17.5,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2834023,8,17.5,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2834025,8,17.5,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2834026,8,17.5,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2834028,8,17.5,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',0,100),(2834461,7,39.05,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2834561,4,20.24,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2834682,2,39.09,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2834834,5,39.1,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2834835,7,39.1,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2834845,23,39.101933,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2834964,6,20.25,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2834965,2,20.25,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2834966,5,20.25,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2835044,4,17.53,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2835135,7,39.13,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2835148,23,39.130195,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2835183,7,39.15,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2835483,14,17.54833,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2835542,23,39.172588,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2835697,23,39.186719,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2835937,2,39.21,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2836023,23,39.243243,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2836177,5,39.26,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2836178,4,39.26,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2836239,15,17.56667,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2836240,15,17.56667,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2836287,7,17.57,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2836407,4,39.31,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2836423,15,39.31667,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2836523,7,39.33,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2836608,15,17.58333,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2836681,23,39.34216,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2836716,4,39.36,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2836717,4,39.36,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2836972,6,20.33,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2837102,7,39.39,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2837274,7,39.41,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2837298,23,39.412815,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2837315,23,39.426946,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2837345,7,39.44,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2837413,8,17.6,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2837414,8,17.6,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2837495,5,39.45,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2837496,5,39.45,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2837543,15,17.6,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2837867,14,17.605,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2837965,15,39.55,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2838107,23,39.554125,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2838145,7,39.57,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2838160,15,17.61667,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2838200,4,17.62,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2838255,22,20.366092,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2838327,23,39.596518,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2838333,5,39.6,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2838377,7,39.62,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2838390,23,39.62478,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2838484,14,17.62167,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2838823,23,39.709566,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2839032,6,17.65,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2839033,15,17.65,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2839271,4,17.66,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2839275,7,39.78,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2839304,23,39.794352,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2839305,23,39.794352,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2839306,23,39.794352,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2839490,8,20.4,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2839491,8,20.4,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2839577,23,39.836745,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2839598,22,17.668757,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2839637,6,17.67,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2839810,6,20.41,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2839811,6,20.41,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2839812,6,20.41,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2839833,2,39.84,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2839871,23,39.850876,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2840149,23,39.893269,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2840161,2,39.9,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2840279,23,39.921531,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2840381,5,20.43,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2840540,15,20.43333,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2840730,8,17.7,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',0,100),(2840733,8,17.7,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',0,100),(2840734,8,17.7,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2840735,8,17.7,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2840780,6,20.44,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2840781,6,20.44,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2840782,7,20.44,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2841113,5,20.46,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2841646,2,20.48,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2842020,22,17.731549,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2842036,15,17.73333,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2842224,5,17.74,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2842262,8,20.5,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2842504,7,40.01,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2842543,5,40.03,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2842650,6,17.75,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2842706,2,40.05,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2842728,5,40.06,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2842729,7,40.06,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2842830,6,20.52,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2842873,2,40.07,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2843011,14,20.52667,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2843077,23,40.105234,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2843078,23,40.105234,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2843118,15,17.76667,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2843231,7,40.14,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2843238,2,20.53,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2843385,6,20.54,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2843386,6,20.54,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2843427,6,17.78,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2843498,23,40.147627,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2843589,2,20.55,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2843830,22,17.794438,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2844023,6,20.57,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2844399,4,20.59,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2844400,6,20.59,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2844420,7,40.3,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2844497,8,17.8,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',0,100),(2844498,5,17.8,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2844500,8,17.8,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2844501,8,17.8,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2844502,8,17.8,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2844581,14,20.59833,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2844833,14,17.80333,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2844834,14,17.80333,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2845138,7,40.43,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2845165,22,20.605574,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2845332,15,40.46667,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2845647,15,20.63333,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2845662,7,40.51,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2845903,7,40.56,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2845904,7,40.56,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2845949,7,40.58,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2845998,14,20.64167,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2846007,23,20.646847,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2846255,15,17.85,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2846490,5,40.69,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2846677,23,40.712867,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2846921,6,20.67,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2847083,6,17.88,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2847127,14,17.88167,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2847132,15,17.88333,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2847280,14,20.685,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2847344,23,40.797653,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2847525,5,40.82,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2847526,7,40.82,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2847774,15,17.9,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2847776,8,17.9,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2847779,8,17.9,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2848007,14,20.70833,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2848064,15,20.71667,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2848181,23,40.924832,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2848361,7,40.95,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2848373,23,40.953094,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2848749,2,20.75,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2848750,2,20.75,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2848752,6,20.75,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2848804,22,20.759413,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2848823,5,20.76,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2849386,6,17.93,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2849529,4,20.79,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2849660,8,20.8,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',0,100),(2849661,8,20.8,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2849662,15,20.8,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2849663,2,20.8,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2849707,14,17.945,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2849881,22,20.809032,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2850158,4,20.83,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2850499,4,20.84,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2850657,15,20.85,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2850820,15,20.86667,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2851004,23,41.009618,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2851048,7,41.03,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2851049,7,41.03,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2851094,23,41.052011,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2851304,23,41.108535,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2851550,8,20.9,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2851552,2,20.9,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2851640,23,41.207452,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2851701,7,41.24,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2852155,7,20.93,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2852225,7,41.31,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2852246,23,41.3205,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2852468,14,17.98,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2852469,5,17.98,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2852573,7,41.37,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2852651,23,41.377024,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2852732,7,20.96,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2852794,7,41.42,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2852795,7,41.42,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2852860,2,17.99,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2852929,5,20.97,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2853076,14,17.99667,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2853153,23,41.475941,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2853315,2,20.99,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2853352,22,20.995546,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2853506,23,41.532465,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2853764,23,41.560727,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2853776,7,41.57,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2853868,8,18,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',0,100),(2853872,15,18,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2853913,23,41.60312,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2854077,7,41.63,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2854128,23,41.659644,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2854129,23,41.659644,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2854859,2,21,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2854890,7,41.73,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2854891,7,41.73,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2855051,5,21,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2855102,7,41.78,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2855103,7,41.78,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2855444,23,41.829216,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2855445,23,41.829216,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2855633,6,18.01,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2855957,7,41.96,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2856027,14,18.025,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2856154,7,41.99,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2856431,14,18.035,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2856484,4,18.04,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2856668,6,18.04,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2856953,14,18.05,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2856954,14,18.05,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2857016,14,18.05667,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2857438,15,21.05,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2857716,23,42.02705,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2857779,23,42.055312,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2857894,7,42.09,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2858198,6,21.06,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2858570,7,42.28,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2858854,8,18.1,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2858855,8,18.1,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',0,100),(2858859,8,18.1,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',0,100),(2859313,7,42.41,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2859345,22,21.107807,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2859432,5,42.44,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2859569,6,21.12,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2859732,22,18.113665,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2859777,7,42.46,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2859898,23,42.521635,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2859966,4,21.14,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2860070,14,18.12667,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2860118,23,42.578159,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2860171,5,18.13,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2860229,14,18.13667,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2860459,4,18.14,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2860512,4,42.62,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2860521,23,42.620552,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2860552,2,42.64,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2860569,15,21.16667,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2860614,5,21.17,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2860776,22,21.172077,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2861078,7,42.77,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2861118,7,42.8,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2861134,7,21.19,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2861135,7,21.19,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2861187,14,18.16,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2861258,23,42.804255,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2861407,7,42.85,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2861529,23,42.889041,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2861550,7,42.9,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2861731,7,42.98,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2862101,22,21.211394,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2862421,23,43.002089,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2862681,8,18.2,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',0,100),(2862682,8,18.2,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',0,100),(2862684,8,18.2,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',0,100),(2862685,8,18.2,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',0,100),(2862850,7,43.11,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2863089,15,18.21667,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2863215,6,21.25,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2863290,23,43.143399,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2863324,15,43.16667,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2863369,14,18.225,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2863379,14,18.22833,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2863497,23,43.199923,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2863517,7,43.21,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2863541,5,21.26,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2863542,2,21.26,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2863618,5,21.27,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2863652,22,21.274008,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2863656,22,21.275796,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2863760,23,43.242316,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2863803,4,21.28,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2863996,22,21.293699,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2864058,23,43.312971,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2864192,15,21.3,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2864280,23,43.369495,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2864357,2,18.25,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2864358,15,18.25,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2864456,4,18.26,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2864738,7,43.45,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2864808,6,21.32,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2865079,4,18.28,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2865129,7,43.53,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2865206,23,43.539067,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2865346,14,18.28833,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2865423,7,43.58,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2865558,15,21.35,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2865559,6,21.35,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2865602,23,43.609722,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2865603,23,43.609722,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2865704,8,18.3,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2865706,8,18.3,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',0,100),(2865709,4,18.3,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2866065,23,43.680377,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2866209,23,43.694508,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2866437,23,43.779294,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2866438,23,43.779294,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2866460,4,18.31,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2866562,22,21.390498,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2866585,7,43.79,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2866633,7,43.81,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2866634,7,43.81,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2866756,6,21.4,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2866757,15,21.4,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2866818,15,18.31667,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2867269,23,43.920604,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2867283,23,43.934735,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2867402,7,43.97,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2867489,6,21.43,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2867491,6,21.43,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2867767,2,21.44,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2867768,4,21.44,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2867970,15,21.45,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2867971,7,21.45,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2868131,22,21.453342,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2868318,15,21.46667,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2868608,6,21.48,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2868784,15,21.48333,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2868849,5,18.38,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2869172,4,18.39,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2869173,2,18.39,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2869681,8,18.4,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',0,100),(2869682,8,18.4,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2869683,8,18.4,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2869792,6,21.51,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2870130,6,21.53,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2870169,3,44.1432,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2870218,23,44.174962,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2870510,5,21.55,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2870630,15,18.41667,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2870922,7,44.33,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2870950,23,44.344534,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2871021,4,21.57,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2871150,23,44.386927,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2871270,23,44.415189,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2871271,23,44.415189,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2871296,22,18.435367,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2871344,7,21.58,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2871345,6,21.58,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2871346,6,21.58,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2871347,6,21.58,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2871348,6,21.58,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2871349,7,21.58,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2871383,15,21.58333,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2871439,23,44.443451,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2871665,4,21.6,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2871666,15,21.6,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2871716,6,18.45,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2871925,7,44.54,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2872001,2,18.46,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2872030,7,44.57,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2872053,15,44.58333,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2872061,23,44.584761,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2872077,7,44.59,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2872079,6,21.61,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2872341,4,21.62,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2872342,4,21.62,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2872343,2,21.62,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2872344,5,21.62,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2872429,23,44.641285,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2872512,6,18.48,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2872531,23,44.669547,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2872741,7,44.72,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2872788,2,18.49,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2872901,4,21.64,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2872902,4,21.64,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2873138,8,18.5,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2873285,4,21.66,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2873286,6,21.66,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2873404,23,44.810857,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2873513,23,44.839119,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2873618,6,18.51,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2873619,6,18.51,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2873813,22,18.517863,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2873858,14,18.52167,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2873977,4,21.69,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2873978,6,21.69,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2873979,2,21.69,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2874027,23,44.966298,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2874309,5,21.7,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2874543,15,18.55,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2874544,2,18.55,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2874594,15,21.71667,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2875350,6,21.74,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2875395,6,18.58,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2875396,7,18.58,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2875397,6,18.58,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2875587,14,18.585,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2875622,23,45.008691,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2875888,4,45.09,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2876061,3,21.7679,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2876091,6,21.77,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2876092,5,21.77,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2876247,8,18.6,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2876250,8,18.6,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',0,100),(2876253,2,18.6,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2876256,2,18.6,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2876259,4,18.6,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2876395,4,21.78,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2876483,23,45.234787,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2876508,23,45.248918,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2876628,23,21.791458,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2876902,15,21.81667,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2876913,7,45.3,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2876987,4,18.61,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2876988,2,18.61,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2877115,4,21.83,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2877230,23,45.333704,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2877309,23,45.376097,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2877335,23,45.390228,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2877391,23,21.847982,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2877508,7,45.43,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2877545,7,45.45,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2877580,23,45.475014,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2877617,6,21.85,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2877770,23,45.517407,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2877963,15,21.86667,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2878012,6,21.87,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2878013,2,21.87,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2878275,5,21.88,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2878386,23,45.630455,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2878601,15,45.65001,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2878664,6,21.9,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2878795,5,45.69,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2878945,5,18.68,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2879170,6,21.92,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2879171,7,21.92,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2879173,5,21.92,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2879174,6,21.92,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2879286,23,45.757634,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2879287,23,45.757634,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2879479,5,21.94,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2879537,7,45.79,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2879638,8,18.7,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',0,100),(2879641,8,18.7,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',0,100),(2879643,15,18.7,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2879897,23,21.96103,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2879984,14,18.705,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2880261,4,21.98,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2880262,4,21.98,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2880263,2,21.98,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2880264,4,21.98,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2880430,14,18.715,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2880514,23,45.969599,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2881337,4,46.01,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2881400,22,18.734116,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2881536,6,22,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2881548,23,46.026123,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2881561,7,46.03,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2881609,2,46.06,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2881622,22,18.749362,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2881651,4,18.75,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2881767,23,46.12504,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2881825,7,46.16,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2882010,23,46.209826,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2882235,23,46.26635,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2882300,5,22.02,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2882416,23,46.308743,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2882498,5,22.04,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2882499,5,22.04,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2882614,7,46.39,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2882640,23,46.40766,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2882783,23,46.450053,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2882838,15,22.06667,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2882900,14,18.76,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2882934,7,46.47,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2883116,7,22.08,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2883218,23,46.534839,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2883276,23,46.577232,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2883335,5,22.09,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2883357,23,46.591363,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2883358,23,46.591363,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2883694,7,46.65,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2883806,2,22.12,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2884063,6,22.13,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2884064,6,22.13,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2884160,7,46.81,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2884270,23,46.83159,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2884470,6,22.16,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2884471,4,22.16,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2884633,8,18.8,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2884634,8,18.8,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2884637,15,18.8,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2884945,14,18.80334,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2885031,2,22.19,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2885032,2,22.19,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2885162,2,22.2,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2885234,15,18.81667,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2885304,5,22.21,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2885305,6,22.21,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2885321,23,46.958769,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2885424,6,18.82,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2885425,6,18.82,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2885426,6,18.82,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2885620,5,22.22,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2885622,2,22.22,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2885793,5,22.23,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2885794,2,22.23,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2885941,15,22.23333,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2885979,6,22.24,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2885980,7,22.24,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2885982,2,22.24,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2886013,23,18.838079,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2886189,22,18.840949,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2886401,23,22.257781,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2886469,22,18.851144,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2886511,6,22.26,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2886648,2,18.86,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2887129,2,18.87,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2887130,6,18.87,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2887131,4,18.87,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2887132,6,18.87,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2887181,22,18.874922,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2887278,6,22.29,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2887353,2,18.89,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2887394,22,22.299487,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2887620,4,22.3,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2887730,23,47.071817,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2888045,8,18.9,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',0,100),(2888141,7,47.14,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2888528,15,18.91667,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2888644,6,18.92,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2888775,2,22.35,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2888873,15,18.93333,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2889072,5,22.36,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2889405,22,18.958267,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2889611,22,18.968485,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2889637,2,18.97,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2889707,6,22.39,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2890064,23,47.509878,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2890214,23,47.524009,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2890247,4,47.55,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2890252,23,47.552271,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2890338,4,22.42,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2890396,4,22.43,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2890399,14,18.995,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2890400,14,18.995,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2890754,15,22.45,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2890755,2,22.45,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2890890,23,47.735974,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2891077,8,19,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',0,100),(2891109,23,47.750105,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2891143,7,22.47,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2891144,4,22.47,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2891145,6,22.47,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2891146,6,22.47,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2891220,5,19,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2891405,23,47.82076,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2891519,23,47.863153,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2891759,23,47.905546,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2891960,4,22.52,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2892297,4,22.55,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2892458,15,22.56667,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2892470,23,22.568663,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2892536,6,22.58,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2892935,2,22.59,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2893059,6,19.03,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2893203,5,22.6,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2893204,5,22.6,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2893435,15,19.05,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2893436,2,19.05,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2893720,23,48.004463,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2893721,23,48.004463,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2893853,23,48.060987,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2893947,14,19.07667,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2893986,2,19.08,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2894006,15,22.65,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2894007,7,22.65,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2894008,6,22.65,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2894256,5,22.66,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2894257,2,22.66,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2894326,5,19.09,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2894402,5,48.18,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2894546,23,48.230559,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2894814,8,19.1,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2894865,7,22.68,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2895179,6,22.71,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2895180,6,22.71,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2895355,6,19.11,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2895356,4,19.11,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2895503,23,48.414262,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2895683,4,22.73,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2895684,4,22.73,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2895847,15,22.73333,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2895863,5,22.74,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2895925,23,48.52731,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2895953,4,48.55,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2895978,6,19.13,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2896151,23,48.597965,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2896359,15,19.15,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2896501,23,48.66862,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2896522,7,48.68,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2896534,14,19.15667,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2896584,14,19.16,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2896585,6,19.16,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2896722,5,48.73,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2896745,23,48.739275,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2896999,23,48.838192,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2897085,23,48.852323,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2897143,23,48.894716,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2897320,7,22.81,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2897348,22,19.176736,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2897504,4,22.82,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2897743,2,22.83,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2897996,6,22.84,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2897997,6,22.84,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2898322,8,19.2,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2898445,7,22.86,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2898446,2,22.86,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2898564,14,19.20667,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2899091,15,19.21667,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2899304,14,19.22333,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2899314,4,22.9,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2899315,5,22.9,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2899521,23,49.021895,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2899536,23,49.036026,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2899705,6,22.91,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2899706,6,22.91,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2899932,5,22.93,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2899954,15,22.93333,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2900071,23,49.149074,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2900148,23,22.9502,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2900235,6,22.97,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2900236,6,22.97,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2900238,6,22.97,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2900271,15,19.25,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2900323,23,49.191467,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2900363,7,22.97,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2900499,22,19.255512,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2900502,14,19.25667,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2900559,2,22.98,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2900621,23,49.276253,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2900736,6,22.99,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2900737,5,22.99,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2900805,14,19.26,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2900806,5,19.26,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2900846,23,19.262009,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2900926,14,19.26667,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2900992,7,49.41,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2901032,23,49.431694,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2901472,23,49.573004,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2901473,23,49.573004,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2901842,23,49.671921,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2901961,8,19.3,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2902082,23,49.714314,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2902229,4,23.01,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2902327,15,49.8,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2902448,14,19.30333,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2902577,15,23.03333,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2902578,15,23.03333,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2902656,5,23.04,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2902833,6,19.32,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2902845,5,23.05,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2903032,5,23.06,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2903142,23,49.996934,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2903152,5,19.33,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2903396,2,19.34,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2903397,5,19.34,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2903583,7,19.34,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2903821,15,23.1,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2903822,7,23.1,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2903840,15,19.35,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2903841,15,19.35,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2904387,23,50.109982,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2904427,6,19.37,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2904478,23,50.124113,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2904533,2,23.13,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2904534,5,23.13,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2904619,22,19.379098,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2904712,4,23.14,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2904794,15,19.38333,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2904803,14,19.385,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2904874,23,50.251292,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2904912,6,23.15,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2904978,6,19.39,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2905029,23,50.279554,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2905203,14,19.39166,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2905221,14,19.39667,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2905272,23,50.321947,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2905352,6,23.18,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2905514,23,50.378471,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2905515,23,50.378471,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2905577,23,50.420864,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2905594,23,50.434995,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2905686,6,23.2,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2905687,4,23.2,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2905688,5,23.2,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2905703,8,19.4,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',0,100),(2905705,8,19.4,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',0,100),(2905707,8,19.4,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',0,100),(2905709,8,19.4,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2905754,23,50.463257,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2905755,23,50.463257,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2905980,23,50.548043,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2906295,6,23.23,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2906296,5,23.23,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2906297,6,23.23,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2906337,2,19.42,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2906406,7,50.63,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2906768,2,23.25,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2906769,5,23.25,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2906890,5,23.26,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2906938,4,23.27,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2906939,4,23.27,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2907104,23,50.731746,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2907105,23,50.731746,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2907284,23,50.774139,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2907399,6,23.31,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2907436,22,23.316104,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2907614,2,23.32,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2907615,2,23.32,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2907701,23,50.802401,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2907752,22,19.475459,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2907859,7,23.33,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2907860,4,23.33,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2907861,6,23.33,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2907980,5,23.35,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2908242,6,23.36,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2908385,8,19.5,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',0,100),(2908419,5,23.37,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2908420,5,23.37,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2908680,4,23.38,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2908681,6,23.38,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2908682,6,23.38,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2908752,14,19.50833,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2908757,22,19.509925,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2908870,22,23.392537,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2908898,15,23.4,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2908900,4,23.4,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2909285,6,23.41,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2909480,5,23.42,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2909483,5,23.42,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2909583,2,23.44,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2909584,2,23.44,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2909755,4,23.45,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2909786,22,23.454133,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2909796,22,23.459739,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2909830,4,23.46,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2909831,2,23.46,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2909956,2,23.46,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2909957,5,23.46,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2909990,22,23.463471,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2910050,22,19.528892,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2910204,14,19.53167,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2910273,22,23.480286,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2910587,2,23.51,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2910588,6,23.51,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2910675,14,19.55,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2910677,15,19.55,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2910835,23,51.042628,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2910881,23,51.085021,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2910892,4,23.53,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2910907,15,23.53333,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2911014,6,23.54,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2911015,6,23.54,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2911016,7,23.54,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2911017,4,23.54,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2911081,23,51.099152,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2911208,4,23.55,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2911265,23,51.141545,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2911350,5,19.58,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2911351,6,19.58,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2911382,2,23.56,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2911574,6,23.57,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2911575,4,23.57,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2911636,4,23.58,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2911637,4,23.58,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2911735,22,19.587568,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2911847,6,23.59,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2911848,6,23.59,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2911942,4,19.59,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2912224,8,19.6,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2912225,6,19.6,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2912227,7,19.6,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2912228,15,19.6,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2912259,23,23.614357,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2912299,5,23.62,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2912300,6,23.62,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2912301,6,23.62,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2912455,22,23.628108,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2912492,4,23.63,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2912583,15,23.63333,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2912589,22,23.635609,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2912606,2,23.64,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2912781,6,23.65,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2912782,6,23.65,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2912783,4,23.65,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2913043,23,51.63613,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2913087,6,23.67,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2913194,23,51.650261,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2913261,2,23.68,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2913627,2,23.7,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2913693,15,19.63333,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2913705,14,19.63833,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2913815,5,23.71,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2913843,22,23.712495,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2913923,23,51.833964,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2913960,23,51.862226,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2914098,22,23.740649,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2914123,15,19.65,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2914270,4,23.75,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2914346,14,19.66,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2914628,22,19.66534,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2914631,15,19.66667,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2914752,23,23.769798,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2914778,22,23.776343,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2914936,6,23.78,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2914938,6,23.78,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2914996,6,19.68,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2914997,7,19.68,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2914998,2,19.68,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2915096,22,23.785727,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2915193,4,19.69,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2915310,6,23.8,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2915311,15,23.8,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2915312,2,23.8,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2915313,5,23.8,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2915391,22,23.810167,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2915588,8,19.7,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',0,100),(2915655,23,52.017667,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2915682,23,52.045929,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2915720,2,23.83,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2915721,4,23.83,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2915762,22,23.836492,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2915911,2,23.84,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2916014,23,52.173108,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2916249,23,52.314418,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2916250,23,52.314418,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2916283,6,23.85,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2916284,4,23.85,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2916285,5,23.85,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2916324,22,23.855307,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2916329,23,52.328549,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2916365,23,52.356811,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2916382,23,52.370942,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2916383,23,52.370942,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2916526,2,23.86,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2916836,23,52.681824,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2916966,15,52.75,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2917010,2,23.88,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2917011,4,23.88,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2917012,7,23.88,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2917074,23,52.780741,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2917292,23,23.896977,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2917345,23,52.851396,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2917641,4,23.91,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2917642,4,23.91,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2917729,14,19.73667,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2917830,4,23.92,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2917852,23,23.925239,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2917853,23,23.925239,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2917901,6,23.93,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2917902,6,23.93,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2917903,7,23.93,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2918181,22,23.949464,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2918285,7,19.76,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2918399,4,23.96,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2918423,22,23.960775,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2918562,23,23.967632,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2918579,5,23.97,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2918580,5,23.97,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2918604,22,23.975856,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2918820,5,23.98,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2918855,15,23.98333,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2919613,8,19.8,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',0,100),(2919852,6,19.81,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2919853,6,19.81,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2919890,23,19.813118,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2920123,23,53.04923,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2920366,23,53.091623,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2920565,22,19.842135,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2920665,6,24.01,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2920957,2,24.04,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2921066,7,19.86,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2921193,5,24.06,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2921194,2,24.06,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2921195,6,24.06,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2921273,7,53.36,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2921312,15,19.86667,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2921348,23,53.360112,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2921454,5,24.07,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2921455,2,24.07,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2921592,22,24.070219,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2921613,5,24.08,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2921727,4,19.88,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2921728,2,19.88,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2921776,15,24.08333,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2921816,7,24.09,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2921838,23,19.883773,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2921844,14,19.88667,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2921893,6,19.89,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2921911,22,24.092889,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2921944,2,24.1,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2921945,15,24.1,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2922280,23,53.656863,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2922363,2,24.12,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2922450,23,53.75578,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2922489,8,19.9,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',0,100),(2922490,8,19.9,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',0,100),(2922491,8,19.9,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2922492,4,19.9,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2922597,2,24.13,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2922899,2,24.14,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2922900,2,24.14,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2922901,2,24.14,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2923017,15,24.15,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2923018,5,24.15,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2923282,22,24.160963,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2923297,22,24.166638,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2923391,6,24.17,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2923392,6,24.17,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2923426,22,24.177989,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2923439,4,24.18,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2923838,6,19.94,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2923839,4,19.94,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2923893,6,24.19,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2923894,5,24.19,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2924040,4,19.95,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2924217,22,24.215849,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2924377,6,24.22,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2924378,4,24.22,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2924379,7,24.22,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2924506,5,19.97,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2924562,2,24.23,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2924563,5,24.23,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2924751,4,24.24,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2925083,7,54.25,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2925107,23,54.264496,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2925233,23,54.32102,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2925361,23,54.391675,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2925362,23,54.391675,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2925429,8,20,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',0,100),(2925430,8,20,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',0,100),(2925431,8,20,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',0,100),(2925688,23,54.518854,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2925744,5,20,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2925911,5,24.28,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2926064,22,24.287868,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2926194,23,54.702557,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2926266,7,24.3,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2926268,5,24.3,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2926478,23,54.801474,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2926637,6,24.32,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2926638,5,24.32,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2926694,5,20.03,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2926695,2,20.03,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2927137,22,20.056241,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2927250,6,24.35,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2927251,5,24.35,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2927252,7,24.35,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2927296,4,20.06,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2927713,22,24.369468,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2927742,22,24.373262,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2928120,15,24.38333,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2928230,2,20.09,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2928231,2,20.09,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2928333,6,24.4,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2928334,6,24.4,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2928335,15,24.4,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2928386,23,24.405693,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2928604,2,24.41,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2928605,5,24.41,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2928630,15,24.41667,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2928633,22,24.416965,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2928762,23,55.055832,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2928790,22,24.424569,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2928837,8,20.1,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',0,100),(2928841,6,20.1,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2928909,5,24.43,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2928932,15,24.43333,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2928940,22,24.434073,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2928979,23,55.084094,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2929088,2,24.44,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2929089,4,24.44,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2929286,7,24.45,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2929287,6,24.45,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2929357,23,55.211273,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2929440,14,20.12,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2929441,6,20.12,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2929477,23,55.267797,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2929537,23,24.462217,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2929566,4,20.12,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2929567,7,20.12,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2929568,4,20.12,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2929697,5,24.47,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2929883,7,24.48,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2929884,6,24.48,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2929911,22,24.489233,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2929925,4,24.49,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2929971,5,20.14,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2930173,6,20.15,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2930174,15,20.15,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2930175,6,20.15,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2930195,22,24.50827,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2930389,15,24.51667,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2930594,6,24.53,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2930904,5,24.55,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2931083,6,24.56,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2931084,6,24.56,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2931085,6,24.56,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2931086,6,24.56,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2931087,2,24.56,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2931397,6,24.58,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2931398,5,24.58,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2931399,5,24.58,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2931400,5,24.58,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2931461,23,55.903692,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2931576,2,20.2,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2931577,6,20.2,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2931578,6,20.2,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2931720,23,55.960216,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2932096,2,20.22,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2932152,15,24.61667,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2932154,22,24.616889,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2932159,22,24.618794,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2932299,4,24.62,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2932300,4,24.62,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2932317,22,24.620704,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2932775,6,20.25,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2932776,2,20.25,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2932853,4,24.64,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2932895,23,24.64592,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2933186,6,24.66,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2933281,23,56.101526,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2933337,23,56.186312,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2933362,5,20.27,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2933414,15,24.66667,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2933442,22,24.674139,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2933560,22,24.683691,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2933562,22,24.685598,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2933614,6,24.69,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2933670,22,24.698973,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2933757,23,56.242836,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2933772,22,24.70661,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2933812,6,24.71,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2933813,6,24.71,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2933883,2,24.72,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2933908,22,24.729544,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2934187,6,24.74,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2934612,22,24.762041,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2934716,8,20.3,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2934718,2,20.3,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2934785,6,24.77,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2934786,6,24.77,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2934896,22,24.777344,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2935050,14,20.31,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2935051,5,20.31,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2935052,2,20.31,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2935225,2,24.79,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2935248,22,24.790735,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2935368,22,24.802213,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2935399,2,20.33,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2935522,5,24.81,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2935843,6,20.36,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2935844,6,20.36,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2935845,7,20.36,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2935909,6,24.82,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2936070,22,24.821355,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2936119,4,24.83,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2936264,22,24.832839,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2936307,5,24.84,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2936308,6,24.84,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2936583,6,20.38,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2937088,8,20.4,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',0,100),(2937089,4,20.4,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2937116,6,24.87,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2937117,4,24.87,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2937487,4,20.41,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2937599,2,24.9,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2937856,4,24.91,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2937889,15,24.91667,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2937971,15,20.43333,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2938049,5,24.92,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2938050,4,24.92,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2938272,5,24.94,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2938575,22,24.959348,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2938789,4,24.96,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2938831,5,24.97,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2938904,6,20.46,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2938905,6,20.46,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2938999,23,20.463144,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2939110,22,24.982383,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2939120,23,24.985064,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2939137,5,24.99,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2939483,7,20.49,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2939484,7,20.49,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2939485,4,20.49,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2939568,7,25,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2939809,14,20.5,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2940208,22,20.508579,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2940602,6,20.52,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2940715,14,20.525,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2940976,6,20.54,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2940978,7,20.54,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2941416,22,20.559698,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2941889,5,25.04,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2941927,22,25.047695,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2942321,23,25.055719,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2942476,8,20.6,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',0,100),(2942478,8,20.6,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',0,100),(2942566,2,25.07,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2942876,15,20.61667,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2942914,7,20.62,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2943210,6,25.11,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2943276,15,20.63333,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2943277,15,20.63333,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2943424,23,25.112243,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2943705,6,25.13,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2943706,5,25.13,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2943729,22,25.130391,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2943750,6,20.65,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2943921,15,25.13333,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2944216,6,25.16,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2944631,22,25.186228,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2944818,5,25.2,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2944843,22,25.203575,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2944844,22,25.203575,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2944888,6,25.21,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2944889,2,25.21,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2944890,6,25.21,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2945011,15,20.68333,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2945151,23,59.351656,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2945269,8,20.7,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',0,100),(2945270,15,20.7,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2945327,15,25.23333,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2945556,6,25.24,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2945557,6,25.24,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2945714,22,25.240199,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2945741,4,25.25,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2945742,4,25.25,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2945962,23,25.253553,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2946007,4,25.26,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2946083,5,20.71,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2946115,15,20.71667,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2946142,23,59.902765,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2946293,14,20.72,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2946437,14,20.73,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2946439,5,20.73,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2946526,22,25.272997,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2946535,22,25.276851,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2946567,15,25.28333,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2946568,15,25.28333,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2946797,6,25.29,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2946834,6,20.75,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2947080,22,25.301937,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2947085,22,25.305803,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2947171,14,20.77333,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2947292,2,25.32,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2947318,22,25.325114,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2947361,7,20.78,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2947362,6,20.78,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2947383,22,25.328972,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2947648,6,25.34,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2947690,22,25.348285,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2947871,8,20.8,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',0,100),(2947872,8,20.8,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',0,100),(2947874,6,20.8,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2947922,22,25.35602,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2948080,22,25.36181,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2948195,7,25.37,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2948321,22,25.38307,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2948387,7,60.52,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2948657,22,25.39274,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2948671,15,25.4,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2948749,22,25.404338,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2948814,22,25.414012,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2948857,6,25.42,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2948859,4,25.42,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2949004,15,25.43333,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2949022,22,25.439156,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2949307,22,20.800164,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2949385,2,25.47,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2949579,5,25.48,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2949605,5,25.49,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2949760,22,25.49917,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2949841,15,20.83333,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2949860,6,25.5,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2949914,4,25.51,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2949998,22,25.51467,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2949999,22,25.514675,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2950268,7,61.24,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2950468,4,20.85,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2951089,22,25.563124,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2951361,22,25.570877,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2951540,5,20.91,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2951632,22,25.596094,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2951795,4,20.92,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2951943,15,25.61667,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2952006,4,20.93,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2952007,6,20.93,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2952103,22,25.627143,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2952381,22,25.644616,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2952480,7,25.65,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2952806,22,25.669864,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2952913,2,20.97,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2952986,22,25.679572,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2953199,7,25.68,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2953200,4,25.68,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2953249,4,25.69,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2953266,6,20.98,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2953883,22,25.710675,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2954067,22,25.724278,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2954104,6,25.73,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2954375,22,25.730115,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2954640,22,25.753457,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2954871,7,25.76,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2954995,5,25.78,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2955149,5,25.8,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2955514,22,25.821578,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2955736,22,25.831315,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2955782,4,25.84,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2955783,6,25.84,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2956018,23,21.000122,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2956119,22,25.85859,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2956154,4,25.86,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2956155,7,25.86,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2956178,22,25.860541,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2956284,22,21.006228,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2956328,6,21.01,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2956363,22,25.876131,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2956371,2,25.88,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2956392,22,25.885882,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2956433,4,25.89,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2956434,4,25.89,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2956740,22,21.024036,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2956795,15,21.03333,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2956796,15,21.03333,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2956921,2,25.91,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2956949,15,25.91667,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2957223,23,25.931841,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2957224,23,25.931841,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2957268,6,25.94,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2957269,2,25.94,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2957270,7,25.94,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2957356,22,25.940494,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2957414,4,21.08,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2957455,15,21.08333,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2957585,22,21.084624,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2957700,22,25.96001,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2957948,6,25.97,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2957978,22,25.979536,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2957997,4,25.98,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2957998,4,25.98,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2958108,6,25.99,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2958244,2,21.1,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2958324,22,25.993201,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2958568,15,26,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2958779,5,21.12,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2958780,6,21.12,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2958781,6,21.12,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2959334,22,21.138141,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2959373,6,21.14,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2959788,23,64.721436,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2959826,5,21.16,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2959858,15,21.16667,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2959859,15,21.16667,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2960021,5,21.17,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2960221,2,21.18,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2960222,4,21.18,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2960388,22,26.004928,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(2960402,2,26.01,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2960600,4,26.02,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2960628,4,21.19,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2960629,6,21.19,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2960730,2,21.2,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2960844,5,26.03,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2960913,22,21.207818,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2960937,2,21.21,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2961100,7,21.22,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2961101,7,21.22,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2961115,23,26.030758,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2961162,4,26.04,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2961163,2,26.04,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2961164,5,26.04,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2961165,4,26.04,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2961166,5,26.04,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2961263,22,21.227486,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2961370,23,65.357331,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2961563,22,26.057691,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2961743,22,26.067472,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2961774,4,26.07,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2961835,22,21.252529,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2962012,4,26.08,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2962153,6,21.27,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2962217,22,26.090941,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2962379,4,26.1,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2962380,4,26.1,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2962381,7,26.1,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2962382,15,26.1,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2962565,4,21.3,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2962626,22,21.300864,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2962699,5,26.11,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2962787,4,21.31,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2962832,15,21.31667,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2962942,6,26.12,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2962944,7,26.12,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2962945,2,26.12,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2963102,22,26.12225,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2963258,23,26.143806,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2963262,22,26.147702,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2963409,6,26.15,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2963410,4,26.15,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2963430,22,26.151614,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2963516,4,26.17,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2963693,5,26.18,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2963778,2,21.35,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2963838,22,26.182955,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2963864,5,26.19,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2964107,2,26.2,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2964161,4,26.21,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2964249,22,21.37255,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2964405,15,26.23333,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2964443,22,26.247654,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2964486,6,21.38,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2964726,6,26.25,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2964727,5,26.25,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2964728,4,26.25,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2964849,2,26.26,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2964860,15,26.26667,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2965024,22,26.273159,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(2965063,7,26.28,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2965115,5,21.4,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2965187,5,26.28,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2965188,6,26.28,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2965351,6,26.3,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2965352,5,26.3,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2965353,7,26.3,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2965529,22,26.312413,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2965660,23,26.327509,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2965661,23,26.327509,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2965948,7,21.43,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2965979,22,21.431784,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2966139,22,26.34187,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2966144,22,26.345804,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2966338,6,26.36,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2966339,7,26.36,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2966413,2,21.45,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2966414,5,21.45,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2966415,6,21.45,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2966492,15,26.36667,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2966623,4,26.38,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2966624,4,26.38,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2966625,2,26.38,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2966742,22,21.460525,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2966755,15,21.46667,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2966846,5,26.4,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2966847,4,26.4,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2966908,6,26.41,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2967114,4,21.48,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2967115,6,21.48,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2967116,6,21.48,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2967384,6,26.44,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2967558,5,26.45,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2967559,5,26.45,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2967585,23,26.454688,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2967621,23,67.533505,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2967816,6,26.46,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2967887,6,21.51,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2968111,4,26.47,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2968330,5,26.49,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2968375,23,26.497081,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2968398,4,26.5,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2968400,15,26.5,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2968756,2,26.52,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2968983,4,26.53,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2969283,4,26.54,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2969405,4,26.55,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2969406,4,26.55,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2969553,7,21.58,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2969621,7,68.52,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2969659,22,26.562299,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2969673,22,26.568207,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2969835,4,26.57,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2969836,2,26.57,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2970113,22,26.585956,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2970118,22,26.587926,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2970145,6,26.59,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(2970182,22,26.597788,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2970351,22,26.607662,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2970430,6,21.61,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2970536,5,26.62,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2970735,15,26.63333,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2970747,23,26.638391,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2970756,4,21.62,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2970757,5,21.62,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2970787,22,21.626117,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2970843,7,26.64,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2970943,15,26.65,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2970944,15,26.65,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2971000,22,26.662931,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2971025,22,21.635131,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2971093,4,26.67,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2971260,2,21.65,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2971261,15,21.65,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2971388,2,26.68,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2971426,22,26.690585,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(2971429,22,26.692563,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2971511,7,21.66,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2971512,5,21.66,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2971567,22,26.698489,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(2971604,4,26.7,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2971701,5,21.67,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2971757,22,26.700463,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2971790,5,26.71,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2971881,5,21.68,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2972034,6,21.69,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2972100,7,26.72,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2972101,6,26.72,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2972188,22,26.72023,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2972208,2,26.73,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2972209,2,26.73,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2972299,5,21.71,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2972364,22,26.736048,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2972551,6,21.72,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2972552,2,21.72,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2972553,2,21.72,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2972554,6,21.72,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2972630,15,26.75,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2972631,2,26.75,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2972973,2,26.77,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2973025,6,21.74,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2973026,2,21.74,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2973127,22,26.771644,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2973142,23,26.779701,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2973143,23,26.779701,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2973153,2,26.78,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2973294,15,26.78333,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2973295,22,26.783517,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2973334,22,26.795387,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2973497,15,26.81667,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2973807,6,21.77,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2973808,4,21.77,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2973918,4,26.84,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2973919,4,26.84,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2973920,4,26.84,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2974049,6,21.79,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2974050,6,21.79,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2974102,5,26.85,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2974103,6,26.85,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2974203,15,21.8,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2974204,5,21.8,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2974296,22,26.862719,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2974310,22,26.866682,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2974520,5,26.88,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2974674,22,26.882533,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2974697,2,26.89,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2974775,22,26.892442,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2974806,7,26.9,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2974861,6,21.82,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2974862,6,21.82,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2974863,5,21.82,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2974864,6,21.82,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2974865,6,21.82,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2974974,2,26.91,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2975001,15,26.91667,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(2975006,22,26.918218,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2975018,4,26.92,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2975108,22,26.928133,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2975207,2,26.93,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2975208,7,26.93,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2975209,4,26.93,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2975211,4,26.93,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2975238,22,26.932101,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2975251,22,26.93805,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(2975337,22,21.824833,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2975408,22,26.940031,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2975413,22,26.947973,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2975414,22,26.947973,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2975619,5,26.96,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2975678,5,21.85,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2975766,22,26.965827,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(2975783,2,26.97,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2975784,5,26.97,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2975904,6,26.98,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2975905,7,26.98,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2975906,2,26.98,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2975938,15,26.98334,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2976116,22,26.999582,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2976301,4,21.87,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2976302,6,21.87,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2976574,4,27,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2976585,5,27,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2976693,4,21.88,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2976694,4,21.88,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2976935,2,21.9,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2977342,23,71.829329,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2977471,7,21.92,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2977472,4,21.92,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2977533,23,27.005797,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2977539,22,27.009505,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2977668,11,72.03333,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2977751,6,27.01,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2977782,22,27.013478,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2977901,5,21.94,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2977975,6,27.03,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2977976,5,27.03,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2977977,6,27.03,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2977980,6,27.03,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2977981,6,27.03,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100); +INSERT INTO `TimeSeriesResultValues` VALUES (2977982,5,27.03,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2977983,7,27.03,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2978086,4,21.95,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2978087,4,21.95,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2978209,2,27.04,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2978210,5,27.04,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2978211,2,27.04,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2978264,2,21.97,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2978383,5,27.05,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2978384,2,27.05,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2978470,4,21.98,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2978851,2,21.99,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2978852,4,21.99,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2978892,11,72.6,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2979052,22,27.087011,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2979188,15,27.1,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(2979189,2,27.1,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2979190,2,27.1,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2979492,6,27.11,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2979493,6,27.11,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2979678,22,27.124796,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2979721,23,27.132976,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2979803,15,22,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(2979878,6,27.14,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(2979879,2,27.14,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2980041,2,27.15,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2980042,2,27.15,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2980094,22,27.164608,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2980255,4,27.17,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2980256,4,27.17,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2980258,2,27.17,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2980259,7,27.17,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2980383,5,22.01,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2980438,4,27.18,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2980737,4,27.2,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2980738,2,27.2,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2980739,2,27.2,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2980740,15,27.2,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2980753,22,27.202451,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2980764,5,27.21,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2980778,22,27.214401,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2980808,6,27.22,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2980809,7,27.22,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2980810,7,27.22,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(2980873,5,22.03,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2981049,5,27.23,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2981050,2,27.23,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2981108,7,27.24,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2981325,4,27.26,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2981326,2,27.26,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2981378,6,22.05,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2981379,6,22.05,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(2981380,6,22.05,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2981381,7,22.05,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2981437,11,73.76667,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2981472,15,27.26667,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2981502,6,27.27,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(2981628,2,22.06,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2981684,4,22.07,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2981747,22,27.280192,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2981842,5,27.29,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2981863,22,27.294155,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2981927,6,22.08,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2981928,4,22.08,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2981965,7,27.3,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2982001,23,27.302548,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2982268,4,27.32,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2982269,6,27.32,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2982384,4,27.33,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2982408,15,27.33333,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2982409,15,27.33334,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2982570,23,27.344941,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2982607,5,27.35,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2982608,7,27.35,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2982609,5,27.35,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2982754,22,27.364019,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(2982909,4,27.37,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2983011,22,27.378007,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2983034,15,27.38333,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2983058,4,27.39,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2983072,5,22.09,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2983073,4,22.09,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2983529,6,22.11,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2983567,2,27.42,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2983650,11,74.86667,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2983701,15,22.11667,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2983901,6,22.13,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(2984016,2,22.14,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2984017,2,22.14,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2984156,5,27.45,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2984353,22,27.477972,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2984562,2,27.49,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2984815,4,22.16,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2984816,4,22.16,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2984817,6,22.16,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(2984847,15,22.16667,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2984848,15,22.16667,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2985139,6,22.18,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2985140,5,22.18,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2985141,4,22.18,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2985191,5,27.52,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(2985219,23,27.528644,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2985340,11,75.78333,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2985439,7,27.53,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2985440,7,27.53,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(2985441,4,27.53,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2985462,22,27.53002,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(2985463,22,27.53202,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(2985663,15,27.55,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2985840,5,27.56,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2985841,5,27.56,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2985842,4,27.56,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2985932,4,22.21,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2985991,2,22.22,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2985993,2,22.22,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2986033,2,22.23,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2986084,4,27.57,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2986102,22,27.578091,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(2986120,5,27.58,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2986121,2,27.58,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(2986122,6,27.58,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2986174,15,22.23333,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2986426,11,76.15,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2986726,6,27.61,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2986899,7,27.63,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2986940,2,22.26,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2986941,6,22.26,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2986942,6,22.26,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2987002,2,27.64,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2987074,23,27.655823,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2987106,7,27.66,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2987107,2,27.66,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(2987316,22,27.682394,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2987488,7,27.69,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2987489,6,27.69,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2987490,5,27.69,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2987491,4,27.69,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2987492,6,27.69,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(2987589,11,76.53333,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2987930,5,22.31,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2988059,22,27.722555,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(2988380,4,22.34,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2988464,5,27.74,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2988465,6,27.74,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2988688,2,22.36,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2988883,7,22.37,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2988950,22,27.774799,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2989022,6,27.79,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2989023,2,27.79,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2989051,22,27.792894,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(2989091,11,77.05,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2989164,22,27.806976,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2989174,5,27.81,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2989319,11,77.16667,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2989356,6,27.82,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2989591,5,27.83,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2989696,7,22.39,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2989791,2,27.84,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2989792,7,27.84,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2989793,6,27.84,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2989826,11,77.43333,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2989840,11,77.45,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2989875,11,77.5,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2989897,2,22.4,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2989977,22,27.853247,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2990094,15,27.86667,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(2990272,11,77.68333,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2990404,7,22.42,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2990436,6,27.87,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(2990437,6,27.87,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(2990556,5,27.88,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2990588,2,27.89,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2990674,11,77.95,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2990711,2,22.43,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2990712,5,22.43,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2990809,7,27.9,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2990877,22,27.915674,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2990909,4,27.92,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2990910,6,27.92,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2990911,6,27.92,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2991023,5,27.93,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2991024,2,27.93,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2991025,5,27.93,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2991064,11,78,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(2991246,11,78.03333,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2991285,11,78.1,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2991365,23,22.469746,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2991406,6,22.47,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(2991490,4,27.95,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2991491,7,27.95,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2991492,7,27.95,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2991525,22,27.955982,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2991592,5,22.48,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2991634,2,22.49,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2991669,2,27.96,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2991671,2,27.96,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(2991672,2,27.96,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2991688,15,27.96667,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2991726,5,27.97,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2991727,7,27.97,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(2991728,7,27.97,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(2991844,7,22.5,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2991845,5,22.5,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2991846,15,22.5,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2991847,15,22.5,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2991853,7,27.97,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(2991876,22,27.974128,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(2991892,2,27.98,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2991893,5,27.98,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2992173,11,78.36666,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2992191,11,78.38334,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2992199,11,78.4,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2992211,11,78.41666,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(2992366,2,22.52,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2992481,11,78.53333,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(2992813,2,28,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(2992911,5,22.55,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2992912,6,22.55,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2993214,6,22.58,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2993277,7,22.58,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2993278,6,22.58,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2993317,23,22.582794,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2993517,11,78.96667,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(2993849,11,79.03334,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(2994043,11,79.11666,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2994172,22,28.006401,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(2994199,4,28.01,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2994244,11,79.2,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2994406,7,22.63,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2994439,15,22.63333,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(2994677,4,28.05,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2994726,6,22.65,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2994930,15,22.66667,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2994994,11,79.38333,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2995057,6,28.08,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(2995198,23,28.093884,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2995258,22,28.103315,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2995309,11,79.45,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2995344,4,22.68,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(2995345,6,22.68,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(2995474,2,28.11,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2995690,2,28.13,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2995691,7,28.13,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(2995720,15,22.7,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(2995840,15,28.13333,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2995869,4,28.14,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(2996138,2,28.15,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(2996160,22,28.15183,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2996324,6,28.16,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2996325,6,28.16,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(2996396,11,79.85001,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(2996570,2,28.17,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(2996586,22,28.172052,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(2996619,11,79.9,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(2996641,11,79.91666,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(2996726,6,22.76,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(2996744,6,28.18,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2996745,7,28.18,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(2996788,4,28.19,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(2996789,4,28.19,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2997029,7,22.78,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2997160,11,80.08334,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2997254,2,28.21,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2997362,5,28.23,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(2997379,15,28.23333,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(2997431,11,80.2,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(2997450,11,80.21667,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2997486,23,28.249325,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(2997497,2,28.25,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(2997517,22,28.259094,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(2997568,2,22.79,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2997647,11,80.3,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(2997901,11,80.36666,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(2997928,15,22.81667,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(2997955,2,22.82,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(2997956,5,22.82,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(2998052,11,80.4,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(2998186,5,28.29,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(2998187,6,28.29,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2998317,6,22.84,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2998398,6,28.31,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(2998442,5,28.32,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(2998471,5,28.33,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2998578,15,22.86667,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(2998649,11,80.56667,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(2998694,22,28.338134,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(2998768,11,80.63333,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(2998898,6,22.89,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(2998960,15,28.35,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(2998961,2,28.35,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(2999104,22,28.35233,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(2999140,5,28.36,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(2999141,5,28.36,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(2999142,5,28.36,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(2999305,15,28.36666,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(2999309,22,28.368556,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(2999325,2,28.37,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(2999362,11,80.78333,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(2999428,11,80.85,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(2999442,11,80.86667,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(2999546,4,22.91,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(2999613,7,28.39,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(2999614,4,28.39,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(2999717,15,28.4,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(2999718,4,28.4,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3000058,23,28.433028,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3000061,15,28.43333,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3000105,11,81.03333,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3000280,6,28.44,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3000362,4,22.94,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3000410,11,81.15,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3000487,5,28.46,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3000488,5,28.46,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3000535,7,28.47,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3000571,22,28.478213,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3000588,5,28.48,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3000610,22,28.482279,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3000667,5,22.95,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3000668,4,22.95,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3000706,6,28.49,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3000707,6,28.49,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3000708,5,28.49,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3000846,2,22.96,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3000911,22,28.502604,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3000912,22,28.502604,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3000920,22,28.504634,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3000956,22,28.5148,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3000986,2,28.52,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3001027,11,81.25,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3001176,11,81.31667,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3001350,11,81.36666,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3001436,7,28.55,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3001474,6,22.99,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3001475,6,22.99,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3001476,6,22.99,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3001477,7,22.99,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3001548,11,81.43333,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3001629,22,28.569725,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3001647,11,81.46667,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3001714,6,28.57,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3001715,5,28.57,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3001820,23,28.574338,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3001821,23,28.574338,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3001824,22,28.579906,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3001845,22,28.581939,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3001847,15,28.58333,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3001849,22,28.583972,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3001878,2,28.59,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3001939,11,81.55,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3001940,11,81.55,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3002085,11,81.56667,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3002124,11,81.60001,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3002143,22,28.600266,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3002179,22,28.614515,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3002192,2,28.62,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3002225,6,28.63,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3002282,11,81.63333,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3002485,23,28.644993,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3002574,6,28.65,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3002619,4,28.66,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3002640,11,81.78333,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3002798,11,81.86666,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3002868,22,28.67972,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3002889,11,81.9,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3003084,6,28.68,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3003085,4,28.68,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3003111,15,28.68333,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3003209,11,82,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3003297,11,82.05,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3003307,23,28.687386,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3003308,23,28.687386,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3003326,4,28.69,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3003365,6,28.7,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3003453,11,82.08333,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3003536,2,28.71,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3003666,15,23.01667,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3003696,4,28.72,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3003697,4,28.72,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3003707,22,28.724573,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3003732,2,28.73,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3003733,2,28.73,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3003767,2,23.02,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3003768,6,23.02,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3003769,4,23.02,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3003818,11,82.18333,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3003908,4,28.74,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3003997,22,28.742946,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3004011,15,28.75,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3004041,23,28.758041,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3004075,11,82.23334,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3004116,2,23.04,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3004200,6,28.76,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3004201,4,28.76,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3004300,11,82.31667,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3004316,11,82.33334,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3004358,11,82.36667,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3004457,23,28.772172,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3004604,11,82.41666,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3004651,4,28.79,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3004652,5,28.79,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3004688,22,28.804182,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3004716,4,28.81,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3004748,6,23.07,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3004828,11,82.45,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3004894,15,28.81667,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3004898,22,28.81848,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3004933,11,82.48334,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3004934,11,82.48334,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3004971,11,82.51666,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3005013,7,28.83,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3005014,7,28.83,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3005015,6,28.83,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3005052,5,23.08,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3005053,5,23.08,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3005221,4,28.85,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3005222,15,28.85,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3005296,11,82.58334,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3005316,11,82.6,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3005440,23,28.856958,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3005441,23,28.856958,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3005473,5,28.86,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3005494,2,23.1,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3005542,11,82.66667,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3005579,11,82.7,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3005596,11,82.71667,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3005707,11,82.75,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3005858,11,82.76667,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3005976,6,28.89,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3005978,7,28.89,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3005979,4,28.89,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3006002,22,28.89411,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3006077,6,28.91,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3006078,2,28.91,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3006079,4,28.91,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3006106,11,82.81667,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3006235,22,28.918649,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3006252,4,28.92,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3006331,5,28.94,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3006366,11,82.86666,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3006548,23,28.941744,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3006628,7,28.96,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3006652,22,28.963676,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3006660,15,23.15,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3006750,11,82.96667,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3006878,4,23.16,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3006879,4,23.16,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3006880,4,23.16,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3006978,2,23.17,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3007069,7,28.99,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3007354,5,23.18,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3007355,4,23.18,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3007356,7,23.18,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3007619,11,83.11667,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3007633,11,83.13333,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3007680,11,83.16666,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3007681,11,83.16666,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3007736,15,29,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3007878,5,23.2,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3007898,7,83.22,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3007935,11,83.25,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3008014,11,83.31667,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3008301,11,83.35,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3008357,6,23.23,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3008679,2,23.24,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3008708,11,83.41666,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3008874,4,23.25,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3008875,6,23.25,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3008908,11,83.46667,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3008944,11,83.48334,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3009059,22,23.262111,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3009131,6,29.02,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3009132,7,29.02,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3009133,6,29.02,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3009250,11,83.53333,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3009251,11,83.53333,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3009290,5,23.27,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3009353,2,23.28,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3009425,5,29.04,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3009426,4,29.04,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3009500,2,29.06,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3009571,15,23.28333,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3009651,11,83.58333,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3009712,15,29.06667,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3009749,5,29.07,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3009750,7,29.07,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3009751,6,29.07,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3009836,22,29.076375,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3009910,6,23.31,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3010002,22,29.088678,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3010004,22,29.088683,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3010033,7,29.09,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3010098,11,83.61667,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3010169,7,23.33,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3010170,4,23.33,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3010332,7,29.12,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3010392,22,23.331012,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3010394,15,23.33333,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3010413,2,23.34,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3010463,11,83.7,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3010594,15,23.35,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3010595,5,23.35,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3010733,2,29.15,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3010734,7,29.15,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3010735,4,29.15,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3010857,6,23.36,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3010885,11,83.8,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3011161,4,23.37,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3011162,4,23.37,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3011183,15,29.16667,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3011259,23,29.181971,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3011505,23,29.196102,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3011536,7,29.2,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3011617,4,23.38,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3011699,5,29.21,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3011700,5,29.21,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3011872,6,29.22,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3011873,7,29.22,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3011909,2,29.23,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3011910,5,29.23,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3011976,11,84.1,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3012162,11,84.13334,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3012255,7,29.25,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3012256,7,29.25,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3012257,6,29.25,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3012429,2,29.26,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3012430,2,29.26,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3012473,22,29.271486,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3012507,11,84.2,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3012567,6,29.28,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3012621,4,23.44,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3012644,22,23.441066,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3012661,22,23.446661,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3012764,22,23.450397,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3012768,22,23.452267,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3012836,22,29.296169,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3012870,11,84.28333,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3012885,11,84.28334,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3012897,11,84.3,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3013018,22,23.467213,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3013120,22,23.480296,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3013175,6,29.3,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3013292,6,23.49,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3013293,6,23.49,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3013365,22,29.318811,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3013376,4,29.32,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3013378,5,29.32,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3013417,11,84.4,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3013442,11,84.41666,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3013443,11,84.41666,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3013550,22,29.347626,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3013565,5,29.35,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3013684,4,29.36,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3013685,4,29.36,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3013856,6,29.38,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3013958,11,84.55,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3013974,22,29.390878,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3013988,5,29.4,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3014118,11,84.61666,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3014132,11,84.61667,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3014134,11,84.61667,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3014166,6,29.41,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3014167,5,29.41,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3014168,6,29.41,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3014169,6,29.41,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3014170,7,29.41,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3014202,22,29.419728,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3014251,11,84.65,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3014274,2,29.42,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3014395,6,29.43,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3014396,4,29.43,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3014428,23,29.436329,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3014460,11,84.7,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3014583,2,29.46,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3014673,22,23.502717,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3014676,22,23.504589,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3014683,22,23.508329,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3014717,11,84.73334,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3014757,11,84.76667,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3014810,22,29.489852,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3014826,6,29.49,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3014836,11,84.78333,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3014939,4,29.5,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3015007,11,84.85,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3015051,6,29.51,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3015052,7,29.51,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3015075,15,29.51667,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3015172,11,84.86668,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3015312,6,29.54,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3015341,22,29.543513,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3015357,22,29.549712,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3015433,5,23.53,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3015594,5,29.56,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3015595,2,29.56,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3015675,11,84.96667,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3015746,2,23.55,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3015748,4,23.55,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3015849,5,23.56,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3015866,15,23.56667,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3015998,11,85.05,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3016032,4,29.59,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3016033,6,29.59,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3016183,4,23.58,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3016302,2,29.61,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3016379,15,29.61667,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3016405,6,29.62,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3016406,2,29.62,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3016407,6,29.62,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3016408,6,29.62,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3016496,2,23.59,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3016497,6,23.59,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3016503,22,29.622036,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3016584,11,85.16666,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3016664,22,23.598142,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3016692,6,29.64,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3016693,7,29.64,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3016694,6,29.64,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3016743,4,29.65,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3016803,5,23.61,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3016804,4,23.61,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3016871,6,23.62,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3016892,11,85.21667,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3016921,11,85.23333,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3016934,2,23.62,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3017019,5,29.66,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3017020,5,29.66,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3017138,15,23.63333,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3017200,5,29.67,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3017202,6,29.67,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3017323,4,23.65,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3017324,6,23.65,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3017443,23,23.65675,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3017466,5,23.66,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3017618,22,23.663728,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3017657,7,23.67,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3017659,5,23.67,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3017713,11,85.38333,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3017799,4,29.72,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3017800,4,29.72,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3017925,4,29.72,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3017971,2,29.73,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3017988,22,23.682478,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3018016,5,23.69,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3018090,11,85.46667,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3018192,11,85.5,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3018253,11,85.53333,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3018335,6,23.7,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3018360,15,29.75,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3018362,6,29.75,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3018444,11,85.58334,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3018469,11,85.6,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3018540,22,23.710616,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3018579,6,29.77,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3018580,7,29.77,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3018581,6,29.77,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3018648,22,29.785552,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3018777,11,85.63333,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3018830,23,23.727405,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3018911,11,85.68334,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3018993,11,85.7,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3019010,11,85.71667,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3019040,6,29.8,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3019041,15,29.8,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3019138,11,85.76666,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3019162,11,85.78333,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3019329,2,29.84,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3019360,22,23.733143,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3019362,15,23.73333,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3019377,22,23.738769,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3019392,4,23.74,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3019445,6,29.85,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3019498,22,29.860203,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3019525,5,29.87,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3019599,11,85.81667,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3019600,11,85.81667,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3019649,11,85.85,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3019756,5,23.76,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3019803,2,29.89,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3019835,7,29.9,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3019836,7,29.9,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3019837,6,29.9,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3019866,23,29.902652,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3019892,22,29.916241,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3019899,23,29.916783,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3019925,2,23.77,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3019984,5,29.92,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3020013,22,29.926623,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3020048,11,85.86666,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3020113,4,23.78,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3020139,15,23.78333,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3020185,22,29.932851,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3020366,2,29.95,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3020468,11,85.93333,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3020599,6,29.98,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3020600,7,29.98,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3020629,22,29.986872,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3020650,4,29.99,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3020852,2,23.82,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3020901,7,23.83,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3020931,22,23.830847,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3021210,5,30,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3021589,22,23.859066,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3021627,15,23.86667,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3021732,11,86.18333,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3021948,11,86.23334,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3021966,11,86.25,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3022002,11,86.26667,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3022035,2,23.88,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3022261,15,23.9,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3022508,7,30.01,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3022509,2,30.01,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3022511,6,23.91,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3022512,6,23.91,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3022556,23,23.911108,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3022603,22,30.018052,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3022952,11,86.45,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3023012,11,86.5,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3023013,11,86.5,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3023096,6,30.06,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3023129,22,30.067978,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3023131,4,23.93,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3023228,11,86.55,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3023258,4,23.94,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3023315,22,30.067978,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3023355,22,30.076303,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3023434,11,86.6,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3023668,4,23.97,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3023704,2,30.1,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3023822,22,23.979623,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3023860,6,23.98,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3023861,5,23.98,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3023925,5,30.12,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3023926,4,30.12,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3023971,11,86.69999,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3024047,5,23.99,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3024088,2,30.13,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3024100,22,30.138764,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3024121,11,86.71667,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3024481,11,86.78333,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3024482,11,86.78333,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3024483,11,86.78333,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3024560,15,30.18333,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3024595,4,30.19,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3024596,2,30.19,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3024634,5,30.2,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3024636,2,30.2,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3024682,22,30.213794,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3024713,6,30.22,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3024894,4,24,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3025153,11,86.91668,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3025188,6,30.24,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3025189,6,30.24,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3025190,6,30.24,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3025209,22,30.242993,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3025226,5,30.25,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3025270,15,30.26667,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3025357,4,30.27,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3025405,22,30.282644,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3025446,11,86.95,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3025716,11,86.98334,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3025799,2,30.3,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3025800,5,30.3,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3025838,5,30.31,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3026004,6,30.32,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3026005,6,30.32,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3026006,7,30.32,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3026042,2,30.33,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3026059,22,30.332761,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3026093,22,30.341112,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3026094,22,30.341112,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3026170,22,24.007919,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3026213,6,24.01,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3026214,6,24.01,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3026215,4,24.01,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3026247,22,24.013578,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3026279,4,24.02,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3026290,22,30.347384,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3026455,23,30.368975,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3026504,5,24.03,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3026525,22,24.036234,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3026603,6,30.37,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3026604,7,30.37,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3026624,22,30.372458,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3026708,2,24.04,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3026740,22,30.387089,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3026750,2,30.39,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3026769,22,30.393359,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3026883,22,24.045667,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3026979,4,30.4,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3027014,2,30.41,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3027061,6,30.42,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3027150,6,24.06,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3027220,5,30.43,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3027221,5,30.43,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3027222,5,30.43,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3027241,15,30.43333,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3027258,5,30.44,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3027259,5,30.44,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3027350,22,24.077771,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3027435,6,30.45,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3027436,15,30.45,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3027437,6,30.45,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3027526,22,24.085329,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3027561,6,24.09,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3027562,5,24.09,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3027591,22,30.454021,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3027624,23,30.467892,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3027684,4,30.48,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3027711,11,87.21667,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3027784,23,24.094811,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3027827,3,24.1003,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3027917,2,30.49,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3027918,5,30.49,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3027935,22,30.493787,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3028002,4,24.11,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3028237,11,87.33334,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3028327,23,30.510285,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3028377,4,30.53,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3028474,4,24.13,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3028689,6,24.14,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3028690,2,24.14,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3028728,11,87.46667,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3028834,4,30.55,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3028835,6,30.55,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3028836,4,30.55,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3028837,4,30.55,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3028838,7,30.55,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3028883,2,30.56,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3028966,11,87.55,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3029188,15,24.15,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3029239,11,87.63333,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3029266,4,30.58,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3029267,6,30.58,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3029268,7,30.58,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3029306,22,30.58806,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3029427,11,87.66666,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3029458,2,30.6,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3029633,6,30.61,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3029634,6,30.61,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3029681,4,30.62,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3029822,7,24.17,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3029823,7,24.17,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3029824,7,24.17,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3029871,22,24.177989,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3029894,23,30.623333,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3029918,6,30.63,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3029968,2,30.64,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3030053,15,24.18333,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3030118,11,87.76667,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3030140,11,87.78333,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3030226,5,30.66,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3030227,2,30.66,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3030305,11,87.83334,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3030346,2,24.19,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3030347,5,24.19,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3030411,22,30.676175,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3030508,6,30.68,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3030509,5,30.68,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3030510,6,30.68,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3030512,7,30.68,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3030513,6,30.68,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3030567,5,24.2,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3030568,2,24.2,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3030680,2,24.22,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3030706,11,87.88333,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3030755,23,30.693988,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3030773,4,30.7,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3030774,5,30.7,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3030775,2,30.7,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3030847,11,87.91666,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3030892,2,30.71,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3030957,15,30.73334,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3030987,2,30.74,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3031146,4,30.75,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3031147,2,30.75,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3031188,11,87.95,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3031255,5,24.23,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3031356,22,30.760185,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3031384,2,24.24,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3031385,5,24.24,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3031386,2,24.24,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3031502,2,30.77,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3031517,22,30.774898,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3031566,2,24.25,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3031646,22,24.26322,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3031657,22,24.26891,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3031823,5,30.8,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3031824,15,30.8,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3031825,4,30.8,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3031839,22,30.806437,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3031851,22,30.808538,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3031933,5,24.27,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3032117,5,30.81,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3032177,2,24.28,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3032219,5,24.29,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3032294,22,30.821159,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3032424,11,88.14999,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3032531,6,24.3,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3032532,6,24.3,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3032607,4,30.84,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3032690,11,88.21667,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3032691,11,88.21667,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3032740,2,30.86,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3032963,2,24.31,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3032981,7,30.87,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3032982,4,30.87,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3032983,7,30.87,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3033058,5,30.89,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3033072,23,30.891822,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3033073,23,30.891822,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3033183,22,24.312526,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3033514,5,30.93,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3033515,4,30.93,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3033516,5,30.93,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3033627,15,24.33333,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3033690,7,30.94,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3033691,7,30.94,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3033751,2,30.96,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3033846,22,30.981212,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3033889,23,30.990739,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3033949,11,88.44999,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3033982,22,24.340988,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3034078,22,24.350478,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3034395,2,31,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3034396,15,31,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3034398,5,31,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3034773,2,24.39,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3034926,11,88.58334,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3034966,15,24.4,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3034967,2,24.4,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3035082,11,88.6,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3035123,11,88.61666,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3035351,22,24.420767,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3035628,2,24.44,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3035716,22,24.445484,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3036159,23,31.00487,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3036188,22,31.012805,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3036218,5,31.02,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3036219,7,31.02,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3036220,2,31.02,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3036412,4,24.47,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3036463,5,31.05,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3036557,11,88.85,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3036720,5,31.07,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3036760,5,31.08,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3036761,2,31.08,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3036811,22,31.097231,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3036831,11,88.88333,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3036953,4,31.1,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3036954,6,31.1,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3036955,7,31.1,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3036977,23,31.103787,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3036978,22,31.105691,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3036980,22,31.107778,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3036983,22,31.10992,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3037106,22,31.126788,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3037189,4,31.13,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3037216,23,31.132049,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3037394,4,31.15,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3037466,11,88.98334,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3037512,2,24.52,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3037536,22,24.521598,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3037640,15,31.16666,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3037643,22,31.166967,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3037700,4,24.53,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3037784,11,89.03333,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3037824,2,31.18,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3037852,22,31.185992,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3037873,11,89.05,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3037933,22,24.534933,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3038000,2,24.55,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3038043,2,24.56,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3038044,6,24.56,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3038090,23,24.561134,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3038143,15,31.2,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3038157,22,31.202877,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3038252,4,31.21,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3038253,5,31.21,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3038307,4,24.57,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3038308,2,24.57,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3038309,4,24.57,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3038464,2,31.23,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3038488,23,31.230966,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3038602,23,31.245097,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3038817,23,31.259228,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3038851,6,31.26,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3039088,22,24.611168,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3039245,7,31.28,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3039246,7,31.28,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3039281,15,31.28333,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3039307,22,31.291769,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3039429,2,24.62,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3039500,6,31.31,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3039502,5,31.31,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3039503,7,31.31,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3039535,23,31.315752,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3039658,5,24.64,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3039679,5,31.32,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3039680,2,31.32,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3039702,22,31.321406,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3039724,2,31.33,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3039916,22,31.331985,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3039947,7,31.34,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3039970,22,31.340472,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3040069,23,24.660051,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3040073,22,24.660781,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3040112,11,89.41666,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3040200,23,31.358145,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3040213,4,31.36,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3040214,7,31.36,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3040245,22,24.677964,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3040247,22,24.679871,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3040263,5,24.68,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3040427,22,31.363788,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3040581,7,24.69,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3040582,6,24.69,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3040583,2,24.69,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3040674,22,31.389208,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3040675,22,31.389263,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3040698,5,31.39,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3040699,7,31.39,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3040857,23,24.702444,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3040899,6,24.71,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3040949,23,31.400538,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3040957,22,31.406196,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3040994,11,89.61667,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3041108,4,31.41,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3041253,5,24.73,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3041254,5,24.73,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3041350,22,31.423188,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3041430,11,89.68334,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3041506,5,24.75,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3041507,4,24.75,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3041508,5,24.75,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3041531,6,31.44,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3041532,7,31.44,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3041553,22,31.442282,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3041644,11,89.73334,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3041685,22,24.762041,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3041761,7,31.47,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3041763,6,31.47,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3041764,4,31.47,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3041765,6,31.47,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3041843,6,24.77,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3041947,11,89.76666,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3041994,7,31.49,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3042150,22,31.495339,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3042152,22,31.497438,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3042185,22,31.508043,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3042201,2,31.51,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3042397,6,24.79,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3042398,7,24.79,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3042399,7,24.79,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3042400,6,24.79,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3042436,22,24.792651,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3042576,2,24.8,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3042593,23,24.801361,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3042747,15,31.55,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3042813,6,24.82,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3042892,23,31.555979,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3042925,22,31.569663,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3042974,22,24.821355,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3042980,22,24.827102,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3043074,6,31.57,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3043193,7,24.84,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3043253,22,31.601571,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3043311,11,90.01666,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3043338,11,90.03333,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3043367,11,90.05,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3043368,11,90.05,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3043505,22,31.603673,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3043527,4,31.61,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3043559,6,31.62,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3043590,11,90.06667,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3043649,5,31.63,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3043659,22,31.635596,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3043820,22,31.646221,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3043821,22,31.646221,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3043844,6,31.65,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3043869,22,31.652642,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3043875,23,31.654896,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3043895,22,24.863487,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3044021,22,31.661111,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3044035,23,31.669027,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3044105,11,90.18334,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3044127,2,24.87,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3044189,7,31.67,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3044242,22,31.680267,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3044329,23,24.886147,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3044332,22,24.888398,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3044457,5,31.69,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3044611,11,90.28333,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3044663,5,31.73,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3044664,7,31.73,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3044665,6,31.73,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3044713,5,24.9,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3044831,5,31.74,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3044832,2,31.74,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3044833,2,31.74,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3044852,22,31.7463,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3044964,2,24.91,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3044965,4,24.91,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3044985,22,24.91332,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3045000,7,31.75,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3045038,22,31.765479,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3045157,6,24.92,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3045158,4,24.92,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3045206,5,24.93,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3045298,7,31.78,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3045399,5,24.94,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3045420,22,24.945923,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3045520,6,31.8,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3045521,6,31.8,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3045570,15,31.81667,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3045585,2,31.82,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3045586,5,31.82,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3045683,7,31.83,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3045729,5,31.84,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3045770,4,24.95,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3045771,6,24.95,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3045772,4,24.95,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3045878,2,31.85,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3045894,22,31.859338,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3045914,4,31.86,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3045935,22,24.951677,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3045944,23,24.956802,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3046060,15,31.86667,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3046061,15,31.86667,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3046085,2,31.87,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3046216,6,24.98,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3046217,6,24.98,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3046219,4,24.98,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3046306,4,31.88,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3046373,22,24.980466,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3046409,5,24.99,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3046502,11,90.53333,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3046557,22,24.995823,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3046661,2,25,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3046736,7,31.91,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3046737,6,31.91,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3046738,7,31.91,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3046768,4,31.92,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3046965,6,31.94,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3046966,7,31.94,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3046967,2,31.94,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3047398,4,31.97,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3047537,22,31.972494,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3047547,22,31.978944,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3047596,7,31.99,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3048059,15,32,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3048212,11,90.83334,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3049033,22,32.004579,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3049066,2,32.01,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3049096,15,32.01667,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3049138,5,32.03,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3049158,23,32.036433,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3049162,22,32.038792,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3049163,22,32.038792,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3049188,22,32.047361,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3049191,22,32.049476,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3049200,4,32.05,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3049201,15,32.05,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3049256,11,90.95,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3049290,2,32.06,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3049334,6,32.07,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3049335,7,32.07,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3049336,2,32.07,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3049391,15,32.08333,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3049416,6,32.09,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3049417,6,32.09,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3049447,22,32.094456,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3049448,22,32.098689,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3049587,4,32.1,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3049588,4,32.1,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3049640,4,32.12,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3049641,7,32.12,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3049642,4,32.12,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3049716,11,91,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3049963,4,32.14,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3050000,2,32.15,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3050001,2,32.15,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3050021,11,91.06667,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3050236,2,32.18,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3050237,2,32.18,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3050238,4,32.18,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3050311,15,25.01666,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3050394,2,32.19,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3050409,22,32.199387,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3050504,7,25.03,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3050505,4,25.03,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3050506,6,25.03,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3050507,2,25.03,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3050622,22,32.216565,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3050745,7,25.05,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3050817,11,91.16666,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3050827,6,32.22,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3050828,4,32.22,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3051041,23,32.248398,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3051061,2,32.25,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3051062,6,32.25,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3051063,6,32.25,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3051064,5,32.25,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3051119,15,32.26667,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3051271,6,32.27,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3051299,22,32.274485,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3051342,23,25.06985,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3051454,11,91.28333,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3051535,4,32.29,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3051614,6,25.08,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3051635,6,32.3,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3051636,4,32.3,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3051637,2,32.3,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3051638,4,32.3,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3051639,15,32.3,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3051655,22,32.3024,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3051668,5,32.31,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3051734,11,91.31667,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3051776,22,25.084216,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3051882,23,32.319053,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3051883,23,32.319053,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3051910,22,32.323847,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3051954,15,25.1,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3052074,4,25.12,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3052096,22,25.122692,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3052127,6,32.33,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3052168,5,32.34,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3052303,22,32.351782,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3052387,5,25.13,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3052388,6,25.13,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3052471,5,32.37,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3052472,5,32.37,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3052521,5,32.38,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3052567,4,25.14,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3052603,2,25.15,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3052624,11,91.41666,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3052683,2,32.39,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3052723,6,32.4,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3052724,2,32.4,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3052855,6,25.16,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3052934,22,32.405501,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3052965,22,32.41842,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3052984,2,32.42,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3053122,22,32.429159,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3053173,22,32.435592,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3053183,4,25.17,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3053306,22,32.4399,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3053339,2,32.45,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3053340,5,32.45,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3053349,22,32.450642,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3053370,2,32.46,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3053391,23,32.460363,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3053421,5,32.47,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3053428,2,25.18,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3053635,2,32.48,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3053877,4,32.5,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3053969,7,25.21,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3054055,6,32.51,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3054056,7,32.51,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3054057,7,32.51,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3054250,4,32.53,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3054251,6,32.53,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3054268,22,32.530307,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3054286,2,32.54,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3054307,22,25.220921,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3054358,22,32.541062,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3054371,5,32.55,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3054390,22,32.551819,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3054481,22,25.234416,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3054492,23,25.239422,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3054510,6,25.24,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3054535,22,25.240204,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3054611,11,91.71667,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3054781,2,32.59,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3054782,4,32.59,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3054787,22,25.257556,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3054790,22,25.259488,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3054862,11,91.73334,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3054942,2,32.6,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3055002,22,32.616505,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3055011,2,32.62,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3055114,15,32.63333,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3055135,4,32.64,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3055197,4,32.66,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3055227,15,25.26667,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3055247,5,25.27,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3055248,4,25.27,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3055419,5,32.67,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3055430,23,32.672328,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3055431,23,32.672328,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3055452,4,32.68,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3055495,2,32.69,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3055496,4,32.69,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3055497,4,32.69,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3055534,22,25.276851,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3055536,22,25.276856,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3055549,2,25.28,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3055576,22,25.282638,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3055577,15,25.28333,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3055587,22,25.288431,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3055651,4,32.7,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3055653,5,32.7,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3055654,5,32.7,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3055735,2,32.72,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3055736,7,32.72,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3055737,6,32.72,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3055738,4,32.72,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3055762,5,32.73,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3055764,2,32.73,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3055840,15,32.73333,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3055867,7,32.74,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3055937,2,25.29,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3055968,5,32.75,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3056032,7,32.77,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3056054,23,32.771245,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3056071,5,32.78,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3056164,23,25.295946,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3056217,5,32.79,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3056262,15,32.8,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3056263,7,32.8,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3056264,7,32.8,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3056273,22,25.305798,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3056304,6,25.31,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3056428,4,32.81,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3056656,6,32.82,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3056657,6,32.82,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3056753,15,32.85,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3056754,2,32.85,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3056755,6,32.85,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3056770,2,25.33,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3056862,4,32.86,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3056864,4,32.86,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3056865,5,32.86,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3056866,2,32.86,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3057199,15,32.88333,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3057484,6,25.37,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3057485,5,25.37,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3057575,4,32.9,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3057611,5,32.91,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3057612,5,32.91,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3057763,5,32.92,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3057795,7,32.93,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3057827,11,92.14999,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3057910,23,32.940817,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3057913,22,32.944885,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3058011,15,25.38333,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3058015,22,25.385006,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3058019,22,25.386937,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3058058,4,25.39,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3058147,23,32.954948,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3058216,22,25.39274,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3058268,7,32.98,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3058304,2,32.99,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3058362,11,92.25,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3058800,7,25.42,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3058801,7,25.42,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3058802,2,25.42,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3058803,4,25.42,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3058943,5,25.43,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3058963,23,25.437256,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3058971,22,25.439156,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3059034,22,25.444964,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3059056,2,25.45,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3059134,4,33,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3059500,11,92.41666,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3059990,2,25.48,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3060207,11,92.51667,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3060275,7,25.5,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3060276,7,25.5,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3060393,2,33.01,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3060427,22,25.503045,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3060645,6,33.03,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3060661,15,33.03333,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3060733,11,92.60001,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3060764,11,92.61667,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3060925,2,33.04,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3060952,15,33.05,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3061035,22,25.532109,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3061233,11,92.7,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3061332,6,33.08,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3061351,15,33.08333,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3061356,15,33.08334,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3061436,6,25.55,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3061437,5,25.55,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3061468,22,25.55149,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3061472,22,25.559251,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3061678,2,25.57,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3061679,6,25.57,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3061680,5,25.57,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3061681,4,25.57,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3061715,22,25.572819,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3061757,7,33.13,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3061758,5,33.13,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3062026,7,33.16,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3062027,7,33.16,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3062102,6,25.6,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3062104,5,25.6,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3062354,11,92.83334,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3062426,15,33.18333,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3062442,7,33.19,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3062443,5,33.19,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3062513,5,25.63,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3062550,22,25.634909,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3062580,2,25.64,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3062664,5,33.2,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3062697,7,33.21,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3062698,7,33.21,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3062803,23,25.649221,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3062825,7,25.65,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3062826,7,25.65,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3062827,2,25.65,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3062828,15,25.65,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3062883,23,33.223437,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3062893,2,33.23,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3062894,5,33.23,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3062998,5,33.24,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3062999,4,33.24,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3063074,2,25.66,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3063118,11,92.93333,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3063148,2,33.25,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3063149,4,33.25,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3063200,4,33.26,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3063201,5,33.26,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3063215,22,25.664039,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3063219,15,25.66667,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3063223,22,25.667919,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3063346,2,33.27,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3063373,2,33.28,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3063468,22,25.679582,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3063506,6,25.68,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3063507,4,25.68,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3063636,15,33.3,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3063637,5,33.3,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3063910,23,33.308223,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3063915,5,33.31,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3064044,22,25.720389,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3064107,2,33.33,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3064145,4,25.73,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3064166,15,25.73334,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3064174,22,25.735947,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3064192,4,25.74,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3064215,7,33.34,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3064216,7,33.34,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3064246,5,33.35,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3064247,2,33.35,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3064373,22,25.751509,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3064440,2,33.37,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3064529,23,33.378878,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3064546,2,33.38,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3064547,5,33.38,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3064653,4,25.76,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3064691,22,25.761234,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3064704,4,33.39,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3064748,2,33.4,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3064761,23,33.40714,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3064774,5,33.41,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3064813,4,33.42,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3064879,23,33.435402,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3064953,22,25.769018,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3065097,5,33.45,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3065135,11,93.13333,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3065207,2,25.79,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3065208,2,25.79,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3065222,22,25.79237,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3065223,22,25.796259,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3065224,22,25.796269,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3065333,15,33.46667,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3065359,5,33.47,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3065360,5,33.47,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3065446,23,33.477795,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3065514,4,33.5,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3065541,5,33.51,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3065622,6,25.81,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3065698,2,33.52,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3065735,2,33.53,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3065747,6,25.81,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3065785,22,25.817677,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3065812,2,25.82,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3065813,2,25.82,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3065951,2,33.54,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3065991,2,33.55,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3065992,7,33.55,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3065993,7,33.55,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3066059,15,25.83333,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3066209,2,33.56,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3066227,2,33.57,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3066260,11,93.28333,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3066301,11,93.3,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3066358,15,25.85,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3066533,6,25.86,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3066534,7,25.86,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3066535,5,25.86,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3066536,6,25.86,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3066571,15,25.86667,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3066632,4,33.6,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3066633,5,33.6,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3066746,22,25.870285,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3066751,22,25.876136,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3066764,2,25.88,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3066782,22,25.88393,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3066802,23,33.619105,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3066810,5,33.62,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3066812,5,33.62,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3066813,4,33.62,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3066814,2,33.62,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3067001,6,25.89,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3067002,2,25.89,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3067054,15,25.9,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3067202,5,25.91,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3067203,7,25.91,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3067204,6,25.91,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3067205,2,25.91,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3067243,22,25.919032,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3067295,4,25.93,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3067318,6,33.66,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3067335,23,33.661498,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3067345,4,33.67,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3067347,4,33.67,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3067358,5,25.93,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3067359,4,25.93,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3067360,5,25.93,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3067387,15,25.93333,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3067515,6,33.68,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3067516,6,33.68,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3067517,2,33.68,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3067555,2,33.69,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3067582,23,33.703891,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3067605,7,33.71,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3067609,6,25.94,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3067610,7,25.94,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3067649,22,25.942444,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3067661,22,25.948302,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3067907,4,25.97,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3067908,2,25.97,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3068083,11,93.45,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3068107,4,33.73,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3068130,23,33.732153,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3068133,15,33.73333,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3068252,6,33.76,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3068253,2,33.76,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3068274,23,33.760415,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3068291,4,33.77,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3068292,5,33.77,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3068293,4,33.77,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3068294,2,33.77,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3068470,5,25.99,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3068472,7,25.99,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3068473,2,25.99,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3068476,23,33.788677,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3068490,7,33.79,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3068491,4,33.79,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3068564,6,33.81,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3068565,7,33.81,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3068638,22,25.993206,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3068894,4,33.85,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3069022,5,33.87,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3069061,5,26,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3069365,4,33.9,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3069399,22,33.912358,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3069422,7,33.92,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3069423,7,33.92,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3069424,6,33.92,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3069446,5,33.93,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3069487,4,33.94,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3069504,23,33.944118,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3069706,7,33.97,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3069920,11,93.64999,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3070012,7,33.99,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3070013,2,33.99,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3071337,4,34.01,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3071524,11,93.81667,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3071669,5,34.03,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3071803,2,34.06,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3071962,4,34.07,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3071994,5,34.08,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3072246,15,34.1,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3072303,6,34.12,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3072304,6,34.12,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3072305,7,34.12,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3072326,5,26.02,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3072327,7,26.02,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3072495,4,26.04,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3072522,23,34.127821,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3072627,23,34.141952,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3072628,23,34.141952,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3072684,4,34.16,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3072709,22,26.040096,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3072725,23,26.044889,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3072889,2,34.17,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3072918,5,34.18,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3073173,5,34.2,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3073174,7,34.2,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3073175,5,34.2,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3073283,4,34.22,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3073284,5,34.22,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3073372,22,26.075291,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3073402,4,26.08,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3073403,4,26.08,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3073443,2,34.23,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3073444,4,34.23,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3073458,15,34.23333,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3073520,5,26.09,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3073529,22,26.092895,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3073576,6,26.1,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3073578,2,26.1,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3073627,2,34.25,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3073628,2,34.25,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3073629,7,34.25,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3073655,23,34.255,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3073661,5,34.26,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3073736,2,34.28,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3073820,23,34.283262,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3073908,5,34.31,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3074085,5,34.33,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3074133,4,26.12,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3074261,2,34.35,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3074288,6,34.36,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3074289,5,34.36,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3074430,22,26.14378,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3074465,5,26.15,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3074514,2,34.37,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3074515,5,34.37,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3074539,7,34.38,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3074640,22,26.159449,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3074713,23,34.39631,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3074726,4,34.4,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3074744,2,34.41,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3074830,7,26.17,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3074923,2,34.43,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3074924,5,34.43,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3074925,2,34.43,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3074943,23,34.438703,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3074944,23,34.438703,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3074968,6,34.44,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3074969,7,34.44,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3074970,2,34.44,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3075004,4,34.45,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3075037,4,34.46,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3075145,11,94.2,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3075165,2,26.19,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3075219,6,26.2,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3075328,22,26.208438,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3075346,5,26.21,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3075459,15,34.5,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3075557,23,26.214461,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3075686,5,34.51,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3075752,2,26.23,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3075753,5,26.23,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3075754,7,26.23,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3075843,11,94.28333,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3075858,2,34.53,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3075859,2,34.53,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3075882,4,34.54,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3075883,6,34.54,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3075970,4,34.55,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3076011,23,34.565882,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3076113,6,26.25,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3076115,4,26.25,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3076340,2,34.57,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3076365,5,34.58,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3076560,15,34.6,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3076561,2,34.6,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3076562,2,34.6,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3076592,5,34.61,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3076627,7,34.62,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3076714,4,26.27,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3076715,5,26.27,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3076716,5,26.27,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3076774,23,34.622406,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3076849,6,26.28,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3076876,15,26.28333,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3076884,23,26.285116,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3076902,4,26.29,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3076903,4,26.29,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3076904,2,26.29,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3076905,4,26.29,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3076932,22,26.296704,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3077041,7,34.65,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3077042,15,34.65,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3077043,2,34.65,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3077044,7,34.65,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3077084,6,26.3,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3077085,6,26.3,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3077216,6,34.67,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3077245,4,34.68,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3077246,5,34.68,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3077314,15,34.7,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3077315,15,34.7,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3077355,2,26.32,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3077356,5,26.32,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3077357,4,26.32,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3077481,2,34.71,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3077553,5,34.74,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3077575,23,34.749585,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3077620,5,34.76,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3077621,4,34.76,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3077730,4,26.33,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3077755,15,26.33333,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3077804,6,34.78,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3077829,4,34.79,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3077864,7,34.8,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3078205,4,34.83,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3078206,4,34.83,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3078239,4,34.84,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3078324,22,26.347767,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3078337,15,26.35,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3078451,2,34.85,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3078480,2,34.86,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3078532,2,26.36,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3078533,4,26.36,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3078534,5,26.36,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3078668,2,34.88,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3078670,2,34.88,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3078671,2,34.88,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3078767,4,34.89,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3078795,5,34.9,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3078824,7,34.91,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3078825,5,34.91,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3078859,4,34.92,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3078885,5,26.37,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3078974,22,26.381173,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3078991,2,26.39,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3079076,2,34.93,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3079142,15,34.95,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3079172,2,34.96,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3079236,22,26.406739,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3079381,4,34.97,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3079406,4,34.98,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3079760,2,26.42,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3079787,22,26.424436,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3079951,22,26.436242,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3079986,4,26.44,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3080090,2,35,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3080225,4,26.45,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3080300,2,26.46,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3080301,6,26.46,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3080426,5,26.46,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3080486,2,26.47,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3080655,5,26.48,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3080656,2,26.48,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3080834,6,26.49,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3081463,11,94.89999,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3081581,11,94.91666,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3081990,23,35.003943,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3082011,7,35.01,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3082025,15,35.01667,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3082032,23,35.018074,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3082085,4,26.5,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3082086,4,26.5,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3082167,2,35.02,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3082168,5,35.02,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3082187,5,35.03,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3082221,7,35.04,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3082332,2,26.51,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3082333,6,26.51,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3082371,15,35.05,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3082496,15,26.51666,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3082497,15,26.51667,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3082502,22,26.516969,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3082511,2,26.52,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3082530,22,26.520905,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3082547,23,35.060467,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3082704,15,26.53333,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3082741,7,35.09,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3082777,22,35.109881,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3082859,6,35.11,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3082886,23,35.116991,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3082951,7,35.14,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3082983,4,35.15,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3082984,2,35.15,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3083005,2,35.16,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3083086,11,95.08334,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3083087,11,95.08334,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3083096,6,35.17,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3083097,7,35.17,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3083098,2,35.17,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3083255,22,26.552438,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3083348,5,35.19,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3083368,2,35.2,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3083424,22,26.560324,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3083429,22,26.564273,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3083614,5,35.22,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3083615,7,35.22,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3083616,7,35.22,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3083716,2,26.58,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3083773,23,35.230039,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3083833,5,35.25,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3083915,7,26.59,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3083946,22,26.595823,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3084034,2,26.6,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3084035,15,26.6,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3084073,5,26.61,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3084280,7,35.3,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3084541,2,35.32,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3084542,2,35.32,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3084543,7,35.32,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3084618,5,35.35,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3084648,23,26.62426,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3084687,22,26.631342,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3084697,23,26.638391,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3084721,5,35.36,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3084749,5,35.37,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3084787,4,26.64,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3084836,22,26.651082,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3084862,2,26.66,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3084883,22,26.664904,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3084907,11,95.24999,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3084969,5,35.38,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3084988,2,35.39,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3085106,5,26.67,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3085209,5,35.4,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3085210,7,35.4,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3085211,2,35.4,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3085241,5,35.41,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3085264,23,35.413742,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3085299,7,35.43,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3085300,4,35.43,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3085360,23,26.680784,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3085397,22,26.694537,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3085442,6,26.7,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3085482,7,35.45,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3085483,7,35.45,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3085484,7,35.45,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3085567,6,26.7,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3085610,23,26.709046,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3085626,4,26.71,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3085640,5,35.46,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3085655,4,35.47,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3085656,2,35.47,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3085685,7,35.48,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3085686,5,35.48,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3085770,22,26.716271,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3085773,22,26.718245,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3085774,22,26.718256,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3085801,5,26.72,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3085874,2,35.5,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3085961,22,26.724179,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3086174,5,35.54,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3086175,2,35.54,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3086184,23,35.540921,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3086205,2,26.74,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3086225,22,26.741978,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3086230,22,26.743954,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3086324,6,26.75,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3086325,5,26.75,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3086369,22,26.755816,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3086389,23,35.555052,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3086413,7,35.56,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3086414,7,35.56,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3086543,7,35.58,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3086544,7,35.58,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3086622,23,35.583314,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3086666,4,35.6,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3086667,2,35.6,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3086877,7,26.77,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3086925,22,26.777577,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3086948,11,95.45,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3087144,22,26.789451,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3087164,4,26.79,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3087232,15,26.8,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3087266,6,35.66,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3087389,4,26.81,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3087390,4,26.81,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3087391,2,26.81,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3087411,22,26.813207,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3087421,22,26.817162,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3087424,22,26.81915,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3087490,11,95.53333,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3087570,5,35.68,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3087580,23,35.682231,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3087668,6,26.83,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3087669,5,26.83,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3087670,7,26.83,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3087737,7,35.69,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3087798,4,35.71,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3087799,7,35.71,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3087837,22,35.722152,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3087961,23,26.836225,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3088004,4,35.74,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3088129,22,26.840928,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3088134,22,26.846868,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3088163,5,26.85,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3088360,7,35.79,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3088361,7,35.79,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3088544,22,26.86074,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3088551,22,26.862719,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3088734,2,35.84,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3088735,7,35.84,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3088783,2,35.86,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3088917,22,26.882533,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3088945,4,26.89,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3088972,22,26.896413,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3088986,23,35.894196,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3089018,22,35.906251,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3089074,11,95.7,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3089130,2,35.92,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3089131,2,35.92,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3089183,2,35.94,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3089202,7,35.95,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3089203,6,35.95,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3089204,7,35.95,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3089239,7,26.9,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3089241,7,26.9,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3089274,22,26.900373,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3089282,22,26.904339,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3089421,2,26.91,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3089440,22,26.916232,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3089545,23,35.978982,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3089616,22,26.924171,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3089617,22,26.924171,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3090153,4,26.93,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3090335,2,26.94,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3090369,22,26.94995,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3090377,15,26.95,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3090580,11,95.88333,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3090669,7,26.96,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3090670,6,26.96,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3090827,22,26.963845,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3090830,15,26.96667,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3090851,4,26.97,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3090871,22,26.973767,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3091106,4,26.98,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3091107,2,26.98,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3091125,22,26.981708,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3091330,5,26.99,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3091358,22,26.993622,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3091360,22,26.997593,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3092021,5,27,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3092029,15,27,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3093169,22,27.005538,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3093203,11,96.2,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3093248,7,36.03,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3093273,5,36.04,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3093467,6,27.01,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3093468,2,27.01,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3093573,7,36.08,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3093634,15,27.01667,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3093664,2,27.02,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3093672,22,27.027387,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3093842,2,36.11,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3093852,15,36.11666,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3093900,5,27.03,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3093901,5,27.03,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3093902,4,27.03,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3093927,11,96.3,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3094011,7,36.13,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3094012,7,36.13,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3094013,4,36.13,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3094034,23,36.134423,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3094138,5,27.04,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3094186,2,27.05,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3094420,4,27.06,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3094456,15,27.06667,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3094476,5,27.07,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3094477,2,27.07,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3094478,5,27.07,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3094512,5,27.08,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3094614,11,96.38333,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3094698,4,36.2,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3094780,2,36.22,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3095113,5,36.25,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3095148,7,36.26,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3095202,5,27.11,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3095203,4,27.11,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3095284,23,36.261602,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3095357,22,27.116842,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3095368,23,27.118845,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3095417,2,36.29,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3095599,7,36.31,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3095601,7,36.31,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3095602,7,36.31,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3095648,2,36.33,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3095649,5,36.33,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3095724,4,27.14,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3095725,7,27.14,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3095772,2,27.15,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3095792,23,36.332257,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3095794,15,36.33333,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3095828,4,36.35,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3095865,22,27.158637,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3095874,5,27.16,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3095983,7,36.36,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3095984,7,36.36,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3096059,4,27.17,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3096060,6,27.17,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3096166,5,36.38,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3096280,6,27.19,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3096281,6,27.19,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3096322,15,27.2,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3096323,4,27.2,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3096324,2,27.2,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3096414,15,36.4,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3096415,2,36.4,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3096416,4,36.4,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3096589,4,36.44,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3096681,7,36.47,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3096699,23,36.473567,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3096725,22,27.208426,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3096733,2,27.21,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3096914,5,27.22,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3096915,2,27.22,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3096939,22,27.220378,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3096942,22,27.224364,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3097068,23,36.51596,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3097070,15,36.51667,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3097150,2,36.52,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3097183,4,36.53,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3097283,5,36.55,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3097365,22,27.242302,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3097377,22,27.248286,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3097466,4,36.57,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3097574,4,36.59,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3097607,7,36.6,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3097635,15,27.25,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3097735,6,27.27,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3097767,23,36.614877,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3097782,23,36.629008,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3098106,2,36.68,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3098173,5,27.28,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3098174,5,27.28,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3098190,22,27.284177,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3098200,11,96.73334,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3098261,23,36.685532,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3098275,2,36.69,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3098460,23,36.713794,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3098500,22,27.284182,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3098518,2,27.29,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3098533,22,27.296153,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3098557,7,27.3,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3098558,5,27.3,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3098576,22,27.300139,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3098578,22,27.302142,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3098595,22,27.306129,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3098637,2,36.74,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3098701,5,36.77,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3098737,4,36.78,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3098824,15,27.31667,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3098834,23,27.316679,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3098869,4,27.32,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3098915,22,36.798987,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3098981,5,27.33,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3098995,11,96.80001,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3099134,7,36.81,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3099135,7,36.81,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3099136,4,36.81,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3099290,22,27.35004,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3099318,2,36.83,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3099319,2,36.83,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3099320,5,36.83,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3099321,4,36.83,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3099322,5,36.83,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3099346,5,36.84,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3099363,2,36.85,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3099443,4,27.36,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3099444,4,27.36,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3099552,4,36.87,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3099604,5,36.89,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3099626,4,27.37,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3099627,4,27.37,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3099628,4,27.37,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3099629,6,27.37,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3099630,2,27.37,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3099655,22,27.37201,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3099674,2,27.38,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3099747,23,36.897497,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3099876,15,27.38333,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3099907,4,27.39,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3099926,22,27.399981,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3099942,6,27.4,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3099944,6,27.4,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3099946,7,27.4,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3100056,2,36.92,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3100137,2,27.41,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3100138,5,27.41,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3100181,7,36.94,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3100232,7,36.96,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3100233,7,36.96,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3100281,4,36.98,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3100282,5,36.98,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3100292,23,36.982283,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3100311,7,36.99,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3100312,7,36.99,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3100418,5,27.43,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3100419,6,27.43,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3100654,11,96.98333,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3100834,4,27.45,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3100835,6,27.45,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3100836,6,27.45,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3100869,22,27.45596,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3101043,5,27.47,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3101068,23,27.47212,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3101153,11,97.03333,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3101234,4,27.48,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3101343,6,27.5,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3101558,2,27.52,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3101796,2,27.53,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3101797,6,27.53,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3101799,2,27.53,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3101800,5,27.53,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3101817,22,27.53202,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3101834,4,27.54,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3102118,2,27.55,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3102119,5,27.55,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3102287,5,27.56,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3102288,2,27.56,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3102519,6,27.58,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3102579,22,37.017409,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3102778,7,37.02,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3102809,5,37.03,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3102824,23,37.038807,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3102930,5,27.6,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3102931,4,27.6,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3102986,4,27.61,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3103058,23,37.052938,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3103059,23,37.052938,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3103150,22,27.616183,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3103175,4,27.62,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3103339,7,37.09,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3103354,2,37.1,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3103373,23,37.109462,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3103374,23,37.109462,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3103383,4,37.11,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3103402,7,37.12,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3103435,4,37.13,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3103485,6,27.63,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3103486,6,27.63,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3103487,5,27.63,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3103488,4,27.63,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3103489,6,27.63,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3103631,11,97.31667,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3103696,2,27.65,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3103697,4,27.65,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3103779,7,37.17,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3103797,2,37.18,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3103805,22,37.18152,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3103818,5,37.19,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3103822,4,27.65,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3103823,5,27.65,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3103848,22,27.656302,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3103883,6,27.66,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3103938,11,97.36666,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3104069,2,27.66,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3104100,22,27.666335,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3104101,15,27.66667,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3104123,5,27.67,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3104200,5,37.22,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3104215,23,37.22251,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3104248,23,37.236641,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3104274,22,27.678379,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3104302,15,27.68333,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3104381,2,37.24,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3104459,2,27.69,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3104489,22,27.692436,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3104566,5,37.27,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3104593,7,37.28,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3104622,4,37.29,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3104630,4,27.7,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3104631,2,27.7,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3104693,23,37.293165,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3104705,2,37.3,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3104706,7,37.3,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3104707,7,37.3,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3104879,2,37.32,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3104916,4,37.33,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3104992,2,27.72,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3105068,11,97.51666,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3105143,23,37.349689,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3105298,15,27.73333,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3105406,7,37.38,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3105460,6,27.74,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3105461,6,27.74,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3105462,6,27.74,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3105516,15,27.75,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3105517,5,27.75,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3105539,22,27.752688,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3105542,22,27.756708,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3105566,2,27.76,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3105568,6,27.76,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3105654,2,37.41,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3105655,5,37.41,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3105656,7,37.41,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3105760,22,27.774799,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3105803,15,27.78333,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3105858,23,37.434475,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3106065,5,37.47,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3106094,6,37.48,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3106145,4,27.79,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3106208,11,97.65,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3106252,23,37.490999,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3106383,4,27.8,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3106497,22,27.810999,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3106690,23,37.547523,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3106727,7,37.56,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3106785,22,27.831109,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3106962,4,27.84,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3106964,6,27.84,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3106965,4,27.84,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3106966,4,27.84,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3106967,7,27.84,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3106990,7,37.59,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3106992,7,37.59,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3107427,2,27.87,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3107429,7,27.87,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3107458,2,27.88,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3107459,5,27.88,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3107520,23,37.64644,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3107701,5,37.67,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3107912,7,27.9,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3107948,22,27.901573,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3107971,23,37.674702,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3107987,4,37.68,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3107988,5,37.68,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3108098,5,27.91,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3108162,23,37.702964,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3108201,7,37.72,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3108202,7,37.72,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3108203,7,37.72,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3108314,5,37.74,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3108473,6,27.92,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3108474,4,27.92,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3108493,22,27.923734,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3108521,5,27.93,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3108528,5,37.78,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3108546,23,37.78775,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3108583,2,37.8,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3108634,4,37.82,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3108655,2,37.83,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3108668,23,37.830143,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3108683,23,37.844274,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3108872,11,98,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3108967,6,27.95,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3109018,2,27.96,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3109164,23,27.966705,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3109203,7,27.97,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3109204,7,27.97,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3109205,2,27.97,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3109206,6,27.97,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3109207,5,27.97,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3109378,5,37.92,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3109585,2,27.99,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3109586,2,27.99,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3109651,7,37.95,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3109664,23,37.957322,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3109692,5,37.97,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3109944,6,28,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3110186,11,98.13334,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3111340,5,28.01,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3111359,22,28.018504,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3111570,22,28.024561,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3111609,2,28.03,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3111610,4,28.03,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3111769,22,28.034652,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3111770,22,28.034652,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3111798,2,28.04,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3111961,6,28.05,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3111962,6,28.05,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3111963,5,28.05,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3111964,7,28.05,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3112075,5,28.06,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3112243,22,28.073012,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3112285,6,28.08,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3112346,7,38.01,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3112506,23,38.027977,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3112631,5,28.1,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3112633,7,28.1,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3112929,22,28.125541,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3112984,15,28.13333,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3113022,7,38.11,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3113099,11,98.51666,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3113244,2,38.13,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3113263,7,38.14,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3113306,22,28.15992,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3113343,6,28.16,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3113661,22,28.176103,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3113759,7,38.21,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3113760,5,38.21,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3113761,2,38.21,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3113927,23,38.225811,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3113972,5,38.24,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3113995,4,38.25,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3113996,4,38.25,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3114119,5,38.27,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3114120,7,38.27,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3114121,7,38.27,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3114122,7,38.27,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3114330,4,28.21,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3114402,15,38.33333,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3114420,4,38.34,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3114457,23,38.35299,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3114458,23,38.35299,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3114498,11,98.66666,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3114559,2,28.22,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3114560,4,28.22,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3114561,4,28.22,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3114572,22,28.220618,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3114587,22,28.22669,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3114633,11,98.68334,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3114738,7,38.4,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3114763,2,38.41,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3114797,6,28.23,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3114798,6,28.23,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3114842,5,28.24,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3114856,7,38.42,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3114920,22,28.244912,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3115047,11,98.73333,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3115109,4,38.45,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3115130,4,38.46,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3115235,2,38.48,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3115269,23,38.4943,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3115343,7,38.5,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3115344,7,38.5,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3115359,23,38.508431,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3115402,2,38.53,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3115696,2,38.6,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3115735,11,98.85,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3115855,11,98.86667,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3115938,23,38.649741,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3116031,5,38.66,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3116068,23,38.678003,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3116125,7,28.26,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3116126,7,28.26,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3116274,22,28.261117,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3116275,22,28.261117,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3116304,5,28.27,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3116305,5,28.27,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3116389,23,38.734527,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3116518,23,28.277587,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3116531,2,28.28,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3116576,23,38.734527,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3116599,4,38.74,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3116771,7,38.76,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3116828,7,28.29,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3116877,4,28.3,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3116898,7,38.79,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3117085,22,28.303665,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3117325,7,38.87,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3117326,2,38.87,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3117379,7,38.89,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3117428,5,38.91,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3117441,23,38.91823,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3117517,15,28.33333,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3117556,6,28.34,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3117557,7,28.34,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3117644,7,38.92,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3117645,7,38.92,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3117667,2,38.93,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3117960,6,28.36,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3118191,22,28.370588,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3118216,5,28.38,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3118217,4,28.38,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3118453,4,28.39,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3118454,4,28.39,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3118507,2,28.4,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3118553,2,28.41,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3118675,11,99.25001,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3118782,4,28.42,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3118783,7,28.42,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3118801,22,28.423359,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3118979,15,28.43333,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3118986,22,28.439608,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3119199,7,28.44,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3119459,4,28.46,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3119500,6,28.47,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3119501,5,28.47,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3119502,4,28.47,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3119503,5,28.47,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3119549,2,28.48,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3119902,6,28.49,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3120319,4,28.51,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3120647,5,28.53,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3120669,23,28.531945,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3120690,2,28.54,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3120691,2,28.54,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3120704,22,28.541241,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3120742,7,28.55,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3120782,2,28.56,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3121007,22,28.565654,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3121110,11,99.56667,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3121229,6,28.57,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3121472,2,28.58,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3121516,4,28.59,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3121593,23,39.003016,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3121628,7,28.6,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3121629,6,28.6,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3121710,11,99.66666,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3121723,22,28.6023,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3121746,5,28.61,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3121816,23,39.017147,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3121817,23,39.017147,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3121818,23,39.017147,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3121832,7,39.02,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3121944,6,28.63,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3121945,4,28.63,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3121946,4,28.63,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3122006,23,39.045409,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3122024,7,39.05,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3122122,4,28.64,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3122169,23,39.05954,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3122170,23,39.05954,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3122354,6,28.65,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3122382,22,28.653217,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3122389,22,28.65934,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3122413,2,39.11,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3122529,7,39.13,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3122530,7,39.13,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3122551,23,39.130195,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3122652,2,28.66,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3122653,5,28.66,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3122679,22,28.669524,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3122702,23,28.673255,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3122715,7,39.15,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3122731,23,39.158457,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3123028,7,39.18,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3123100,5,28.7,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3123101,2,28.7,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3123137,22,28.708259,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3123138,22,28.708259,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3123167,11,99.85001,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3123236,15,39.21667,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3123364,5,28.72,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3123365,5,28.72,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3123380,22,28.720498,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3123418,23,39.243243,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3123467,6,28.73,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3123468,4,28.73,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3123469,7,28.73,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3123742,7,39.28,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3123757,23,39.285636,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3123833,5,28.74,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3123869,5,28.75,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3123870,15,28.75,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3123963,4,39.32,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3124022,22,28.759269,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3124044,7,28.76,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3124046,6,28.76,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3124116,11,100.0167,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3124278,4,28.77,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3124305,23,28.772172,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3124356,23,39.370422,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3124357,23,39.370422,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3124376,23,39.384553,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3124459,7,39.39,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3124528,4,28.78,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3124742,11,100.1333,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3124774,15,28.8,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3124807,6,28.81,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3124928,4,39.46,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3125132,5,28.85,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3125133,2,28.85,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3125172,2,28.86,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3125203,23,39.469339,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3125245,23,39.48347,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3125322,7,39.49,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3125405,7,39.52,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3125408,4,39.52,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3125505,22,28.867527,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3125662,11,100.25,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3125729,7,28.89,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3125792,22,28.908427,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3125829,7,39.57,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3125830,7,39.57,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3125937,2,28.91,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3125938,6,28.91,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3125939,2,28.91,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3125968,22,28.914568,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3126045,23,39.610649,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3126140,22,28.928884,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3126153,2,28.93,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3126163,22,28.932977,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3126183,7,39.62,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3126322,11,100.3333,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3126413,5,28.95,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3126415,5,28.95,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3126442,11,100.3667,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3126507,23,39.681304,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3126508,23,39.681304,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3126509,23,39.681304,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3126572,22,28.957541,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3126601,4,28.96,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3126602,2,28.96,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3126603,6,28.96,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3126673,7,39.7,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3126719,7,39.72,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3126814,22,28.963676,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3126974,7,39.75,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3126984,4,28.98,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3127005,23,28.984137,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3127034,6,28.99,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3127191,2,39.77,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3127376,7,39.8,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3127534,11,100.5833,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3127556,7,39.83,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3127557,7,39.83,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3127583,2,39.84,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3127865,7,39.88,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3128047,23,39.9074,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3128128,5,29,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3128129,15,29,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3128161,23,39.921531,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3128206,23,39.949793,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3128250,7,39.96,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3128285,23,39.978055,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3128316,7,39.99,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3128317,7,39.99,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3128318,7,39.99,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3128891,11,100.7667,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3129553,11,100.8833,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3129752,22,29.014888,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3129905,4,29.02,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3129952,2,29.03,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3129953,2,29.03,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3130077,6,29.04,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3130164,11,100.9667,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3130206,7,40.01,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3130391,7,40.04,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3130443,7,40.06,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3130545,2,29.05,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3130546,5,29.05,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3130547,15,29.05,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3130761,11,101.1,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3130852,23,40.105234,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3131189,11,101.2167,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3131204,23,40.175889,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3131229,7,40.19,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3131328,2,40.21,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3131432,11,101.2833,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3131435,11,101.2833,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3131462,15,29.08333,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3131491,6,29.09,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3131494,6,29.09,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3131496,6,29.09,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3131583,7,40.25,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3131708,23,29.097185,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3131723,5,29.1,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3131753,2,29.11,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3131755,4,29.11,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3131775,15,29.11667,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3131798,2,29.12,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3131799,7,29.12,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3131823,7,40.27,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3131853,23,40.288937,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3131927,7,40.32,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3132016,22,29.129713,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3132150,23,40.33133,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3132181,7,40.35,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3132184,11,101.4333,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3132398,7,40.4,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3132453,2,29.14,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3132454,2,29.14,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3132492,6,29.15,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3132592,11,101.5333,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3132916,5,29.17,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3132917,2,29.17,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3132918,7,29.17,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3132920,6,29.17,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3132933,23,40.47264,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3133368,23,40.571557,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3133387,7,40.58,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3133473,2,29.21,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3133474,2,29.21,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3133475,5,29.21,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3133476,2,29.21,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3133538,5,29.22,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3133539,6,29.22,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3133658,23,40.628081,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3133702,2,29.23,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3133841,15,40.68333,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3133943,11,101.7667,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3134015,22,29.246806,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3134051,7,40.69,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3134141,22,29.259145,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3134155,5,29.26,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3134227,23,40.741129,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3134300,22,29.265312,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3134391,7,40.77,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3134408,4,40.78,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3134418,7,29.28,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3134471,2,29.29,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3134485,22,29.294109,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3134495,23,29.295019,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3134549,22,29.30234,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3134589,22,29.312634,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3134598,22,29.31675,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3134622,7,40.79,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3134732,4,29.32,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3134848,23,40.811784,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3134914,2,29.33,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3134915,2,29.33,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3134994,23,40.868308,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3135004,7,40.87,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3135024,4,40.88,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3135074,7,40.9,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3135111,11,101.9167,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3135184,5,29.35,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3135185,15,29.35,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3135186,15,29.35,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3135292,7,40.92,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3135310,23,40.924832,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3135368,6,29.36,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3135396,23,29.365674,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3135543,7,40.95,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3135600,7,29.38,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3135815,15,29.4,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3135816,2,29.4,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3135817,15,29.4,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3136057,7,29.41,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3136058,5,29.41,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3136149,22,29.413541,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3136221,7,29.43,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3136223,4,29.43,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3136417,11,102.1167,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3136525,22,29.442412,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3136711,6,29.46,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3136712,7,29.46,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3136713,4,29.46,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3136949,11,102.25,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3136950,11,102.25,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3136969,22,29.471284,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3137198,11,102.2833,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3137311,22,29.491913,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3137465,4,29.5,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3137491,2,29.51,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3137492,6,29.51,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3137532,4,29.52,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3137533,5,29.52,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3137727,7,29.54,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3137747,22,29.541451,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3137930,6,29.56,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3138101,7,41.03,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3138286,23,41.052011,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3138365,6,29.59,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3138441,11,102.5167,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3138669,5,29.6,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3138903,2,29.61,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3138919,15,29.61667,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3138998,7,41.13,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3139078,6,29.62,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3139101,23,29.620032,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3139192,23,41.165059,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3139244,23,41.193321,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3139337,7,41.21,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3139338,7,41.21,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3139380,23,41.235714,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3139409,23,41.249845,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3139452,15,29.63333,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3139489,7,29.64,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3139534,11,102.8833,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3139574,23,41.263976,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3139606,7,41.29,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3139975,23,41.348762,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3140072,22,29.661326,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3140081,23,29.662425,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3140138,7,41.37,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3140146,23,41.377024,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3140299,6,29.67,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3140301,2,29.67,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3140334,22,29.679946,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3140343,4,29.68,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3140397,6,29.69,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3140454,23,41.405286,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3140602,23,41.447679,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3140640,7,41.47,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3140708,5,29.71,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3140709,2,29.71,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3140711,4,29.71,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3140720,22,29.710992,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3140763,2,29.72,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3140911,7,41.55,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3140934,4,29.73,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3140935,5,29.73,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3141040,2,29.74,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3141061,22,29.74827,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3141086,4,29.75,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3141087,6,29.75,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3141088,15,29.75,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3141089,5,29.75,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3141294,22,29.750333,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3141301,22,29.75862,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3141337,22,29.762764,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3141340,22,29.764839,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3141382,7,41.63,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3141559,23,29.789604,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3141576,4,29.79,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3141616,6,29.8,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3141617,6,29.8,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3141618,4,29.8,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3141669,7,41.65,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3141718,7,41.68,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3141838,7,41.7,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3141846,5,29.81,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3141946,11,103.3667,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3142032,11,103.3833,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3142107,5,29.83,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3142196,7,29.85,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3142197,15,29.85,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3142214,23,41.730299,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3142368,4,29.86,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3142369,2,29.86,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3142370,5,29.86,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3142371,2,29.86,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3142615,7,29.88,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3142616,6,29.88,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3142718,23,41.800954,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3142808,11,103.6167,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3142854,4,29.89,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3142855,5,29.89,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3143105,7,41.86,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3143260,11,103.7167,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3143270,15,29.91667,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3143279,23,29.916783,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3143424,23,41.928133,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3143474,11,103.7667,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3143536,5,29.93,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3143537,6,29.93,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3143538,7,29.93,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3143560,22,29.939085,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3143606,11,103.8167,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3143721,22,29.94739,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3143782,11,103.85,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3143932,4,29.97,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3143952,23,41.970526,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3144351,6,29.98,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3144352,5,29.98,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3144353,7,29.98,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3144603,11,104.05,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3144660,11,104.0833,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3144661,11,104.0833,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3144738,11,104.15,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3146004,23,42.02705,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3146033,7,42.04,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3146034,7,42.04,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3146066,23,42.055312,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3146156,23,42.097705,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3146177,23,42.111836,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3146329,11,104.5167,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3146438,15,42.15,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3146439,4,42.15,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3146440,7,42.15,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3146454,23,42.154229,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3146526,11,104.6333,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3146549,7,42.17,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3146594,7,42.2,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3146727,23,42.239015,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3146828,5,42.26,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3146991,23,42.281408,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3147013,7,42.3,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3147108,23,42.323801,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3147175,23,42.352063,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3147225,23,42.380325,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3147336,6,30.01,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3147337,7,30.01,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3147383,23,42.408587,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3147388,7,42.41,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3147517,23,42.436849,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3147571,22,30.018052,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3147730,23,30.029831,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3147949,22,30.05757,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3147962,6,30.06,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3147963,7,30.06,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3147989,11,104.9833,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3147990,11,104.9833,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3148115,22,30.063816,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3148248,23,42.578159,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3148322,11,105.05,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3148362,7,30.08,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3148363,6,30.08,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3148394,22,30.088793,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3148486,23,42.634683,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3148491,7,42.64,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3148639,7,42.69,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3148725,5,30.11,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3148762,2,30.12,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3148763,2,30.12,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3148764,5,30.12,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3148797,23,42.705338,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3148809,4,42.71,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3148832,7,42.72,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3148918,23,30.128748,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3148925,2,30.13,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3148966,6,30.14,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3148967,6,30.14,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3148988,22,30.147098,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3149222,7,42.77,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3149319,7,42.82,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3149602,23,42.903172,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3149637,7,42.93,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3149789,4,30.18,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3149790,4,30.18,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3149791,4,30.18,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3150031,6,30.19,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3150199,4,30.2,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3150217,22,30.20754,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3150243,23,30.213534,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3150402,6,30.22,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3150572,15,30.23333,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3150573,15,30.23334,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3150595,6,30.24,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3150621,22,30.242993,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3150775,4,30.25,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3150811,2,30.26,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3150985,4,30.27,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3150986,6,30.27,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3151052,7,43.08,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3151062,23,30.270058,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3151068,22,30.276384,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3151099,23,30.284189,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3151190,23,43.086875,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3151232,23,43.115137,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3151250,23,43.129268,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3151320,4,30.29,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3151321,7,30.29,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3151334,22,30.29099,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3151338,22,30.299342,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3151367,2,30.31,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3151368,5,30.31,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3151469,23,43.171661,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3151541,2,30.32,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3151620,7,43.19,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3151633,23,43.199923,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3151747,23,43.228185,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3151786,23,43.242316,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3151810,22,30.326496,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3151836,4,30.33,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3151837,4,30.33,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3151838,4,30.33,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3151956,23,43.270578,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3151982,6,43.29,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3152182,2,30.34,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3152203,22,30.349471,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3152228,6,30.35,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3152229,7,30.35,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3152479,11,106.0833,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3152528,7,43.45,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3152561,22,30.351563,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3152579,4,30.36,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3152680,7,43.47,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3152794,23,30.368975,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3152820,7,30.37,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3152953,5,30.39,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3152970,22,30.395453,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3153128,5,30.4,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3153129,5,30.4,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3153288,2,30.41,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3153337,6,30.42,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3153338,6,30.42,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3153404,23,30.43963,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3153405,23,30.43963,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3153421,23,43.595591,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3153438,7,43.6,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3153439,7,43.6,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3153470,23,43.609722,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3153639,7,43.63,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3153776,6,30.45,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3153777,4,30.45,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3153778,7,30.45,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3153779,6,30.45,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3153857,23,43.652115,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3153956,22,30.460291,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3154101,23,43.72277,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3154162,2,30.47,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3154179,22,30.47285,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3154343,4,30.48,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3154344,4,30.48,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3154418,23,43.793425,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3154439,23,43.807556,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3154448,7,43.81,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3154479,11,106.7,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3154557,7,43.84,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3154615,15,30.5,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3154718,7,43.86,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3154719,7,43.86,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3154764,23,43.878211,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3154765,23,43.878211,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3154790,11,106.8333,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3154993,2,30.52,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3155056,7,43.94,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3155223,4,30.53,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3155224,7,30.53,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3155242,15,30.53333,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3155522,11,107.1,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3155539,11,107.1167,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3155608,5,30.55,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3155835,2,30.56,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3155836,5,30.56,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3155854,15,30.56667,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3155871,5,30.57,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3155872,2,30.57,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3155906,11,107.2333,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3156022,22,30.577585,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3156044,7,30.58,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3156259,22,30.581778,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3156397,11,107.5,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3156591,5,30.61,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3156828,15,44,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3156877,7,30.63,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3156909,23,30.637464,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3157133,5,30.65,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3157134,5,30.65,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3157301,11,107.75,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3157382,7,30.66,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3157405,22,30.665671,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3157411,22,30.669874,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3157467,7,30.68,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3157587,23,30.693988,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3157602,2,30.7,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3157701,6,30.71,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3157702,5,30.71,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3157865,5,30.72,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3157999,7,30.74,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3158000,7,30.74,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3158001,7,30.74,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3158004,4,30.74,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3158286,23,44.174962,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3158361,2,30.75,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3158403,6,30.76,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3158404,2,30.76,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3158405,7,30.76,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3158476,2,30.78,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3158615,15,30.78333,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3158732,11,108.1833,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3158747,11,108.2,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3158764,11,108.2167,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3158804,5,30.8,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3158841,5,30.81,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3158947,5,30.82,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3158978,5,44.24,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3159146,7,30.84,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3159308,11,108.4333,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3159497,23,44.358665,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3159556,15,30.86667,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3159580,7,30.87,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3159890,23,30.891822,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3159891,23,30.891822,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3160025,11,108.7667,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3160055,4,30.91,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3160078,22,30.915871,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3160146,2,44.47,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3160304,7,44.49,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3160339,11,108.85,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3160340,11,108.85,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3160377,11,108.8833,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3160584,7,44.54,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3160636,23,44.57063,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3160662,23,30.948346,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3160698,5,30.96,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3160768,22,30.979073,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3160788,11,109,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3160920,15,30.98333,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3160923,15,30.98334,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3161024,23,44.655416,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3161200,11,109.15,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3161334,23,44.726071,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3161701,11,109.3333,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3161782,23,44.810857,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3162006,5,44.87,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3162156,2,44.88,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3162585,11,109.6833,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3163094,11,109.9833,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3163662,11,110.3333,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3163687,22,31.03393,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3163708,5,31.04,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3163728,22,31.048693,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3163938,6,31.05,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3164026,7,45.01,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3164119,22,31.061374,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3164228,7,31.08,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3164229,7,31.08,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3164265,4,31.09,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3164294,23,45.051084,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3164295,23,45.051084,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3164350,11,110.5667,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3164361,11,110.5833,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3164483,2,31.1,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3164484,2,31.1,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3164671,22,31.112008,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3164674,22,31.116238,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3164700,22,31.128931,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3164847,11,110.8833,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3164871,11,110.9333,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3164872,11,110.9333,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3164894,11,110.9667,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3164977,7,45.17,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3165307,11,111.2167,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3165356,22,31.164822,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3165358,22,31.166967,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3165373,4,31.17,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3165422,23,45.248918,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3165539,7,31.18,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3165540,7,31.18,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3165558,22,31.181758,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3165561,22,31.188082,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3165576,4,31.19,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3165588,7,45.27,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3165759,11,111.4667,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3165821,11,111.6,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3165943,23,45.361966,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3166030,11,111.65,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3166156,23,45.41849,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3166198,23,45.446752,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3166314,7,31.23,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3166392,22,31.230386,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3166413,5,31.24,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3166766,22,31.251575,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3166774,23,31.259228,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3166796,7,31.26,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3166798,2,31.26,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3166817,15,31.26667,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3166845,22,31.270623,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3166911,5,45.59,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3166975,11,112.2,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3167212,5,31.33,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3167223,22,31.334134,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3167252,7,31.34,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3167273,23,31.344014,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3167279,22,31.34896,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3167296,4,31.35,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3167381,23,31.358145,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3167470,11,112.3,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3167471,11,112.3,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3167543,7,45.71,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3167579,4,31.37,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3167580,4,31.37,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3167606,22,31.376525,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3167616,2,31.38,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3167660,2,31.39,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3167661,2,31.39,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3167786,23,45.743503,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3167820,5,31.4,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3167836,23,31.400538,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3167844,22,31.408292,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3167945,7,45.77,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3168017,23,45.814158,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3168018,23,45.814158,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3168062,11,112.6167,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3168087,11,112.6667,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3168100,11,112.6833,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3168115,7,31.41,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3168116,7,31.41,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3168117,5,31.41,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3168141,23,31.414669,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3168157,5,31.42,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3168158,2,31.42,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3168230,7,45.87,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3168324,11,112.7833,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3168335,11,112.8,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3168392,22,31.431631,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3168400,22,31.438032,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3168420,6,31.44,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3168464,11,112.9667,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3168710,23,45.969599,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3168860,22,31.463478,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3168884,7,31.47,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3168885,4,31.47,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3168886,5,31.47,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3169066,22,31.480484,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3169093,4,31.49,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3169094,7,31.49,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3169095,6,31.49,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3169119,11,113.5,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3169268,5,31.5,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3169298,11,113.6167,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3169439,22,31.512297,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3169443,22,31.516551,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3169444,15,31.51667,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3169538,11,113.75,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3169680,23,31.527717,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3169703,22,31.531414,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3169707,22,31.535669,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3169875,23,31.541848,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3170036,22,31.556948,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3170037,22,31.556948,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3170121,11,114.0833,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3170192,23,46.026123,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3170226,23,46.040254,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3170249,23,46.054385,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3170272,6,31.57,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3170306,2,31.58,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3170454,5,31.6,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3170455,7,31.6,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3170456,6,31.6,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3170525,22,31.618554,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3170557,2,31.62,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3170558,7,31.62,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3170559,6,31.62,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3170596,11,114.3167,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3170635,11,114.4333,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3170687,23,46.096778,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3170697,4,46.1,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3170701,11,114.4667,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3170805,23,46.12504,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3170863,4,31.64,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3170864,4,31.64,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3171087,6,31.65,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3171088,6,31.65,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3171165,5,31.67,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3171241,23,46.209826,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3171296,23,46.238088,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3171335,7,46.26,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3171389,22,31.682427,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3171528,7,31.7,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3171529,15,31.7,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3171530,7,31.7,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3171725,2,31.72,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3171740,23,31.725551,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3171772,7,46.34,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3171893,5,31.73,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3171895,6,31.73,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3171896,7,31.73,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3171924,23,31.739682,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3171982,11,115.35,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3172045,5,31.75,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3172046,7,31.75,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3172102,7,46.39,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3172154,11,115.4833,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3172274,2,31.76,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3172301,23,31.767944,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3172342,22,31.778286,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3172364,4,31.78,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3172365,7,31.78,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3172411,23,46.464184,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3172618,22,31.797473,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3172649,7,31.8,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3172650,5,31.8,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3172734,11,115.8667,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3172781,15,46.53334,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3172795,23,46.54897,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3172834,2,31.82,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3172836,4,31.82,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3172935,7,46.6,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3172988,11,115.8833,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3173370,2,31.86,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3173371,7,31.86,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3173390,15,31.86667,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3173466,23,46.704411,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3173600,4,31.87,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3173629,2,31.88,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3173651,15,31.88333,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3173864,23,46.760935,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3173991,2,31.91,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3174003,22,31.914811,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3174020,4,31.92,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3174021,5,31.92,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3174034,22,31.921255,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3174094,7,31.94,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3174123,22,31.94687,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3174196,11,116.9167,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3174298,7,31.96,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3174299,5,31.96,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3174300,7,31.96,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3174325,15,31.96667,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3174335,5,31.97,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3174336,5,31.97,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3174501,22,31.981056,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3174719,5,31.99,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3174776,11,117.05,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3174785,11,117.0667,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3174791,11,117.0833,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3174868,23,46.9729,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3174911,11,117.2167,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3175437,2,32,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3175544,11,117.55,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3176245,11,118.0167,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3176465,11,118.15,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3176825,11,118.5333,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3176966,2,32.02,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3176979,22,32.021656,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3177163,6,32.04,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3177264,15,32.05,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3177520,2,32.07,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3177521,7,32.07,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3177561,11,119.3333,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3177574,11,119.4167,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3177603,11,119.5333,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3177672,23,47.142472,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3177699,11,119.6333,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3177700,11,119.6333,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3177731,11,119.7333,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3177863,11,119.7667,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3178106,22,32.100861,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3178142,15,32.11666,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3178228,5,32.12,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3178229,7,32.12,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3178240,22,32.122249,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3178314,11,120.1333,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3178357,4,32.14,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3178358,6,32.14,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3178359,6,32.14,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3178468,11,120.5167,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3178490,23,47.269651,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3178538,22,32.150107,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3178578,23,32.163612,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3178609,11,120.6167,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3178668,6,32.17,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3178761,23,47.326175,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3178852,23,47.340306,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3179010,5,32.2,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3179011,15,32.2,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3179104,23,47.39683,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3179215,22,32.201562,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3179298,2,47.44,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3179323,7,47.46,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3179338,7,32.22,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3179339,5,32.22,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3179387,5,32.23,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3179431,23,47.481616,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3179636,23,47.566402,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3179649,22,32.235866,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3179658,2,32.24,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3179699,2,32.25,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3179700,6,32.25,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3179718,11,121.65,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3179728,11,121.6833,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3179837,23,47.580533,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3179844,7,47.59,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3179890,23,47.622926,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3179906,22,32.25947,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3179917,2,32.26,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3179962,2,32.27,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3179963,2,32.27,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3180126,7,47.67,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3180171,23,32.290791,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3180392,4,32.3,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3180411,22,32.3024,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3180426,4,32.31,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3180427,4,32.31,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3180525,23,47.82076,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3180526,23,47.82076,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3180567,23,47.863153,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3180600,23,47.877284,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3180653,23,47.919677,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3181542,5,32.33,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3181543,4,32.33,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3181544,4,32.33,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3181709,2,32.34,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3181733,22,32.349602,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3181806,2,32.35,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3181808,7,32.35,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3181809,5,32.35,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3181842,22,32.351782,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3181860,22,32.362511,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3181917,23,48.032725,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3182015,22,32.373242,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3182016,22,32.373242,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3182042,4,32.38,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3182044,7,32.38,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3182087,23,48.060987,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3182136,23,32.389708,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3182150,2,32.39,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3182162,22,32.392585,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3182246,23,48.089249,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3182370,4,32.4,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3182546,22,32.41842,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3182799,7,32.43,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3182830,15,32.43333,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3182844,2,32.44,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3182883,7,48.26,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3183166,22,32.442082,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3183191,22,32.457133,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3183309,22,32.465695,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3183328,22,32.472187,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3183346,4,32.48,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3183421,5,32.5,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3183450,22,32.500122,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3183518,2,48.4,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3183526,23,48.400131,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3183527,23,48.400131,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3183624,22,32.510929,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3183630,22,32.515241,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3183649,5,32.52,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3183723,22,32.521681,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3183753,4,32.53,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3183754,7,32.53,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3183791,22,32.536749,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3183837,22,32.554004,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3184079,5,32.57,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3184307,4,32.6,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3184346,6,32.61,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3184377,23,32.615804,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3184384,2,32.62,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3184385,5,32.62,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3184394,22,32.622954,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3184453,7,48.65,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3184538,2,32.63,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3184917,23,48.711013,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3184932,23,48.725144,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3185171,5,32.65,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3185172,15,32.65,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3185274,23,48.781668,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3185328,6,32.66,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3185373,2,32.67,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3185557,23,48.852323,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3185817,2,32.69,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3185849,4,32.7,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3185867,23,32.70059,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3185948,2,32.71,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3185988,5,32.72,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3185989,7,32.72,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3186032,23,48.922978,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3186033,23,48.922978,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3186081,23,48.95124,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3186215,4,32.73,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3186216,4,32.73,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3186430,22,32.752449,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3186436,23,32.757114,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3186486,7,32.77,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3186690,2,32.79,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3186711,23,32.799507,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3187045,7,32.8,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3187046,7,32.8,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3187135,7,32.82,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3187354,2,32.85,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3187372,22,32.853978,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3187556,7,32.87,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3187572,23,32.870162,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3187839,23,49.036026,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3187846,7,49.04,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3187853,22,32.908059,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3188064,6,32.93,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3188065,4,32.93,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3188115,23,32.940817,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3188120,22,32.942745,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3188138,7,32.95,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3188239,23,49.09255,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3188324,15,32.96666,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3188605,4,32.99,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3188623,23,32.997341,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3188725,3,49.2289,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3189289,23,49.318646,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3190425,5,33.02,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3190426,2,33.02,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3190463,23,49.459956,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3190598,23,49.502349,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3190642,7,33.03,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3190677,23,33.039734,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3190845,23,49.558873,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3190875,2,33.04,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3190922,7,33.06,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3190923,6,33.06,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3190924,2,33.06,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3190972,4,33.07,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3191521,23,49.686052,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3191553,4,33.11,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3191554,7,33.11,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3191581,4,33.12,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3191719,23,49.742576,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3191744,2,33.13,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3191745,6,33.13,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3191873,4,33.15,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3191874,2,33.15,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3191907,2,33.16,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3192053,15,33.16667,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3192080,5,33.17,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3192345,7,33.19,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3192372,23,33.195175,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3192385,5,33.2,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3192547,6,33.21,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3192549,6,33.21,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3192568,15,33.21667,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3192711,23,33.223437,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3192764,5,33.24,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3192765,5,33.24,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3192766,4,33.24,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3192797,15,33.25,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3192993,23,49.982803,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3193433,7,33.29,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3193434,4,33.29,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3193633,5,33.33,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3193771,22,33.333491,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3193815,15,33.35,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3194285,4,33.36,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3194296,15,33.36666,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3194297,15,33.36667,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3194394,23,50.095851,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3194407,23,50.109982,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3194439,4,33.37,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3194483,2,33.38,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3194484,2,33.38,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3194500,15,33.38333,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3194570,23,50.138244,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3194571,23,50.138244,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3194914,7,33.42,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3194915,4,33.42,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3194916,2,33.42,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3194996,23,33.421271,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3195055,7,33.45,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3195057,15,33.45,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3195241,2,33.47,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3195242,5,33.47,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3195243,5,33.47,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3195283,2,33.48,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3195369,5,33.49,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3195410,7,33.5,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3195411,7,33.5,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3195608,4,33.52,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3195712,23,50.406733,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3195793,4,33.52,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3195794,5,33.52,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3196105,5,33.54,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3196106,2,33.54,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3196107,5,33.54,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3196365,7,33.58,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3196366,7,33.58,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3196540,6,33.6,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3196541,4,33.6,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3196581,5,33.61,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3196724,23,33.619105,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3196774,5,33.63,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3196775,4,33.63,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3196878,23,50.703484,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3196879,23,50.703484,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3196896,23,50.717615,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3197007,2,50.75,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3197058,5,33.64,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3197085,23,33.647367,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3197195,23,50.802401,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3197279,15,33.65,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3197308,7,33.66,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3197366,23,50.844794,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3197428,23,50.901318,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3197579,23,33.661498,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3197595,4,33.67,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3197808,5,33.7,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3197886,4,33.72,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3197973,2,33.73,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3197976,4,33.73,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3198270,23,33.760415,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3198289,4,33.77,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3198290,2,33.77,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3198309,5,33.78,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3198620,4,33.82,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3198752,7,33.84,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3198753,2,33.84,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3198754,5,33.84,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3198755,5,33.84,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3198901,4,33.86,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3198925,2,33.87,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3199330,15,33.9,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3199331,2,33.9,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3199516,7,33.92,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3199517,7,33.92,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3199518,6,33.92,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3199715,5,33.94,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3199716,7,33.94,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3199932,5,33.95,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3200459,23,51.014366,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3200473,7,51.02,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3200813,23,51.085021,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3201843,23,51.311117,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3202272,2,34.01,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3202315,4,34.02,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3202316,7,34.02,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3202317,5,34.02,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3202351,5,34.03,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3202352,4,34.03,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3202368,2,34.04,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3202698,23,51.508951,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3202808,4,34.06,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3202835,4,34.07,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3203033,23,34.099559,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3203049,5,34.1,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3203050,5,34.1,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3203093,23,51.63613,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3203302,5,34.12,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3203328,2,34.13,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3203344,15,34.13333,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3203346,15,34.13334,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3203400,5,34.15,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3203531,23,34.170214,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3203931,2,34.2,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3203932,7,34.2,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3203968,23,34.212607,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3204183,22,34.241983,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3204206,7,34.25,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3204321,23,51.961143,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3204794,6,34.28,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3204795,7,34.28,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3204796,4,34.28,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3204835,5,34.29,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3205105,4,34.32,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3205106,2,34.32,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3205130,5,34.33,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3205277,23,34.339786,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3205311,4,34.35,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3205403,2,34.36,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3205428,15,34.36666,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3205442,4,34.37,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3205662,2,34.38,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3205774,15,34.4,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3205776,4,34.4,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3205950,23,34.410441,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3205967,5,34.42,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3205985,2,34.43,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3206330,23,34.452834,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3206351,7,34.46,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3206353,4,34.46,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3206354,7,34.46,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3206588,5,34.48,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3206685,7,34.49,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3206686,7,34.49,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3206687,7,34.49,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3206957,7,34.54,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3206958,7,34.54,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3206960,4,34.54,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3207067,23,52.286156,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3207234,2,34.57,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3207380,23,52.385073,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3207943,7,34.62,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3207944,7,34.62,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3208101,5,34.63,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3208102,5,34.63,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3208103,5,34.63,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3208155,7,34.65,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3208184,4,34.66,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3208365,2,34.68,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3208395,23,34.693061,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3208473,7,34.7,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3208693,23,52.724217,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3208724,4,34.74,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3208761,4,34.75,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3208762,5,34.75,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3208763,4,34.75,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3208886,2,34.77,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3208887,5,34.77,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3208942,23,52.780741,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3209102,7,34.78,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3209158,6,34.8,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3209192,5,34.81,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3209193,5,34.81,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3209274,2,34.82,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3209282,23,34.82024,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3209311,7,34.83,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3209312,5,34.83,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3209350,2,34.84,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3209351,4,34.84,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3209374,2,34.85,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3209375,15,34.85,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3209557,4,34.87,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3209570,23,34.876764,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3209582,4,34.88,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3209583,5,34.88,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3209728,5,34.91,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3209729,7,34.91,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3209886,4,34.92,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3209924,4,34.93,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3209925,7,34.93,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3209926,5,34.93,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3210074,2,34.94,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3210075,4,34.94,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3210133,7,34.96,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3211237,5,35,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3212327,23,53.105754,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3212339,23,53.119885,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3212583,23,53.176409,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3212921,23,53.33185,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3212935,23,53.345981,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3213043,7,53.39,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3213769,23,53.713387,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3213794,23,53.727518,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3213795,23,53.727518,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3213964,15,53.76667,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3213982,23,53.784042,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3214276,23,53.840566,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3214357,7,53.91,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3214514,7,53.94,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3214550,23,53.967745,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3214820,2,35.02,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3214864,7,35.04,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3215086,4,35.05,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3215109,2,35.06,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3215110,7,35.06,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3215111,7,35.06,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3215112,7,35.06,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3215444,5,35.07,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3215563,7,35.09,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3215589,4,35.1,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3215597,23,35.10286,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3215789,23,35.131122,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3215936,7,35.14,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3215977,23,35.159384,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3215978,23,35.159384,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3216466,23,54.292758,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3216472,2,35.18,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3216505,6,35.19,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3216506,7,35.19,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3216507,7,35.19,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3216525,2,35.2,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3216649,4,35.22,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3216729,4,35.23,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3216739,23,35.230039,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3216762,7,35.24,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3216763,4,35.24,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3216933,5,35.26,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3217111,5,35.28,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3217113,5,35.28,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3217124,15,35.28334,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3217282,7,35.3,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3217628,7,35.35,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3217629,2,35.35,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3217875,6,35.37,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3217876,4,35.37,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3218041,15,35.38334,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3218153,23,54.674295,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3218243,2,35.42,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3218403,4,35.45,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3218404,7,35.45,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3218436,2,35.47,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3218437,4,35.47,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3218571,23,35.470266,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3218590,4,35.48,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3218624,23,35.484397,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3218821,2,35.49,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3218841,23,35.498528,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3218944,5,35.52,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3218992,2,35.53,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3218993,7,35.53,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3219055,4,35.53,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3219098,15,35.55,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3219111,23,35.555052,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3219197,7,35.56,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3219198,2,35.56,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3219199,6,35.56,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3219200,7,35.56,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3219215,4,35.57,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3219338,5,35.59,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3219356,23,35.597445,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3219357,23,35.597445,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3219425,23,35.611576,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3219468,23,35.639838,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3219689,4,35.65,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3219722,4,35.66,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3220122,5,35.7,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3220156,5,35.71,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3220158,4,35.71,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3220291,23,35.738755,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3220310,2,35.74,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3220584,5,35.77,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3220585,5,35.77,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3220600,5,35.78,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3220601,4,35.78,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3220644,7,35.79,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3220645,5,35.79,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3220965,7,35.82,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3220966,7,35.82,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3220997,2,35.83,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3221155,7,35.84,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3221405,23,35.865934,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3221426,2,35.87,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3221452,4,35.88,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3221628,2,35.9,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3221699,23,55.154749,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3221782,4,35.91,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3221814,7,35.92,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3221846,2,35.93,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3221887,2,35.95,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3221888,7,35.95,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3221889,7,35.95,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3221955,7,35.97,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3224164,2,36,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3224709,23,55.960216,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3225817,23,36.021375,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3226030,23,36.035506,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3226069,7,36.05,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3226070,7,36.05,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3226256,7,36.05,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3226257,7,36.05,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3226293,4,36.07,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3226294,5,36.07,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3226608,2,36.12,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3226758,4,36.13,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3226950,7,36.16,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3227425,23,36.247471,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3227618,5,36.25,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3227724,7,36.29,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3227725,7,36.29,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3227956,4,36.31,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3228264,7,36.36,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3228460,2,36.39,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3228484,4,36.4,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3228498,23,36.402912,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3228533,7,36.42,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3228534,7,36.42,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3228897,23,56.935255,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3228934,4,36.46,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3228958,7,36.47,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3228959,7,36.47,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3228960,7,36.47,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3228974,22,36.472439,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3229584,2,36.52,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3229585,7,36.52,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3229919,2,36.58,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3229948,5,36.59,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3230283,7,36.6,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3230305,5,36.61,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3230306,5,36.61,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3230307,5,36.61,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3230512,2,36.62,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3230513,5,36.62,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3230524,23,36.629008,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3230538,5,36.63,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3230579,23,36.643139,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3230597,7,36.65,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3230598,5,36.65,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3230614,2,36.66,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3230657,7,36.68,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3230892,7,36.7,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3230926,23,36.713794,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3231022,7,57.24,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3231125,2,36.72,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3231177,4,36.74,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3231379,23,36.742056,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3231391,2,36.75,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3231585,5,36.77,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3231627,4,36.78,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3231629,4,36.78,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3231671,4,36.79,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3231930,4,36.82,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3232555,23,57.726591,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3232899,23,36.925759,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3233176,5,36.94,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3233415,7,36.96,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3233683,7,36.99,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3234071,23,58.108128,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3235210,3,58.4299,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3235294,5,37.02,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3235397,7,58.51,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3235398,7,58.51,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3235563,2,37.03,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3235603,4,37.04,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3235879,7,37.07,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3235880,2,37.07,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3235881,5,37.07,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3236092,23,37.109462,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3236230,5,37.11,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3236231,2,37.11,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3236232,4,37.11,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3236258,2,37.12,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3236259,7,37.12,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3236299,23,37.137724,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3236505,7,37.17,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3236535,23,37.180117,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3236557,23,37.194248,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3236569,4,37.2,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3237351,23,37.236641,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3237392,7,37.25,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3237393,2,37.25,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3237643,7,37.28,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3237729,2,37.29,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3238108,4,37.34,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3238129,23,37.349689,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3238139,7,37.35,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3238526,7,37.38,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3238527,7,37.38,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3238548,5,37.39,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3238581,6,37.41,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3238582,5,37.41,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3238763,7,37.43,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3238977,5,37.47,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3239155,23,37.490999,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3239156,23,37.490999,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3239157,23,37.490999,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3239166,4,37.5,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3239450,4,37.51,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3239451,7,37.51,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3239477,4,37.52,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3239636,23,37.533392,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3239652,5,37.54,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3239958,7,37.56,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3239969,23,37.561654,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3239994,5,37.58,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3240088,7,37.59,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3240089,5,37.59,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3240111,15,37.6,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3240276,23,37.618178,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3240277,23,37.618178,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3240298,7,37.62,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3240299,4,37.62,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3240921,5,37.69,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3241174,7,37.72,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3241175,7,37.72,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3241354,23,37.745357,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3241370,2,37.75,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3241482,7,37.77,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3241483,7,37.77,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3241484,4,37.77,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3241501,4,37.78,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3241521,23,37.78775,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3241791,4,37.8,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3242003,23,37.830143,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3242018,4,37.84,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3242029,23,37.844274,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3242195,4,37.86,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3242216,2,37.87,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3242709,7,37.95,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3242710,7,37.95,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3243178,23,37.985584,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3244728,7,61.4,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3245374,7,38.06,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3245417,23,38.07037,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3245418,23,38.07037,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3245576,23,38.084501,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3245589,23,38.098632,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3245754,4,38.11,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3245857,23,38.126894,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3246127,4,38.16,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3247130,7,38.19,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3247131,2,38.19,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3247275,23,38.197549,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3247311,7,38.21,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3247454,23,38.21168,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3247468,23,38.225811,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3247496,7,38.24,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3247809,23,38.268204,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3247810,23,38.268204,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3248259,15,62.76666,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3248429,6,38.34,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3248430,7,38.34,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3248591,5,38.36,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3248592,5,38.36,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3248593,2,38.36,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3248612,5,38.37,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3248755,23,38.381252,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3248774,23,38.395383,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3249088,4,38.42,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3249433,23,38.451907,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3249458,23,38.466038,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3249459,23,38.466038,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3249565,5,38.48,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3249925,7,38.53,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3249950,23,38.536693,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3249959,5,38.54,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3250102,7,38.58,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3250873,5,38.64,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3250894,2,38.65,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3251282,7,38.68,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3251283,7,38.68,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3251284,7,38.68,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3251313,2,38.7,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3251421,4,38.72,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3251450,23,38.734527,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3251779,7,38.74,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3251780,7,38.74,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3251893,2,38.76,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3251894,7,38.76,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3251941,23,38.77692,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3252218,7,38.79,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3252219,7,38.79,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3252375,23,64.057279,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3252397,7,38.81,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3252398,5,38.81,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3252437,4,38.83,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3252656,23,38.861706,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3252854,7,38.89,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3253298,23,38.946492,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3253396,23,38.960623,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3253397,23,38.960623,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3253408,7,38.97,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3255201,7,39,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3255202,7,39,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3257533,15,39.01667,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3257540,23,39.017147,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3257676,7,39.02,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3257677,7,39.02,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3257731,7,39.05,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3257732,7,39.05,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3257733,7,39.05,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3258355,7,39.1,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3258784,7,39.18,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3258825,7,39.2,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3258892,7,39.23,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3259044,4,39.24,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3259060,23,39.243243,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3259076,23,39.257374,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3259086,7,39.26,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3259338,23,39.299767,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3259892,23,39.356291,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3259902,6,39.36,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3259903,7,39.36,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3260079,6,39.41,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3260101,23,39.412815,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3260279,7,39.44,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3260412,23,39.469339,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3260598,2,39.5,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3260661,7,39.54,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3260790,23,39.568256,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3260791,23,39.568256,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3260792,23,39.568256,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3260909,7,39.59,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3261107,5,39.63,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3261571,7,39.67,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3261595,23,39.681304,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3261923,23,39.723697,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3262124,2,39.76,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3262440,23,39.794352,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3262453,5,39.8,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3262862,7,39.88,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3262863,7,39.88,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3262864,7,39.88,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3262881,5,39.89,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3263076,23,39.921531,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3263166,7,39.93,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3264292,23,68.112876,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3265629,7,40.04,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3265630,4,40.04,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3265678,7,40.06,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3265778,23,68.946605,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3266096,6,40.12,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3266246,7,40.14,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3266263,23,40.147627,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3266264,23,40.147627,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3266398,23,69.144439,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3266572,7,40.17,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3266590,23,40.175889,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3266741,7,40.19,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3266774,23,40.204151,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3266920,23,40.218282,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3266959,23,40.232413,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3267110,7,40.25,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3267154,7,40.27,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3267359,23,40.274806,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3267386,23,40.288937,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3267412,7,40.3,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3267883,7,40.38,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3268071,23,40.401985,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3268072,23,40.401985,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3268318,7,40.43,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3268319,7,40.43,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3268528,23,40.444378,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3268538,7,40.45,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3268559,23,40.458509,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3268560,23,40.458509,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3268666,7,40.48,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3269089,7,40.51,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3269090,7,40.51,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3269587,15,40.58334,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3269611,23,40.599819,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3269742,5,40.6,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3269764,4,40.61,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3269765,7,40.61,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3269948,2,40.64,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3270109,23,40.656343,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3270915,7,40.77,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3271176,23,40.797653,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3271178,2,40.8,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3271205,23,40.811784,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3271379,7,40.84,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3271654,23,40.882439,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3271906,7,40.92,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3272932,11,72.10001,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3274964,23,41.023749,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3275248,7,73.12,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3275447,7,41.08,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3275538,11,73.25001,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3275620,23,41.108535,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3275904,7,41.16,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3276032,7,41.18,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3276033,7,41.18,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3276134,23,41.207452,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3276323,23,41.235714,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3276369,6,41.26,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3276512,23,41.263976,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3276636,23,41.292238,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3276976,23,41.348762,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3277234,7,41.39,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3277235,7,41.39,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3277314,11,73.96667,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3277600,23,41.447679,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3277789,23,41.475941,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3277790,23,41.475941,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3277886,7,41.5,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3277887,7,41.5,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3278140,23,41.532465,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3278391,11,74.38334,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3278797,23,41.617251,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3278816,7,41.63,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3278935,11,74.63333,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3279213,23,41.673775,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3279255,5,41.69,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3279337,7,41.7,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3279900,11,75.13333,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3280261,4,41.76,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3280295,23,41.772692,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3280498,7,41.81,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3280531,23,41.829216,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3280713,7,41.86,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3280740,23,41.871609,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3281068,23,41.928133,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3281094,7,41.94,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3281381,23,41.984657,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3281565,11,75.96667,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3281994,11,76.06667,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3283913,7,42.07,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3284122,7,42.12,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3284123,7,42.12,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3284234,11,76.68333,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3284480,11,76.76667,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3284489,11,76.78333,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3284668,15,42.21666,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3284865,7,42.25,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3285014,23,42.267277,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3285147,11,77.01666,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3285242,23,42.323801,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3285341,23,42.337932,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3285366,7,42.35,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3285555,11,77.23333,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3285742,15,42.38334,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3285760,23,42.394456,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3286018,6,42.43,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3286052,23,42.45098,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3286507,23,42.535766,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3286623,11,77.58334,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3286740,7,42.56,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3287081,11,77.76667,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3287341,11,77.78333,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3287610,7,42.69,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3287620,23,42.691207,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3287676,11,77.88333,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3287957,11,77.91666,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3288083,7,42.75,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3288084,7,42.75,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3288372,7,42.8,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3288391,23,42.804255,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3288560,11,78.18333,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3288834,7,42.9,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3289058,7,42.95,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3289299,5,42.98,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3289300,6,42.98,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3289435,11,78.56667,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3289582,11,78.68333,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3290269,23,43.01622,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3290335,11,78.93333,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3290369,11,78.96667,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3290443,23,43.044482,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3290615,23,43.072744,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3290616,23,43.072744,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3290688,23,43.115137,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3290838,11,79.05,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3290892,7,43.16,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3291067,11,79.1,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3291105,23,43.185792,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3291119,7,43.19,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3291394,7,43.24,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3291689,23,43.29884,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3291816,7,43.34,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3291851,23,43.369495,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3291987,11,79.60001,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3292054,23,43.411888,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3292417,11,79.73334,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3292458,11,79.78333,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3292493,11,79.81667,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3292682,23,43.482543,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3292742,15,43.51667,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3292845,11,79.86667,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3293002,2,43.56,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3293071,11,79.91666,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3293467,11,80.1,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3293768,23,43.666246,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3293792,7,43.68,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3293978,23,43.751032,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3293979,23,43.751032,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3294016,11,80.15,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3294273,7,43.79,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3294377,23,43.807556,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3294508,11,80.28333,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3294795,15,43.9,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3294858,11,80.38333,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3294877,11,80.4,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3294893,11,80.41666,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3294996,23,43.934735,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3295203,11,80.5,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3295887,11,80.68333,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3296048,11,80.71667,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3296062,11,80.73333,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3296068,11,80.73334,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3296264,11,80.8,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3296779,11,80.86667,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3296808,11,80.9,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3296809,11,80.9,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3296955,11,80.91666,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3297346,11,81.06667,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3297358,11,81.08334,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3297828,23,44.019521,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3297964,11,81.18333,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3298055,11,81.28333,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3298056,11,81.28333,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3298096,23,44.061914,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3298162,7,44.1,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3298163,7,44.1,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3298280,11,81.31667,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3298466,11,81.36666,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3298489,11,81.38333,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3298633,11,81.4,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3298654,11,81.41666,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3298806,11,81.43333,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3299116,11,81.53333,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3299329,11,81.66666,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3299339,11,81.66667,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3299424,23,44.273879,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3299447,23,44.28801,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3299713,7,44.33,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3299725,23,44.330403,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3299780,11,81.78333,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3299909,11,81.83334,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3299910,11,81.83334,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3300047,11,81.85,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3300075,11,81.86667,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3300117,11,81.91666,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3300347,7,44.44,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3300746,11,82,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3300853,7,44.52,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3300854,7,44.52,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3301219,11,82.06667,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3301627,11,82.14999,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3301776,11,82.16666,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3301823,11,82.21667,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3301833,23,44.726071,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3302230,23,44.810857,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3302434,11,82.39999,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3302468,23,44.839119,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3302483,7,44.85,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3302898,11,82.51667,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3302975,7,44.96,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3303122,11,82.6,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3303288,11,82.61667,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3303715,11,82.7,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3303734,11,82.71666,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3303735,11,82.71667,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3304204,11,82.83334,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3304265,11,82.86667,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3304483,11,82.93333,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3304538,23,45.022822,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3304539,23,45.022822,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3304649,11,82.96667,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3304719,7,45.06,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3304731,23,45.065215,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3304732,23,45.065215,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3304853,11,82.98333,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3304906,11,83,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3305560,4,45.24,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3305934,11,83.18334,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3305984,23,45.305442,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3306002,23,45.319573,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3306218,23,45.333704,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3306219,23,45.333704,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3306364,23,45.376097,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3306386,7,45.4,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3306488,11,83.31667,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3306653,11,83.35,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3306781,7,45.51,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3306795,23,45.517407,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3306812,7,45.53,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3306986,11,83.4,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3307034,7,45.58,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3307195,11,83.46667,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3307235,23,45.630455,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3307414,11,83.48334,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3307445,11,83.51666,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3307517,11,83.51667,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3307610,23,45.70111,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3307611,23,45.70111,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3307612,23,45.70111,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3307713,11,83.56667,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3307750,11,83.58334,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3307798,11,83.61667,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3307829,23,45.729372,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3307877,2,45.75,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3307991,11,83.66666,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3307992,11,83.66666,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3308492,11,83.85,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3308648,11,83.86667,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3308691,11,83.9,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3308774,23,45.870682,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3308994,5,45.93,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3309448,23,45.98373,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3309449,23,45.98373,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3309450,23,45.98373,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3309469,23,45.997861,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3309470,23,45.997861,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3309554,11,84.1,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3309555,11,84.1,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3309955,11,84.2,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3310392,11,84.28333,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3310764,11,84.36666,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3311052,23,46.026123,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3311192,11,84.48333,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3311223,11,84.5,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3311490,7,46.13,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3311597,11,84.55,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3311687,23,46.181564,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3311806,11,84.63333,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3311964,23,46.238088,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3312031,11,84.65,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3312135,23,46.26635,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3312211,23,46.308743,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3312321,11,84.71667,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3312362,11,84.75,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3312673,11,84.83333,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3313001,11,84.88333,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3313090,11,84.9,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3313091,11,84.9,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3313164,2,46.32,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3313395,23,46.393529,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3313558,11,85,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3313614,23,46.450053,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3313716,11,85.01666,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3313799,23,46.492446,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3313945,11,85.08334,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3313958,11,85.1,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3314123,11,85.16666,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3314162,23,46.534839,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3314182,23,46.54897,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3314303,23,46.591363,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3314406,11,85.18333,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3314592,11,85.21667,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3315261,23,46.775066,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3315262,23,46.775066,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3315578,11,85.41666,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3315710,11,85.45,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3315812,23,46.888114,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3315841,7,46.91,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3315934,11,85.51667,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3315941,7,46.94,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3316069,11,85.53333,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3316151,7,46.99,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3316252,11,85.56667,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3316832,11,85.66666,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3316943,11,85.7,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3318072,11,85.93333,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3318074,11,85.93333,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3318869,23,47.015293,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3319114,11,86.10001,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3319126,11,86.11666,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3319537,11,86.16668,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3319610,23,47.128341,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3319817,23,47.184865,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3320032,23,47.241389,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3320077,23,47.269651,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3320208,11,86.33334,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3320271,23,47.312044,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3320620,23,47.382699,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3320638,23,47.39683,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3320995,11,86.46667,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3321201,11,86.51666,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3321316,7,47.56,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3321506,23,47.608795,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3321742,7,47.64,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3322197,23,47.693581,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3322997,23,47.919677,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3322998,23,47.919677,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3323471,23,47.990332,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3323502,11,86.9,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3323540,11,86.93333,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3324790,23,48.004463,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3324974,23,48.046856,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3325174,11,87.14999,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3325261,11,87.18334,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3325262,11,87.18334,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3325411,23,48.131642,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3325412,23,48.131642,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3325477,23,48.174035,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3325488,11,87.21667,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3325645,11,87.26666,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3325817,11,87.3,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3325846,11,87.31666,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3326443,11,87.43333,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3326980,11,87.55,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3327037,23,48.484917,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3327619,23,48.612096,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3327673,5,48.65,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3327684,23,48.654489,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3327700,23,48.66862,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3327801,4,48.69,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3327814,23,48.696882,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3328098,11,87.73333,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3328135,11,87.75,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3328329,23,48.795799,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3328827,7,48.89,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3328843,23,48.894716,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3328962,7,48.94,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3328994,23,48.95124,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3329083,11,87.91666,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3330115,11,88.05,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3330161,11,88.06667,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3330555,11,88.16666,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3331531,23,49.036026,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3331630,11,88.28333,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3331823,11,88.31667,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3332105,11,88.36667,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3332106,11,88.36667,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3332491,11,88.4,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3332546,23,49.389301,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3332732,23,49.431694,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3332746,23,49.445825,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3332747,23,49.445825,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3332914,11,88.48333,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3333039,11,88.48333,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3333142,23,49.558873,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3333274,11,88.53333,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3333314,23,49.587135,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3333326,7,49.59,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3333442,11,88.55,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3333657,11,88.58334,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3333711,23,49.686052,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3333758,7,49.72,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3334035,23,49.742576,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3334063,23,49.756707,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3334064,23,49.756707,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3334600,11,88.7,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3334738,23,49.94041,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3336555,11,88.98333,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3336585,23,50.011065,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3337023,23,50.124113,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3337417,11,89.08334,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3337794,23,50.321947,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3338433,23,50.477388,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3338608,11,89.28333,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3338874,4,50.59,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3338925,5,50.63,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3338945,23,50.64696,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3339084,11,89.38333,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3339189,11,89.4,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3339368,23,50.731746,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3339608,11,89.46667,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3339657,11,89.48334,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3340082,23,50.901318,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3340132,11,89.55001,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3340153,11,89.56667,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3343093,23,51.042628,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3343198,11,90.13333,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3343332,23,51.085021,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3343788,7,51.2,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3344034,11,90.31667,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3344216,11,90.38333,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3344811,11,90.48334,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3344934,11,90.51666,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3345041,11,90.56667,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3345092,23,51.311117,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3345379,23,51.395903,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3345380,23,51.395903,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3345616,23,51.49482,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3345652,7,51.52,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3345728,11,90.66666,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3346550,23,51.706785,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3346816,23,51.77744,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3347775,11,90.93333,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3348788,11,91.08334,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3349456,23,52.314418,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3349630,11,91.2,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3349731,11,91.25,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3349809,23,52.441597,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3350531,23,52.597038,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3350809,11,91.38334,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3350821,11,91.39999,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3351204,23,52.794872,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3351701,23,52.90792,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3352205,11,91.61666,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3352578,11,91.66666,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3353168,11,91.7,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3353364,11,91.73334,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3353392,11,91.75,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3353948,23,53.035099,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3354253,7,53.23,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3354511,11,91.86667,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3354852,23,53.444898,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3354869,23,53.459029,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3356683,11,92.13333,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3356804,23,53.812304,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3357054,11,92.18333,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3357481,11,92.26667,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3357839,11,92.31667,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3359465,7,54.17,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3360023,23,54.476461,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3360740,23,54.688426,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3361120,7,54.82,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3361411,7,54.92,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3362059,11,92.85,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3364306,7,55.47,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3365155,11,93.18334,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3365275,23,55.889561,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3366118,11,93.33334,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3366355,11,93.36667,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3366992,23,56.030871,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3367912,11,93.53333,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3369179,23,56.751552,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3369333,11,93.68334,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3370906,11,93.83334,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3371456,11,93.91666,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3373016,11,94.1,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3373896,23,57.966818,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3375648,11,94.31667,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3375868,11,94.35,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3376128,11,94.36667,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3376332,11,94.41666,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3377385,11,94.51666,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3379117,11,94.66666,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3382112,11,94.99999,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3382325,11,95.03333,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3382499,11,95.05,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3383925,23,60.566922,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3384573,7,60.96,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3388795,7,62.13,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3389936,23,62.545262,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3390293,11,95.95,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3391737,11,96.06667,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3391940,11,96.1,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3393076,11,96.2,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3393123,11,96.21667,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3394636,23,64.269244,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3399893,11,96.83334,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3400063,11,96.86667,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3400148,11,96.89999,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3401284,11,97.01666,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3401874,11,97.08334,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3403305,7,67.53,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3403550,11,97.25,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3404813,11,97.4,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3406050,11,97.53333,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3407282,11,97.66666,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3407449,11,97.68333,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3413840,11,98.39999,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3413841,11,98.39999,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3414008,11,98.41666,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3414179,11,98.43333,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3414784,11,98.55,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3415070,11,72.23333,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3415212,11,98.6,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3415596,11,98.66666,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3416027,11,98.73333,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3417388,11,98.88333,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3417389,11,98.88333,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3417770,11,73.16666,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3417883,11,98.95,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3417894,11,73.23334,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3419819,11,99.21667,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3420331,11,99.26667,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3420977,11,99.36666,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3422242,11,74.98333,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3424297,11,99.81667,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3424651,11,99.86666,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3425113,11,99.93333,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3425790,11,76.35,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3426168,11,100.0333,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3426480,11,100.0667,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3426676,11,100.1,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3426742,11,76.86667,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3427013,11,100.15,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3427335,11,77.01667,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3427506,11,77.06667,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3427528,11,77.1,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3427901,11,100.2667,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3428053,11,77.26667,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3428347,11,77.38333,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3428927,11,77.56667,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3428953,11,77.6,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3429102,11,77.7,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3429528,11,77.85,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3429543,11,100.55,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3429773,11,100.6,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3430093,11,78.03333,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3430365,11,78.06667,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3430807,11,78.23334,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3431490,11,78.43334,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3431706,11,78.46667,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3431943,11,78.63333,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3432113,11,78.68333,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3432275,11,78.73333,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3432375,11,101.05,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3432400,11,78.81666,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3432417,11,78.83333,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3432445,11,78.86667,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3433341,11,79.05,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3433372,11,79.08334,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3433476,11,79.13334,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3433810,11,79.3,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3434141,11,101.3667,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3434289,11,101.4167,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3434313,11,79.38333,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3434416,11,79.49999,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3434490,11,101.4667,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3434663,11,79.56666,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3434688,11,79.58334,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3434739,11,79.63334,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3435143,11,101.5167,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3436352,11,80.13333,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3436403,11,80.18333,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3436580,11,80.23334,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3436865,11,101.8667,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3437144,11,80.43333,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3437499,11,80.60001,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3437736,11,80.71667,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3437754,11,80.73333,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3437879,11,102,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3438159,11,80.88333,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3438160,11,80.88333,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3438211,11,80.93333,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3438360,11,80.94999,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3438605,11,80.99999,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3439403,11,102.2833,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3439404,11,102.2833,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3439677,11,81.2,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3440233,11,102.4833,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3440331,11,81.45,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3440368,11,81.48333,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3440369,11,81.48333,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3440534,11,81.51667,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3440568,11,102.5833,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3441200,11,81.71667,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3441414,11,102.8667,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3441415,11,102.8667,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3441594,11,81.78333,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3441685,11,102.8833,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3441911,11,81.89999,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3442280,11,103.05,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3442299,11,103.0667,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3443003,11,82.1,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3443163,11,82.18333,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3443217,11,103.3,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3443609,11,103.35,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3443739,11,82.3,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3443782,11,82.33334,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3444293,11,103.4833,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3444338,11,103.5167,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3444481,11,82.56667,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3444482,11,82.56667,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3444508,11,82.58334,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3444917,11,103.6667,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3444918,11,103.6667,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3444960,11,103.7,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3445268,11,103.7833,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3445270,11,103.7833,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3445608,11,103.8,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3445962,11,103.8667,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3446085,11,82.7,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3447265,11,104.15,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3447358,11,82.96667,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3447360,11,82.96667,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3447957,11,83.03333,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3447979,11,83.05,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3448254,11,83.11667,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3448268,11,83.13333,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3448416,11,83.18333,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3448566,11,83.2,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3448922,11,83.26666,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3449132,11,104.55,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3449355,11,83.36667,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3449383,11,104.65,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3449529,11,104.7167,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3449586,11,83.4,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3449845,11,83.44999,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3450254,11,83.53333,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3450484,11,83.56667,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3450659,11,105,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3450741,11,83.61667,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3450798,11,83.66666,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3450870,11,105.0167,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3450871,11,105.0167,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3451316,11,83.8,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3451509,11,83.85,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3451611,11,105.2,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3451669,11,83.86667,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3451822,11,105.2833,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3452047,11,83.96667,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3452154,11,105.35,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3452234,11,84,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3452235,11,84,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3452522,11,105.4,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3452680,11,84.06666,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3452764,11,105.5,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3452840,11,84.08334,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3452885,11,84.10001,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3453079,11,84.11666,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3453178,11,84.18333,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3453179,11,84.18333,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3453201,11,84.2,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3453554,11,84.28333,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3454072,11,84.38333,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3454095,11,84.39999,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3454258,11,84.41666,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3454475,11,84.46667,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3454627,11,84.48334,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3454687,11,84.53333,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3454841,11,106.0333,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3455047,11,106.1,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3455285,11,106.15,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3455349,11,106.2,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3455425,11,84.7,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3455813,11,84.8,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3456259,11,106.5,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3456697,11,85.03333,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3457005,11,85.08334,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3457039,11,85.11666,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3457455,11,85.15,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3457469,11,85.16666,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3457470,11,85.16666,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3457788,11,85.21667,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3457893,11,107.0167,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3457984,11,85.25001,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3458233,11,85.3,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3458273,11,85.31667,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3458274,11,85.31667,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3458545,11,85.36667,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3458570,11,85.38333,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3458571,11,85.38333,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3458591,11,85.39999,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3458675,11,85.41666,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3458933,11,85.46667,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3459064,11,85.51666,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3459808,11,85.63333,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3460010,11,85.68333,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3460011,11,85.68333,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3460039,11,85.7,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3460262,11,85.8,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3460263,11,85.8,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3460324,11,107.7667,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3460625,11,85.86666,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3460634,11,85.86667,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3460671,11,107.8833,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3460679,11,107.9,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3460710,11,85.88333,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3460735,11,85.9,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3461181,11,85.98334,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3461330,11,86,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3462140,11,108.3167,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3462280,11,86.14999,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3462476,11,86.2,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3462796,11,86.28333,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3462818,11,86.3,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3462991,11,86.33334,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3463525,11,86.45,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3463526,11,86.45,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3463617,11,108.9167,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3463668,11,108.9833,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3463695,11,86.48333,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3463717,11,86.5,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3463776,11,86.53333,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3463971,11,86.58334,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3464181,11,86.6,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3464223,11,86.61667,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3464224,11,86.61667,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3464374,11,109.2167,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3465167,11,86.76667,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3465183,11,86.78333,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3465230,11,86.81666,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3465328,11,109.5833,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3466002,11,86.95,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3466033,11,109.7833,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3466051,11,109.8167,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3466652,11,87.01667,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3466756,12,568.1667,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3466924,12,568.6667,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3467067,11,87.1,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3467068,11,87.1,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3467129,11,110.3,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3467179,11,110.3667,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3467231,11,110.4667,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3467375,11,87.16666,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3467572,11,87.2,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3467637,11,87.23334,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3467709,12,569.3333,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3467819,12,569.8333,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3467855,12,570.1667,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3468109,12,571,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3468150,11,87.35,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3468179,11,87.36667,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3468419,12,572.3333,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3468420,12,572.3333,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3468536,11,111.0333,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3468611,11,87.43333,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3468649,12,572.8333,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3468650,12,572.8333,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3468803,12,573.1667,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3468815,12,573.3333,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3469030,11,87.51666,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3469050,12,574,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3469051,12,574,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3469052,12,574,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3469082,12,574.3333,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3469083,12,574.3333,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3469103,12,574.6667,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3469157,11,87.55,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3469306,12,574.8333,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3469314,12,575,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3469315,12,575,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3469353,12,575.6667,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3469425,11,111.5333,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3469736,12,576.5,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3469753,12,576.6667,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3469755,12,576.6667,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3469771,12,576.8333,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3469773,12,576.8333,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3469914,12,577,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3469915,12,577,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3469916,12,577,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3469965,12,577.5,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3470088,11,87.7,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3470103,12,577.6667,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3470126,12,578,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3470204,12,579,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3470223,11,111.9667,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3470390,12,579.6667,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3470533,12,579.8333,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3470546,12,580,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3470566,12,580.3333,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3470567,12,580.3333,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3470575,12,580.5,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3470582,12,580.6667,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3470592,12,580.8333,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3470671,12,581,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3470700,12,581.3333,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3470784,11,87.8,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3470836,11,87.81667,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3470907,12,581.6667,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3470939,12,582,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3470940,12,582,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3470941,12,582,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3471136,11,87.89999,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3471213,11,112.4667,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3471236,12,582.3333,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3471249,12,582.5,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3471250,12,582.5,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3471252,12,582.5,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3471253,12,582.5,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3471272,12,582.6667,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3471273,12,582.6667,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3471274,12,582.6667,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3471294,11,87.91666,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3471336,11,87.93333,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3471472,12,582.8333,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3471484,12,583,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3471485,12,583,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3471486,12,583,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3471487,12,583,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3471502,12,583.1667,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3471503,12,583.1667,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3471512,12,583.3333,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3471513,12,583.3333,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3471522,12,583.5,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3471523,12,583.5,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3471643,11,88,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3471646,12,583.5,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3471647,12,583.5,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3471658,12,583.6667,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3471659,12,583.6667,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3471660,12,583.6667,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3471661,12,583.6667,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3471662,12,583.6667,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3471663,12,583.6667,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3471679,12,583.8333,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3471681,12,583.8333,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3471693,12,584,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3471694,12,584,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3471741,11,112.6833,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3471780,12,584.3333,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3471798,12,584.6667,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3471965,12,585.5,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3472086,12,586.6667,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3472110,12,587.1667,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3472111,12,587.1667,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3472133,12,587.5,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3472172,11,112.95,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3472272,12,587.6667,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3472273,12,587.6667,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3472276,12,587.6667,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3472284,12,587.8333,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3472293,12,588,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3472294,12,588,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3472295,12,588,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3472453,12,588.6667,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3472466,12,588.8333,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3472467,12,588.8333,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3472488,12,589.1667,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3472489,12,589.1667,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3472505,12,589.3333,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3472506,12,589.3333,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3472508,12,589.3333,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3472513,12,589.5,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3472524,12,589.6667,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3472540,12,590,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3472541,12,590,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3472550,12,590.1667,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3472558,12,590.3333,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3472561,12,590.3333,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3472562,12,590.3333,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3472639,12,590.5,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3472658,12,590.8333,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3472679,12,591.1667,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3472693,12,591.5,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3472705,11,113.0333,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3472848,12,592.1667,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3472860,12,592.3333,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3472861,12,592.3333,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3472865,12,592.5,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3472872,12,592.6667,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3472873,12,592.6667,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3472889,11,113.1667,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3472903,11,113.2,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3472904,11,113.2,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3472941,11,113.3,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3473009,12,593,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3473010,12,593,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3473023,12,593.3333,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3473026,12,593.3333,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3473045,12,593.6667,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3473051,12,593.8333,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3473067,12,594,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3473281,12,594.5,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3473305,12,595,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3473354,11,113.5167,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3473418,12,595.8333,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3473434,12,596,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3473435,12,596,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3473530,11,113.6333,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3473594,12,596.6667,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3473596,12,596.6667,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3473605,12,596.8333,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3473614,12,597,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3473663,11,113.8,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3473758,12,597.3333,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3473779,12,597.6667,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3473791,12,597.8333,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3473852,11,113.9333,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3474025,12,598.6667,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3474081,11,114.0167,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3474158,11,88.35,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3474179,12,599.1667,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3474186,12,599.3333,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3474187,12,599.3333,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3474196,12,599.5,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3474208,12,599.6667,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3474220,12,599.8333,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3474229,12,600,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3474230,12,600,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3474260,11,114.1833,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3474368,12,600.1667,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3474369,12,600.1667,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3474370,12,600.1667,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3474380,12,600.3333,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3474403,12,600.6667,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3474429,11,114.2833,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3474465,11,114.35,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3474607,12,601.6667,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3474608,12,601.6667,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3474609,12,601.6667,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3474628,12,601.8333,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3474646,12,602,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3474720,11,114.4833,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3474821,11,114.5833,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3474858,11,88.44999,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3474932,12,602.3333,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3475013,11,114.7667,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3475066,12,603.1667,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3475067,12,603.1667,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3475214,11,114.95,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3475277,12,604.1667,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3475278,12,604.1667,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3475556,11,88.53333,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3475685,11,115.0833,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3475807,11,115.2333,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3475834,11,115.2833,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3475905,12,607,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3476107,12,608,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3476185,11,115.65,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3476233,12,608.6667,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3476234,12,608.6667,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3476286,11,115.75,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3476353,12,609.1667,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3476796,11,116.3,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3476834,12,610.8333,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3476857,12,611,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3477037,11,116.5833,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3477084,12,611.3333,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3477144,11,88.63333,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3477301,12,612,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3477317,12,612.1667,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3477337,12,612.3333,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3477354,12,612.5,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3477542,12,613,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3477595,12,613.3333,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3477620,12,613.5,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3477623,12,613.5,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3477663,11,88.7,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3477891,12,613.6667,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3477911,12,613.8333,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3477941,12,614,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3477971,12,614.1667,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3478052,11,117.15,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3478061,11,117.1667,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3478266,11,117.3667,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3478307,11,117.4833,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3478433,11,117.65,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3478462,12,615,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3478465,12,615,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3478466,12,615,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3478467,12,615,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3478469,12,615,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3478470,12,615,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3478473,12,615,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3478544,11,117.7667,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3478578,11,88.85,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3478614,11,88.86667,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3478621,12,615.1667,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3478645,12,615.3333,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3478677,12,615.5,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3478684,11,117.8167,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3478844,12,615.8333,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3478938,11,118.05,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3479121,12,616,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3479148,12,616.1667,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3479149,12,616.1667,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3479218,11,88.95,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3479284,12,616.6667,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3479362,11,88.99999,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3479469,11,118.5667,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3479481,11,118.6167,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3479569,11,89.01666,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3479639,11,118.75,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3479724,11,89.06667,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3479726,11,89.06667,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3479758,12,617.3333,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3480035,11,119.1333,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3480158,11,89.16666,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3480159,11,89.16666,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3480171,12,618,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3480172,12,618,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3480230,11,119.1667,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3480253,11,119.2333,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3480318,12,618.5,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3480486,12,618.8333,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3480514,12,619,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3480569,11,119.7833,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3480687,11,89.21667,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3481117,12,620,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3481276,11,120.6667,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3481391,11,89.31667,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3481409,11,120.7167,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3481463,12,620.8333,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3481499,12,621,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3481899,11,89.35001,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3482057,11,89.41666,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3482192,11,121.75,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3482508,11,122.25,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3482513,11,89.46667,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3482741,11,89.51666,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3483215,11,89.6,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3483246,11,89.60001,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3483682,11,89.68333,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3483887,11,89.68334,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3483930,11,89.71667,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3484239,12,625.8333,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3484448,12,626.1667,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3484709,12,626.5,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3485593,12,627.5,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3485931,12,627.8333,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3486103,12,628,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3486470,11,90.16666,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3487571,12,630,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3487586,11,90.31667,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3487607,11,90.33334,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3487952,11,90.38333,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3488418,12,630.6667,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3488603,12,630.8333,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3488886,11,90.55,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3488912,11,90.55001,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3488979,12,631.1667,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3488980,12,631.1667,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3489360,12,631.3333,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3489361,12,631.3333,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3489627,12,631.5,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3489710,12,631.6667,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3489900,12,631.8333,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3490103,12,632,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3490104,12,632,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3490173,11,90.73333,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3490187,11,90.73334,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3490229,12,632,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3490645,11,90.83334,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3491114,12,632.6667,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3491527,12,632.8333,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3492221,12,633.1667,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3492476,11,91.05001,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3492851,11,91.10001,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3492869,11,91.11667,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3493004,12,633.6667,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3493462,12,633.8333,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3493679,11,91.26666,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3493879,11,91.3,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3493943,12,634,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3494108,11,91.36667,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3494881,12,634.3333,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3494970,12,634.5,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3494971,12,634.5,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3495193,11,91.56667,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3495369,12,634.6667,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3496185,11,91.7,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3496211,11,91.71667,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3496407,12,635.1667,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3496500,12,635.3333,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3496656,11,91.75,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3497224,11,91.81667,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3497245,11,91.83334,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3497318,12,635.8333,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3497319,12,635.8333,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3497527,12,636,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3497741,12,636.1667,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3497948,12,636.3333,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3498211,11,91.94999,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3498554,12,636.8333,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3498555,12,636.8333,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3498877,12,637,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3498959,12,637.1667,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3498960,12,637.1667,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3499153,12,637.3333,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3499154,12,637.3333,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3499155,12,637.3333,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3499218,11,92.08332,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3499417,12,637.6667,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3499812,12,637.8333,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3499813,12,637.8333,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3499814,12,637.8333,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3500754,12,638.6667,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3500755,12,638.6667,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3500994,12,638.8333,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3501249,11,92.36667,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3501343,12,639.1667,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3501527,11,92.41666,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3501613,12,639.5,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3501614,12,639.5,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3501615,12,639.5,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3501861,12,639.6667,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3502669,12,640.5,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3502854,12,640.6667,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3502890,11,92.58334,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3503088,12,640.8333,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3503945,12,641.3333,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3503946,12,641.3333,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3503947,12,641.3333,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3504066,12,641.5,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3504248,12,641.6667,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3504249,12,641.6667,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3504530,12,642.1667,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3504531,12,642.1667,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3504836,12,642.5,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3505081,12,642.6667,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3505082,12,642.6667,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3505135,12,642.8333,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3505136,12,642.8333,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3505137,12,642.8333,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3505138,12,642.8333,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3505139,12,642.8333,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3505140,12,642.8333,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3505191,12,643,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3505192,12,643,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3505193,12,643,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3505194,12,643,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3505388,12,643.1667,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3505562,12,643.3333,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3505563,12,643.3333,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3505789,11,92.93333,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3505870,12,643.5,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3505871,12,643.5,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3505872,12,643.5,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3505913,12,643.6667,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3505914,12,643.6667,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3506096,12,643.8333,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3506097,12,643.8333,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3506098,12,643.8333,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3506225,12,644,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3506226,12,644,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3506227,12,644,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3506308,12,644.1667,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3506309,12,644.1667,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3506558,12,644.3333,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3506559,12,644.3333,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3506560,12,644.3333,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3506561,12,644.3333,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3506810,12,644.5,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3506811,12,644.5,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3506888,11,93.08334,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3507000,12,644.6667,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3507001,12,644.6667,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3507586,11,93.15,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3507618,11,93.16666,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3508780,12,646,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3509028,11,93.33334,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3510178,11,93.44999,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3510332,12,647,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3510358,11,93.46667,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3510795,12,647.1667,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3510796,12,647.1667,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3511158,12,647.3333,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3511674,11,93.51666,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3512367,12,648.1667,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3512695,12,648.3333,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3512960,12,648.6667,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3513517,12,649,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3513920,11,93.73334,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3513950,11,93.75,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3514661,12,649.8333,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3515082,12,650.3333,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3515200,12,650.5,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3516104,12,651,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3516358,11,94.03333,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3516535,12,651.1667,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3517440,12,652,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3517688,12,652.3333,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3517982,12,652.8333,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3518187,12,653.1667,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3518436,11,94.23334,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3518546,12,653.6667,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3518584,12,653.8333,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3518654,12,654.1667,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3518883,12,654.3333,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3519102,12,654.8333,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3519675,12,655.8333,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3519699,12,656,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3519999,12,656.6667,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3520052,12,657,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3520494,12,657.5,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3520669,12,657.8333,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3520840,12,658.1667,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3520873,12,658.5,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3520980,12,658.8333,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3521000,12,659,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3521038,12,659.3333,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3521324,12,659.6667,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3521344,12,659.8333,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3521785,12,661.1667,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3522348,12,663.3333,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3522349,12,663.3333,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3522360,12,663.5,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3522525,11,94.60001,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3522560,12,663.6667,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3522561,12,663.6667,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3522604,12,664.1667,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3522769,12,664.5,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3522797,12,664.8333,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3522989,12,665.5,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3524150,12,669.1667,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3524151,12,669.1667,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3524166,12,669.3333,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3524653,12,670.1667,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3524654,12,670.1667,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3524866,12,671,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3525013,12,671.5,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3525014,12,671.5,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3525090,11,94.86667,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3525316,11,94.9,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3525496,12,672.3333,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3525592,12,672.6667,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3525621,12,673,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3526723,11,95.06666,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3527521,11,95.18333,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3530071,11,95.43333,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3531470,11,95.58334,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3531878,12,204.4,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3532596,11,95.71667,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3533110,11,95.78333,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3533750,11,95.86667,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3534226,11,95.9,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3534605,11,95.95,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3535764,11,96.05,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3535811,11,96.06666,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3536423,11,96.13333,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3537005,11,96.18333,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3537644,11,96.23334,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3537645,11,96.23334,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3538026,11,96.28333,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3539675,11,96.5,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3540257,11,96.6,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3542545,11,96.81667,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3542582,11,96.83334,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3543309,11,96.95,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3544971,11,97.18333,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3545001,11,97.18334,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3547680,11,97.6,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3548744,11,97.78333,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3549546,11,97.93333,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3550016,11,98,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3550902,11,98.18333,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3551227,11,98.23334,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3552804,11,98.51667,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3552954,11,98.56666,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3553316,11,98.64999,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3553354,11,98.66666,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3553787,11,98.75,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3553914,11,98.76667,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3554038,11,98.8,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3554314,11,98.85001,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3555020,11,98.98334,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3555988,11,99.16666,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3557101,11,99.39999,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3557457,11,99.46667,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3558450,11,99.68333,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3561856,11,100.4333,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3561883,11,100.45,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3563256,11,100.75,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3563843,11,100.9167,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3563983,11,100.9667,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3564279,11,101.0333,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3564378,11,101.05,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3565182,11,101.3167,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3565369,11,101.4,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3566301,11,101.7167,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3567639,11,102.0833,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3567715,11,102.15,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3568058,11,102.25,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3568479,11,102.4333,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3568506,11,102.45,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3568529,11,102.4667,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3571152,11,103.3,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3571234,11,103.3667,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3571507,11,103.4833,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3571782,11,103.5833,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3572018,11,103.6667,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3572901,11,103.9833,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3573452,11,104.1333,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3573926,11,104.2833,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3574584,11,104.5333,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3574900,11,104.65,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3576301,11,105.15,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3578026,11,105.5167,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3578296,11,105.65,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3578297,11,105.65,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3578955,11,105.9667,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3579855,11,106.25,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3580807,11,106.65,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3580823,11,106.6667,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3581056,11,106.7833,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3581303,11,106.9333,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3581771,11,107.1,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3583281,11,107.8333,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3583380,11,107.8667,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3584491,11,108.4833,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3585087,11,108.9,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3585108,11,108.9167,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3585777,11,109.4,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3585827,11,109.4667,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3586528,3,109.9511,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3587543,11,110.65,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3588080,11,111.05,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3589392,11,112.15,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3589636,11,112.2833,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3589658,11,112.3167,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3589977,11,112.7167,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3590317,11,112.9167,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3590624,11,113.0667,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3590994,11,113.3167,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3591390,11,113.8167,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3591789,11,114.1167,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3592675,11,115.2667,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3592692,11,115.3,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3592840,11,115.35,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3593255,11,115.9,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3593724,11,116.2333,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3593894,11,116.5333,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3594041,11,116.7833,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3594142,11,116.8833,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3594321,11,117.0333,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3594356,11,117.1,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3594686,11,117.4833,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3594687,11,117.4833,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3595434,11,118.4333,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3595829,11,119.2667,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3595843,11,119.3,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3595973,11,119.5,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3596120,11,119.6,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3596391,11,120.0167,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3596401,11,120.05,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3596680,11,120.65,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3597177,11,121.35,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3597333,11,121.6333,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3597411,11,121.6833,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3597798,11,122.1,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3599039,7,124.33,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3694529,12,568.1667,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3694536,12,568.3333,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3694547,12,568.5,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3694865,12,569.5,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3694925,12,570.1667,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3694988,12,570.1667,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3695008,12,570.3333,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3695026,12,570.5,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3695058,12,570.8333,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3695072,12,571,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3695073,12,571,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3695074,12,571,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3695215,12,571.6667,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3695329,12,572.1667,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3695330,12,572.1667,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3695351,12,572.3333,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3695447,12,572.6667,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3695470,12,573,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3695609,12,573.1667,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3695638,12,573.6667,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3695665,12,574,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3695754,12,574.3333,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3695781,12,574.6667,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3695782,12,574.6667,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3695796,12,574.8333,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3695810,12,575,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3695827,12,575.1667,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3695828,12,575.1667,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3695842,12,575.3333,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3695921,12,575.5,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3695956,12,576,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3695957,12,576,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3695976,12,576.1667,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3695977,12,576.1667,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3695991,12,576.3333,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3696007,12,576.5,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3696021,12,576.6667,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3696023,12,576.6667,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3696024,12,576.6667,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3696106,12,576.8333,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3696119,12,577,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3696143,12,577.1667,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3696145,12,577.1667,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3696155,12,577.3333,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3696156,12,577.3333,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3696232,12,577.5,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3696233,12,577.5,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3696234,12,577.5,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3696392,12,578.6667,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3696491,12,579,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3696537,12,579.5,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3696612,12,579.6667,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3696650,12,580.1667,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3696660,12,580.3333,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3696773,12,581,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3696774,12,581,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3696775,12,581,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3696862,12,581.1667,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3696864,12,581.1667,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3696865,12,581.1667,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3696890,12,581.6667,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3696898,12,581.8333,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3696899,12,581.8333,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3696900,12,581.8333,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3696907,12,582,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3696911,12,582,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3696924,12,582.1667,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3696936,12,582.3333,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3696937,12,582.3333,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3696938,12,582.3333,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3696939,12,582.3333,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3696940,12,582.3333,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3696956,12,582.5,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3696958,12,582.5,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3696959,12,582.5,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3697042,12,582.8333,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3697060,12,583,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3697061,12,583,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3697080,12,583.1667,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3697082,12,583.1667,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3697083,12,583.1667,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3697084,12,583.1667,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3697085,12,583.1667,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3697092,12,583.3333,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3697093,12,583.3333,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3697224,12,583.5,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3697225,12,583.5,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3697226,12,583.5,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3697238,12,583.6667,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3697252,12,583.8333,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3697253,12,583.8333,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3697254,12,583.8333,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3697274,12,584,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3697353,12,584.1667,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3697355,12,584.1667,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3697356,12,584.1667,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3697364,12,584.3333,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3697365,12,584.3333,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3697378,12,584.5,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3697466,12,586,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3697480,12,586.1667,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3697489,12,586.3333,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3697599,12,587.3333,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3697600,12,587.3333,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3697606,12,587.5,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3697608,12,587.5,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3697625,12,587.8333,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3697626,12,587.8333,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3697627,12,587.8333,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3697653,12,588.1667,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3697673,12,588.5,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3697674,12,588.5,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3697675,12,588.5,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3697676,12,588.5,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3697714,12,589.1667,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3697715,12,589.1667,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3697788,12,589.3333,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3697789,12,589.3333,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3697799,12,589.5,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3697803,12,589.5,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3697821,12,589.8333,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3697830,12,590,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3697846,12,590.1667,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3697856,12,590.3333,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3697869,12,590.5,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3697880,12,590.6667,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3697881,12,590.6667,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3697887,12,590.8333,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3697964,12,591,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3697975,12,591.1667,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3697976,12,591.1667,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3697989,12,591.3333,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3697990,12,591.3333,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3698102,12,592.6667,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3698109,12,592.8333,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3698110,12,592.8333,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3698115,12,593,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3698134,12,593.5,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3698339,12,595,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3698340,12,595,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3698380,12,595.6667,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3698381,12,595.6667,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3698388,12,595.8333,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3698462,12,596,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3698474,12,596.1667,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3698491,12,596.5,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3698492,12,596.5,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3698654,12,597.1667,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3698663,12,597.3333,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3698664,12,597.3333,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3698672,12,597.5,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3698674,12,597.5,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3698675,12,597.5,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3698685,12,597.6667,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3698692,12,597.8333,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3698696,12,598,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3698717,12,598.3333,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3698746,12,598.8333,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3698770,12,599.1667,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3698802,12,599.8333,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3698814,12,600.1667,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3698958,12,600.5,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3698965,12,600.6667,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3698966,12,600.6667,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3699001,12,601.1667,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3699033,12,601.6667,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3699182,12,602.6667,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3699191,12,602.8333,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3699326,12,603.8333,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3699327,12,603.8333,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3699407,12,604,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3699593,12,605.6667,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3699882,12,607.3333,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3700034,12,607.6667,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3700067,12,608,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3700168,12,608.5,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3700197,12,608.8333,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3700198,12,608.8333,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3700222,12,609,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3700245,12,609.1667,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3700247,12,609.1667,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3700320,12,609.3333,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3700349,12,609.6667,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3700376,12,610,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3700435,12,610.5,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3700521,12,610.6667,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3700548,12,610.8333,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3700574,12,611,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3700575,12,611,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3700613,12,611.3333,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3700659,12,611.8333,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3700675,12,612,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3700781,12,612.3333,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3700874,12,613,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3700917,12,613.3333,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3700919,12,613.3333,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3701068,12,613.5,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3701117,12,613.8333,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3701139,12,614,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3701164,12,614.1667,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3701336,12,614.5,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3701365,12,614.6667,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3701427,12,615,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3701429,12,615,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3701433,12,615,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3701595,12,615.1667,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3701596,12,615.1667,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3701720,12,615.5,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3701834,12,615.8333,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3701860,12,616,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3701862,12,616,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3701863,12,616,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3702056,12,616.5,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3702057,12,616.5,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3702264,12,617,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3702290,12,617.1667,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3702636,12,618.3333,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3702868,12,619,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3703535,12,620.5,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3703678,12,621,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3705472,12,626,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3705916,12,627.1667,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3706661,12,628.5,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3707344,12,629.5,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3707400,12,629.6667,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3708346,12,631,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3708755,12,631.5,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3708967,12,632,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3709376,12,632.6667,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3709593,12,632.8333,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3709690,12,633,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3709860,12,633.1667,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3710706,12,633.8333,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3711018,12,634.1667,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3711670,12,634.6667,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3711841,12,634.8333,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3711842,12,634.8333,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3712067,12,635,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3712068,12,635,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3712069,12,635,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3712445,12,635.3333,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3712446,12,635.3333,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3712447,12,635.3333,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3713144,12,636.1667,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3713285,12,636.3333,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3713286,12,636.3333,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3713823,12,637,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3713824,12,637,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3713825,12,637,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3714021,12,637.1667,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3714220,12,637.3333,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3714356,12,637.5,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3714571,12,637.8333,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3714572,12,637.8333,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3714633,12,638,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3715450,12,638.8333,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3715451,12,638.8333,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3715452,12,638.8333,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3715505,12,639,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3715634,12,639.1667,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3715907,12,639.6667,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3716000,12,640,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3716471,12,640.6667,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3716647,12,641,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3716828,12,641.1667,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3716878,12,641.3333,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3716879,12,641.3333,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3717001,12,641.5,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3717002,12,641.5,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3717110,12,641.8333,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3717168,12,642,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3717293,12,642.1667,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3717294,12,642.1667,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3717416,12,642.3333,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3717417,12,642.3333,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3717589,12,642.5,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3717726,12,642.6667,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3717727,12,642.6667,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3717855,12,642.8333,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3717977,12,643,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3717978,12,643,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3717979,12,643,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3717980,12,643,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3717981,12,643,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3718176,12,643.1667,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3718177,12,643.1667,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3718178,12,643.1667,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3718310,12,643.3333,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3718366,12,643.5,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3718413,12,643.6667,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3718414,12,643.6667,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3718415,12,643.6667,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3718416,12,643.6667,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3718534,12,643.8333,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3718535,12,643.8333,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3718581,12,644,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3719180,12,644.5,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3719181,12,644.5,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3719182,12,644.5,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3719413,12,644.8333,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3719414,12,644.8333,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3720170,12,645.6667,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3720267,12,645.8333,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3720498,12,646,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3721552,12,647,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3722235,12,647.5,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3723054,12,648.3333,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3723543,12,648.8333,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3724068,12,649.3333,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3724199,12,649.5,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3725408,12,651.1667,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3725512,12,651.3333,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3725842,12,652,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3726200,12,652.3333,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3726356,12,652.6667,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3726620,12,653.1667,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3726816,12,653.5,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3727017,12,654.3333,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3727423,12,655.1667,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3727556,12,655.5,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3727819,12,656.1667,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3727967,12,656.6667,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3728052,12,656.8333,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3728153,12,657.5,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3728303,12,657.6667,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3728304,12,657.6667,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3728329,12,657.8333,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3728603,12,659,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3728742,12,659.6667,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3728973,12,660.5,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3729417,12,662.1667,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3729439,12,662.5,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3729672,12,663.8333,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3729673,12,663.8333,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3729690,12,664,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3729904,12,664.1667,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3730104,12,664.8333,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3730341,12,666,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3730722,12,667.3333,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3730723,12,667.3333,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3730832,12,667.8333,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3730856,12,668,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3731070,12,668.6667,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3731421,12,669.8333,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3731711,12,670.3333,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3731734,12,670.5,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3731735,12,670.5,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3731736,12,670.5,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3731754,12,670.6667,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3731755,12,670.6667,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3731777,12,670.8333,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3731936,12,671.3333,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3731987,12,671.8333,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3731988,12,671.8333,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3732049,12,672.1667,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3732050,12,672.1667,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3732142,12,672.5,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3732388,12,673.5,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3732399,12,673.6667,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3732413,12,673.8333,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3732414,12,673.8333,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3773820,12,568.1667,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3773973,12,570,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3773987,12,570.1667,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3774008,12,570.3333,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3774023,12,570.5,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3774024,12,570.5,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3774046,12,570.6667,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3774071,12,571,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3774087,12,571.1667,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3774118,12,571.5,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3774162,12,572,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3774163,12,572,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3774197,12,572.3333,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3774198,12,572.3333,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3774199,12,572.3333,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3774213,12,572.5,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3774241,12,572.8333,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3774279,12,573.1667,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3774280,12,573.1667,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3774287,12,573.3333,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3774310,12,573.6667,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3774321,12,573.8333,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3774329,12,574,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3774345,12,574.1667,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3774381,12,574.6667,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3774399,12,574.8333,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3774400,12,574.8333,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3774415,12,575,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3774416,12,575,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3774430,12,575.3333,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3774431,12,575.3333,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3774432,12,575.3333,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3774469,12,575.6667,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3774602,12,577.1667,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3774666,12,578,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3774701,12,578.3333,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3774728,12,578.6667,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3774759,12,579,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3774760,12,579,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3774831,12,579.8333,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3774832,12,579.8333,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3774849,12,580,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3774870,12,580.5,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3774872,12,580.5,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3774881,12,580.6667,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3774891,12,580.8333,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3774934,12,581.3333,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3774961,12,582,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3774962,12,582,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3774963,12,582,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3774983,12,582.1667,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3774985,12,582.1667,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3774995,12,582.3333,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3774996,12,582.3333,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3775004,12,582.5,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3775005,12,582.5,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3775008,12,582.5,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3775009,12,582.5,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3775016,12,582.6667,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3775041,12,582.8333,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3775042,12,582.8333,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3775044,12,582.8333,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3775057,12,583,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3775058,12,583,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3775059,12,583,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3775060,12,583,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3775061,12,583,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3775062,12,583,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3775063,12,583,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3775072,12,583.1667,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3775074,12,583.1667,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3775075,12,583.1667,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3775076,12,583.1667,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3775077,12,583.1667,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3775084,12,583.3333,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3775098,12,583.5,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3775099,12,583.5,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3775100,12,583.5,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3775112,12,583.6667,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3775113,12,583.6667,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3775114,12,583.6667,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3775115,12,583.6667,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3775130,12,583.8333,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3775131,12,583.8333,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3775132,12,583.8333,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3775142,12,584,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3775143,12,584,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3775144,12,584,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3775145,12,584,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3775159,12,584.1667,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3775221,12,585.3333,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3775247,12,585.8333,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3775260,12,586,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3775307,12,587,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3775317,12,587.1667,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3775347,12,587.8333,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3775348,12,587.8333,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3775351,12,587.8333,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3775364,12,588,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3775365,12,588,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3775375,12,588.1667,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3775392,12,588.3333,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3775394,12,588.3333,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3775396,12,588.3333,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3776037,12,588.6667,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3776039,12,588.6667,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3776047,12,588.8333,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3776063,12,589,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3776064,12,589,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3776065,12,589,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3776095,12,589.5,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3776096,12,589.5,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3776114,12,589.8333,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3776116,12,589.8333,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3776117,12,589.8333,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3776140,12,590.1667,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3776141,12,590.1667,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3776155,12,590.5,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3776162,12,590.6667,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3776164,12,590.6667,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3776173,12,590.8333,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3776198,12,591.1667,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3776199,12,591.1667,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3776200,12,591.1667,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3776212,12,591.3333,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3776261,12,592.3333,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3776279,12,592.6667,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3776316,12,593.3333,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3776341,12,594,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3776343,12,594,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3776344,12,594,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3776359,12,594.1667,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3776360,12,594.1667,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3776369,12,594.3333,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3776394,12,594.8333,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3776399,12,595,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3776401,12,595,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3776472,12,596.1667,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3776503,12,596.6667,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3776535,12,597.1667,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3776567,12,597.6667,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3776568,12,597.6667,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3776590,12,598,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3776593,12,598,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3776647,12,599,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3776648,12,599,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3776649,12,599,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3776650,12,599,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3776662,12,599.3333,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3776673,12,599.5,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3776675,12,599.5,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3776691,12,599.8333,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3776701,12,600,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3776702,12,600,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3776703,12,600,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3776704,12,600,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3776734,12,600.3333,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3776745,12,600.5,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3776775,12,601,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3776802,12,601.1667,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3776822,12,601.5,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3776823,12,601.5,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3776844,12,601.8333,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3776845,12,601.8333,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3776858,12,602,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3776874,12,602.1667,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3776887,12,602.3333,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3776896,12,602.5,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3776897,12,602.5,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3776913,12,602.6667,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3776925,12,602.8333,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3776963,12,603.3333,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3776964,12,603.3333,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3776965,12,603.3333,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3777014,12,603.8333,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3777023,12,604,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3777086,12,604.8333,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3777263,12,607,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3777422,12,608,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3777423,12,608,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3777439,12,608.1667,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3777440,12,608.1667,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3777520,12,609,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3777584,12,609.5,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3777586,12,609.5,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3777612,12,609.6667,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3777648,12,610,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3777650,12,610,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3777672,12,610.1667,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3777709,12,610.5,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3777755,12,611,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3777787,12,611.3333,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3777788,12,611.3333,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3777811,12,611.5,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3777908,12,612.1667,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3778109,12,613.8333,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3778133,12,614,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3778170,12,614.1667,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3778171,12,614.1667,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3778199,12,614.3333,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3778281,12,614.8333,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3778282,12,614.8333,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3778283,12,614.8333,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3778306,12,615,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3778309,12,615,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3778311,12,615,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3778313,12,615,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3778349,12,615.1667,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3778374,12,615.3333,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3778460,12,615.8333,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3778482,12,616,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3778525,12,616.3333,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3778540,12,616.5,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3778566,12,616.6667,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3778592,12,616.8333,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3778855,12,618.5,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3778886,12,618.6667,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3779049,12,619.5,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3780169,12,626,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3780371,12,627,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3780372,12,627,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3780441,12,627.1667,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3781316,12,630,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3781587,12,630.6667,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3781718,12,631,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3781793,12,631.1667,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3781856,12,631.3333,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3781997,12,631.6667,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3781998,12,631.6667,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3782078,12,631.8333,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3782244,12,632.1667,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3782245,12,632.1667,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3782329,12,632.3333,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3782422,12,632.5,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3782609,12,632.8333,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3782909,12,633.3333,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3783013,12,633.5,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3783114,12,633.6667,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3783214,12,633.8333,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3783303,12,634,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3783612,12,634.5,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3783697,12,634.6667,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3783782,12,634.8333,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3783895,12,635,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3784095,12,635.3333,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3784096,12,635.3333,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3784458,12,636,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3784529,12,636.1667,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3784608,12,636.3333,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3784759,12,636.6667,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3784760,12,636.6667,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3784825,12,636.8333,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3784891,12,637,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3784892,12,637,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3784893,12,637,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3784965,12,637.1667,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3785196,12,637.6667,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3785197,12,637.6667,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3785420,12,638.1667,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3785616,12,638.6667,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3785617,12,638.6667,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3785689,12,638.8333,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3785690,12,638.8333,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3785749,12,639,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3785845,12,639.3333,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3785934,12,639.6667,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3786040,12,640,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3786078,12,640.1667,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3786135,12,640.3333,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3786205,12,640.5,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3786272,12,640.6667,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3786377,12,641,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3786378,12,641,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3786379,12,641,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3786438,12,641.1667,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3786554,12,641.5,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3786599,12,641.6667,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3786600,12,641.6667,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3786707,12,642,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3786757,12,642.1667,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3786812,12,642.3333,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3786813,12,642.3333,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3786868,12,642.5,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3786869,12,642.5,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3786934,12,642.6667,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3786935,12,642.6667,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3787007,12,642.8333,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3787008,12,642.8333,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3787009,12,642.8333,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3787010,12,642.8333,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3787011,12,642.8333,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3787076,12,643,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3787077,12,643,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3787146,12,643.1667,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3787219,12,643.3333,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3787220,12,643.3333,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3787221,12,643.3333,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3787222,12,643.3333,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3787288,12,643.5,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3787289,12,643.5,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3787290,12,643.5,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3787291,12,643.5,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3787292,12,643.5,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3787361,12,643.6667,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3787362,12,643.6667,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3787363,12,643.6667,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3787429,12,643.8333,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3787430,12,643.8333,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3787431,12,643.8333,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3787495,12,644,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3787496,12,644,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3787497,12,644,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3787498,12,644,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3787580,12,644.1667,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3787581,12,644.1667,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3787645,12,644.3333,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3787646,12,644.3333,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3787709,12,644.5,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3787710,12,644.5,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3787947,12,645,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3788029,12,645.1667,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3788030,12,645.1667,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3788193,12,645.5,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3788275,12,645.6667,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3788443,12,646,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3788614,12,646.3333,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3788708,12,646.5,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3789280,12,647.5,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3789786,12,648.5,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3789859,12,648.6667,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3789919,12,648.8333,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3789999,12,649,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3790611,12,650.5,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3790725,12,650.8333,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3790937,12,651.5,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3791207,12,652.1667,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3791567,12,653.5,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3791614,12,653.6667,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3791799,12,654.6667,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3791898,12,655.1667,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3792047,12,656,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3792091,12,656.1667,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3792345,12,657.6667,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3792346,12,657.6667,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3792420,12,658.1667,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3792446,12,658.3333,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3792498,12,658.8333,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3793035,12,663.3333,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3793055,12,663.5,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3793083,12,663.8333,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3793142,12,664.5,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3793172,12,664.6667,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3793181,12,664.8333,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3793220,12,665.1667,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3793273,12,665.6667,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3793375,12,666.6667,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3793522,12,667.8333,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3793615,12,668.5,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3793710,12,669.1667,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3793855,12,670.1667,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3793957,12,671,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3794018,12,671.3333,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3794035,12,671.5,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3794060,12,671.8333,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3794061,12,671.8333,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3794062,12,671.8333,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3794149,12,672.3333,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3794182,12,672.6667,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3794254,12,673.1667,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3794274,12,673.3333,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3801469,15,0,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3801544,15,0,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3801545,15,0,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3801548,15,0,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3801562,15,0,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3801642,15,0,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3801643,15,0,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3801644,15,0,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3801646,15,0,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3801648,15,0,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3801700,15,0,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3801701,15,0,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3801702,15,0,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3801705,15,0,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3801706,15,0,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3801709,15,0,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3801710,15,0,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3801711,15,0,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3801714,15,0,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3801715,15,0,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3801718,15,0,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3822199,24,0.021073,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3822326,24,0.021513,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3822523,24,0.02208,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3822784,24,0.022638,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3824185,24,0.023593,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3825949,24,0.024446,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3828184,24,0.025503,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3830532,24,0.026956,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3835856,24,0.03639,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3835962,24,0.036814,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3836412,24,0.039093,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3837170,24,0.040259,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3837306,24,0.041372,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3837682,24,0.044128,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3838051,24,0.04699,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3838070,24,0.047096,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3838423,15,0.05,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3838424,15,0.05,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3838893,24,0.052449,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3838932,24,0.052767,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3838992,24,0.053191,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3839170,24,0.054516,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3839226,24,0.054993,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3839244,24,0.055046,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3839365,24,0.056159,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3839458,24,0.056742,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3839512,24,0.057113,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3839650,24,0.058226,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3839664,24,0.058332,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3839711,24,0.05865,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3840055,24,0.060293,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3840082,24,0.060505,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3840251,24,0.061883,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3840252,24,0.061883,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3840253,24,0.061883,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3840311,24,0.062307,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3840357,24,0.062784,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3840405,24,0.063208,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3840414,24,0.063314,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3840445,24,0.063473,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3840648,24,0.064533,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3840689,24,0.064692,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3840777,24,0.06501,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3840796,24,0.065063,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3840797,24,0.065063,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3840844,24,0.065275,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3841060,24,0.06607,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3842149,24,0.069515,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3842214,24,0.069727,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3842215,24,0.069727,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3843044,24,0.070681,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3843045,24,0.070681,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3843140,24,0.071052,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3843215,24,0.07137,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3843895,24,0.073755,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3844006,24,0.074126,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3844184,24,0.074762,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3844300,24,0.075239,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3844330,24,0.075398,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3844519,24,0.076087,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3844571,24,0.076299,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3844748,24,0.076829,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3845287,24,0.078525,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3845331,24,0.078631,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3845347,24,0.078684,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3845368,24,0.07879,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3845580,24,0.079479,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3845925,24,0.080221,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3846022,24,0.080592,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3846023,24,0.080592,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3846051,24,0.080698,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3846391,24,0.081758,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3846413,24,0.081811,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3846516,24,0.082182,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3846530,24,0.082235,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3846578,24,0.082394,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3846579,24,0.082394,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3846601,24,0.082447,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3846633,24,0.082553,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3846681,24,0.082712,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3846903,24,0.083348,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3847117,24,0.084037,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3847477,24,0.08515,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3847878,24,0.086369,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3848154,24,0.087164,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3848177,24,0.087217,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3848363,24,0.087853,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3848364,24,0.087853,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3848865,24,0.089549,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3848946,24,0.089814,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3848968,24,0.08992,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3849628,24,0.090238,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3849732,24,0.090609,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3849773,24,0.090715,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3849774,24,0.090715,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3849898,24,0.091139,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3850302,24,0.092517,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3850331,24,0.092623,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3850343,24,0.092676,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3850361,24,0.092729,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3850372,24,0.092782,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3850402,24,0.092888,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3850427,24,0.092941,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3850504,24,0.093206,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3850527,24,0.093312,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3850612,24,0.09363,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3850669,24,0.093842,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3850719,24,0.094054,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3850773,24,0.094266,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3850950,24,0.094955,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3851135,24,0.095644,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3851144,24,0.095697,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3851261,24,0.096121,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3851306,24,0.096333,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3851316,24,0.096386,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3851407,24,0.096757,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3851408,24,0.096757,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3851576,24,0.097393,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3851577,24,0.097393,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3851613,24,0.097499,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3851663,24,0.097658,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3851687,24,0.097711,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3851743,24,0.097923,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3851772,24,0.098082,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3851788,24,0.098135,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3851789,24,0.098135,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3851827,24,0.098294,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3851872,24,0.098453,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3851919,24,0.098665,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3852153,24,0.099566,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3852749,24,0.100149,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3852834,24,0.100573,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3852855,24,0.100626,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3853062,24,0.10158,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3853147,24,0.101951,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3853158,24,0.102004,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3853220,24,0.102322,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3853328,24,0.102852,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3853355,24,0.102958,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3853368,24,0.103011,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3853430,24,0.103329,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3853474,24,0.103594,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3853585,24,0.104124,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3853602,24,0.10423,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3853611,24,0.104283,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3853675,24,0.104707,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3853749,24,0.105131,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3853766,24,0.105237,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3853807,24,0.105449,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3853852,24,0.105714,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3853873,24,0.10582,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3853952,24,0.10635,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3853982,24,0.106509,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3853990,24,0.106562,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3854008,24,0.106615,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3854073,24,0.106986,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3854106,24,0.107251,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3854137,24,0.107463,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3854150,24,0.107516,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3854215,24,0.10794,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3854222,24,0.107993,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3854278,24,0.108417,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3854299,24,0.108576,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3854348,24,0.108894,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3854349,24,0.108894,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3854369,24,0.109,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3854393,24,0.109159,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3854419,24,0.109318,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3854438,24,0.109477,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3854455,24,0.109583,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3854492,24,0.109742,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3854517,24,0.109901,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3854520,24,0.109954,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3855115,24,0.110749,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3855134,24,0.110961,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3855152,24,0.111067,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3855153,24,0.111067,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3855204,24,0.111385,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3855321,24,0.112021,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3855380,24,0.112498,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3855438,24,0.112975,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3855461,24,0.113134,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3855473,24,0.11324,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3855510,24,0.113452,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3855535,24,0.113611,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3855646,24,0.114353,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3855659,24,0.114459,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3855763,24,0.115042,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3855797,24,0.115307,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3855817,24,0.115519,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3855848,24,0.115731,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3855849,24,0.115731,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3855864,24,0.11589,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3855932,24,0.116367,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3856074,24,0.117321,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3856099,24,0.117533,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3856146,24,0.117904,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3856149,24,0.117957,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3856179,24,0.118116,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3856196,24,0.118222,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3856229,24,0.118434,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3856288,24,0.118805,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3856336,24,0.119176,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3856337,24,0.119176,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3856396,24,0.1196,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3856422,24,0.119812,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3856557,24,0.120077,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3856685,24,0.120978,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3856760,24,0.121508,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3856815,24,0.121879,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3856816,24,0.121879,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3856842,24,0.122091,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3856863,24,0.12225,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3856864,24,0.12225,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3856878,24,0.122356,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3856935,24,0.122727,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3856993,24,0.123204,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3857027,24,0.123469,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3857045,24,0.123681,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3857141,24,0.124317,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3857241,24,0.125271,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3857323,24,0.12596,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3857324,24,0.12596,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3857349,24,0.126172,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3857362,24,0.126225,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3857363,24,0.126225,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3857429,24,0.126755,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3857436,24,0.126808,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3857446,24,0.126914,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3857552,24,0.127815,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3857563,24,0.127921,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3857564,24,0.127974,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3857576,24,0.128133,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3857579,24,0.128186,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3857613,24,0.128451,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3857635,24,0.128716,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3857672,24,0.129193,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3857673,24,0.129193,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3857699,24,0.129405,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3857749,24,0.129723,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3858189,24,0.130306,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3858231,24,0.13073,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3858257,24,0.130995,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3858269,24,0.131101,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3858279,24,0.131207,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3858386,24,0.132108,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3858387,24,0.132161,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3858405,24,0.132373,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3858435,24,0.132691,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3858447,24,0.132797,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3858448,24,0.132797,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3858519,15,0.133333,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3858545,24,0.133433,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3858568,24,0.133645,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3858569,24,0.133645,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3858655,24,0.134334,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3858678,24,0.134546,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3858689,24,0.134652,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3858690,24,0.134652,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3858738,24,0.135076,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3858763,24,0.135288,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3858847,24,0.13603,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3858857,24,0.136189,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3858952,24,0.137037,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3858955,24,0.13709,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3858988,24,0.137355,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3859012,24,0.137514,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3859015,24,0.137567,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3859030,24,0.13762,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3859053,24,0.137938,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3859063,24,0.138044,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3859147,24,0.13868,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3859172,24,0.138839,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3859188,24,0.138998,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3859209,24,0.139104,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3859210,24,0.139104,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3859213,24,0.139157,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3859214,24,0.139157,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3859231,24,0.139369,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3859232,24,0.139369,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3859467,24,0.140005,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3859469,24,0.140058,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3859486,24,0.14027,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3859502,24,0.140429,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3859526,24,0.140747,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3859531,24,0.1408,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3859574,24,0.141224,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3859599,24,0.141436,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3859689,24,0.142337,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3859778,24,0.143026,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3859797,24,0.143238,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3859835,24,0.143503,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3859842,24,0.143556,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3859843,24,0.143556,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3859884,24,0.14398,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3859885,24,0.14398,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3859886,24,0.14398,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3859906,24,0.144139,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3859923,24,0.144351,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3859971,24,0.144669,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3859992,24,0.144881,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3860002,24,0.144987,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3860038,24,0.145252,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3860098,24,0.145782,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3860142,24,0.146259,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3860160,24,0.146471,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(3860182,24,0.14663,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3860217,24,0.146842,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3860253,24,0.14716,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3860269,24,0.147266,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3860281,24,0.147372,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3860304,24,0.147584,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3860331,24,0.147796,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3860369,24,0.148114,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3860416,24,0.148538,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3860445,24,0.148909,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(3860538,24,0.149704,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3860990,24,0.150022,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3860994,24,0.150075,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3861022,24,0.150499,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3861027,24,0.150552,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3861084,24,0.151082,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3861095,24,0.151241,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3861187,24,0.152089,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3861197,24,0.152142,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3861198,24,0.152142,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3861234,24,0.152566,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3861243,24,0.152619,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3861287,24,0.153096,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3861329,24,0.153361,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3861384,24,0.153944,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3861409,24,0.154209,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3861501,24,0.155057,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3861606,24,0.156064,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3861607,24,0.156064,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3861624,24,0.156223,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(3861811,24,0.15829,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3861812,24,0.15829,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3861837,24,0.158343,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3861880,24,0.15882,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3861899,24,0.159032,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(3861908,24,0.159138,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3861921,24,0.159244,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(3861966,24,0.159721,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3861986,24,0.159827,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3862203,24,0.160304,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(3862251,24,0.160887,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3862274,24,0.161046,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3862279,24,0.161099,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(3862310,24,0.161311,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(3862588,24,0.16465,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3862626,24,0.165074,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3862715,24,0.166134,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3862765,15,0.166667,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3862954,24,0.168625,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3862967,24,0.168943,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',5,100),(3863051,24,0.169791,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(3863501,24,0.171222,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3863547,24,0.171752,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3863561,24,0.171911,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(3863805,24,0.174508,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3863822,24,0.174773,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3863855,24,0.175038,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3864045,24,0.177158,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(3864082,24,0.177476,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(3864083,24,0.177476,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3864148,24,0.178112,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(3864664,24,0.182034,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(3864776,15,0.183333,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3865861,24,0.192263,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(3866383,3,0.1982,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3866607,15,0.2,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3866608,15,0.2,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3866609,15,0.2,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3868949,24,0.220088,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(3870012,15,0.233333,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3874683,15,0.283333,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3874684,15,0.283333,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3880955,15,0.366667,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3882176,15,0.383333,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3887149,15,0.45,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3887697,3,0.4566,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3888475,3,0.4687,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',5,100),(3889567,15,0.483333,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3898207,3,0.6084,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3899835,15,0.633333,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3901683,3,0.6606,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3901949,15,0.666667,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3905143,9,0.704838,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3905501,9,0.709567,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3906565,9,0.717717,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3907549,9,0.728289,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3907918,9,0.730289,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3908511,9,0.736978,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3908696,9,0.739477,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3909554,9,0.748127,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3909883,9,0.750203,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3909971,9,0.751279,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3910005,9,0.751625,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3910023,9,0.751856,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3910032,9,0.75201,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3910098,9,0.752855,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3910152,9,0.753432,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3910360,9,0.755816,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3910369,9,0.755969,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3910405,9,0.756354,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3910471,9,0.757123,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3910535,9,0.757892,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3910984,9,0.760044,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3911123,9,0.761659,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3911347,9,0.763312,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3911581,9,0.765657,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3911766,9,0.76731,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3911850,9,0.768041,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3911911,3,0.7684,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3912339,9,0.770232,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3912354,9,0.770424,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3912376,9,0.770655,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3912589,9,0.772577,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3912705,9,0.773577,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3913193,9,0.778152,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3913747,9,0.780651,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3914222,9,0.784649,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3915556,9,0.79376,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3915602,9,0.794375,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3916807,9,0.802641,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3916811,9,0.802679,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3917007,9,0.805332,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3917091,9,0.806639,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3917223,9,0.808869,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3918442,3,0.8227,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3919814,3,0.8402,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',5,100),(3920535,9,0.852119,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3920652,9,0.854195,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3920683,9,0.854925,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3920684,9,0.854963,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3920718,9,0.855656,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3920721,9,0.855771,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3920782,9,0.856694,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3921221,9,0.861307,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3921293,9,0.86296,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3921408,9,0.865036,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3921415,9,0.865305,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3921458,9,0.866112,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3921637,9,0.869457,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3921994,9,0.871187,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3922036,9,0.871687,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3922055,9,0.872033,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3922210,9,0.875185,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3922379,9,0.877876,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3922393,9,0.878069,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3922418,9,0.878376,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3922453,9,0.879222,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3922477,9,0.879606,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3922487,9,0.879837,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3922498,9,0.879991,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3922719,9,0.880375,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3922757,9,0.881259,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3922824,9,0.882451,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3922825,9,0.882451,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3922834,9,0.882567,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3922873,9,0.883297,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3922926,9,0.88422,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3922965,9,0.88495,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3923008,9,0.88545,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3923019,9,0.885642,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3923039,9,0.88595,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3923110,9,0.886949,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3923118,9,0.887103,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3923160,9,0.887718,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3923167,9,0.887795,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3923172,9,0.887833,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3923205,9,0.888487,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3923213,9,0.888602,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3923237,9,0.88891,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3923248,3,0.8891,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(3923251,9,0.889217,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3923291,9,0.889986,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3923556,9,0.890102,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3923557,9,0.890102,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3923587,9,0.890717,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3923591,9,0.890832,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3923642,9,0.891563,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3923654,9,0.891793,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3923672,9,0.892139,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3923763,9,0.893677,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3923786,9,0.8941,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3923806,9,0.894369,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3923981,9,0.89706,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3923982,9,0.89706,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3923989,9,0.897252,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3923996,9,0.897329,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3923997,9,0.897329,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3924030,9,0.897906,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3924054,9,0.89829,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3924093,9,0.898867,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3924120,9,0.899251,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3924155,9,0.899751,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3924766,9,0.900597,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3924810,9,0.901174,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3924855,9,0.901712,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3924861,9,0.901865,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3924864,9,0.901866,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3924887,9,0.902288,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3924892,9,0.902327,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3924911,9,0.902558,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3924945,9,0.903134,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3924970,9,0.903442,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3924982,9,0.903596,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3925003,9,0.904018,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3925004,9,0.904018,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3925131,9,0.905787,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3925160,9,0.906287,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3925219,9,0.907171,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3925221,9,0.907209,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3925244,9,0.907671,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3925343,9,0.908901,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3925660,9,0.910169,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3925661,9,0.91017,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3925680,9,0.910477,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3925683,9,0.910554,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3925763,9,0.911746,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3925771,9,0.9119,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3925790,9,0.91213,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3925898,9,0.91386,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3926004,9,0.915206,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3926057,9,0.916013,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3926095,9,0.916667,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3926109,9,0.916705,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3926119,9,0.91682,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3926121,9,0.916859,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3926124,9,0.916897,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3926132,9,0.917013,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3926150,9,0.917359,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3926151,9,0.917397,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3926167,9,0.917589,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3926193,9,0.917974,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3926282,9,0.919473,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3926305,9,0.919896,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3926315,9,0.919973,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3926515,9,0.92005,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3926524,9,0.920242,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3926538,9,0.920396,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3926539,9,0.920396,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3926587,9,0.921203,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3926627,9,0.921895,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3926662,9,0.922433,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3926664,9,0.922549,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3926690,9,0.922856,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3926701,9,0.923125,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3926709,9,0.923241,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3926742,9,0.923664,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3926747,9,0.923779,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3926754,9,0.92401,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3926786,9,0.924894,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3926809,9,0.925394,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3926816,9,0.925586,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3926818,9,0.925624,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3926862,9,0.926239,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3927002,9,0.928392,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3927058,9,0.929315,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3927067,9,0.929507,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3927070,9,0.929546,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3927076,9,0.929661,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3927406,9,0.930891,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3927407,9,0.930891,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3927426,9,0.931314,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3927490,9,0.932583,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3927518,9,0.933121,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3927595,9,0.93462,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3927614,9,0.935043,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3927640,9,0.935658,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3927793,9,0.938811,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3927809,9,0.939272,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3927835,9,0.939887,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3928018,9,0.94031,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3928020,9,0.940348,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3928041,9,0.941002,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3928051,9,0.941156,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3928072,9,0.941463,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3928076,9,0.94154,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3928175,9,0.94377,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3928214,9,0.944731,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3928239,9,0.945269,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3928265,9,0.945846,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3928314,9,0.947114,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3928337,9,0.947653,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3928353,9,0.94796,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3928386,9,0.948845,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3928391,9,0.949037,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(3928409,9,0.949537,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3928410,9,0.949575,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3928418,9,0.949844,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3928659,9,0.950036,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3928705,9,0.951036,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3928721,9,0.951344,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3928735,9,0.951651,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3928748,9,0.951843,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3928789,9,0.952843,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3928830,9,0.953419,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3928846,9,0.953804,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3928863,9,0.954188,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3928887,9,0.954842,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3928900,9,0.955072,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(3928914,9,0.955342,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(3928928,9,0.955649,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3928944,9,0.955995,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3928952,9,0.956072,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(3928959,9,0.956264,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3929092,9,0.958994,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3929337,9,0.961031,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3929369,9,0.961531,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3929404,9,0.962262,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3929405,9,0.962262,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3929425,9,0.962723,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3929449,9,0.963261,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3929474,9,0.9638,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3929538,9,0.965222,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3929561,9,0.965722,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3929573,9,0.965952,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3929717,9,0.968836,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3929727,9,0.969182,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3930112,9,0.970027,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3930139,9,0.970642,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3930162,9,0.971373,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3930257,9,0.97368,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3930376,9,0.976332,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3930386,9,0.976601,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3930415,9,0.977101,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(3930439,9,0.977678,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3930440,9,0.977678,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3930444,9,0.977755,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3930537,9,0.979946,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3930743,9,0.981023,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3930789,9,0.981907,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3930802,9,0.982445,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3930815,9,0.982868,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(3930829,9,0.983214,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3930871,9,0.983867,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3930907,9,0.984713,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3930943,9,0.985174,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3931045,9,0.987673,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3931068,9,0.988173,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3931074,9,0.988289,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3931077,9,0.988327,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(3931095,9,0.988558,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3931096,9,0.988596,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3931119,9,0.989019,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3931479,9,0.990672,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3931484,9,0.990787,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3931489,9,0.990864,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3931561,9,0.992787,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(3931564,9,0.99294,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3931595,9,0.993478,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3931628,9,0.994401,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3931649,9,0.994862,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3931762,9,0.997015,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3931777,9,0.997246,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3931854,9,0.998976,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3932395,9,1.000245,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3932520,9,1.002474,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3932522,9,1.002513,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3932566,9,1.003551,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3932567,9,1.003551,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3932569,9,1.003589,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3932597,9,1.004204,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3932660,9,1.005089,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3932666,9,1.005165,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3932676,9,1.00555,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3932693,9,1.005857,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3932729,9,1.006549,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3932745,9,1.006703,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(3932774,9,1.007126,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(3932786,9,1.007357,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3932795,9,1.007587,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(3932814,9,1.007895,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3932818,9,1.007972,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3932886,9,1.009087,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3932891,9,1.009241,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(3932894,9,1.009318,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3932901,9,1.00951,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3933069,9,1.010086,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(3933074,9,1.010163,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3933149,9,1.011432,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3933170,9,1.011739,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3933187,9,1.012047,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3933317,9,1.014392,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3933330,9,1.0147,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3933496,9,1.016545,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3933539,9,1.017083,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3933541,9,1.017199,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3933554,9,1.017391,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3933595,9,1.01816,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(3933597,9,1.018237,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(3933631,9,1.019005,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(3933636,9,1.019121,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3933638,9,1.019159,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3933964,9,1.020005,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3933985,9,1.020389,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(3933987,9,1.020428,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(3934038,9,1.021312,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(3934042,9,1.021389,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3934073,9,1.021966,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(3934102,9,1.02285,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3934113,9,1.023004,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(3934117,9,1.023081,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(3934130,9,1.023273,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(3934133,9,1.023311,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3934214,9,1.024887,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3934230,9,1.02531,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3934231,9,1.02531,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(3934232,9,1.025349,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3934264,9,1.025926,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3934275,9,1.026118,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(3934279,9,1.026233,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(3934294,9,1.026425,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3934296,9,1.026502,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3934303,9,1.026579,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(3934335,9,1.026963,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(3934340,9,1.027079,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(3934344,9,1.027117,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(3934363,9,1.027502,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(3934368,9,1.027578,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3934375,9,1.027771,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3934398,9,1.028117,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3934404,9,1.028194,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(3934421,9,1.028463,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(3934424,9,1.02854,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(3934836,9,1.032077,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(3934923,15,1.033333,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(3934972,9,1.033883,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3934975,3,1.0339,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3935106,9,1.035844,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(3935122,9,1.036113,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(3935160,9,1.036613,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(3936857,9,1.058334,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(3937428,9,1.065638,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(3939351,9,1.094587,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3939525,3,1.0987,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3940382,9,1.105967,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(3940500,9,1.108734,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(3940520,9,1.109542,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(3941551,3,1.1256,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3944979,3,1.1769,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3947420,3,1.2066,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(3949382,3,1.2392,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',5,100),(3951805,3,1.271,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3953853,3,1.2912,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3956002,3,1.3112,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(3956469,15,1.316667,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(3958121,15,1.333333,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(3958122,15,1.333333,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(3958420,3,1.3372,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3958506,3,1.3383,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(3958980,3,1.342,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3959417,3,1.3483,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3960935,3,1.3684,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(3961626,3,1.3782,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',5,100),(3961649,3,1.3785,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(3964868,3,1.417,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(3965626,3,1.4276,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',5,100),(3965994,3,1.4329,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',5,100),(3966160,3,1.4361,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(3967268,3,1.4559,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(3970588,3,1.5056,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(3970598,3,1.5059,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(3972205,3,1.5345,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(3972349,3,1.5374,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3972450,3,1.5393,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(3973068,3,1.5494,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3976924,3,1.6093,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',5,100),(3977905,3,1.6234,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',5,100),(3978171,3,1.6288,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(3979307,3,1.6446,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3979587,3,1.6495,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3979850,3,1.6512,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(3987226,3,1.7388,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(3987833,3,1.7439,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(3990847,15,1.783333,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(3992587,3,1.806,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(3993279,3,1.8183,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(3994525,3,1.8391,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(3994991,3,1.8461,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(3995863,3,1.8584,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(3996930,3,1.8718,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(3997223,3,1.8792,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4002384,3,1.9412,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4004071,3,1.9536,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4005413,3,1.9628,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4005825,3,1.9668,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4008063,3,1.9826,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4008497,3,1.9855,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4009568,3,1.9921,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4011562,3,2.0016,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4015020,3,2.0323,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4015528,3,2.0379,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4018250,3,2.0666,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4018807,3,2.0711,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4018837,3,2.0716,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4022355,3,2.1094,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4025717,3,2.1451,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4026462,3,2.1556,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4031337,3,2.2063,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4031990,3,2.2133,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4032078,3,2.2145,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4032293,3,2.2182,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4033786,3,2.2332,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4034686,3,2.244,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4035679,3,2.2563,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4036210,3,2.2601,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4036768,3,2.2695,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4038060,3,2.2841,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4040270,3,2.3089,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4040931,3,2.3196,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4041545,3,2.3257,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4042262,3,2.3364,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4042664,3,2.3404,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4042983,3,2.3468,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4043764,3,2.3566,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4044315,3,2.3629,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4045198,3,2.3782,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4045277,3,2.38,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4045601,3,2.3824,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4047455,3,2.4034,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4047498,3,2.4055,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4049302,3,2.4367,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4049915,3,2.4468,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4049943,3,2.4476,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4051729,3,2.4795,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4052804,3,2.4967,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4054980,3,2.5251,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4054985,3,2.5253,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4055360,3,2.5302,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4055369,3,2.5307,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4056789,3,2.5587,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4057270,3,2.567,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4057730,3,2.5711,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4058419,3,2.5833,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4058523,3,2.5868,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4058639,3,2.59,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4059320,15,2.6,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4062201,3,2.6405,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4063221,3,2.6608,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4064748,3,2.6896,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4067112,3,2.7133,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4067218,3,2.7163,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4067295,3,2.7184,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4069052,3,2.7444,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4070118,3,2.7629,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4070121,3,2.7631,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4070216,15,2.766666,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4070901,3,2.7778,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4071418,3,2.7869,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4073916,3,2.8132,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4074781,3,2.8258,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4075377,3,2.8375,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4075859,3,2.8413,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4076633,3,2.8575,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4077112,15,2.866667,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4078940,3,2.8968,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4078991,3,2.8984,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4080189,3,2.9075,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4081337,3,2.9251,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4082950,3,2.9525,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4082979,3,2.9537,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4083533,3,2.9603,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4084638,15,2.983333,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4084710,3,2.9855,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4084726,3,2.9863,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4086974,3,3.0104,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4088737,3,3.0407,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4088783,3,3.0422,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4088855,3,3.0454,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4088997,15,3.05,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4089305,3,3.051,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4089591,3,3.06,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4091631,3,3.0928,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4091724,3,3.0965,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4092979,3,3.1087,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4093310,3,3.1109,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4093880,3,3.125,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4094999,3,3.1463,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4095121,15,3.15,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4095488,3,3.1549,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4095970,3,3.1616,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4096431,3,3.1726,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4097725,3,3.1995,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4099247,3,3.2131,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4099874,3,3.2202,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4099959,3,3.224,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4100063,3,3.228,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4100405,3,3.231,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4101547,3,3.2564,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4102674,3,3.2783,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4103014,3,3.283,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4104690,3,3.3051,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4105781,3,3.3249,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4105814,3,3.3263,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4106256,3,3.3345,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4106851,3,3.3477,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4107188,3,3.3502,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4107325,3,3.3588,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4107743,3,3.3614,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4107772,3,3.3627,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4107847,3,3.3664,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4108238,3,3.3751,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4110662,3,3.4137,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4111116,3,3.4243,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4111139,3,3.4265,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4112487,3,3.4562,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4113941,3,3.4889,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4114215,3,3.4923,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4114252,3,3.4953,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4115271,3,3.5014,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4116227,3,3.5204,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4117319,3,3.5438,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4117423,3,3.5496,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4118711,3,3.5739,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4121763,3,3.6292,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4123062,3,3.6531,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4124378,3,3.6826,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4124862,3,3.6958,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4125898,3,3.7012,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4126442,3,3.7186,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4126899,3,3.7246,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4127849,3,3.7473,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4128311,3,3.7596,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4128738,3,3.7667,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4129317,3,3.778,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4129337,3,3.7788,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4130202,3,3.7914,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4131147,3,3.8004,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4134066,3,3.8658,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4134924,3,3.888,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4134937,3,3.8886,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4136829,3,3.9118,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4137469,3,3.93,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4137823,3,3.9347,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4138688,3,3.9555,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4141474,3,4.0003,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4141624,3,4.0085,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4142132,3,4.0186,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4142495,3,4.0209,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4144484,3,4.067,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4144872,3,4.0739,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4145755,3,4.0954,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4147120,3,4.1185,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4147469,3,4.1208,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4148726,3,4.1574,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4148728,3,4.1576,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4148731,3,4.1582,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4149510,3,4.1726,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4149868,3,4.1816,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4149949,3,4.1887,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4151586,15,4.216667,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4152468,3,4.2366,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4153266,3,4.2522,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4154838,3,4.2945,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4154884,3,4.2993,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4157248,3,4.3416,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4157651,3,4.3558,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4158114,3,4.3647,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4159200,3,4.3997,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4160450,3,4.4139,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4161878,3,4.4498,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4162212,3,4.4511,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4162213,3,4.4512,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4162228,3,4.4529,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4166375,3,4.5255,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4166790,15,4.533333,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4166805,3,4.535,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4168069,3,4.5604,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4168071,3,4.5614,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4168836,3,4.5856,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4170528,3,4.6153,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4170545,3,4.618,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4171109,3,4.6265,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4172072,15,4.65,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4173722,3,4.6855,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4174146,3,4.6971,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4176023,3,4.7251,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4176025,3,4.7254,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4176580,3,4.7387,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4179415,3,4.7894,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4181554,3,4.8109,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4182789,3,4.8368,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4184185,3,4.8536,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4184222,3,4.8586,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4184975,3,4.8641,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4185006,3,4.8681,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4187928,3,4.9082,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4188368,3,4.9139,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4188425,3,4.9199,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4188904,3,4.9212,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4189927,3,4.9421,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4189940,3,4.9436,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4192929,3,5.006,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4193327,3,5.0148,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4193346,15,5.016666,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4194659,3,5.0497,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4195039,3,5.0571,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4195446,15,5.066667,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4196660,3,5.0999,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4198283,3,5.1229,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4199146,3,5.1464,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4200238,3,5.1727,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4200311,3,5.1798,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4200650,3,5.1892,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4202257,3,5.2169,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4202259,3,5.2181,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4202269,3,5.2196,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4202546,3,5.2244,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4202611,3,5.2296,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4203298,3,5.2411,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4203344,3,5.2449,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4203435,15,5.25,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4204454,3,5.272,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4204751,15,5.283333,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4206310,3,5.3122,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4207141,15,5.333333,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4210591,15,5.416667,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4212385,3,5.4629,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4212730,3,5.4798,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4214662,3,5.518,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4216360,15,5.566667,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4216674,3,5.5712,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4218171,3,5.6043,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4218961,3,5.6291,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4219166,3,5.6327,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4219168,15,5.633333,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4219210,3,5.6373,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4220561,3,5.6713,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4220648,3,5.6788,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4225054,3,5.791,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4225829,3,5.8004,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4227957,15,5.866667,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4228858,3,5.8924,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4229098,15,5.9,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4230348,3,5.9216,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4231784,3,5.962,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4232463,3,5.9822,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4234328,3,6.0299,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4234448,6,6.03,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4235666,3,6.0686,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4236396,3,6.0894,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4236828,15,6.1,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4238163,3,6.1252,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4239179,3,6.1508,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4239407,6,6.16,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4240687,3,6.1978,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4240828,15,6.2,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4241876,10,6.216667,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4242216,3,6.2289,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4242588,10,6.238333,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4242961,10,6.25,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4243153,3,6.259,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4243564,10,6.266666,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4243582,3,6.268,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4243847,10,6.275,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4244189,15,6.283333,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4245294,10,6.301667,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4245614,10,6.311666,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4245658,10,6.316666,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4247171,10,6.358334,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4247457,10,6.361667,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4247523,10,6.366667,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4247619,6,6.37,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4248112,3,6.381,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4248137,15,6.383333,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4248547,3,6.3998,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4249316,10,6.405,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4249622,15,6.416667,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4249973,10,6.421667,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4250134,10,6.43,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4250358,3,6.4368,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4250371,10,6.438334,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4250438,3,6.44,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4250641,10,6.448333,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4250781,15,6.45,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4251266,10,6.461666,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4251267,10,6.461666,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4251286,10,6.463333,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4251331,15,6.466667,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4251833,10,6.48,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4252159,10,6.49,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4253188,10,6.506666,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4253428,3,6.5147,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4253801,10,6.526667,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4253820,10,6.528334,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4254053,3,6.5358,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4255360,10,6.576667,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4255689,3,6.5861,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4255951,10,6.591667,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4256899,10,6.608334,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4257787,15,6.633334,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4258245,15,6.65,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4258470,10,6.655,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4258776,10,6.665,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4259000,3,6.6704,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4259212,10,6.68,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4259718,10,6.695,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4259735,10,6.696667,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4259745,10,6.698333,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4259765,3,6.6995,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4260630,10,6.71,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4261003,10,6.72,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4261157,10,6.723333,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4261554,10,6.733334,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4261555,15,6.733334,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4261589,3,6.7361,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4261860,10,6.745,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4261903,10,6.748333,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4262009,15,6.75,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4262567,3,6.7626,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4263202,10,6.781667,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4263245,10,6.785,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4263289,3,6.7882,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4263314,3,6.7889,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4263573,10,6.796667,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4264359,10,6.805,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4265262,10,6.833333,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4265287,10,6.835,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4265349,10,6.838333,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4265370,3,6.8396,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4265628,10,6.841667,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4266131,10,6.86,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4266364,10,6.868333,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4266656,10,6.871666,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4266982,10,6.883333,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4266984,15,6.883333,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4267325,10,6.891666,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4267611,15,6.9,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4268188,3,6.9069,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4268406,3,6.9109,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4268461,3,6.9161,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4268619,4,6.92,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4269824,10,6.955,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4269836,3,6.9555,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4270472,10,6.971666,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4270489,10,6.973333,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4270784,15,6.983334,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4270846,10,6.988333,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4270954,4,6.99,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4271136,10,6.993333,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4271360,10,7,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4271361,10,7,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4271972,10,7.006666,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4271979,10,7.006667,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4272939,15,7.033333,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4272940,15,7.033333,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4273228,3,7.0431,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4273423,15,7.05,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4273580,10,7.051667,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4273648,10,7.056667,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4274008,10,7.068333,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4274250,10,7.071667,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4274709,5,7.09,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4274710,5,7.09,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4275622,10,7.101667,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4275663,10,7.105,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4275681,3,7.106,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4275687,10,7.106667,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4275714,10,7.108334,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4276056,10,7.116666,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4276668,3,7.1326,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4276791,5,7.14,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4276912,3,7.1414,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4276989,10,7.146667,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4277660,10,7.168333,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4277741,10,7.17,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4277849,10,7.171667,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4277901,10,7.175001,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4277907,10,7.176666,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4277951,10,7.178333,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4278251,15,7.183333,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4278380,10,7.19,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4278537,10,7.191667,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4278611,10,7.196667,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4278612,10,7.196667,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4279504,10,7.21,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4279768,10,7.218333,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4280024,10,7.225,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4280168,5,7.23,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4280338,10,7.231667,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4280704,10,7.246666,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4281178,10,7.26,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4281181,10,7.26,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4281183,4,7.26,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4281406,10,7.266666,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4281660,10,7.271667,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4282258,5,7.29,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4282430,10,7.295,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4282633,10,7.3,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4283326,3,7.3098,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4283373,10,7.31,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4283375,2,7.31,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4283560,10,7.311666,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4283575,10,7.311667,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4283581,3,7.3118,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4283779,10,7.32,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4283782,5,7.32,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4284089,10,7.328333,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4284719,10,7.348333,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4284802,4,7.35,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4285900,10,7.378334,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4286145,15,7.383334,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4287353,10,7.403334,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4287402,10,7.406666,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4287761,15,7.416666,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4287772,15,7.416667,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4288121,3,7.4241,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4288179,10,7.426667,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4288271,10,7.43,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4288485,10,7.433334,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4288816,10,7.441666,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4288842,10,7.443333,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4288843,10,7.443333,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4288873,10,7.445,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4288904,10,7.446667,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4289144,10,7.451666,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4289564,10,7.469999,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4289979,4,7.48,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4290180,3,7.4844,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4290236,10,7.488333,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4290251,3,7.4897,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4290550,10,7.491667,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4290613,10,7.495,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4291281,10,7.505,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4291324,10,7.506667,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4291560,3,7.5103,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4291591,10,7.513334,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4291634,10,7.516666,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4291985,10,7.526666,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4292094,10,7.53,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4292267,10,7.536666,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4292582,10,7.541667,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4292687,3,7.5478,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4292841,15,7.550001,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4292846,10,7.551666,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4292938,10,7.556667,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4292972,10,7.558334,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4293281,10,7.565,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4295357,10,7.615,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4295677,10,7.623333,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4296097,10,7.633334,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4296177,10,7.638333,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4296768,10,7.651667,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4297114,10,7.661667,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4297115,10,7.661667,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4297565,10,7.673334,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4297950,10,7.683334,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4298124,10,7.69,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4298376,10,7.696667,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4299210,3,7.7053,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4299250,3,7.7083,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4299317,10,7.71,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4300461,10,7.738333,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4300803,10,7.743333,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4300845,10,7.744999,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4300865,10,7.745,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4301054,10,7.75,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4301289,10,7.751667,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4301290,10,7.751667,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4301762,10,7.763334,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4301784,10,7.764999,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4301970,5,7.77,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4302274,10,7.775,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4302681,10,7.784999,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4302764,10,7.788333,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4303233,10,7.796667,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4304156,10,7.806667,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4304236,10,7.808334,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4304471,10,7.811666,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4304472,10,7.811666,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4305039,3,7.8209,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4306410,10,7.848333,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4306956,3,7.8565,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4307586,10,7.865,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4307809,10,7.869999,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4308190,10,7.871666,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4308274,10,7.873333,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4308275,10,7.873333,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4309288,10,7.888333,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4309903,10,7.891667,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4310107,14,7.896667,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4310351,15,7.9,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4311487,10,7.908333,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4311682,10,7.91,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4313512,10,7.928333,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4314157,10,7.931667,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4315949,10,7.951666,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4316223,3,7.9562,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4317779,10,7.975,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4317910,10,7.976667,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4318658,10,7.985,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4318820,10,7.988333,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4319337,10,7.991666,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4319563,10,7.994999,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4319607,10,7.995,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4321708,10,8.011666,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4322241,10,8.018333,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4322856,3,8.0227,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4324916,3,8.0422,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4326955,10,8.061666,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4327412,15,8.066667,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4328254,10,8.073333,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4329140,10,8.080001,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4329559,15,8.083333,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4329699,10,8.084999,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4331871,8,8.1,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4332643,10,8.105,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4332876,10,8.106668,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4332906,14,8.108333,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4334085,3,8.116199,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4335338,3,8.1265,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4338331,10,8.150001,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4338334,10,8.150001,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4338959,10,8.155,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4341270,10,8.171667,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4342521,10,8.183333,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4342945,10,8.188333,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4343145,10,8.19,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4344507,8,8.2,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4345358,10,8.201667,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4345656,10,8.205,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4345782,10,8.206666,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4346838,10,8.213333,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4347129,10,8.216666,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4348376,10,8.225,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4348592,10,8.228333,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4348594,10,8.228333,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4349422,10,8.231668,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4349538,10,8.233334,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4349539,15,8.233334,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4349569,10,8.235,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4349948,10,8.238334,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4352270,10,8.256667,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4353115,10,8.261666,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4353420,10,8.265,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4355020,10,8.28,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4355608,15,8.283334,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4355762,10,8.285001,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4355927,10,8.288333,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4356446,10,8.291667,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4356725,10,8.295,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4357242,10,8.3,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4358488,3,8.3095,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4359033,10,8.313333,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4359398,10,8.318333,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4359508,10,8.318334,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4360356,10,8.326667,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4361193,10,8.333333,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4362191,10,8.343333,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4362608,10,8.348333,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4363024,6,8.35,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4363578,10,8.356667,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4363703,10,8.358333,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4364234,10,8.361667,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4364412,10,8.363334,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4364517,10,8.365,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4364727,10,8.368333,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4367458,10,8.391667,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4367480,10,8.393332,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4367722,10,8.396667,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4370565,10,8.423333,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4372193,10,8.441667,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4373080,10,8.455,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4374342,10,8.471666,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4374682,10,8.476667,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4375077,10,8.481668,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4375084,10,8.483333,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4375159,10,8.485,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4375695,3,8.493299,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4376152,15,8.5,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4376155,15,8.5,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4377289,10,8.511666,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4377471,15,8.516667,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4378000,10,8.528333,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4378104,10,8.53,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4378626,10,8.54,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4379013,10,8.548333,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4379418,10,8.556666,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4380172,10,8.571667,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4381556,15,8.6,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4381560,8,8.6,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4382248,4,8.61,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4383221,10,8.631667,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4383284,10,8.634999,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4383378,10,8.638333,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4383648,10,8.645,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4384346,10,8.666667,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4385124,10,8.688334,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4385169,7,8.69,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4385556,10,8.7,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4386338,10,8.713332,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4386541,10,8.72,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4386543,5,8.72,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4386764,10,8.723332,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4386778,10,8.723333,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4386854,10,8.728333,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4387539,10,8.75,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4387746,10,8.756666,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4388033,10,8.765,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4388433,10,8.778334,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4388926,10,8.793333,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4390642,10,8.836667,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4391575,10,8.868333,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4392478,10,8.893333,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4394415,10,8.946667,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4394488,15,8.95,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4394489,6,8.95,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4395070,10,8.968333,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4395245,10,8.971666,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4395903,10,8.993333,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4396173,10,9,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4396174,8,9,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',0,100),(4396940,10,9.014999,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4397258,3,9.0237,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4397337,10,9.028333,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4397419,6,9.03,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4397525,10,9.031667,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4397645,10,9.038333,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4397977,15,9.05,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4398092,10,9.053333,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4398805,10,9.076667,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4399046,15,9.083333,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4399438,10,9.098332,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4399484,15,9.099999,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4399658,15,9.1,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4399664,8,9.1,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4400149,10,9.108333,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4400747,10,9.128333,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4401950,10,9.165,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4401991,10,9.166667,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4402503,10,9.181666,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4402528,10,9.181667,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4402581,10,9.185,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4404494,10,9.236667,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4404539,10,9.238334,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4405028,14,9.250001,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4405098,10,9.255,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4405202,10,9.259999,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4405316,10,9.263333,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4406413,10,9.296667,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4407065,10,9.308333,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4407435,10,9.32,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4407858,10,9.330001,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4407983,10,9.336667,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4408816,10,9.360001,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4409237,10,9.378333,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4409262,3,9.3798,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4409409,10,9.381667,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4410477,10,9.405,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4411417,15,9.433333,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4412662,10,9.471667,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4412687,10,9.473333,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4413042,15,9.483334,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4413533,15,9.5,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4413543,10,9.5,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4414233,3,9.5122,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4414600,14,9.528333,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4414845,15,9.533333,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4415326,6,9.55,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4415496,3,9.5525,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4416056,3,9.5719,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4416366,10,9.583333,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4416367,15,9.583333,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4416500,10,9.589999,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4416792,10,9.599999,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4416793,15,9.599999,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4417310,10,9.601666,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4417343,10,9.603333,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4418020,10,9.625,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4418271,10,9.633333,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4418543,14,9.643333,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4418783,10,9.650001,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4418812,10,9.651668,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4420133,8,9.7,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4421026,10,9.72,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4421414,3,9.7328,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4421518,10,9.738334,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4422379,10,9.766666,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4422840,15,9.783333,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4422857,14,9.783334,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4422880,10,9.785,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4423003,5,9.79,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4423236,10,9.796666,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4423414,8,9.8,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4425388,2,9.86,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4425488,10,9.861667,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4425615,3,9.8678,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4425850,10,9.874999,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4426634,10,9.9,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4426635,15,9.9,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4426640,8,9.9,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',0,100),(4427019,10,9.905,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4427430,6,9.92,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4428258,10,9.945001,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4428690,14,9.961666,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4428704,10,9.961667,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4429027,14,9.973334,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4429623,10,9.996667,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4429806,6,10,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4430457,10,10.01333,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4430728,10,10.02333,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4430758,14,10.025,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4431082,10,10.035,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4431268,3,10.0402,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4431859,10,10.06333,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4433669,15,10.11667,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4433670,14,10.11667,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4433713,23,10.119252,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4434522,14,10.14833,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4434729,10,10.15333,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4434730,10,10.15333,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4434960,10,10.16167,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4435091,14,10.16833,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4435159,14,10.17,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4435547,10,10.18167,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4435659,10,10.18667,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4435759,10,10.19,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4436063,15,10.2,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4436066,8,10.2,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4436067,8,10.2,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',0,100),(4436068,8,10.2,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4436071,8,10.2,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4436073,8,10.2,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4436074,8,10.2,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',0,100),(4436741,10,10.215,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4437238,10,10.23333,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4438209,14,10.26833,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4438481,3,10.2776,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4438994,10,10.29667,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4439167,8,10.3,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',0,100),(4439169,8,10.3,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4439170,8,10.3,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4439871,23,10.317086,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4440273,15,10.33333,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4440274,10,10.33333,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4440439,7,10.34,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4440652,14,10.34667,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4440672,10,10.34833,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4440727,15,10.35,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4441372,10,10.37333,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4441796,14,10.39,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4442003,10,10.39667,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4442177,8,10.4,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',0,100),(4442178,8,10.4,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4442690,4,10.41,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4443267,3,10.4317,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4443732,15,10.45,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4443733,15,10.45,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4444181,15,10.46667,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4444204,10,10.46833,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4444355,10,10.47167,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4444839,7,10.49,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4444918,10,10.49167,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4445181,8,10.5,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4445524,14,10.50333,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4445610,14,10.50833,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4445900,10,10.51833,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4446208,10,10.53,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4446369,14,10.535,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4446749,14,10.55,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4446976,14,10.55667,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4447000,23,10.557313,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4447190,14,10.565,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4448192,8,10.6,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4448193,4,10.6,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4448194,8,10.6,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4448862,15,10.61667,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4451167,8,10.7,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4451173,8,10.7,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4451593,14,10.70667,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4451617,3,10.7077,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4452151,23,10.726885,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4452596,14,10.74667,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4452692,5,10.75,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4453155,14,10.76833,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4453703,2,10.79,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4454752,14,10.81833,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4456140,14,10.875,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4456654,14,10.895,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4456865,8,10.9,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4456866,5,10.9,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4456870,8,10.9,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4457981,3,10.934,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4459656,4,11,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4459659,8,11,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4459661,14,11,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4459997,10,11.005,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4461899,14,11.07833,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4462101,10,11.08667,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4462553,8,11.1,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',0,100),(4462554,8,11.1,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4463918,14,11.14333,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4464059,5,11.15,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4464947,15,11.18333,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4465370,8,11.2,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4465373,8,11.2,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',0,100),(4466653,2,11.24,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4467886,14,11.28833,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4468655,23,11.306256,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4469223,6,11.33,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4469791,5,11.35,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4470388,10,11.37333,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4471149,8,11.4,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4471151,8,11.4,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4471152,8,11.4,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4471156,8,11.4,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',0,100),(4472817,10,11.46,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4472916,3,11.463,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4473897,8,11.5,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',0,100),(4475081,14,11.54,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4475082,5,11.54,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4475647,14,11.56167,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4476640,8,11.6,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',0,100),(4477174,15,11.61667,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4477599,15,11.63333,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4478213,14,11.66,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4478625,1,11.67827,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4478772,1,11.68247,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4478775,1,11.68331,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4478906,6,11.69,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4479102,14,11.69833,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4479227,8,11.7,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',0,100),(4479539,1,11.70178,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4479600,1,11.70346,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4479769,1,11.71017,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4479865,15,11.71667,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4480579,6,11.75,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4480895,1,11.76222,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4480969,1,11.76725,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4481044,5,11.77,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4481149,23,11.772579,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4481173,14,11.775,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4481199,1,11.77565,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4481234,14,11.77833,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4481598,14,11.79167,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4481613,3,11.7927,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4481822,8,11.8,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4482095,14,11.80167,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4482251,14,11.81,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4482252,4,11.81,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4482325,1,11.8109,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4482486,7,11.82,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4482607,1,11.82182,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4482614,14,11.82333,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4482649,1,11.82601,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4482833,14,11.83333,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4482851,1,11.83357,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4483047,1,11.84364,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4483088,14,11.84667,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4483188,15,11.85,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4483571,1,11.86715,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4483759,1,11.87638,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4483819,1,11.87974,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4483852,2,11.88,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4483969,1,11.8831,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4483989,1,11.88394,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4484022,1,11.88561,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4484031,1,11.88645,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4484201,1,11.89233,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4484440,8,11.9,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',0,100),(4484441,8,11.9,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4484446,8,11.9,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',0,100),(4484801,1,11.90576,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4484813,1,11.90744,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4485156,1,11.92087,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4485175,1,11.92255,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4485194,1,11.92423,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4485438,14,11.93667,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4485453,1,11.93682,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4485511,14,11.94,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4485632,14,11.945,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4485653,1,11.94522,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4485654,1,11.94522,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4485678,1,11.94689,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4486187,1,11.96872,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4486284,14,11.97167,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4486317,1,11.97376,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4486383,1,11.97711,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4486528,14,11.98167,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4486542,1,11.98299,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4486590,1,11.98635,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4486621,1,11.98887,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4486637,14,11.99,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4486914,8,12,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4486920,8,12,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4486923,8,12,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4487321,1,12.00817,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4487341,1,12.00985,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4487493,1,12.01489,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4487564,1,12.01741,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4487735,1,12.02412,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4487780,1,12.02748,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4487825,2,12.03,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4487918,1,12.03168,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4488040,5,12.04,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4488123,1,12.04091,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4488173,1,12.04259,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4488174,1,12.04259,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4488195,1,12.04427,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4488242,1,12.04763,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4488350,1,12.05014,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4488645,15,12.06667,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4488661,1,12.06777,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4488848,14,12.07333,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4489015,1,12.08204,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4489148,6,12.09,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4489149,6,12.09,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4489264,1,12.09296,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4489304,1,12.09548,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4489471,14,12.1,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4489472,8,12.1,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',0,100),(4489766,1,12.10303,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4489811,1,12.10639,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4489883,1,12.10975,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4490001,1,12.11058,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4490094,15,12.11667,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4490272,14,12.12333,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4490273,14,12.12333,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4490472,1,12.13325,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4490508,1,12.13409,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4490515,1,12.13493,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4490541,1,12.13661,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4490561,1,12.13829,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4490562,1,12.13829,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4490962,1,12.15339,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4491003,14,12.15667,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4491052,1,12.15927,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4491212,1,12.16179,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4491306,1,12.16767,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4491426,1,12.17102,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4491491,14,12.175,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4491690,1,12.18194,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4491691,1,12.18194,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4491697,1,12.18278,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4491740,1,12.18529,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4491989,1,12.19621,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4492162,2,12.2,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4492504,1,12.20292,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4492554,14,12.20667,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4492627,14,12.21,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4492722,1,12.213,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4492751,1,12.21467,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4492791,14,12.21667,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4492845,1,12.21971,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4492961,1,12.22055,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4492972,1,12.22139,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4492997,1,12.22223,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4492998,1,12.22223,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4493021,1,12.22391,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4493031,1,12.22475,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4493121,1,12.22978,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4493326,1,12.2365,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4493362,1,12.23818,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4493408,1,12.23902,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4493451,14,12.24,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4493577,1,12.24322,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4493629,1,12.24573,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4493656,1,12.24741,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4493689,1,12.24993,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4493786,1,12.25245,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4493807,14,12.25333,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4493826,1,12.25413,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4493862,1,12.25581,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4493869,1,12.25665,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4493903,14,12.25833,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4494036,1,12.26084,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4494065,1,12.26252,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4494066,1,12.26252,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4494105,1,12.2642,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4494106,1,12.2642,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4494176,1,12.26672,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4494216,1,12.2684,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4494342,1,12.27008,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4494355,1,12.27092,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4494356,1,12.27092,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4494406,1,12.27344,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4494439,1,12.27511,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4494541,1,12.27847,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4494560,1,12.27931,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4494691,1,12.28183,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4494701,1,12.28267,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4494747,1,12.28435,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4494788,1,12.28603,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4494895,14,12.29,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4495052,1,12.29274,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4495123,1,12.2961,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4495313,8,12.3,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',0,100),(4495324,8,12.3,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4495325,8,12.3,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4495327,8,12.3,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',0,100),(4495328,8,12.3,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',0,100),(4495601,1,12.30114,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4495602,1,12.30114,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4495619,1,12.30198,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4495620,1,12.30198,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4495621,1,12.30198,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4495622,1,12.30198,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4495656,1,12.30365,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4495657,1,12.30365,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4495677,1,12.30449,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4495696,1,12.30533,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4495697,1,12.30533,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4495698,1,12.30533,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4495746,1,12.30785,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4495957,1,12.31373,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4495958,1,12.31373,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4495967,1,12.31457,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4496030,1,12.31709,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4496225,1,12.32044,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4496300,1,12.3238,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4496343,1,12.32548,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4496344,1,12.32548,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4496367,1,12.32632,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4496403,1,12.328,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4496563,1,12.33052,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4496578,1,12.33136,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4496604,1,12.3322,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4496780,1,12.33891,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4496895,1,12.34059,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4496953,1,12.34227,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4496970,1,12.34311,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4496971,1,12.34311,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4497020,1,12.34395,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4497135,14,12.34833,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4497215,15,12.35,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4497320,1,12.3515,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4497321,1,12.3515,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4497406,1,12.35402,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4497583,1,12.35906,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4497758,1,12.36158,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4497842,1,12.3641,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4497862,1,12.36493,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4497965,1,12.36745,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4498399,1,12.37669,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4498400,1,12.37669,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4498441,1,12.37836,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4498582,1,12.38088,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4498619,1,12.38172,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4498739,1,12.38424,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4498799,1,12.38592,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4498838,1,12.38676,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4499035,1,12.39012,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4499064,1,12.39096,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4499151,14,12.39333,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4499202,1,12.39431,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4499203,1,12.39431,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4499399,1,12.39851,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4499400,1,12.39851,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4499582,8,12.4,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',0,100),(4499584,8,12.4,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4499585,8,12.4,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4499586,8,12.4,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4499587,8,12.4,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',0,100),(4499588,8,12.4,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',0,100),(4499592,8,12.4,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4499968,1,12.40187,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4500007,1,12.40271,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4500063,1,12.40439,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4500064,1,12.40439,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4500065,1,12.40439,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4500099,1,12.40523,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4500136,1,12.40607,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4500164,14,12.40667,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4500281,1,12.40942,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4500433,1,12.4111,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4500529,1,12.41362,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4500571,1,12.41446,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4500572,1,12.41446,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4500697,1,12.41698,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4500698,1,12.41698,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4500727,1,12.41782,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4500765,1,12.41866,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4501007,1,12.42202,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4501057,14,12.42333,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4501087,1,12.4237,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4501166,1,12.42537,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4501167,1,12.42537,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4501279,1,12.42789,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4501496,1,12.43041,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4501525,1,12.43125,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4501549,14,12.43167,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4501884,1,12.43796,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4502128,1,12.44132,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4502222,1,12.443,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4502349,1,12.44552,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4502350,1,12.44552,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4502549,1,12.44888,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4502627,14,12.45,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4502738,1,12.45056,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4502739,1,12.45056,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4502865,1,12.45308,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4502866,1,12.45308,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4502930,1,12.45391,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4503064,1,12.45643,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4503065,1,12.45643,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4503240,1,12.45979,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4503397,1,12.46147,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4503418,14,12.46167,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4503479,1,12.46315,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4503500,14,12.46333,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4503607,1,12.46567,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4503744,1,12.46819,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4503745,1,12.46819,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4503840,1,12.46986,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4504199,1,12.4749,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4504250,1,12.47574,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4504647,1,12.48162,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4504705,1,12.48246,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4504849,1,12.48497,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4505013,1,12.48749,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4505014,1,12.48749,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4505111,1,12.48917,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4505176,14,12.49,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4505250,1,12.49001,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4505292,1,12.49085,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4505354,1,12.49169,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4505501,1,12.49421,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4505930,8,12.5,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4505935,8,12.5,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',0,100),(4505937,8,12.5,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4505939,8,12.5,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4505940,4,12.5,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4506250,1,12.50092,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4506495,1,12.50428,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4506496,1,12.50428,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4506566,1,12.50512,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4506617,1,12.50596,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4506618,1,12.50596,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4507059,3,12.5115,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4507261,1,12.51435,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4507342,1,12.51519,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4507649,1,12.51939,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4507811,1,12.52023,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4507812,1,12.52023,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4507910,1,12.52191,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4507976,1,12.52275,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4508109,1,12.52443,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4508169,1,12.52527,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4508283,14,12.52667,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4508411,1,12.52862,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4508461,1,12.52946,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4508601,1,12.5303,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4508668,1,12.53114,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4508780,1,12.53282,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4508852,1,12.53366,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4508956,1,12.53534,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4508957,1,12.53534,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4509498,1,12.54038,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4509639,1,12.54206,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4509710,1,12.5429,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4510050,1,12.54709,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4510051,1,12.54709,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4510393,1,12.55045,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4510703,1,12.55381,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4510814,14,12.555,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4510905,1,12.55633,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4511217,1,12.55968,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4511396,1,12.56052,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4511631,1,12.56304,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4511724,1,12.56388,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4511777,1,12.56472,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4512078,1,12.56808,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4512453,1,12.57228,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4512605,1,12.57395,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4512902,14,12.57667,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4512991,1,12.57815,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4513685,1,12.58487,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4513833,1,12.58655,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4514320,1,12.59074,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4514495,1,12.59242,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4514789,1,12.59578,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4514869,1,12.59662,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4515010,1,12.5983,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4515011,1,12.5983,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4515294,8,12.6,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4515296,8,12.6,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4516102,1,12.60585,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4516202,1,12.60669,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4516569,14,12.61,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4516970,1,12.61341,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4517280,15,12.61667,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4518038,14,12.62333,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4518107,1,12.62432,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4518427,1,12.62768,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4518596,1,12.62936,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4518597,1,12.62936,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4519157,1,12.63355,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4519317,14,12.635,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4519551,1,12.63691,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4519692,14,12.63833,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4519905,2,12.64,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4520311,1,12.64363,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4520612,1,12.64615,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4520997,1,12.6495,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4521447,1,12.65286,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4522359,6,12.66,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4522551,1,12.66126,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4523109,1,12.66629,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4523770,1,12.67133,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4523885,1,12.67217,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4524331,1,12.67637,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4524983,1,12.6814,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4525266,14,12.68333,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4525463,14,12.685,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4525674,1,12.68728,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4525756,1,12.68812,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4525857,1,12.68896,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4526053,6,12.69,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4526054,6,12.69,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4526509,3,12.6936,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4526828,1,12.69651,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4527340,8,12.7,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',0,100),(4527341,8,12.7,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4527342,8,12.7,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',0,100),(4527350,8,12.7,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4527351,8,12.7,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4527768,1,12.70155,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4528815,6,12.71,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4529317,1,12.71414,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4530595,1,12.72505,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4530874,1,12.72757,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4532475,1,12.741,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4533072,14,12.74667,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4533073,14,12.74667,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4533498,15,12.75,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4534065,14,12.755,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4535242,14,12.765,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4535461,1,12.76703,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4537594,14,12.78667,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4538738,1,12.79725,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4539170,8,12.8,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4539172,8,12.8,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4539174,8,12.8,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4539176,15,12.8,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4539180,8,12.8,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4539182,8,12.8,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',0,100),(4539183,8,12.8,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4540800,1,12.8132,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4541592,14,12.82,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4541820,1,12.82243,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4541902,1,12.82327,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4542148,1,12.82579,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4542402,1,12.8283,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4542570,1,12.82998,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4544946,1,12.85181,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4547020,1,12.87028,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4550236,8,12.9,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4550239,8,12.9,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4550241,8,12.9,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',0,100),(4550242,8,12.9,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',0,100),(4550245,8,12.9,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4550248,8,12.9,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4552062,1,12.91561,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4552169,15,12.91667,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4553251,1,12.92736,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4554441,1,12.93995,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4557033,15,12.96667,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4557034,15,12.96667,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4558632,14,12.98167,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4558887,1,12.98444,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4559208,23,12.987845,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4560429,8,13,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4560432,8,13,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4560434,8,13,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4560436,8,13,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4562117,15,13.01667,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4562166,1,13.01718,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4562435,1,13.02054,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4562513,14,13.02167,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4563151,6,13.03,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4563370,1,13.03229,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4563802,14,13.03833,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4565386,14,13.06,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4565768,14,13.06667,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4566267,1,13.07426,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4566438,1,13.07762,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4566556,6,13.08,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4566977,14,13.08667,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4567042,1,13.08769,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4567222,14,13.09,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4567393,1,13.09189,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4567934,15,13.1,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4567938,8,13.1,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4567940,8,13.1,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4567943,8,13.1,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',0,100),(4567945,8,13.1,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',0,100),(4567946,8,13.1,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4568632,1,13.107,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4569548,1,13.12043,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4570150,7,13.13,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4570402,14,13.13333,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4570520,1,13.13554,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4571092,1,13.14561,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4571871,14,13.15833,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4572167,14,13.16167,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4572819,1,13.17331,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4573086,1,13.17835,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4573421,1,13.18339,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4573458,1,13.18423,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4573855,14,13.19167,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4574402,8,13.2,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4574408,8,13.2,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4574410,8,13.2,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',0,100),(4574411,8,13.2,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4574412,8,13.2,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',0,100),(4574415,8,13.2,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4574974,1,13.20521,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4575398,3,13.2115,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4575682,15,13.21667,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4576062,1,13.22284,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4576291,1,13.22704,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4576658,14,13.23167,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4576892,14,13.235,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4577623,14,13.24667,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4577651,1,13.24718,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4578483,7,13.26,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4579649,14,13.27833,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4580185,14,13.28667,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4581182,8,13.3,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',0,100),(4581183,8,13.3,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',0,100),(4581185,8,13.3,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4581193,8,13.3,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',0,100),(4581194,8,13.3,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',0,100),(4581195,8,13.3,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4581197,2,13.3,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4583981,7,13.34,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4584231,14,13.34333,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4584460,3,13.3477,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4585709,15,13.36667,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4585918,6,13.37,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4587210,6,13.39,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4587529,14,13.395,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4587892,8,13.4,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',0,100),(4587896,8,13.4,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4587899,8,13.4,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',0,100),(4587901,8,13.4,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4587902,8,13.4,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4587903,8,13.4,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4587904,8,13.4,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4587905,8,13.4,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4587906,8,13.4,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4588868,14,13.41333,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4589049,15,13.41667,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4589653,14,13.42667,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4589740,14,13.42833,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4591749,15,13.46667,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4592958,14,13.49,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4593220,14,13.495,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4593350,14,13.49833,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4593499,8,13.5,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4593500,8,13.5,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4593506,8,13.5,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4593507,8,13.5,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',0,100),(4593510,8,13.5,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',0,100),(4593512,8,13.5,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4593515,5,13.5,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4594458,14,13.515,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4595174,14,13.53,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4596139,15,13.55,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4596782,14,13.56333,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4597754,14,13.58333,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4597939,14,13.58833,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4598571,15,13.6,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4598578,8,13.6,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',0,100),(4598579,8,13.6,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4598583,8,13.6,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4598587,8,13.6,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4599615,14,13.61833,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4601268,14,13.655,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4601822,14,13.66833,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4601823,14,13.66833,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4603330,8,13.7,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',0,100),(4603331,8,13.7,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4603335,8,13.7,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4603337,8,13.7,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4605369,14,13.74,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4605604,14,13.745,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4606048,14,13.75667,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4607445,14,13.79,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4607601,14,13.79333,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4607906,8,13.8,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',0,100),(4607907,8,13.8,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4607909,8,13.8,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4607913,8,13.8,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4607914,8,13.8,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',0,100),(4607915,8,13.8,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4608340,14,13.80667,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4608510,4,13.81,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4608660,14,13.81333,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4608783,15,13.81667,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4609305,2,13.83,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4609307,5,13.83,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4610566,14,13.865,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4611153,14,13.88167,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4611154,14,13.88167,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4611860,8,13.9,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',0,100),(4611862,8,13.9,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4611864,8,13.9,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',0,100),(4611866,8,13.9,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',0,100),(4611869,8,13.9,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4611872,8,13.9,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4611874,8,13.9,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4611875,8,13.9,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4611876,8,13.9,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',0,100),(4611877,8,13.9,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',0,100),(4611878,8,13.9,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4612274,14,13.90833,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4612338,2,13.91,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4612339,5,13.91,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4612545,15,13.91667,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4612546,15,13.91667,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4612547,15,13.91667,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4612643,14,13.92,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4612827,14,13.92667,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4613019,15,13.93333,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4613020,14,13.93333,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4613101,14,13.93667,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4613193,4,13.94,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4613584,14,13.95333,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4613670,14,13.95833,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4614150,14,13.97667,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4614200,3,13.9789,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4614841,8,14,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',0,100),(4614842,8,14,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4614843,8,14,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4614844,8,14,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4614846,8,14,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4615135,14,14.00333,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4615383,14,14.01667,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4615866,14,14.03667,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4616003,14,14.04167,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4616398,3,14.0606,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4616722,14,14.08,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4616839,14,14.08667,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4616860,14,14.08833,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4616927,14,14.09167,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4617135,8,14.1,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4617136,8,14.1,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4617140,8,14.1,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4617141,8,14.1,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4617142,8,14.1,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',0,100),(4617143,8,14.1,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',0,100),(4617642,14,14.11667,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4617709,6,14.12,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4618271,6,14.15,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4618272,2,14.15,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4618378,14,14.155,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4618489,23,14.160718,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4618560,14,14.16833,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4618748,14,14.18,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4618868,14,14.18833,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4619122,8,14.2,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4619123,8,14.2,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4619125,8,14.2,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4619127,8,14.2,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4619128,8,14.2,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4619131,8,14.2,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4619440,14,14.20167,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4619598,14,14.21167,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4619642,15,14.21667,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4619744,14,14.22333,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4619930,14,14.23833,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4619978,14,14.24,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4619979,4,14.24,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4620197,14,14.25167,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4620402,14,14.27,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4620403,14,14.27,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4620585,14,14.28167,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4620898,8,14.3,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4620903,8,14.3,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4620905,8,14.3,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4621195,14,14.30667,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4621282,14,14.31333,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4621434,14,14.32333,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4621777,15,14.35,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4621988,15,14.36667,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4622001,14,14.36833,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4622192,6,14.38,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4622528,8,14.4,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4623099,14,14.43167,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4623282,14,14.44667,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4623561,14,14.46833,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4623562,14,14.46833,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4624007,8,14.5,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4624011,8,14.5,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4624012,8,14.5,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4624014,8,14.5,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4624019,5,14.5,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4624494,14,14.52166,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4624621,15,14.53333,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4624643,14,14.53667,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4624761,14,14.54667,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4624961,15,14.56667,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4625016,14,14.57,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4625071,14,14.57167,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4625200,15,14.58333,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4625484,8,14.6,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',0,100),(4625485,8,14.6,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',0,100),(4625486,8,14.6,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4625488,8,14.6,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',0,100),(4625489,8,14.6,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4625795,14,14.615,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4625799,15,14.61667,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4626097,7,14.64,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4626207,15,14.65,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4626641,14,14.68833,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4626704,14,14.69333,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4626818,8,14.7,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',0,100),(4626820,8,14.7,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4626821,8,14.7,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4626822,8,14.7,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4627229,14,14.715,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4627378,14,14.72833,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4627482,14,14.74,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4627614,15,14.75,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4627879,4,14.77,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4628071,14,14.78667,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4628335,8,14.8,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',0,100),(4628337,8,14.8,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',0,100),(4628339,8,14.8,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4628673,14,14.81833,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4628866,15,14.83333,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4628936,5,14.84,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4629316,14,14.875,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4629674,8,14.9,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',0,100),(4629675,8,14.9,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4629678,8,14.9,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4629681,8,14.9,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4629989,14,14.91,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4630095,14,14.92,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4630367,14,14.94167,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4630766,6,14.98,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4631058,8,15,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4631059,15,15,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4631062,8,15,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',0,100),(4631064,15,15,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4631066,8,15,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',0,100),(4631067,8,15,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4631071,8,15,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4631073,8,15,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4631659,14,15.015,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4631663,15,15.01667,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4631665,15,15.01667,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4631785,14,15.02667,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4631994,14,15.04167,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4632123,14,15.05167,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4632258,14,15.065,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4632470,14,15.085,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4632483,14,15.08833,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4632707,8,15.1,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',0,100),(4632708,8,15.1,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4632711,8,15.1,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',0,100),(4632712,8,15.1,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',0,100),(4632715,8,15.1,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4632718,8,15.1,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',0,100),(4632719,8,15.1,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',0,100),(4632722,8,15.1,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4633039,14,15.11167,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4633049,14,15.115,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4633159,14,15.12833,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4633243,14,15.13167,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4633250,14,15.13333,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4633320,6,15.14,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4633523,14,15.155,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4633718,14,15.17167,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4633818,15,15.18333,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4633819,14,15.18333,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4633881,5,15.19,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4633882,6,15.19,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4634056,8,15.2,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4634059,8,15.2,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4634060,8,15.2,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4634063,8,15.2,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4634310,14,15.20833,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4634391,14,15.21333,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4634443,14,15.22,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4634444,4,15.22,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4634513,14,15.22667,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4634537,14,15.23,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4634605,14,15.235,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4634665,14,15.24,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4634912,14,15.26667,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4634965,14,15.27,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4635015,14,15.27167,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4635344,8,15.3,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4635346,4,15.3,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4635347,6,15.3,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4635348,8,15.3,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4635350,8,15.3,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',0,100),(4635352,6,15.3,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4635353,8,15.3,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4635355,8,15.3,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4635705,15,15.31667,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4635717,14,15.31833,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4635727,23,15.31946,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4635768,7,15.32,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4635848,14,15.32667,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4635915,15,15.33333,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4636294,6,15.37,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4636509,5,15.39,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4636573,14,15.39167,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4636588,14,15.39667,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4636592,14,15.39833,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4636711,8,15.4,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4636715,8,15.4,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4636718,8,15.4,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',0,100),(4636719,8,15.4,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',0,100),(4636720,6,15.4,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4637077,14,15.42,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4637561,15,15.46667,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4637893,14,15.495,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4637910,14,15.49833,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4638029,8,15.5,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4638032,8,15.5,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4638033,8,15.5,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4638034,8,15.5,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4638036,8,15.5,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4638218,14,15.505,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4638715,15,15.55,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4638716,15,15.55,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4638964,14,15.57333,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4639116,15,15.58333,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4639146,14,15.58833,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4639212,14,15.59333,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4639356,8,15.6,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',0,100),(4639361,8,15.6,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',0,100),(4639363,8,15.6,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4639932,15,15.63333,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4639986,4,15.64,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4640058,14,15.64667,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4640103,15,15.65,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4640215,4,15.66,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4640269,14,15.66167,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4640433,14,15.67333,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4640483,2,15.68,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4640783,8,15.7,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',0,100),(4640784,8,15.7,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4640785,8,15.7,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4641046,6,15.71,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4641126,14,15.71667,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4641234,5,15.73,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4641284,14,15.73167,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4641352,5,15.74,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4641425,23,15.74339,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4641436,14,15.745,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4641625,14,15.765,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4642101,8,15.8,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4642102,8,15.8,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4642105,8,15.8,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4642108,8,15.8,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4642110,8,15.8,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4642382,14,15.81833,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4642420,6,15.82,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4642749,2,15.85,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4642794,14,15.85333,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4642904,14,15.86167,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4643370,15,15.9,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4643375,8,15.9,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',0,100),(4643378,8,15.9,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4643380,8,15.9,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4643381,8,15.9,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',0,100),(4643382,8,15.9,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4643565,14,15.905,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4644055,2,15.95,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4644507,14,15.98833,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4644932,8,16,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',0,100),(4644933,8,16,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',0,100),(4644935,8,16,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4644937,8,16,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4645371,14,16.005,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4645464,15,16.01667,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4645472,14,16.01833,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4645619,14,16.03,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4645620,6,16.03,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4646031,14,16.06667,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4646032,15,16.06667,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4646139,14,16.075,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4646371,14,16.095,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4646546,8,16.1,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4646549,8,16.1,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4646550,8,16.1,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4646750,14,16.11,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4646751,14,16.11,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4646752,6,16.11,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4646753,7,16.11,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4646850,14,16.12,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4646973,6,16.13,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4647172,14,16.145,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4647204,15,16.15,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4647237,14,16.15333,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4647301,6,16.16,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4647657,14,16.19167,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4647825,8,16.2,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',0,100),(4647826,8,16.2,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',0,100),(4647828,8,16.2,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',0,100),(4647829,8,16.2,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4647830,8,16.2,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',0,100),(4647832,8,16.2,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4648130,15,16.21667,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4648298,15,16.23333,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4648299,15,16.23333,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4648692,14,16.265,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4648784,14,16.27833,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4648857,14,16.28833,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4649141,8,16.3,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4649143,8,16.3,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4649148,8,16.3,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',0,100),(4649149,8,16.3,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4649357,6,16.31,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4649500,14,16.32167,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4649592,14,16.33167,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4650052,14,16.375,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4650066,14,16.37833,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4650155,15,16.38333,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4650211,4,16.39,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4650387,8,16.4,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',0,100),(4650388,8,16.4,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4650389,8,16.4,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4650390,8,16.4,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4650392,8,16.4,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4650738,14,16.425,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4650758,14,16.42833,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4650976,14,16.44667,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4651222,6,16.47,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4651416,14,16.48667,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4651439,14,16.49,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4651478,3,16.4906,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4651655,8,16.5,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4651656,8,16.5,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',0,100),(4651658,8,16.5,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',0,100),(4651659,8,16.5,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4651660,14,16.5,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4651661,8,16.5,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',0,100),(4651860,2,16.51,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4652102,14,16.53333,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4652190,22,16.542299,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4652260,6,16.55,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4652424,14,16.56667,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4652611,15,16.58333,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4652859,15,16.6,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4652861,8,16.6,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',0,100),(4653083,14,16.61167,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4653097,22,16.614565,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4653448,23,16.647774,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4653567,14,16.655,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4653683,4,16.67,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4653802,5,16.68,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4653920,4,16.69,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4654111,8,16.7,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4654114,8,16.7,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4654115,8,16.7,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4654116,8,16.7,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4654394,14,16.71334,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4654445,4,16.72,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4654850,5,16.76,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4654964,14,16.77,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4654965,2,16.77,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4655103,15,16.78333,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4655357,8,16.8,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',0,100),(4655358,8,16.8,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4655359,8,16.8,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4655571,2,16.81,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4655673,14,16.82,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4655674,2,16.82,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4655820,14,16.83333,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4655884,2,16.84,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4656224,2,16.87,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4656249,14,16.87167,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4656620,8,16.9,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',0,100),(4656624,8,16.9,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4656625,8,16.9,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4656626,8,16.9,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',0,100),(4656898,14,16.915,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4656989,14,16.925,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4657387,14,16.96667,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4657615,14,16.98833,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4658070,8,17,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4658600,14,17.015,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4658752,14,17.02833,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4658756,23,17.029311,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4658831,15,17.03333,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4659351,15,17.08333,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4659357,14,17.085,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4659362,22,17.085215,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4659477,14,17.09833,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4659614,8,17.1,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4659615,8,17.1,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4659617,8,17.1,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',0,100),(4659618,8,17.1,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4659625,6,17.1,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4659763,22,17.104744,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4659990,14,17.12667,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4660004,14,17.12833,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4660109,4,17.14,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4660215,2,17.15,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4660444,14,17.17333,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4660541,14,17.18333,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4660548,23,17.184752,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4660834,8,17.2,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4660835,8,17.2,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4660836,8,17.2,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',0,100),(4660840,8,17.2,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4660960,14,17.20167,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4661075,14,17.21167,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4661076,14,17.21167,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4661555,5,17.26,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4661601,14,17.265,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4661610,15,17.26667,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4661704,14,17.275,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4661744,6,17.28,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4661892,14,17.29333,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4662029,8,17.3,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',0,100),(4662030,8,17.3,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4662031,8,17.3,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4662165,22,17.303864,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4662441,6,17.33,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4662442,6,17.33,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4662664,5,17.35,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4662741,14,17.35667,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4662918,14,17.37,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4662952,14,17.37167,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4663027,6,17.38,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4663113,14,17.39,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4663282,8,17.4,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4663283,8,17.4,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4663284,8,17.4,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4663493,14,17.41,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4663494,6,17.41,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4663581,14,17.41833,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4663938,14,17.455,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4664178,2,17.48,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4664264,4,17.49,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4664471,8,17.5,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4664472,8,17.5,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4664474,8,17.5,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',0,100),(4664475,8,17.5,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',0,100),(4664476,8,17.5,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4664478,4,17.5,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4664630,14,17.50333,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4664642,14,17.50833,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4664956,6,17.54,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4665315,14,17.57667,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4665453,5,17.59,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4665641,8,17.6,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4665642,8,17.6,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4665644,8,17.6,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4665774,14,17.60167,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4665939,4,17.62,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4665940,5,17.62,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4666208,15,17.65,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4666280,14,17.655,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4666388,23,17.665206,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4666451,6,17.67,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4666542,14,17.68,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4666590,15,17.68333,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4666621,22,17.688578,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4666866,8,17.7,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',0,100),(4666869,8,17.7,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',0,100),(4667287,14,17.72333,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4667382,14,17.73667,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4667422,5,17.74,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4667524,6,17.75,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4667615,4,17.76,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4667701,2,17.77,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4667879,14,17.78167,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4668147,8,17.8,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4668293,22,17.806033,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4668326,4,17.81,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4668409,14,17.82,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4668410,2,17.82,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4668575,15,17.83333,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4668707,22,17.849132,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4668755,4,17.85,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4668756,6,17.85,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4668940,5,17.87,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4669047,6,17.88,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4669048,6,17.88,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4669360,8,17.9,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',0,100),(4669363,8,17.9,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',0,100),(4669364,8,17.9,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4669365,8,17.9,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4669366,2,17.9,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4669622,22,17.910538,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4669781,4,17.93,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4669782,6,17.93,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4670000,14,17.955,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4670069,6,17.96,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4670278,6,17.98,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4670683,8,18,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',0,100),(4670685,5,18,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4670686,5,18,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4671250,14,18.01333,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4671275,14,18.01834,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4671311,2,18.02,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4671553,22,18.043629,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4671565,14,18.04667,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4671649,14,18.055,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4671697,5,18.06,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4671782,14,18.07,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4671783,2,18.07,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4672028,14,18.095,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4672140,8,18.1,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',0,100),(4672143,8,18.1,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4672144,8,18.1,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',0,100),(4672145,8,18.1,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4672146,5,18.1,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4672367,22,18.110331,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4672443,14,18.12333,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4672587,2,18.14,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4672717,22,18.152075,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4673072,4,18.19,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4673246,8,18.2,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4673247,8,18.2,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',0,100),(4673248,8,18.2,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',0,100),(4673469,14,18.21333,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4673476,14,18.215,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4673477,14,18.215,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4673825,15,18.25,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4673827,14,18.25,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4673828,2,18.25,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4673976,15,18.26667,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4674034,6,18.27,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4674206,2,18.29,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4674385,5,18.3,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4674593,15,18.31667,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4674843,5,18.34,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4674945,7,18.35,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4675060,4,18.36,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4675180,14,18.375,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4675236,5,18.38,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4675237,4,18.38,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4675306,22,18.389979,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4675328,2,18.39,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4675515,8,18.4,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',0,100),(4675518,7,18.4,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4675519,15,18.4,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4675764,15,18.41667,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4675870,5,18.43,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4675871,6,18.43,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4675872,6,18.43,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4676265,14,18.47,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4676360,7,18.48,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4676361,4,18.48,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4676362,6,18.48,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4676363,6,18.48,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4676412,14,18.48333,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4676506,14,18.495,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4676740,14,18.50833,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4676767,6,18.51,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4676768,2,18.51,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4676769,4,18.51,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4676864,5,18.52,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4676966,2,18.53,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4676967,4,18.53,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4677026,15,18.53333,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4677384,4,18.57,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4677613,23,18.597852,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4678069,14,18.62167,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4678276,5,18.65,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4678359,14,18.66,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4678958,6,18.71,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4678959,4,18.71,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4678960,4,18.71,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4679205,6,18.74,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4679269,22,18.749358,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4679369,2,18.76,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4679695,22,18.793435,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4679824,8,18.8,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',0,100),(4679828,15,18.8,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4679937,14,18.805,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4679939,22,18.805309,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4680070,6,18.82,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4680276,14,18.84667,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4680312,15,18.85,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4680313,6,18.85,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4680372,22,18.857939,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4680435,22,18.863034,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4680452,15,18.86667,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4680630,14,18.88667,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4680679,22,18.89192,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4680815,6,18.9,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4680816,4,18.9,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4680971,23,18.908734,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4681349,6,18.95,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4681987,8,19,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4681989,8,19,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',0,100),(4682516,6,19.03,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4682578,22,19.036656,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4682705,15,19.05,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4682706,6,19.05,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4682944,14,19.075,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4682955,23,19.078306,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4682956,14,19.07833,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4682987,4,19.08,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4683033,14,19.08167,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4683082,4,19.09,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4683083,5,19.09,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4683260,8,19.1,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',0,100),(4683262,8,19.1,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',0,100),(4683263,8,19.1,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4683266,8,19.1,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',0,100),(4683388,22,19.103227,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4683448,6,19.11,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4683634,6,19.13,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4683727,22,19.142528,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4683759,4,19.15,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4684014,5,19.18,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4684114,14,19.19167,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4684143,22,19.198986,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4684484,15,19.21667,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4684593,14,19.23,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4684692,14,19.24,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4684693,6,19.24,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4684790,14,19.24833,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4684860,14,19.25333,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4685019,2,19.27,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4685060,22,19.276084,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4685262,14,19.295,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4685386,8,19.3,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',0,100),(4685388,8,19.3,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',0,100),(4685389,8,19.3,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',0,100),(4685390,8,19.3,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4685598,6,19.32,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4685690,4,19.33,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4685742,15,19.33333,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4686380,8,19.4,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',0,100),(4686628,6,19.42,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4686746,15,19.43333,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4686779,14,19.44,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4686986,22,19.468569,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4687017,6,19.47,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4687129,15,19.48334,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4687206,22,19.494412,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4687337,8,19.5,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',0,100),(4687340,8,19.5,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',0,100),(4687341,6,19.5,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4687644,22,19.52372,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4687780,23,19.544629,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4687865,22,19.554771,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4687876,14,19.55833,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4687964,14,19.565,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4688146,22,19.585843,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4688177,4,19.59,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4688338,8,19.6,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',0,100),(4688339,8,19.6,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4688340,8,19.6,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4688341,8,19.6,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',0,100),(4688343,2,19.6,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4688503,22,19.615206,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4688724,2,19.64,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4688797,15,19.65,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4688798,15,19.65,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4689017,14,19.675,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4689026,14,19.67833,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4689322,8,19.7,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4689324,8,19.7,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4689474,6,19.71,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4689589,14,19.72667,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4689630,6,19.73,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4689854,22,19.75885,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4689898,6,19.76,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4689993,14,19.77,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4689995,5,19.77,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4690030,22,19.77619,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4690197,14,19.79833,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4690293,8,19.8,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4690294,8,19.8,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',0,100),(4690295,8,19.8,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4690449,6,19.81,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4690526,2,19.82,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4690869,5,19.86,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4691278,8,19.9,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',0,100),(4691427,5,19.91,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4691586,5,19.93,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4691774,15,19.95,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4691775,5,19.95,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4691830,2,19.96,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4691923,5,19.97,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4692001,4,19.98,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4692099,7,19.99,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4692100,6,19.99,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4692152,22,19.995213,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4692399,8,20,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',0,100),(4692400,8,20,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',0,100),(4692830,2,20.03,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4692995,15,20.05,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4692996,15,20.05,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4692997,2,20.05,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4693071,22,20.059726,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4693095,4,20.06,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4693195,6,20.07,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4693524,8,20.1,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',0,100),(4693527,8,20.1,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',0,100),(4693529,6,20.1,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4693674,4,20.11,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4693929,5,20.14,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4694005,7,20.15,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4694006,7,20.15,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4694157,23,20.166393,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4694350,14,20.18833,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4694497,8,20.2,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',0,100),(4694498,8,20.2,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',0,100),(4694802,5,20.23,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4694803,6,20.23,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4695052,2,20.26,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4695240,22,20.280105,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4695277,2,20.29,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4695529,14,20.31,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4695530,6,20.31,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4695606,14,20.32,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4695646,14,20.32333,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4695847,15,20.35,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4695848,5,20.35,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4695956,6,20.36,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4696175,5,20.39,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4696303,8,20.4,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',0,100),(4696304,8,20.4,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',0,100),(4696306,5,20.4,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4696429,14,20.41,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4696525,4,20.42,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4696662,2,20.44,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4696851,6,20.46,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4696905,15,20.46667,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4696956,14,20.475,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4697076,7,20.49,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4697077,6,20.49,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4697078,6,20.49,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4697079,6,20.49,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4697181,8,20.5,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',0,100),(4697292,2,20.51,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4697535,6,20.54,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4697715,15,20.56667,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4697716,15,20.56667,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4697758,6,20.57,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4697815,22,20.577336,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4698272,5,20.62,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4698273,6,20.62,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4698274,6,20.62,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4698338,4,20.63,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4698377,15,20.63333,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4698480,5,20.65,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4698481,2,20.65,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4698551,14,20.65833,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4698620,3,20.662,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4698955,5,20.7,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4698956,5,20.7,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4698957,2,20.7,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4699121,23,20.717502,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4699239,14,20.73,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4699263,15,20.73333,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4699407,4,20.75,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4699628,6,20.78,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4699629,6,20.78,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4699630,5,20.78,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4699829,15,20.8,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4699960,15,20.81667,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4700160,5,20.84,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4700251,6,20.85,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4700371,4,20.87,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4700457,6,20.88,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4700504,15,20.88333,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4700808,15,20.91667,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4700933,4,20.93,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4701316,6,20.98,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4701360,22,20.986649,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4702097,15,21,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4702336,6,21.01,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4702337,4,21.01,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4702658,22,21.050758,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4702759,15,21.06667,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4702829,5,21.08,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4702912,6,21.09,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4703108,2,21.11,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4703130,22,21.11138,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4703202,5,21.12,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4703304,22,21.13458,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4703412,15,21.15,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4703550,7,21.17,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4703551,7,21.17,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4703616,2,21.18,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4703704,6,21.19,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4703774,23,21.197956,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4703948,15,21.21667,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4704212,4,21.25,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4704213,15,21.25,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4704379,4,21.27,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4704497,5,21.29,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4704498,5,21.29,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4704607,4,21.3,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4704608,6,21.3,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4704609,15,21.3,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4704610,2,21.3,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4704671,22,21.306236,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4704697,5,21.31,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4704783,2,21.32,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4704784,6,21.32,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4704785,4,21.32,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4704999,4,21.35,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4705103,5,21.36,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4705104,4,21.36,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4705137,15,21.36667,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4705165,5,21.37,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4705329,2,21.39,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4705433,6,21.4,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4705435,5,21.4,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4705553,5,21.41,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4705639,22,21.421008,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4705694,2,21.43,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4705842,6,21.45,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4705843,7,21.45,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4706061,6,21.48,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4706062,4,21.48,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4706063,5,21.48,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4706138,2,21.49,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4706226,15,21.5,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4706336,6,21.51,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4706392,15,21.51667,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4706393,15,21.51667,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4706505,2,21.53,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4706506,5,21.53,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4706642,4,21.55,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4706643,15,21.55,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4706729,6,21.56,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4706820,2,21.57,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4706884,2,21.58,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4706885,6,21.58,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4706936,15,21.58333,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4706937,15,21.58333,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4707196,15,21.61667,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4707329,15,21.63333,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4707523,6,21.66,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4707905,2,21.71,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4707975,6,21.72,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4708080,15,21.73334,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4708133,4,21.74,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4708134,6,21.74,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4708135,6,21.74,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4708136,6,21.74,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4708204,15,21.75,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4708314,4,21.77,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4708315,6,21.77,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4708478,6,21.79,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4708557,5,21.8,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4708627,5,21.81,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4708773,2,21.83,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4708774,2,21.83,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4708775,2,21.83,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4708776,5,21.83,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4708873,23,21.847982,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4708922,6,21.85,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4708970,4,21.86,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4709059,6,21.87,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4709060,2,21.87,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4709096,23,21.876244,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4709248,6,21.9,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4709420,6,21.92,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4709421,6,21.92,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4709513,15,21.93333,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4709547,4,21.94,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4709548,5,21.94,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4709709,23,21.96103,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4709809,6,21.98,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4709812,4,21.98,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4709859,23,21.989292,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4710196,15,22,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4710200,2,22,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4710554,2,22.03,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4710887,4,22.08,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4710927,15,22.08333,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4710968,2,22.09,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4711093,6,22.11,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4711122,15,22.11667,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4711135,2,22.12,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4711217,2,22.13,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4711378,4,22.16,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4711435,4,22.17,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4711513,5,22.18,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4711713,5,22.21,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4711771,2,22.22,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4711807,2,22.23,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4711827,15,22.23333,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4711868,4,22.24,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4712011,6,22.26,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4712012,7,22.26,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4712056,15,22.26667,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4712070,5,22.27,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4712208,2,22.29,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4712209,2,22.29,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4712210,6,22.29,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4712211,6,22.29,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4712294,5,22.3,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4712295,5,22.3,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4712437,2,22.32,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4712513,15,22.33333,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4712565,2,22.34,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4712710,15,22.36667,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4713214,23,22.441484,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4713372,15,22.46667,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4713420,6,22.47,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4713692,2,22.51,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4713784,6,22.52,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4713967,6,22.55,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4714148,6,22.58,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4714289,6,22.6,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4714290,6,22.6,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4714589,6,22.65,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4714590,5,22.65,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4714591,6,22.65,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4715125,4,22.73,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4715126,7,22.73,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4715163,15,22.73333,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4715165,15,22.73334,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4715188,5,22.74,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4715324,6,22.76,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4715482,6,22.78,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4715483,2,22.78,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4715484,5,22.78,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4715530,15,22.78333,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4715605,2,22.8,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4715606,5,22.8,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4715884,22,22.84317,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4715919,15,22.85,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4715982,2,22.86,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4716024,15,22.86667,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4716165,6,22.89,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4716326,6,22.91,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4716353,15,22.91667,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4716368,5,22.92,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4716662,4,22.97,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4716663,6,22.97,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4716732,2,22.98,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4716758,15,22.98333,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4716797,6,22.99,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4716798,2,22.99,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4716799,6,22.99,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4717325,4,23.02,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4717420,15,23.03333,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4717503,7,23.05,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4717504,5,23.05,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4717622,7,23.07,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4717682,4,23.08,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4717683,2,23.08,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4717725,15,23.08333,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4717749,2,23.09,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4717824,7,23.1,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4717825,7,23.1,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4717968,5,23.12,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4717969,6,23.12,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4718014,2,23.13,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4718073,4,23.14,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4718140,7,23.15,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4718141,5,23.15,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4718142,6,23.15,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4718143,6,23.15,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4718144,6,23.15,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4718259,15,23.16667,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4718331,6,23.18,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4718457,15,23.2,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4718459,6,23.2,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4718510,4,23.21,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4718511,5,23.21,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4718557,2,23.22,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4718618,2,23.23,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4718619,5,23.23,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4718620,4,23.23,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4718756,6,23.25,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4718757,6,23.25,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4718801,2,23.26,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4718802,2,23.26,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4718919,6,23.28,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4719096,6,23.31,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4719097,6,23.31,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4719098,7,23.31,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4719232,6,23.33,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4719233,5,23.33,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4719235,6,23.33,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4719236,2,23.33,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4719312,22,23.347785,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4719342,5,23.35,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4719343,2,23.35,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4719408,6,23.36,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4719409,7,23.36,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4719410,6,23.36,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4719411,6,23.36,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4719412,7,23.36,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4719445,22,23.366422,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4719546,6,23.38,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4719548,7,23.38,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4719549,4,23.38,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4719550,6,23.38,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4719651,4,23.4,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4719652,5,23.4,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4719653,2,23.4,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4719655,15,23.4,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4719731,7,23.41,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4719732,6,23.41,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4719733,6,23.41,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4719764,23,23.416523,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4719793,4,23.42,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4719794,4,23.42,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4719860,15,23.43333,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4719865,22,23.435466,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4719874,22,23.439196,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4719979,5,23.45,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4719980,5,23.45,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4720043,6,23.46,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4720045,6,23.46,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4720101,22,23.469079,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4720114,5,23.47,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4720192,22,23.484024,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4720201,23,23.487178,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4720379,6,23.51,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4720411,15,23.51666,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4720495,2,23.53,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4720575,7,23.54,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4720576,6,23.54,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4720578,6,23.54,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4720637,4,23.55,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4720661,22,23.553214,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4720755,6,23.57,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4720882,5,23.59,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4721037,15,23.61667,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4721136,4,23.63,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4721257,15,23.65,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4721408,6,23.67,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4721591,6,23.7,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4721736,5,23.72,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4721896,5,23.75,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4721967,2,23.76,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4721968,5,23.76,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4721969,2,23.76,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4722050,22,23.77821,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4722221,2,23.8,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4722278,4,23.81,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4722279,5,23.81,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4722391,6,23.83,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4722392,2,23.83,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4722528,5,23.85,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4722564,22,23.853423,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4722645,5,23.87,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4722696,5,23.88,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4722733,22,23.88918,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4722755,4,23.89,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4722862,6,23.91,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4722897,15,23.91667,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4722917,4,23.92,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4722986,7,23.93,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4723043,5,23.94,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4723152,6,23.96,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4723153,5,23.96,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4723154,6,23.96,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4723213,4,23.97,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4723237,22,23.973962,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4723242,22,23.977744,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4723272,6,23.98,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4723564,5,24,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4723924,5,24.01,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4723979,4,24.02,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4724029,2,24.03,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4724053,22,24.03812,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4724090,2,24.04,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4724091,4,24.04,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4724143,22,24.049439,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4724209,6,24.06,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4724210,2,24.06,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4724211,7,24.06,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4724251,15,24.06667,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4724308,5,24.08,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4724309,5,24.08,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4724447,15,24.1,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4724490,23,24.108942,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4724525,2,24.11,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4724605,22,24.12502,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4724697,4,24.14,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4724731,22,24.147717,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4724751,4,24.15,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4724869,7,24.17,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4724870,6,24.17,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4724871,7,24.17,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4724981,4,24.19,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4725039,5,24.2,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4725080,4,24.21,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4725081,4,24.21,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4725142,4,24.22,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4725143,7,24.22,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4725144,4,24.22,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4725145,6,24.22,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4725198,5,24.23,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4725256,6,24.24,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4725257,2,24.24,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4725259,2,24.24,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4725303,22,24.242378,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4725392,15,24.26666,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4725435,5,24.27,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4725567,22,24.29545,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4725620,6,24.3,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4725654,22,24.304937,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4725657,22,24.306837,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4725674,4,24.31,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4725710,15,24.31667,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4725779,22,24.322012,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4725917,15,24.35,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4725918,7,24.35,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4725919,6,24.35,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4726039,2,24.37,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4726094,2,24.38,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4726225,4,24.4,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4726226,2,24.4,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4726227,2,24.4,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4726330,15,24.41667,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4726408,6,24.43,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4726476,4,24.44,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4726549,6,24.45,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4726550,6,24.45,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4726578,22,24.453092,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4726603,5,24.46,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4726619,22,24.460701,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4726724,6,24.48,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4726725,6,24.48,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4726726,7,24.48,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4726804,2,24.5,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4726928,5,24.52,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4726996,7,24.53,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4727069,4,24.54,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4727214,15,24.56667,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4727219,22,24.569228,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4727292,5,24.58,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4727293,2,24.58,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4727294,6,24.58,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4727394,22,24.599729,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4727408,4,24.6,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4727409,2,24.6,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4727439,22,24.603539,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4727487,6,24.61,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4727607,22,24.632152,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4727653,6,24.64,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4727656,5,24.64,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4727710,5,24.65,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4727793,6,24.66,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4727794,2,24.66,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4727795,6,24.66,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4727796,7,24.66,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4727882,22,24.677964,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4727910,5,24.68,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4727965,2,24.69,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4727966,4,24.69,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4728003,22,24.691331,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4728044,22,24.700886,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4728060,22,24.708518,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4728095,6,24.71,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4728096,7,24.71,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4728097,2,24.71,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4728137,22,24.716167,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4728149,22,24.718071,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4728209,4,24.73,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4728347,2,24.75,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4728382,2,24.76,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4728411,22,24.767782,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4728467,22,24.773518,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4728497,5,24.78,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4728520,15,24.78333,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4728563,7,24.79,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4728805,2,24.83,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4728880,5,24.84,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4728993,4,24.86,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4728994,4,24.86,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4729147,5,24.88,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4729260,6,24.9,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4729261,7,24.9,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4729262,4,24.9,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4729295,22,24.90948,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4729387,5,24.92,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4729482,4,24.94,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4729483,5,24.94,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4729643,2,24.97,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4729660,22,24.97087,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4729705,6,24.98,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4729776,2,24.99,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4729926,7,25,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4730609,4,25.01,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4730634,15,25.01666,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4730714,6,25.03,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4730715,2,25.03,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4730716,5,25.03,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4730807,22,25.045771,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4730840,6,25.05,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4730841,4,25.05,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4730910,22,25.06499,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4731054,22,25.089989,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4731080,4,25.09,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4731168,22,25.109228,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4731197,2,25.11,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4731253,5,25.12,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4731287,22,25.128468,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4731327,2,25.13,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4731462,22,25.15349,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4731500,7,25.16,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4731563,2,25.17,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4731620,6,25.18,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4731621,5,25.18,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4731703,22,25.197795,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4731708,22,25.19972,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4731780,5,25.21,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4731781,2,25.21,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4731922,23,25.239422,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4732091,22,25.263342,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4732272,22,25.296152,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4732414,22,25.319312,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4732423,2,25.32,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4732479,2,25.33,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4732643,5,25.36,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4732661,22,25.36181,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4732707,4,25.37,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4732708,5,25.37,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4732709,6,25.37,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4732710,4,25.37,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4732787,22,25.383075,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4732828,2,25.39,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4732829,5,25.39,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4732863,22,25.394671,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4732938,4,25.41,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4732960,22,25.417875,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4732996,5,25.42,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4732997,6,25.42,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4733135,7,25.44,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4733136,6,25.44,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4733137,6,25.44,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4733138,6,25.44,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4733251,2,25.46,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4733315,5,25.47,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4733316,6,25.47,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4733379,5,25.48,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4733380,2,25.48,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4733417,2,25.49,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4733497,4,25.5,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4733534,22,25.504979,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4733540,23,25.507911,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4733592,22,25.512729,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4733598,22,25.51467,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4733639,4,25.52,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4733686,22,25.530173,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4733706,22,25.539857,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4733720,4,25.54,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4733800,23,25.550304,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4733822,22,25.559241,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4733837,2,25.56,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4733865,22,25.563124,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4733887,22,25.567003,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4733888,22,25.567003,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4733964,2,25.58,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4734086,7,25.6,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4734163,22,25.615496,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4734167,22,25.617434,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4734180,2,25.62,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4734349,6,25.65,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4734350,6,25.65,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4734393,22,25.656269,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4734406,2,25.66,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4734449,4,25.67,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4734524,6,25.68,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4734549,15,25.68333,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4734580,2,25.69,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4734648,22,25.702899,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4734652,22,25.706782,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4734683,7,25.71,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4734753,4,25.72,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4734802,6,25.73,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4734834,15,25.73333,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4734860,4,25.74,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4734911,15,25.75,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4734964,5,25.76,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4734965,5,25.76,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4735088,5,25.78,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4735089,7,25.78,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4735090,6,25.78,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4735091,5,25.78,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4735167,22,25.794315,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4735198,2,25.8,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4735364,22,25.831315,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4735371,22,25.833261,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4735410,5,25.84,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4735411,6,25.84,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4735413,4,25.84,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4735437,22,25.841054,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4735604,5,25.87,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4735605,4,25.87,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4735629,22,25.876131,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4735707,7,25.89,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4735708,6,25.89,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4735709,7,25.89,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4735810,7,25.91,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4735844,15,25.91667,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4735885,22,25.928785,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4735905,2,25.93,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4735907,4,25.93,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4735918,22,25.930734,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4736099,23,25.960103,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4736138,6,25.97,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4736139,6,25.97,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4736140,5,25.97,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4736183,23,25.974234,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4736279,2,25.99,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4736422,5,26,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4736464,5,26,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4737104,2,26.02,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4737106,5,26.02,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4737107,4,26.02,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4737108,4,26.02,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4737109,6,26.02,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4737198,15,26.03333,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4737245,6,26.04,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4737248,6,26.04,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4737290,15,26.05,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4737379,22,26.065508,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4737418,6,26.07,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4737419,7,26.07,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4737421,7,26.07,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4737422,7,26.07,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4737423,4,26.07,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4737580,2,26.1,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4737581,6,26.1,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4737582,6,26.1,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4737583,7,26.1,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4737650,4,26.11,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4737651,4,26.11,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4737675,22,26.11638,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4737702,7,26.12,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4737703,7,26.12,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4737734,22,26.124205,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4737787,5,26.14,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4737837,15,26.15,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4737838,6,26.15,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4737865,22,26.153575,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4737954,7,26.17,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4737955,6,26.17,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4738045,2,26.19,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4738046,2,26.19,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4738047,2,26.19,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4738106,6,26.2,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4738107,2,26.2,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4738108,2,26.2,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4738109,6,26.2,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4738139,23,26.20033,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4738144,22,26.204512,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4738322,22,26.237844,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4738341,2,26.24,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4738342,5,26.24,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4738508,2,26.27,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4738621,22,26.29867,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4738649,7,26.3,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4738679,22,26.306519,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4738690,5,26.31,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4738712,15,26.31667,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4738716,22,26.318302,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4738784,6,26.33,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4738826,22,26.332054,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4738827,22,26.332054,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4738859,5,26.34,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4738906,15,26.35,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4739074,6,26.38,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4739075,4,26.38,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4739076,7,26.38,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4739078,4,26.38,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4739110,15,26.38333,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4739189,4,26.4,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4739247,6,26.41,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4739248,5,26.41,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4739249,7,26.41,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4739298,22,26.418537,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4739332,22,26.420501,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4739368,15,26.43333,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4739410,5,26.44,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4739412,5,26.44,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4739413,2,26.44,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4739414,6,26.44,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4739415,2,26.44,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4739416,4,26.44,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4739490,22,26.459856,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4739523,2,26.46,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4739524,7,26.46,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4739525,2,26.46,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4739585,5,26.47,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4739586,2,26.47,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4739587,4,26.47,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4739615,22,26.475601,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4739646,15,26.48333,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4739806,7,26.51,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4739807,6,26.51,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4739808,2,26.51,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4739809,4,26.51,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4739810,5,26.51,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4739862,2,26.52,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4739910,4,26.53,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4739911,5,26.53,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4739926,22,26.53273,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4739959,4,26.54,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4740007,2,26.55,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4740034,22,26.554407,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4740051,2,26.56,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4740052,2,26.56,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4740126,5,26.57,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4740127,6,26.57,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4740213,23,26.581867,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4740261,6,26.59,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4740262,6,26.59,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4740263,5,26.59,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4740310,5,26.6,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4740334,22,26.605686,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4740335,22,26.607662,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4740363,22,26.617527,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4740394,6,26.62,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4740395,6,26.62,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4740396,4,26.62,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4740424,23,26.62426,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4740471,15,26.63333,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4740472,15,26.63333,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4740520,7,26.64,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4740610,5,26.66,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4740629,22,26.660959,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4740661,6,26.67,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4740662,6,26.67,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4740697,22,26.672805,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4740786,22,26.694537,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4740820,2,26.7,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4740822,5,26.7,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4740892,15,26.71667,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4740893,15,26.71667,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4740924,5,26.72,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4740925,7,26.72,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4740926,6,26.72,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4740956,22,26.726159,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4740984,22,26.734068,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4741006,2,26.74,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4741071,7,26.75,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4741072,6,26.75,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4741101,22,26.755816,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4741134,22,26.763729,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4741135,22,26.763735,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4741143,15,26.76667,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4741180,6,26.77,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4741268,2,26.79,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4741269,4,26.79,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4741294,22,26.797374,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4741325,4,26.8,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4741326,7,26.8,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4741387,4,26.81,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4741410,22,26.811219,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4741419,22,26.817162,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4741474,7,26.83,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4741475,7,26.83,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4741595,6,26.85,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4741596,5,26.85,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4741597,6,26.85,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4741598,5,26.85,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4741599,2,26.85,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4741628,22,26.852809,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4741668,22,26.862719,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4741699,5,26.87,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4741701,2,26.87,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4741787,15,26.88333,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4741801,22,26.888482,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4741855,6,26.9,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4741856,15,26.9,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4741857,6,26.9,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4741911,22,26.91029,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4741916,22,26.914251,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4741920,15,26.91667,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4741939,4,26.92,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4741973,22,26.922185,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4741984,22,26.928138,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4742018,6,26.93,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4742082,5,26.94,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4742083,5,26.94,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4742107,22,26.947968,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4742112,5,26.95,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4742130,22,26.955906,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4742164,6,26.96,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4742186,22,26.963845,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4742212,2,26.97,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4742242,22,26.977737,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4742243,22,26.977737,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4742248,22,26.979725,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4742273,6,26.98,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4742476,5,27,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4742881,4,27.01,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4742882,6,27.01,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4742970,22,27.029376,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4743005,6,27.03,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4743006,4,27.03,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4743007,6,27.03,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4743075,5,27.05,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4743131,4,27.06,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4743132,6,27.06,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4743133,7,27.06,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4743134,7,27.06,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4743135,5,27.06,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4743181,22,27.063155,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4743190,22,27.067126,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4743233,5,27.08,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4743255,22,27.083033,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4743396,5,27.11,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4743447,5,27.12,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4743448,2,27.12,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4743489,4,27.13,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4743554,7,27.14,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4743555,4,27.14,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4743556,6,27.14,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4743590,22,27.140723,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4743658,23,27.161238,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4743672,22,27.168591,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4743710,6,27.17,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4743764,4,27.18,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4743816,7,27.19,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4743871,5,27.2,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4743911,2,27.21,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4743970,6,27.22,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4744017,2,27.23,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4744037,15,27.23333,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4744075,6,27.24,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4744076,7,27.24,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4744137,15,27.25,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4744179,5,27.26,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4744330,5,27.29,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4744381,4,27.3,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4744439,2,27.31,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4744440,5,27.31,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4744496,2,27.32,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4744538,4,27.33,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4744571,5,27.34,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4744572,2,27.34,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4744573,2,27.34,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4744694,4,27.36,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4744743,6,27.37,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4744849,22,27.39798,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4744850,22,27.39798,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4744874,6,27.4,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4744875,2,27.4,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4744876,4,27.4,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4744877,7,27.4,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4744970,15,27.41667,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4745039,4,27.43,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4745040,7,27.43,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4745041,5,27.43,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4745042,7,27.43,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4745074,15,27.43333,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4745163,4,27.45,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4745164,4,27.45,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4745165,6,27.45,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4745166,2,27.45,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4745196,5,27.46,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4745214,15,27.46667,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4745215,15,27.46667,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4745232,4,27.47,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4745375,4,27.5,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4745376,15,27.5,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4745377,6,27.5,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4745433,5,27.51,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4745471,5,27.52,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4745536,4,27.53,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4745578,5,27.54,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4745590,22,27.540032,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4745594,22,27.542033,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4745674,4,27.56,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4745735,5,27.57,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4745764,2,27.58,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4745765,5,27.58,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4745766,2,27.58,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4745767,4,27.58,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4745812,15,27.58333,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4745823,23,27.585168,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4745889,5,27.6,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4745941,5,27.61,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4745997,2,27.62,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4746046,5,27.63,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4746081,22,27.636242,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4746088,5,27.64,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4746171,22,27.650285,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4746186,22,27.658307,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4746268,2,27.67,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4746307,5,27.68,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4746308,2,27.68,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4746325,15,27.68333,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4746326,15,27.68333,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4746339,22,27.688415,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4746416,15,27.7,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4746457,2,27.71,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4746458,6,27.71,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4746459,6,27.71,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4746509,2,27.72,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4746510,2,27.72,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4746511,5,27.72,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4746512,2,27.72,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4746524,22,27.720544,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4746576,22,27.730591,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4746608,6,27.74,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4746669,15,27.75,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4746725,7,27.76,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4746726,4,27.76,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4746760,15,27.76666,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4746764,22,27.766762,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4746811,4,27.78,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4746847,22,27.788872,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4746928,5,27.8,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4746958,5,27.81,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4746985,22,27.819042,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4747019,6,27.82,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4747020,6,27.82,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4747092,22,27.839165,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4747124,4,27.84,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4747209,4,27.86,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4747267,2,27.87,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4747281,22,27.87338,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4747300,4,27.88,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4747301,2,27.88,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4747302,2,27.88,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4747372,5,27.9,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4747373,7,27.9,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4747374,6,27.9,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4747375,2,27.9,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4747415,22,27.90762,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4747440,2,27.91,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4747506,5,27.92,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4747509,7,27.92,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4747567,2,27.93,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4747568,2,27.93,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4747649,7,27.95,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4747688,22,27.955982,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4747709,2,27.96,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4747710,4,27.96,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4747797,2,27.98,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4747833,4,27.99,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4747834,5,27.99,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4748586,4,28.01,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4748587,4,28.01,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4748634,23,28.023229,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4748749,22,28.040711,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4748754,22,28.042722,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4748755,22,28.042732,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4748778,4,28.05,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4748850,22,28.064932,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4748885,22,28.073012,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4748925,6,28.08,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4748926,6,28.08,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4748957,22,28.08312,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4749171,6,28.13,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4749172,7,28.13,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4749187,22,28.131609,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4749221,5,28.14,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4749255,2,28.15,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4749266,22,28.155875,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4749271,22,28.15992,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4749336,23,28.164539,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4749358,4,28.17,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4749407,6,28.18,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4749408,2,28.18,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4749409,6,28.18,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4749537,4,28.21,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4749538,5,28.21,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4749539,6,28.21,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4749633,5,28.23,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4749659,22,28.232767,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4749660,15,28.23334,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4749663,22,28.234789,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4749714,15,28.25,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4749830,4,28.27,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4749831,4,28.27,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4749879,15,28.28333,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4749885,22,28.289479,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4749945,22,28.299611,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4749991,5,28.31,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4749992,6,28.31,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4750008,22,28.31178,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4750018,15,28.31667,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4750029,23,28.31998,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4750038,2,28.32,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4750057,22,28.321915,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4750170,22,28.342185,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4750199,4,28.35,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4750200,4,28.35,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4750218,22,28.354361,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4750254,5,28.36,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4750314,22,28.370588,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4750322,23,28.376504,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4750325,22,28.376673,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4750346,5,28.38,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4750487,22,28.413213,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4750490,15,28.41667,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4750519,2,28.42,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4750595,22,28.433512,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4750628,7,28.44,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4750646,22,28.441642,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4750663,2,28.45,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4750679,22,28.457891,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4750695,2,28.46,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4750717,23,28.46129,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4750724,22,28.463989,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4750725,15,28.46667,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4750756,6,28.47,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4750757,6,28.47,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4750793,5,28.48,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4750794,4,28.48,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4750821,22,28.484303,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4750966,15,28.51667,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4751051,5,28.53,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4751077,2,28.54,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4751124,2,28.55,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4751158,22,28.557514,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4751202,22,28.561584,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4751203,22,28.561584,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4751243,6,28.57,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4751321,5,28.59,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4751374,6,28.6,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4751375,7,28.6,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4751376,7,28.6,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4751377,7,28.6,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4751398,22,28.600256,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4751421,2,28.61,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4751422,4,28.61,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4751423,2,28.61,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4751548,15,28.63333,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4751549,15,28.63333,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4751623,7,28.65,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4751694,22,28.665441,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4751714,5,28.67,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4751727,23,28.673255,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4751730,22,28.673601,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4751773,6,28.68,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4751864,15,28.7,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4751865,15,28.7,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4751929,22,28.718461,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4751959,22,28.722536,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4751962,22,28.724573,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4751982,5,28.73,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4751983,7,28.73,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4751984,6,28.73,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4752065,15,28.75,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4752296,22,28.802142,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4752300,22,28.808273,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4752319,7,28.81,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4752383,22,28.822571,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4752403,22,28.828699,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4752431,7,28.83,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4752507,4,28.85,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4752508,4,28.85,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4752609,5,28.87,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4752658,22,28.883886,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4752693,4,28.89,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4752694,6,28.89,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4752695,6,28.89,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4752696,2,28.89,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4752770,22,28.904336,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4752884,22,28.924791,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4752947,6,28.94,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4752993,4,28.95,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4753051,6,28.96,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4753053,2,28.96,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4753082,5,28.97,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4753083,5,28.97,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4753109,4,28.98,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4753133,15,28.98333,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4753169,6,28.99,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4753170,7,28.99,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4753171,2,28.99,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4753172,6,28.99,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4753439,15,29,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4753940,22,29.002589,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4753957,5,29.01,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4754005,7,29.02,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4754063,22,29.037425,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4754093,7,29.04,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4754118,22,29.041525,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4754133,5,29.05,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4754172,4,29.06,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4754173,2,29.06,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4754190,22,29.062022,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4754226,6,29.07,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4754227,6,29.07,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4754228,7,29.07,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4754258,22,29.072279,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4754279,5,29.08,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4754330,6,29.09,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4754354,22,29.090737,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4754356,22,29.09484,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4754359,22,29.096889,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4754433,22,29.117404,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4754436,22,29.119459,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4754453,5,29.12,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4754522,5,29.13,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4754546,22,29.139986,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4754551,2,29.14,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4754586,4,29.15,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4754587,6,29.15,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4754624,22,29.150244,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4754694,5,29.17,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4754695,4,29.17,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4754723,22,29.178996,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4754741,15,29.18333,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4754745,22,29.185156,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4754764,5,29.19,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4754765,2,29.19,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4754827,6,29.2,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4754828,7,29.2,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4754878,4,29.21,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4754916,2,29.22,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4754917,6,29.22,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4754918,6,29.22,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4754919,4,29.22,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4754989,5,29.24,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4754990,4,29.24,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4755051,4,29.25,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4755105,4,29.26,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4755118,22,29.263258,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4755132,5,29.27,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4755143,22,29.27354,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4755168,6,29.28,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4755169,5,29.28,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4755200,15,29.28333,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4755323,22,29.316745,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4755326,22,29.318806,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4755376,7,29.33,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4755377,6,29.33,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4755378,7,29.33,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4755379,6,29.33,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4755380,6,29.33,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4755381,6,29.33,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4755421,15,29.33333,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4755464,2,29.35,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4755465,2,29.35,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4755525,4,29.36,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4755526,5,29.36,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4755576,2,29.37,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4755592,22,29.376457,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4755626,6,29.38,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4755647,22,29.380578,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4755669,2,29.39,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4755670,4,29.39,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4755751,2,29.41,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4755752,2,29.41,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4755851,4,29.43,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4755852,5,29.43,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4755913,22,29.444466,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4755943,5,29.45,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4755944,5,29.45,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4755991,5,29.46,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4755992,6,29.46,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4755993,6,29.46,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4756050,4,29.47,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4756076,22,29.473345,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4756079,22,29.475405,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4756093,23,29.478722,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4756131,22,29.48778,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4756153,6,29.49,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4756154,6,29.49,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4756194,23,29.492853,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4756273,6,29.51,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4756295,15,29.51666,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4756320,4,29.52,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4756361,2,29.53,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4756387,23,29.535246,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4756416,7,29.54,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4756473,4,29.55,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4756497,22,29.555907,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4756523,7,29.56,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4756524,7,29.56,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4756544,22,29.560043,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4756591,5,29.58,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4756609,15,29.58333,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4756613,22,29.584833,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4756877,2,29.64,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4756912,4,29.65,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4756913,15,29.65,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4756938,22,29.657193,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4756943,2,29.66,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4756969,15,29.66667,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4756970,15,29.66667,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4756994,5,29.67,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4756995,4,29.67,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4756996,6,29.67,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4757044,5,29.68,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4757045,2,29.68,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4757057,15,29.68333,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4757062,22,29.686152,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4757089,7,29.69,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4757090,6,29.69,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4757106,22,29.692364,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4757120,2,29.7,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4757134,22,29.700644,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4757218,2,29.72,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4757221,5,29.72,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4757252,22,29.727552,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4757273,2,29.73,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4757351,7,29.75,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4757413,15,29.76666,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4757445,4,29.77,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4757486,22,29.777267,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4757530,4,29.79,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4757548,22,29.793843,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4757580,2,29.8,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4757581,5,29.8,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4757582,7,29.8,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4757584,2,29.8,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4757629,2,29.81,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4757690,7,29.82,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4757691,5,29.82,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4757692,7,29.82,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4757737,23,29.831997,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4757742,22,29.839463,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4757754,5,29.84,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4757855,4,29.86,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4757956,22,29.88095,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4757988,4,29.89,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4758035,7,29.9,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4758036,2,29.9,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4758037,5,29.9,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4758038,7,29.9,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4758161,4,29.93,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4758252,6,29.95,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4758253,7,29.95,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4758254,7,29.95,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4758297,22,29.957781,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4758401,6,29.98,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4758402,4,29.98,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4758403,2,29.98,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4758404,7,29.98,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4758445,2,29.99,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4758467,22,29.993106,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4759065,6,30.01,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4759198,22,30.030526,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4759261,5,30.05,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4759262,5,30.05,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4759263,4,30.05,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4759300,5,30.06,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4759301,6,30.06,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4759330,22,30.065894,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4759331,15,30.06667,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4759344,4,30.07,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4759401,6,30.08,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4759459,22,30.092951,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4759478,5,30.1,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4759479,2,30.1,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4759529,7,30.11,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4759530,4,30.11,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4759600,15,30.13333,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4759702,6,30.16,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4759719,22,30.163763,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4759768,5,30.18,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4759769,5,30.18,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4759849,5,30.2,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4759923,5,30.22,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4759924,4,30.22,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4759925,5,30.22,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4759963,2,30.23,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4759964,2,30.23,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4760015,4,30.24,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4760016,2,30.24,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4760017,7,30.24,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4760052,22,30.249255,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4760062,4,30.25,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4760092,2,30.26,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4760139,2,30.27,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4760182,5,30.28,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4760193,22,30.280554,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4760236,6,30.29,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4760291,4,30.31,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4760304,22,30.311872,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4760332,6,30.32,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4760333,4,30.32,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4760416,2,30.34,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4760432,22,30.349471,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4760465,15,30.35,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4760466,6,30.35,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4760467,5,30.35,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4760468,4,30.35,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4760490,22,30.35365,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4760509,4,30.36,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4760510,5,30.36,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4760524,22,30.364097,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4760525,22,30.364097,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4760526,22,30.364097,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4760528,22,30.36619,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4760550,7,30.37,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4760551,2,30.37,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4760600,4,30.38,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4760653,23,30.397237,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4760670,6,30.4,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4760672,6,30.4,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4760673,6,30.4,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4760706,4,30.41,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4760725,23,30.411368,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4760764,6,30.42,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4760765,5,30.42,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4760766,2,30.42,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4760797,2,30.43,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4760841,22,30.443555,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4760866,2,30.45,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4760867,7,30.45,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4760868,4,30.45,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4760869,15,30.45,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4760901,23,30.453761,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4760942,22,30.462382,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4761006,6,30.48,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4761024,22,30.481224,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4761104,7,30.5,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4761182,2,30.52,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4761183,2,30.52,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4761202,23,30.524416,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4761263,2,30.54,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4761309,6,30.55,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4761432,6,30.58,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4761433,6,30.58,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4761434,6,30.58,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4761506,15,30.6,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4761552,4,30.61,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4761588,22,30.615321,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4761589,15,30.61667,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4761600,5,30.62,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4761601,4,30.62,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4761613,23,30.623333,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4761641,7,30.63,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4761683,2,30.64,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4761736,22,30.655184,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4761766,4,30.66,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4761805,4,30.67,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4761858,4,30.68,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4761894,22,30.688767,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4761902,2,30.69,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4761903,5,30.69,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4761964,22,30.709763,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4761976,7,30.71,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4761977,6,30.71,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4762021,5,30.72,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4762022,5,30.72,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4762023,4,30.72,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4762059,15,30.73333,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4762092,6,30.74,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4762127,15,30.75,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4762128,2,30.75,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4762187,7,30.76,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4762188,4,30.76,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4762213,5,30.77,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4762233,2,30.78,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4762272,7,30.79,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4762273,6,30.79,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4762307,23,30.792905,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4762356,5,30.81,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4762400,2,30.82,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4762401,2,30.82,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4762426,23,30.821167,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4762495,6,30.84,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4762526,2,30.85,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4762527,4,30.85,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4762552,2,30.86,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4762604,2,30.87,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4762605,2,30.87,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4762607,5,30.87,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4762668,22,30.886391,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4762669,22,30.888499,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4762701,6,30.89,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4762716,23,30.891822,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4762737,22,30.903238,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4762757,5,30.91,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4762775,22,30.915877,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4762801,4,30.92,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4762825,23,30.920084,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4762826,23,30.920084,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4762845,5,30.93,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4762847,4,30.93,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4762927,23,30.948346,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4762931,2,30.95,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4762997,6,30.97,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4763084,23,30.990739,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4763217,15,31,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4763218,6,31,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4763219,6,31,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4763220,6,31,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4763231,2,31,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4763798,2,31.01,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4763849,4,31.02,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4763948,22,31.048693,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4763979,15,31.05,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4764106,22,31.088773,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4764124,2,31.09,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4764125,2,31.09,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4764194,22,31.107778,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4764195,22,31.107778,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4764241,23,31.117918,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4764256,2,31.12,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4764257,5,31.12,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4764270,22,31.122612,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4764304,7,31.13,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4764340,2,31.14,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4764357,22,31.143714,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4764380,4,31.15,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4764413,2,31.16,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4764428,22,31.162733,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4764447,4,31.17,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4764456,22,31.17329,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4764488,7,31.18,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4764513,22,31.188082,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4764518,23,31.188573,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4764683,5,31.23,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4764684,6,31.23,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4764699,22,31.230386,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4764758,22,31.255759,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4764798,4,31.26,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4764799,4,31.26,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4764800,6,31.26,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4764863,22,31.276955,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4764890,6,31.28,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4764920,22,31.287528,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4764937,22,31.291769,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4764955,15,31.3,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4764999,4,31.31,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4765029,23,31.315752,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4765100,7,31.34,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4765187,7,31.36,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4765188,7,31.36,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4765217,22,31.363788,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4765247,22,31.370184,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4765289,22,31.382866,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4765291,22,31.385017,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4765327,22,31.391359,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4765345,2,31.4,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4765346,5,31.4,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4765369,23,31.400538,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4765420,22,31.410444,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4765431,22,31.414692,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4765460,23,31.4288,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4765487,22,31.431631,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4765488,22,31.431631,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4765535,22,31.442282,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4765542,23,31.442931,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4765559,5,31.45,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4765573,22,31.450726,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4765603,22,31.469827,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4765623,6,31.47,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4765624,4,31.47,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4765626,4,31.47,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4765652,22,31.47198,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4765672,4,31.48,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4765688,22,31.484736,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4765695,23,31.485324,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4765723,7,31.49,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4765724,5,31.49,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4765725,7,31.49,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4765756,22,31.497438,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4765804,5,31.51,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4765857,7,31.52,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4765882,22,31.527159,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4765944,2,31.54,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4765965,23,31.541848,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4765982,22,31.550536,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4766022,22,31.561204,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4766089,5,31.58,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4766090,4,31.58,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4766168,7,31.6,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4766207,4,31.61,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4766251,4,31.62,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4766252,6,31.62,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4766253,4,31.62,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4766254,2,31.62,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4766255,4,31.62,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4766354,6,31.65,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4766386,23,31.654896,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4766387,23,31.654896,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4766462,7,31.67,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4766508,23,31.683158,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4766523,2,31.69,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4766524,5,31.69,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4766541,22,31.699428,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4766634,15,31.71667,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4766659,22,31.725021,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4766675,22,31.729288,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4766700,5,31.73,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4766701,6,31.73,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4766702,5,31.73,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4766775,7,31.75,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4766776,4,31.75,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4766829,15,31.76667,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4766837,23,31.767944,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4766840,22,31.769748,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4766850,5,31.77,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4766957,22,31.793202,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4766997,7,31.8,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4766998,15,31.8,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4766999,6,31.8,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4767019,22,31.803851,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4767040,22,31.814501,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4767146,4,31.84,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4767147,4,31.84,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4767170,2,31.85,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4767194,22,31.857173,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4767212,5,31.86,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4767269,4,31.87,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4767334,2,31.89,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4767344,22,31.891317,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4767368,5,31.9,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4767395,22,31.906312,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4767407,23,31.909254,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4767520,22,31.931922,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4767545,7,31.94,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4767572,22,31.948982,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4767586,5,31.95,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4767635,6,31.96,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4767683,5,31.97,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4767684,4,31.97,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4767722,2,31.98,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4767769,6,31.99,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4767770,6,31.99,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4768435,22,32.015258,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4768458,23,32.022302,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4768464,22,32.028109,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4768473,5,32.03,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4768491,22,32.030223,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4768521,7,32.04,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4768522,7,32.04,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4768554,4,32.05,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4768595,22,32.064448,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4768659,22,32.073021,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4768772,5,32.1,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4768786,23,32.107088,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4768860,2,32.13,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4768866,15,32.13334,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4768901,7,32.14,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4768955,22,32.154399,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4768967,2,32.16,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4769000,22,32.167273,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4769028,4,32.17,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4769029,4,32.17,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4769129,7,32.2,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4769295,22,32.248755,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4769316,7,32.25,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4769364,22,32.261591,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4769373,15,32.26667,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4769397,5,32.27,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4769398,7,32.27,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4769423,2,32.28,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4769504,5,32.3,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4769505,7,32.3,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4769507,6,32.3,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4769544,2,32.31,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4769545,2,32.31,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4769563,22,32.311001,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4769585,5,32.32,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4769586,5,32.32,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4769636,7,32.33,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4769684,5,32.34,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4769685,4,32.34,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4769718,22,32.349602,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4769736,7,32.35,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4769801,2,32.37,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4769882,22,32.386155,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4769904,4,32.39,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4769922,22,32.399071,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4769982,22,32.407682,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4769998,15,32.41667,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4770012,5,32.42,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4770026,22,32.424852,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4770077,22,32.435592,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4770091,5,32.44,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4770092,4,32.44,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4770093,5,32.44,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4770106,22,32.444208,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4770120,22,32.448516,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4770121,15,32.45,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4770122,5,32.45,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4770167,6,32.46,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4770168,4,32.46,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4770169,7,32.46,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4770170,7,32.46,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4770202,23,32.460363,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4770205,15,32.46666,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4770239,22,32.474314,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4770264,7,32.48,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4770265,5,32.48,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4770266,4,32.48,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4770297,22,32.487245,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4770326,22,32.495866,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4770334,4,32.5,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4770335,5,32.5,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4770378,2,32.51,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4770431,22,32.528122,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4770470,22,32.530307,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4770494,22,32.54969,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4770503,5,32.55,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4770666,5,32.59,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4770667,6,32.59,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4770668,7,32.59,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4770669,7,32.59,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4770671,4,32.59,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4770689,22,32.5966,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4770736,2,32.61,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4770791,22,32.625086,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4770819,4,32.63,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4770864,7,32.64,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4770943,2,32.66,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4770944,6,32.66,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4771035,15,32.68333,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4771046,23,32.686459,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4771113,5,32.7,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4771115,4,32.7,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4771182,4,32.72,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4771219,4,32.73,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4771220,4,32.73,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4771313,2,32.76,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4771354,2,32.77,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4771355,2,32.77,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4771399,2,32.78,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4771400,4,32.78,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4771459,6,32.8,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4771543,7,32.82,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4771595,5,32.83,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4771610,15,32.83333,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4771668,5,32.85,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4771695,23,32.856031,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4771704,4,32.86,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4771739,4,32.87,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4771740,6,32.87,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4771756,23,32.870162,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4771820,5,32.9,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4771821,7,32.9,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4771937,5,32.93,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4771971,4,32.94,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4771988,22,32.942745,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4771994,22,32.947025,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4772075,22,32.964375,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4772093,22,32.979531,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4772100,6,32.98,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4772101,7,32.98,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4772132,15,32.98333,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4772808,4,33.03,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4772842,23,33.039734,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4772873,15,33.05,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4772874,2,33.05,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4772915,7,33.06,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4772950,4,33.07,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4772982,4,33.08,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4773040,5,33.1,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4773099,15,33.11667,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4773160,15,33.13334,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4773172,23,33.138651,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4773246,23,33.166913,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4773311,6,33.19,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4773312,4,33.19,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4773387,7,33.21,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4773388,7,33.21,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4773389,2,33.21,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4773405,22,33.216057,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4773490,7,33.24,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4773602,2,33.27,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4773656,4,33.29,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4773657,5,33.29,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4773695,4,33.3,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4773717,23,33.308223,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4773777,5,33.32,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4773778,2,33.32,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4773814,4,33.33,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4773949,23,33.364747,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4773950,23,33.364747,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4773970,7,33.37,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4773971,4,33.37,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4774023,15,33.38334,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4774050,2,33.39,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4774051,7,33.39,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4774052,7,33.39,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4774053,4,33.39,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4774088,2,33.4,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4774103,23,33.40714,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4774111,4,33.41,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4774204,15,33.43333,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4774211,23,33.435402,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4774254,5,33.45,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4774400,23,33.491926,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4774426,7,33.5,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4774467,4,33.51,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4774514,7,33.52,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4774516,7,33.52,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4774586,5,33.54,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4774587,4,33.54,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4774630,4,33.55,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4774695,2,33.57,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4774733,7,33.58,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4774759,15,33.58333,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4774788,23,33.590843,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4774822,7,33.6,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4774851,2,33.61,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4774852,5,33.61,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4774874,23,33.619105,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4774886,2,33.62,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4774917,7,33.63,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4774918,4,33.63,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4774919,7,33.63,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4774944,5,33.64,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4774945,4,33.64,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4774946,5,33.64,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4774993,5,33.66,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4774994,4,33.66,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4774995,5,33.66,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4774996,5,33.66,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4775065,7,33.68,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4775138,7,33.71,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4775139,2,33.71,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4775166,4,33.72,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4775279,4,33.76,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4775317,5,33.77,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4775380,2,33.79,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4775381,4,33.79,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4775415,5,33.8,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4775480,4,33.82,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4775536,5,33.84,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4775537,4,33.84,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4775589,4,33.85,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4775634,5,33.86,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4775721,2,33.89,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4775722,4,33.89,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4775827,6,33.92,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4775923,5,33.95,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4775924,5,33.95,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4776018,2,33.98,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4776019,2,33.98,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4776032,23,33.986511,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4776870,15,34.05,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4776902,2,34.06,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4776937,2,34.07,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4776994,23,34.085428,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4777005,2,34.09,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4777049,7,34.1,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4777178,5,34.14,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4777236,23,34.156083,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4777322,2,34.19,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4777341,23,34.198476,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4777361,4,34.2,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4777417,4,34.22,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4777463,5,34.23,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4777499,2,34.24,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4777537,4,34.25,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4777538,7,34.25,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4777575,2,34.26,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4777605,2,34.27,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4777648,2,34.28,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4777672,23,34.283262,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4777673,23,34.283262,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4777745,6,34.31,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4777746,5,34.31,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4777835,7,34.33,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4777836,4,34.33,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4777877,22,34.341135,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4777898,5,34.35,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4777926,4,34.36,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4777928,4,34.36,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4777929,2,34.36,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4777962,5,34.37,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4778083,2,34.41,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4778084,6,34.41,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4778085,2,34.41,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4778125,5,34.42,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4778157,23,34.438703,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4778176,5,34.44,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4778177,6,34.44,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4778178,5,34.44,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4778235,4,34.46,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4778270,23,34.466965,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4778281,2,34.47,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4778345,5,34.49,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4778346,7,34.49,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4778347,5,34.49,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4778379,4,34.5,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4778401,23,34.509358,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4778474,23,34.523489,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4778490,4,34.53,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4778524,5,34.54,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4778575,23,34.551751,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4778576,23,34.551751,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4778599,23,34.565882,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4778622,2,34.57,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4778651,2,34.58,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4778726,2,34.61,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4778796,4,34.63,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4778804,15,34.63334,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4778882,5,34.66,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4778883,2,34.66,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4778915,2,34.67,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4778916,7,34.67,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4778946,23,34.67893,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4778999,7,34.7,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4779037,2,34.71,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4779038,4,34.71,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4779072,2,34.72,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4779115,2,34.74,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4779147,7,34.75,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4779172,22,34.756745,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4779216,2,34.77,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4779340,5,34.81,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4779364,2,34.82,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4779397,6,34.83,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4779398,7,34.83,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4779399,4,34.83,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4779451,7,34.85,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4779452,7,34.85,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4779536,5,34.88,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4779624,7,34.91,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4779625,7,34.91,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4779645,15,34.91667,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4779697,7,34.93,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4779722,23,34.933288,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4779787,4,34.96,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4779813,4,34.97,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4779814,4,34.97,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4779840,6,34.98,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4779874,23,34.989812,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4780186,5,35,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4780922,7,35.01,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4780923,7,35.01,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4780924,7,35.01,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4781080,23,35.060467,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4781113,4,35.08,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4781248,5,35.12,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4781276,4,35.13,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4781289,23,35.131122,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4781313,4,35.14,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4781371,23,35.159384,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4781397,2,35.17,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4781528,4,35.21,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4781578,7,35.22,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4781579,6,35.22,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4781580,7,35.22,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4781619,23,35.230039,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4781647,7,35.24,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4781711,15,35.26667,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4781727,7,35.27,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4781748,4,35.28,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4781794,2,35.3,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4781795,5,35.3,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4781796,5,35.3,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4781828,5,35.31,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4781839,23,35.314825,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4781865,7,35.32,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4781866,4,35.32,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4781909,2,35.34,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4781943,2,35.35,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4781992,7,35.37,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4782054,5,35.39,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4782120,5,35.41,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4782121,2,35.41,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4782122,5,35.41,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4782150,23,35.413742,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4782154,22,35.415441,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4782195,7,35.43,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4782196,7,35.43,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4782197,7,35.43,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4782309,23,35.470266,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4782388,23,35.498528,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4782394,5,35.5,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4782416,5,35.51,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4782474,23,35.52679,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4782523,2,35.54,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4782543,2,35.55,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4782576,7,35.56,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4782577,7,35.56,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4782601,5,35.57,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4782621,7,35.58,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4782669,22,35.598852,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4782706,2,35.61,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4782771,23,35.639838,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4782782,4,35.64,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4782831,7,35.66,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4782832,4,35.66,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4782949,15,35.7,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4782976,7,35.71,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4782997,23,35.710493,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4783008,2,35.72,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4783040,23,35.738755,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4783136,2,35.77,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4783161,4,35.78,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4783197,7,35.79,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4783198,5,35.79,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4783199,7,35.79,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4783200,7,35.79,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4783221,23,35.795279,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4783233,5,35.8,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4783249,2,35.81,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4783282,5,35.82,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4783338,23,35.837672,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4783409,4,35.86,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4783437,7,35.87,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4783499,7,35.9,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4783500,7,35.9,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4783529,4,35.91,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4783530,4,35.91,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4783566,2,35.92,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4783602,5,35.93,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4783645,6,35.95,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4783646,4,35.95,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4783674,5,35.96,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4783703,7,35.97,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4785006,5,36.01,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4785096,5,36.04,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4785132,5,36.05,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4785170,22,36.063809,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4785182,4,36.07,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4785232,15,36.08334,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4785272,2,36.1,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4785273,7,36.1,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4785274,4,36.1,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4785309,2,36.11,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4785330,4,36.12,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4785400,2,36.15,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4785430,5,36.16,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4785431,7,36.16,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4785455,22,36.160705,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4785496,7,36.18,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4785518,5,36.19,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4785536,23,36.190947,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4785537,23,36.190947,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4785586,5,36.21,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4785604,23,36.219209,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4785616,5,36.22,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4785617,2,36.22,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4785637,5,36.23,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4785638,5,36.23,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4785684,23,36.247471,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4785739,23,36.261602,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4785821,4,36.3,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4785852,6,36.31,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4785853,4,36.31,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4786138,7,36.42,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4786170,23,36.431174,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4786266,2,36.47,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4786267,5,36.47,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4786333,5,36.5,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4786334,7,36.5,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4786581,22,36.596986,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4786631,23,36.614877,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4786678,5,36.63,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4786725,7,36.65,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4786726,7,36.65,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4786785,4,36.68,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4786834,23,36.699663,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4786902,4,36.72,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4787003,6,36.76,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4787004,4,36.76,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4787131,5,36.81,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4787150,3,36.8146,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4787151,22,36.814886,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4787158,4,36.82,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4787247,23,36.855104,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4787339,23,36.883366,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4787373,22,36.892181,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4787563,2,36.96,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4787564,7,36.96,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4787620,23,36.982283,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4787621,23,36.982283,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4787622,23,36.982283,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4788298,7,37.02,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4788299,5,37.02,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4788354,7,37.04,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4788371,2,37.05,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4788390,23,37.052938,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4788419,22,37.060674,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4788425,23,37.067069,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4788441,4,37.07,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4788442,7,37.07,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4788443,2,37.07,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4788539,4,37.11,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4788561,4,37.12,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4788584,23,37.123593,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4788595,5,37.13,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4788610,23,37.137724,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4788637,7,37.15,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4788658,2,37.16,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4788688,5,37.17,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4788751,23,37.194248,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4788752,23,37.194248,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4788771,5,37.2,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4788772,7,37.2,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4788836,22,37.229502,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4788940,2,37.28,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4789044,23,37.321427,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4789116,7,37.35,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4789117,7,37.35,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4789198,2,37.38,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4789226,4,37.39,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4789408,23,37.462737,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4789541,7,37.51,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4789542,2,37.51,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4789678,7,37.56,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4789714,2,37.57,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4789742,23,37.589916,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4789758,4,37.59,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4789820,23,37.618178,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4789891,7,37.64,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4789920,5,37.65,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4789957,5,37.67,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4789988,5,37.68,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4790059,23,37.702964,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4790060,23,37.702964,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',5,100),(4790081,23,37.717095,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4790126,4,37.73,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4790127,5,37.73,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4790163,23,37.745357,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4790178,7,37.75,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4790222,2,37.77,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4790260,4,37.78,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4790319,23,37.801881,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4790365,7,37.82,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4790386,23,37.830143,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4790400,4,37.84,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4790451,23,37.858405,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4790546,2,37.9,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4790547,2,37.9,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4790621,7,37.93,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4790666,7,37.95,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4790730,7,37.98,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4791148,2,38,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4791515,7,38.01,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4791516,7,38.01,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4791553,23,38.027977,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4791603,2,38.05,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4791632,2,38.06,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4791689,7,38.08,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4791823,7,38.14,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4791902,4,38.18,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4791942,23,38.197549,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4791943,23,38.197549,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4791997,23,38.225811,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4792049,5,38.25,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4792050,4,38.25,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4792061,23,38.254073,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4792105,7,38.27,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4792200,2,38.32,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4792201,2,38.32,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4792220,4,38.33,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4792241,5,38.34,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4792321,5,38.38,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4792333,23,38.381252,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4792354,23,38.395383,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4792355,23,38.395383,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4792363,7,38.4,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4792376,23,38.409514,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4792401,7,38.42,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4792424,15,38.43333,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4792444,5,38.44,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4792531,4,38.47,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4792532,7,38.47,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4792568,23,38.4943,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',5,100),(4792582,7,38.5,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4792583,7,38.5,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4792685,23,38.536693,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4792720,7,38.55,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4792721,2,38.55,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4792758,5,38.57,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4792778,23,38.579086,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',5,100),(4793026,7,38.68,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4793100,6,38.71,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4793312,5,38.79,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4793313,7,38.79,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4793553,7,38.89,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4793597,2,38.91,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4793661,7,38.94,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4793732,7,38.97,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4793733,7,38.97,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4795160,23,39.003016,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4795161,23,39.003016,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4795265,23,39.045409,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4795266,23,39.045409,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4795309,23,39.05954,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4795509,23,39.130195,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4795539,5,39.15,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4795600,23,39.172588,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4795616,7,39.18,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4795645,2,39.19,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4795666,5,39.2,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4795667,5,39.2,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4795689,23,39.20085,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4795782,15,39.25,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4795860,23,39.285636,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4795931,23,39.313898,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4796063,23,39.370422,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4796088,23,39.384553,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4796147,4,39.41,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4796225,6,39.44,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4796260,5,39.45,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4796281,7,39.46,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4796404,4,39.52,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4796492,4,39.56,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4796511,7,39.57,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4796723,7,39.67,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4796742,2,39.68,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4796755,23,39.681304,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4796870,23,39.737828,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4797005,5,39.8,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4797072,7,39.83,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4797121,23,39.850876,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4797135,4,39.86,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4797207,5,39.89,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4797257,15,39.91667,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4797267,4,39.92,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4797268,4,39.92,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4797323,15,39.95,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4797344,7,39.96,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4797345,7,39.96,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4797378,4,39.97,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4797388,23,39.978055,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4798146,2,40.03,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4798192,23,40.04871,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4798200,4,40.05,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4798226,7,40.06,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4798360,5,40.12,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4798361,2,40.12,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4798416,7,40.14,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4798510,2,40.18,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4798553,23,40.204151,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4798579,23,40.218282,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4798639,7,40.25,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4798688,6,40.27,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4798689,7,40.27,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4798874,7,40.35,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4798925,7,40.38,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4798959,7,40.4,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4799072,7,40.45,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4799089,23,40.458509,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4799167,23,40.500902,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',5,100),(4799205,3,40.5169,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4799282,23,40.557426,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4799372,23,40.585688,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4799453,2,40.63,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4799590,7,40.69,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4799743,23,40.769391,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4799785,7,40.79,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4799843,23,40.811784,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4799854,7,40.82,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4799911,23,40.840046,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4800061,7,40.92,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4800091,23,40.938963,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4800114,7,40.95,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4800183,23,40.981356,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4800201,23,40.995487,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4801139,7,41.05,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4801242,23,41.108535,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4801305,15,41.13334,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4801376,23,41.165059,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4801481,7,41.21,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4801532,7,41.24,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4801552,23,41.249845,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4801575,7,41.26,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4801655,23,41.292238,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4801740,7,41.34,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4801910,7,41.42,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4801973,23,41.447679,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4802005,7,41.47,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4802200,7,41.57,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4802201,7,41.57,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4802256,7,41.6,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4802257,7,41.6,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4802343,23,41.631382,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4802375,2,41.65,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4802444,23,41.687906,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4802537,15,41.73333,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4802581,7,41.76,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4802614,23,41.772692,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',5,100),(4802627,7,41.78,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4802830,7,41.89,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4802912,23,41.928133,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',5,100),(4802936,7,41.94,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',5,100),(4802937,7,41.94,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4803921,23,42.083574,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4803984,7,42.12,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4804135,7,42.2,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4804202,23,42.239015,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4804263,23,42.267277,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4804291,7,42.28,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4804345,7,42.3,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4804398,23,42.337932,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4804399,23,42.337932,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4804576,2,42.43,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4804583,23,42.436849,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4804625,7,42.46,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4804651,23,42.479242,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4804652,23,42.479242,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4804669,6,42.49,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4804750,23,42.535766,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4804881,15,42.6,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4805037,7,42.67,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4805120,23,42.719469,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4805130,7,42.72,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4805266,7,42.8,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4805338,23,42.832517,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4805380,7,42.85,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4805620,23,42.987958,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4805621,23,42.987958,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4805622,23,42.987958,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',5,100),(4805951,23,43.01622,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4805952,23,43.01622,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4806025,7,43.06,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4806082,23,43.086875,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4806116,7,43.11,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4806285,23,43.199923,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4806530,7,43.34,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4806670,23,43.411888,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4806671,23,43.411888,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4806672,23,43.411888,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4806721,7,43.45,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4806805,23,43.482543,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4806806,23,43.482543,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',5,100),(4806870,23,43.510805,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4806871,23,43.510805,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4806872,23,43.510805,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4806898,6,43.53,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4806950,23,43.553198,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4807352,23,43.779294,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4807390,23,43.793425,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4807482,7,43.84,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4807536,23,43.86408,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4807674,7,43.94,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4807712,23,43.962997,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4808615,4,44.02,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4808639,23,44.033652,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4808655,23,44.047783,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4808656,23,44.047783,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4808657,23,44.047783,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4808758,23,44.090176,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4808873,7,44.15,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4808874,7,44.15,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4808997,15,44.21667,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4809057,23,44.259748,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4809068,7,44.26,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4809145,7,44.31,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4809223,23,44.358665,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4809271,23,44.386927,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4809518,23,44.514106,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4809519,23,44.514106,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4809529,7,44.52,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4809630,23,44.584761,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4809682,7,44.62,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4809773,23,44.669547,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4809938,23,44.768464,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4810006,23,44.810857,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4810028,23,44.824988,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4810224,7,44.93,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4810288,7,44.96,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4810322,7,44.98,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4810857,23,45.008691,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',5,100),(4810893,23,45.022822,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4811124,23,45.178263,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4811176,23,45.206525,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4811194,7,45.22,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4811350,7,45.32,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4811561,23,45.446752,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4811638,23,45.489145,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4811659,23,45.503276,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4811705,7,45.53,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4811755,4,45.56,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4811884,7,45.64,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4812035,23,45.729372,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4812088,2,45.76,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4812109,7,45.77,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4812164,23,45.800027,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',5,100),(4812165,23,45.800027,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4812242,23,45.856551,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4812364,23,45.927206,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4812365,23,45.927206,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4812447,5,45.99,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4812912,23,46.026123,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',5,100),(4813004,7,46.08,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4813026,23,46.096778,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4813055,23,46.110909,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',5,100),(4813145,7,46.16,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4813183,23,46.181564,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',5,100),(4813268,23,46.238088,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',5,100),(4813378,23,46.308743,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4813387,7,46.31,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4813497,15,46.38333,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4813517,23,46.393529,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4813694,23,46.520708,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',5,100),(4813695,23,46.520708,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4813732,23,46.54897,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4813784,23,46.577232,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4813813,23,46.591363,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4813814,23,46.591363,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4813855,7,46.62,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4813856,7,46.62,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4813913,23,46.662018,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4813997,23,46.704411,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4814120,23,46.775066,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4814128,7,46.78,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4814144,23,46.789197,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',5,100),(4814261,23,46.873983,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4815245,23,47.001162,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4815351,23,47.071817,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4815368,23,47.085948,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4815514,7,47.17,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4815560,7,47.2,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4815730,23,47.312044,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4815844,23,47.382699,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4815935,23,47.439223,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4815996,5,47.48,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4816020,23,47.495747,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4816021,23,47.495747,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4816069,23,47.524009,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',5,100),(4816133,23,47.566402,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4816157,23,47.580533,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',5,100),(4816293,23,47.67945,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4816346,23,47.707712,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',5,100),(4816347,23,47.707712,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4816400,23,47.735974,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4816514,7,47.82,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4816552,23,47.849022,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4816669,23,47.919677,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4816692,7,47.93,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4816738,4,47.96,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4816796,23,47.990332,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',5,100),(4817218,23,48.004463,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4817219,23,48.004463,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4817298,23,48.060987,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4817332,23,48.089249,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4817378,23,48.117511,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4817442,23,48.159904,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4817470,23,48.174035,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4817486,23,48.188166,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4817566,7,48.24,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4817577,23,48.24469,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4817667,23,48.301214,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4817668,23,48.301214,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4817846,23,48.414262,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4817872,23,48.428393,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4817900,7,48.45,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4817945,23,48.470786,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4817954,23,48.484917,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4818096,23,48.583834,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4818129,7,48.6,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4818263,23,48.696882,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4818265,2,48.7,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4818327,23,48.739275,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4818401,23,48.781668,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',5,100),(4818460,2,48.84,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4818515,23,48.880585,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4818531,23,48.894716,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4818550,23,48.908847,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4818585,15,48.93333,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4819500,23,49.036026,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4819644,23,49.134943,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4819657,23,49.149074,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4819685,23,49.163205,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4819863,7,49.28,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4819944,23,49.332777,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',5,100),(4819962,23,49.346908,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',5,100),(4820027,15,49.38334,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4820207,7,49.51,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4820266,23,49.558873,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4820267,23,49.558873,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',5,100),(4820347,23,49.615397,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4820371,23,49.629528,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4820372,23,49.629528,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4820389,23,49.643659,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4820477,23,49.700183,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',5,100),(4820535,23,49.742576,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',5,100),(4820554,23,49.756707,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4820580,23,49.770838,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4820617,23,49.813231,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4820694,23,49.869755,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4820743,23,49.912148,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',5,100),(4820839,23,49.982803,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4820855,23,49.996934,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4821343,15,50.05,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4821352,23,50.053458,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4821550,23,50.194768,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4821573,7,50.22,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4821613,23,50.251292,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4821973,7,50.53,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',5,100),(4822074,23,50.604567,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4822481,15,50.93333,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4823356,7,51.07,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4823716,23,51.35351,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',5,100),(4823748,23,51.381772,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4824080,23,51.650261,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4824232,23,51.77744,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4824311,23,51.833964,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4824381,23,51.890488,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',5,100),(4824910,23,52.045929,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',5,100),(4825116,23,52.229632,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4825154,23,52.257894,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',5,100),(4825228,23,52.314418,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4825279,23,52.356811,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4825280,23,52.356811,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4825425,7,52.48,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4825590,23,52.6253,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',5,100),(4825658,23,52.681824,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4825764,23,52.780741,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4825787,23,52.809003,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4826904,7,53.26,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4827163,23,53.501422,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4827245,23,53.586208,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',5,100),(4827463,23,53.812304,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4828219,23,54.193841,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',5,100),(4828250,7,54.22,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4828439,23,54.391675,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',5,100),(4828551,23,54.504723,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4828687,23,54.631902,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4828958,23,54.914522,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',5,100),(4829942,23,55.225404,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4830304,7,55.63,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',5,100),(4830467,23,55.790644,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',5,100),(4830488,23,55.818906,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',5,100),(4831275,23,56.186312,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',5,100),(4831741,23,56.666766,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',5,100),(4831827,23,56.751552,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',5,100),(4831896,23,56.822207,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4831987,23,56.921124,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',5,100),(4834172,7,58.51,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',5,100),(4836495,23,60.694101,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4840807,23,65.48451,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',5,100),(4840858,7,65.56,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',5,100),(4846614,11,72.45,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4847109,11,73.01667,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4847572,11,73.63334,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4847741,11,73.85001,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4848383,11,74.58334,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4848887,11,75.25,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4849251,11,75.78333,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4849738,11,76.43333,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4849814,11,76.51666,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4849910,11,76.61667,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4850468,11,77.25001,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4850599,11,77.41667,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4850671,11,77.51667,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4850740,11,77.60001,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4850872,11,77.76667,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4850984,11,77.91666,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4851057,11,78,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4851058,11,78,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4851208,11,78.16666,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4851233,11,78.2,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4851422,11,78.43334,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4851426,11,78.45,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4851609,11,78.68333,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4851610,11,78.68333,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4851611,11,78.68333,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4851631,11,78.7,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4851643,11,78.71667,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4851671,11,78.75,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4851727,11,78.81667,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4851783,11,78.86666,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4851813,11,78.9,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4851863,11,78.96667,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4852072,11,79.15,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4852104,11,79.18334,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4852206,11,79.31667,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4852266,11,79.39999,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4852432,11,79.58334,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4852472,11,79.63333,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4852480,11,79.63334,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4852588,11,79.76666,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4852645,11,79.83334,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4852705,11,79.88334,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4852777,11,79.96667,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4853042,11,80.21667,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4853156,11,80.35,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4853172,11,80.36667,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4853176,11,80.36668,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4853252,11,80.45,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4853397,11,80.58334,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4853412,11,80.6,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4853498,11,80.68333,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4854041,11,81.18333,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4854115,11,81.23334,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4854116,11,81.23334,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4854131,11,81.25,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4854152,11,81.26667,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4854406,11,81.48333,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4854483,11,81.55,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4854532,11,81.58334,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4854582,11,81.61667,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4854728,11,81.73333,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4854866,11,81.85,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4854919,11,81.89999,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4854923,11,81.9,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4855232,11,82.11666,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4855237,11,82.11667,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4855425,11,82.26667,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4855435,11,82.28333,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4855552,11,82.38334,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4855564,11,82.4,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4855582,11,82.41666,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4855771,11,82.56667,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4855854,11,82.61666,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4856372,11,83,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4856476,11,83.06667,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4856726,11,83.24999,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4856961,11,83.41666,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4857022,11,83.45,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4857052,11,83.46667,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4857053,11,83.46667,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4857256,11,83.6,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4857296,11,83.61667,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4857429,11,83.7,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4857501,11,83.75,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4857542,11,83.78333,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4857747,11,83.91666,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4857748,11,83.91666,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(4857834,11,83.96667,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4857877,11,83.98334,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4857879,11,83.98334,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4857957,11,84.03333,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4857983,11,84.05,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4858209,11,84.2,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4858210,11,84.2,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4858236,11,84.21667,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(4858364,11,84.3,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4858382,11,84.30001,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4858531,11,84.41666,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(4858579,11,84.43334,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4858750,11,84.55,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4858833,11,84.6,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4859005,11,84.71667,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4859006,11,84.71667,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4859057,11,84.74999,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(4859105,11,84.76667,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4859173,11,84.81667,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4859266,11,84.88333,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4859296,11,84.9,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4859331,11,84.93333,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4859532,11,85.05,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4859565,11,85.06667,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4859566,11,85.06667,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4859649,11,85.11666,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4859815,11,85.21667,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4859816,11,85.21667,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4859981,11,85.33334,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4860213,11,85.5,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4860252,11,85.51666,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(4860354,11,85.58334,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(4860519,11,85.68334,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4860663,11,85.78333,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4860753,11,85.85,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4860783,11,85.86667,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4860827,11,85.89999,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4860893,11,85.93334,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4861095,11,86.03333,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4861096,11,86.03333,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4861303,11,86.16666,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4861360,11,86.18334,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(4861420,11,86.23334,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4861421,11,86.23334,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4861464,11,86.26666,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4861585,11,86.35,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4861704,11,86.41666,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4861738,11,86.43333,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4861750,11,86.43334,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4862016,11,86.6,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4862104,11,86.65,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4862125,11,86.66666,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4862126,11,86.66666,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(4862446,11,86.86667,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4862611,11,86.95,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4862726,11,87,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4862942,11,87.08334,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4862944,11,87.08334,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4862945,11,87.08334,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4863056,11,87.15,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4863123,11,87.18334,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4863148,11,87.2,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4863230,11,87.25,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4863582,11,87.43334,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4863687,11,87.5,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(4863834,11,87.58334,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4863969,11,87.64999,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4863983,11,87.65,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4864222,11,87.76667,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(4864334,11,87.83334,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4864388,11,87.85001,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4864401,11,87.86666,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4864486,11,87.9,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4864509,11,87.91666,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4864821,11,88.01667,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4864962,11,88.1,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4864988,11,88.10001,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4865024,11,88.13333,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4865098,11,88.16666,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(4865397,11,88.31667,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4865604,11,88.41666,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4865691,11,88.45,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4865692,11,88.45,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(4865788,11,88.5,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(4866297,11,88.73334,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4866362,11,88.76666,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4866391,11,88.78333,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4866504,11,88.83334,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(4866562,11,88.85001,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4866590,11,88.86667,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4866591,11,88.86667,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4866592,11,88.86667,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(4867048,11,89.05001,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4867624,11,89.35001,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4867703,11,89.4,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4868103,11,89.60001,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(4868355,11,89.73334,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4868442,11,89.76667,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4868457,11,89.78333,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4868801,11,89.96667,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4868847,11,89.98334,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4868848,11,89.98334,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4869014,11,90.03333,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4869079,11,90.05001,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4869097,11,90.06667,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4869253,11,90.15,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4869298,11,90.18333,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4869365,11,90.21667,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4869671,11,90.36667,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4869934,11,90.5,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(4870039,11,90.55,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4870132,11,90.6,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4870402,11,90.71667,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4871495,11,91.15,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4871558,11,91.18333,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4871877,11,91.31667,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4871878,11,91.31667,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(4872510,11,91.58334,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4872623,11,91.63333,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4872680,11,91.65,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4872721,11,91.66666,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4872835,11,91.71667,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4873273,11,91.88334,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(4873493,11,91.98333,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(4873725,11,92.05001,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4874426,11,92.35,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4874427,11,92.35,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4874453,11,92.35001,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4874482,11,92.36667,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(4874714,11,92.46667,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4874716,11,92.46667,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4874777,11,92.48333,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(4875053,11,92.58334,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4875185,11,92.63333,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4875364,11,92.7,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4875365,11,92.7,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4875878,11,92.9,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4876119,11,92.98334,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4876343,11,93.05,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4876442,11,93.08334,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4876880,11,93.23334,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4876969,11,93.26666,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4877679,11,93.5,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4878009,11,93.60001,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4878197,11,93.66666,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4878473,11,93.75,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4878474,11,93.75,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4878903,11,93.9,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4879218,11,94,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4879480,11,94.06667,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4879722,11,94.15,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4879833,11,94.18334,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4880075,11,94.26666,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(4880129,11,94.28333,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4880187,11,94.3,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4880264,11,94.31667,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4880376,11,94.35001,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4880519,11,94.4,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4880834,11,94.5,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4881266,11,94.63333,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4881902,11,94.83334,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4882646,11,95.05,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4882807,11,95.1,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4882906,11,95.13333,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4883339,11,95.28333,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4884070,11,95.51666,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4884135,11,95.53333,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4884794,11,95.73334,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4884885,11,95.76666,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(4885019,11,95.8,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4885257,11,95.88333,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4886219,11,96.16666,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4886757,11,96.33332,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4887641,11,96.60001,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4887669,11,96.61666,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(4888312,11,96.81666,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4888421,11,96.85,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4888422,11,96.85,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4889152,11,97.06667,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4890390,11,97.48333,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(4890741,11,97.6,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4891146,11,97.75,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(4891508,11,97.88333,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4891509,11,97.88333,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4891794,11,97.98334,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4891863,11,98,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4892286,11,98.14999,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4892396,11,98.18333,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4892659,11,98.28333,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4893586,11,98.61667,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4893879,11,98.73333,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(4894170,11,98.83334,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4896365,11,99.71667,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4896428,11,99.75,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(4897078,11,100.0333,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(4897127,11,100.05,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4897306,11,100.1333,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(4898619,11,100.7667,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4898655,11,100.7833,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4899584,11,101.25,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4899638,11,101.2833,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4900337,11,101.6833,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4900523,11,101.8,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4900581,11,101.8333,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4900687,11,101.9,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4901000,11,102.05,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4901268,11,102.2333,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4901370,11,102.3,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4901772,11,102.5833,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4903404,11,103.7167,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(4903623,11,103.8667,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4903687,11,103.9167,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4903847,11,104.0167,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4904706,11,104.65,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4904839,11,104.75,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4904984,11,104.8667,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4905349,11,105.15,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4905481,11,105.25,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(4905708,11,105.4333,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4905783,11,105.5,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4906008,11,105.7333,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4906231,11,105.9167,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4906302,11,105.9833,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4906483,11,106.0833,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4906586,11,106.1667,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4906805,11,106.3667,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4906928,11,106.5,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4907137,11,106.7,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4907504,11,107.0333,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4907899,11,107.4667,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4908162,11,107.7833,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4908163,11,107.7833,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4908514,11,108.1667,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4908681,11,108.3833,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4908756,11,108.4667,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4908972,11,108.7167,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4909421,11,109.2833,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4909559,11,109.4667,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4909870,11,109.9167,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(4910035,11,110.15,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4910106,11,110.2667,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4910254,11,110.4833,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4910268,11,110.5,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(4910354,11,110.65,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(4910652,11,111.0333,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4910684,11,111.1,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(4910685,11,111.1,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4910840,11,111.4167,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4910993,11,111.7,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4911372,11,112.3667,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4911411,11,112.45,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(4911600,11,112.85,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(4911710,11,113.0167,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4911914,11,113.4667,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(4911991,11,113.6667,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4912061,11,113.8167,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4912653,11,115,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4912690,11,115.0333,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4912825,11,115.35,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4912834,11,115.3833,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(4912879,11,115.5,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4912914,11,115.5667,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4912963,11,115.7,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(4913166,11,116.0333,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4913523,11,116.9333,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(4913825,11,117.6,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4914041,11,118.15,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4914235,11,118.7333,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(4914414,11,119.1833,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(4914572,11,119.75,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(4914733,11,120.2333,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(4914834,11,120.65,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(4915281,11,121.9667,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5015612,12,568.6667,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5015642,12,569.1667,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5015733,12,570.5,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(5015734,12,570.5,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5015748,12,570.6667,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5015879,12,572,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5015880,12,572,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5015897,12,572.1667,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5015898,12,572.1667,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5015899,12,572.1667,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(5015900,12,572.1667,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5015980,12,573.1667,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5015992,12,573.3333,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(5016020,12,573.6667,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5016032,12,573.8333,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5016055,12,574.1667,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5016104,12,574.8333,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5016137,12,575.3333,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5016138,12,575.3333,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5016139,12,575.3333,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5016171,12,575.8333,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5016229,12,576.5,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5016243,12,576.6667,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5016250,12,576.8333,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5016251,12,576.8333,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(5016269,12,577,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(5016289,12,577.1667,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5016290,12,577.1667,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5016341,12,577.8333,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5016351,12,578,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5016369,12,578.1667,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5016378,12,578.3333,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(5016423,12,578.8333,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(5016455,12,579.1667,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(5016483,12,579.5,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(5016541,12,580.5,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(5016550,12,580.6667,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5016551,12,580.6667,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(5016552,12,580.6667,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5016566,12,581,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5016609,12,581.5,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(5016632,12,581.8333,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5016634,12,581.8333,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(5016636,12,581.8333,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5016637,12,581.8333,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(5016659,12,582,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(5016660,12,582,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(5016661,12,582,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5016662,12,582,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5016695,12,582.3333,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5016710,12,582.5,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5016713,12,582.5,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5016714,12,582.5,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5016727,12,582.6667,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5016729,12,582.6667,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5016731,12,582.6667,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5016741,12,582.8333,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5016742,12,582.8333,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5016743,12,582.8333,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5016759,12,583,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5016761,12,583,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5016762,12,583,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5016763,12,583,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5016764,12,583,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(5016776,12,583.1667,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5016778,12,583.1667,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5016785,12,583.3333,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5016787,12,583.3333,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5016798,12,583.5,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5016799,12,583.5,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5016800,12,583.5,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5016801,12,583.5,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5016815,12,583.8333,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5016816,12,583.8333,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5016817,12,583.8333,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5016832,12,584,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5016848,12,584.1667,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(5016849,12,584.1667,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5016850,12,584.1667,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(5016873,12,584.5,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5016955,12,585.6667,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(5016956,12,585.6667,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5017011,12,586.8333,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5017033,12,587.3333,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5017041,12,587.5,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5017052,12,587.6667,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5017054,12,587.6667,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5017087,12,588.3333,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5017095,12,588.5,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5017096,12,588.5,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5017097,12,588.5,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5017107,12,588.6667,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5017118,12,588.8333,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5017121,12,588.8333,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5017122,12,588.8333,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5017133,12,589,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5017134,12,589,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(5017137,12,589,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(5017163,12,589.3333,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(5017175,12,589.5,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(5017219,12,590.1667,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(5017225,12,590.3333,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5017237,12,590.6667,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(5017243,12,590.8333,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5017255,12,591,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5017256,12,591,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5017283,12,591.3333,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(5017307,12,591.8333,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(5017315,12,592,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(5017346,12,592.6667,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5017347,12,592.6667,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(5017383,12,593.3333,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5017396,12,593.6667,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5017418,12,594,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(5017441,12,594.3333,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5017450,12,594.5,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5017486,12,595,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5017487,12,595,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5017488,12,595,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5017500,12,595.1667,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5017509,12,595.3333,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5017566,12,596.1667,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5017567,12,596.1667,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5017573,12,596.3333,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5017580,12,596.5,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5017609,12,597,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5017640,12,597.3333,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5017662,12,597.6667,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(5017675,12,597.8333,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5017687,12,598,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5017689,12,598,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5017690,12,598,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5017717,12,598.5,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(5017727,12,598.6667,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(5017745,12,599,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5017778,12,599.5,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5017780,12,599.5,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(5017802,12,599.8333,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(5017803,12,599.8333,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5017817,12,600,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(5017833,12,600.1667,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5017834,12,600.1667,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5017841,12,600.3333,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5017843,12,600.3333,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(5017852,12,600.5,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5017854,12,600.5,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5017868,12,600.6667,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5017875,12,600.8333,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5017884,12,601,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(5017901,12,601.1667,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5017902,12,601.1667,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(5017911,12,601.3333,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5017912,12,601.3333,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(5017925,12,601.5,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5017945,12,601.6667,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5017966,12,601.8333,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(5017981,12,602,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5018105,12,603.1667,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(5018232,12,604.5,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5018280,12,605,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5018467,12,607.1667,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5018637,12,609,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(5018661,12,609.1667,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5018691,12,609.5,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5018694,12,609.5,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(5018744,12,610,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5018759,12,610.1667,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(5018761,12,610.1667,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5018762,12,610.1667,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(5018781,12,610.3333,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5018782,12,610.3333,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5018798,12,610.5,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5018826,12,610.8333,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(5018844,12,611,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5018862,12,611.1667,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(5018900,12,611.5,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(5018934,12,611.8333,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5018986,12,612.1667,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(5019032,12,612.5,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(5019116,12,613,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(5019117,12,613,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5019152,12,613.1667,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5019166,12,613.3333,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5019188,12,613.5,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5019238,12,613.8333,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(5019239,12,613.8333,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5019267,12,614,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5019329,12,614.3333,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5019457,12,615,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5019459,12,615,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5019461,12,615,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5019499,12,615.1667,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5019521,12,615.3333,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5019625,12,616,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(5019627,12,616,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5019628,12,616,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5019629,12,616,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5019705,12,616.5,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(5019730,12,616.6667,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5019781,12,617,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(5019815,12,617.1667,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5019840,12,617.3333,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5019863,12,617.5,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5019923,12,618,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(5020142,12,619.3333,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5020207,12,619.6667,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(5020323,12,620.5,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5020401,12,621,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5021294,12,626,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(5021295,12,626,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5021503,12,627,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5021563,12,627.1667,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5022583,12,630.5,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(5022651,12,630.6667,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5022718,12,630.8333,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5022827,12,631.1667,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(5022894,12,631.3333,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5022961,12,631.5,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5023094,12,631.8333,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5023329,12,632.3333,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5023501,12,632.6667,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5023502,12,632.6667,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5023801,12,633.1667,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(5023802,12,633.1667,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5023803,12,633.1667,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5023804,12,633.1667,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(5024019,12,633.5,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(5024211,12,633.8333,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5024607,12,634.5,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(5025072,12,635.3333,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5025160,12,635.5,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5025161,12,635.5,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5025349,12,635.8333,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5025411,12,636,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(5025499,12,636.1667,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5025728,12,636.6667,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5025729,12,636.6667,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5025808,12,636.8333,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5025809,12,636.8333,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(5025876,12,637,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5025877,12,637,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5025952,12,637.1667,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(5026051,12,637.3333,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5026052,12,637.3333,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(5026121,12,637.5,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5026203,12,637.6667,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(5026419,12,638.1667,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5026588,12,638.6667,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5026589,12,638.6667,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(5026664,12,638.8333,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5026739,12,639,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5026860,12,639.3333,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5026981,12,639.6667,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5026982,12,639.6667,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5027028,12,639.8333,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5027079,12,640,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(5027124,12,640.1667,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(5027171,12,640.3333,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5027224,12,640.5,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5027225,12,640.5,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5027468,12,641.1667,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(5027746,12,642,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5027747,12,642,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5027856,12,642.3333,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(5027857,12,642.3333,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5027910,12,642.5,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(5027911,12,642.5,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(5027971,12,642.6667,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(5027972,12,642.6667,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5027973,12,642.6667,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5028038,12,642.8333,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(5028039,12,642.8333,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5028105,12,643,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5028106,12,643,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5028180,12,643.1667,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5028248,12,643.3333,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5028249,12,643.3333,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5028250,12,643.3333,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5028301,12,643.5,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5028302,12,643.5,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(5028365,12,643.6667,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(5028422,12,643.8333,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(5028423,12,643.8333,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5028424,12,643.8333,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5028425,12,643.8333,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5028426,12,643.8333,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5028488,12,644,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(5028489,12,644,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5028568,12,644.1667,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5028717,12,644.5,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5028718,12,644.5,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(5028719,12,644.5,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(5028873,12,644.8333,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5029023,12,645.1667,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(5029099,12,645.3333,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(5029100,12,645.3333,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5029480,12,646,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(5029566,12,646.1667,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(5029567,12,646.1667,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(5030131,12,647.1667,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(5030602,12,648,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(5030603,12,648,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5031307,12,649.5,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(5032294,12,652.3333,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5032433,12,652.8333,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5032832,12,654.8333,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(5032833,12,654.8333,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5032949,12,655.3333,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(5033267,12,657,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5033304,12,657.1667,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(5033348,12,657.5,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5033379,12,657.6667,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(5033380,12,657.6667,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(5033381,12,657.6667,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5033427,12,658,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5033467,12,658.1667,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5033468,12,658.1667,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(5033567,12,659,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5033599,12,659.1667,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5033620,12,659.3333,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(5034095,12,663.3333,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(5034156,12,664,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(5034184,12,664.1667,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5034185,12,664.1667,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5034212,12,664.5,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(5034213,12,664.5,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(5034214,12,664.5,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(5034327,12,665.6667,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(5034355,12,666,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(5034491,12,667.1667,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(5034814,12,669.8333,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(5034838,12,670,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(5034919,12,670.3333,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(5034920,12,670.3333,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(5034951,12,670.6667,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(5035042,12,671.3333,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(5035090,12,671.6667,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(5035110,12,671.8333,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(5035111,12,671.8333,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(5035185,12,672.3333,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(5035375,12,674.1667,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(13594249,31,12.54,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594250,31,12.59,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594251,31,12.56,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594252,31,12.53,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594253,31,12.47,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594254,31,12.52,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594255,31,12.52,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594256,31,12.5,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594257,31,12.54,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594258,31,13.18,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594259,31,13.39,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594260,31,13.17,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594261,31,13.18,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594262,31,13.36,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594273,32,1.127,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594274,32,1.066,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594275,32,1.123,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594276,32,1.656,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594277,32,0.87,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594278,32,1.08,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594279,32,1.072,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594280,32,0.832,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594281,32,0.355,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594282,32,0.131,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594283,32,1.2,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594284,32,0.78,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594285,32,0.806,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594286,32,1.483,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594297,33,342.7,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594298,33,338.6,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594299,33,277.4,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594300,33,38.75,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594301,33,6.368,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594302,33,26.35,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594303,33,28.64,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594304,33,18.83,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594305,33,334.6,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594306,33,69.84,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594307,33,177.1,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594308,33,177.3,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594309,33,90.7,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594310,33,141.9,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594321,34,33.66,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594322,34,60.65,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594323,34,85.8,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594324,34,29.8,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594325,34,46.99,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594326,34,36.15,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594327,34,63.88,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594328,34,47.49,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594329,34,28.95,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594330,34,38.57,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594331,34,44.39,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594332,34,48.88,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594333,34,42.2,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594334,34,52.48,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594345,35,631.7,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13594346,35,631.3,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13594347,35,631,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13594348,35,631,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13594349,35,631,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13594350,35,631.2,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13594351,35,631.4,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13594352,35,632,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13594353,35,632.2,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13594354,35,632.4,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13594355,35,632.7,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13594356,35,633.3,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13594357,35,633.4,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13594358,35,633.5,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13594369,30,0,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594370,30,0,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594371,30,0,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594372,30,0,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594373,30,1.016,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594374,30,4.064,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594375,30,20.57,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594376,30,4.064,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594377,30,0.254,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594378,30,0,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594379,30,0.762,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594380,30,7.112,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594381,30,0.254,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594382,30,0,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594393,28,16.69,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594394,28,17.12,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594395,28,17.59,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594396,28,16.5,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594397,28,16.29,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594398,28,16.35,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594399,28,16.3,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594400,28,16.22,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594401,28,16.51,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594402,28,17.95,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594403,28,18.72,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594404,28,17.5,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594405,28,17.62,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594406,28,20.18,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594417,29,95.8,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594418,29,93.3,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594419,29,93.3,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594420,29,98.6,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594421,29,99,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594422,29,99.2,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594423,29,99.5,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594424,29,99.6,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594425,29,99.2,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594426,29,90.8,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594427,29,88.4,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594428,29,95.7,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594429,29,90.3,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594430,29,72.55,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594441,36,0,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594442,36,0,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594443,36,0,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594444,36,0,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594445,36,0,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594446,36,0,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594447,36,1.798,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594448,36,13.53,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594449,36,48.75,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594450,36,254.3,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594451,36,254.1,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594452,36,103.1,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594453,36,142.3,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594454,36,-9999,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594465,46,1.42,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594466,46,1.502,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594467,46,1.412,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594468,46,1.501,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594469,46,1.699,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594470,46,1.54,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594471,46,1.517,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594472,46,1.499,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594473,46,1.423,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594474,46,1.519,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594475,46,1.462,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594476,46,1.525,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594477,46,1.386,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594478,46,1.499,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594489,47,1.463,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594490,47,1.549,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594491,47,1.456,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594492,47,1.546,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594493,47,1.749,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594494,47,1.586,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594495,47,1.561,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594496,47,1.543,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594497,47,1.466,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594498,47,1.567,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594499,47,1.512,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594500,47,1.574,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594501,47,1.43,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594502,47,1.553,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594513,48,0.307,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13594514,48,0.221,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13594515,48,0.314,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13594516,48,0.224,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13594517,48,0.021,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13594518,48,0.184,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13594519,48,0.209,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13594520,48,0.227,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13594521,48,0.304,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13594522,48,0.203,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13594523,48,0.258,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13594524,48,0.196,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13594525,48,0.34,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13594526,48,0.217,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13594527,41,21.45,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594528,40,29.07,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594529,39,16.4,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594530,37,12.54,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594531,43,631.8,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594532,44,5.334,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594533,42,63.43,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594534,45,-9999,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594535,38,1.661,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594536,51,0,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594537,53,2.149,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594538,49,1.445,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594539,52,0,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594540,54,2.215,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594541,50,1.5,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594542,56,-0.445,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594543,57,1.77,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13594544,55,0.27,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13597795,58,0.13,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597796,58,0.131,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597797,58,0.133,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597798,58,0.132,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597799,58,0.134,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597800,58,0.132,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597801,58,0.26,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597802,58,0.435,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597803,58,0.417,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597804,58,0.409,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597805,58,0.403,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597806,58,0.449,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597807,58,0.463,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597808,58,0.439,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597819,63,0.015,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597820,63,0.015,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597821,63,0.015,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597822,63,0.015,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597823,63,0.015,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597824,63,0.015,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597825,63,0.046,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597826,63,0.096,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597827,63,0.094,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597828,63,0.092,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597829,63,0.091,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597830,63,0.102,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597831,63,0.108,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597832,63,0.105,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597843,73,23.5,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597844,73,23.22,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597845,73,22.9,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597846,73,22.7,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597847,73,22.5,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597848,73,22.17,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597849,73,21.44,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597850,73,20.5,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597851,73,20.8,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597852,73,21,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597853,73,21.6,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597854,73,21.9,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597855,73,21.8,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597856,73,21.93,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597867,78,74.3,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597868,78,73.77,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597869,78,73.2,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597870,78,72.8,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597871,78,72.45,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597872,78,72,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597873,78,70.64,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597874,78,68.88,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597875,78,69.4,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597876,78,69.8,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597877,78,70.9,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597878,78,71.5,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597879,78,71.3,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597880,78,71.5,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597891,64,0.014,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597892,64,0.014,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597893,64,0.014,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597894,64,0.014,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597895,64,0.014,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597896,64,0.014,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597897,64,0.043,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597898,64,0.09,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597899,64,0.088,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597900,64,0.086,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597901,64,0.086,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597902,64,0.097,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597903,64,0.103,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597904,64,0.1,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597915,84,8.03,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597916,84,8.09,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597917,84,8.2,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597918,84,8.1,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597919,84,8.23,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597920,84,8.12,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597921,84,17.55,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597922,84,31.78,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597923,84,29.91,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597924,84,29.09,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597925,84,28.5,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597926,84,33.3,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597927,84,34.68,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597928,84,32.16,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597939,94,5.14,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597940,94,5.103,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597941,94,5.076,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597942,94,5.178,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597943,94,5.111,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597944,94,5.198,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597945,94,15.65,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597946,94,32.19,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597947,94,31.59,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597948,94,30.98,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597949,94,31.01,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597950,94,34.83,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597951,94,37.07,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597952,94,35.98,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597963,83,8.18,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597964,83,8.24,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597965,83,8.34,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597966,83,8.24,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597967,83,8.36,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597968,83,8.25,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597969,83,17.78,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597970,83,32.15,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597971,83,30.28,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597972,83,29.46,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597973,83,28.91,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597974,83,33.8,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597975,83,35.19,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13597976,83,32.65,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13597987,93,5.263,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13597988,93,5.253,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13597989,93,5.243,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13597990,93,5.37,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13597991,93,5.316,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13597992,93,5.423,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13597993,93,16.58,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13597994,93,34.54,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13597995,93,33.73,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13597996,93,32.93,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13597997,93,32.64,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13597998,93,36.48,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13597999,93,38.97,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598000,93,37.66,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598011,59,0.237,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598012,59,0.234,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598013,59,0.237,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598014,59,0.237,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598015,59,0.234,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598016,59,0.233,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598017,59,0.269,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598018,59,0.51,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598019,59,0.497,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598020,59,0.492,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598021,59,0.495,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598022,59,0.509,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598023,59,0.541,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598024,59,0.527,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598035,65,0.028,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598036,65,0.029,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598037,65,0.029,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598038,65,0.028,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598039,65,0.028,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598040,65,0.028,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598041,65,0.043,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598042,65,0.135,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598043,65,0.133,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598044,65,0.13,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598045,65,0.129,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598046,65,0.136,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598047,65,0.144,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598048,65,0.142,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598059,74,24.3,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598060,74,23.97,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598061,74,23.8,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598062,74,23.55,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598063,74,23.35,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598064,74,23.07,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598065,74,22.9,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598066,74,22.25,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598067,74,21.75,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598068,74,21.5,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598069,74,21.55,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598070,74,21.85,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598071,74,21.9,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598072,74,21.9,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598083,79,75.7,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598084,79,75.2,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598085,79,74.9,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598086,79,74.4,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103); +INSERT INTO `TimeSeriesResultValues` VALUES (13598087,79,74,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598088,79,73.52,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598089,79,73.2,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598090,79,72.07,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598091,79,71.2,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598092,79,70.7,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598093,79,70.8,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598094,79,71.4,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598095,79,71.5,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598096,79,71.5,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598107,66,0.028,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598108,66,0.028,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598109,66,0.028,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598110,66,0.028,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598111,66,0.028,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598112,66,0.028,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598113,66,0.042,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598114,66,0.131,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598115,66,0.128,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598116,66,0.124,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598117,66,0.123,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598118,66,0.131,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598119,66,0.138,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598120,66,0.137,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598131,86,14.58,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598132,86,14.39,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598133,86,14.52,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598134,86,14.58,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598135,86,14.34,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598136,86,14.26,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598137,86,17.31,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598138,86,39.92,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598139,86,38.45,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598140,86,37.97,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598141,86,38.23,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598142,86,39.87,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598143,86,43.63,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598144,86,41.96,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598155,96,10.19,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598156,96,10.27,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598157,96,10.14,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598158,96,10.02,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598159,96,9.99,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598160,96,9.92,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598161,96,15.12,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598162,96,47.09,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598163,96,46.08,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598164,96,44.74,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598165,96,44.35,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598166,96,47,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598167,96,49.86,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598168,96,49.13,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598179,85,14.9,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598180,85,14.69,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598181,85,14.81,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598182,85,14.87,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598183,85,14.61,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598184,85,14.53,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598185,85,17.62,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598186,85,40.6,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598187,85,39.06,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598188,85,38.55,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598189,85,38.81,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598190,85,40.5,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598191,85,44.33,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598192,85,42.63,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598203,95,10.25,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598204,95,10.38,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598205,95,10.28,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598206,95,10.19,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598207,95,10.19,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598208,95,10.16,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598209,95,15.51,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598210,95,48.72,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598211,95,48.08,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598212,95,46.82,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598213,95,46.42,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598214,95,49.02,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598215,95,51.92,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598216,95,51.14,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598227,60,0.368,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598228,60,0.368,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598229,60,0.367,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598230,60,0.371,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598231,60,0.368,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598232,60,0.363,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598233,60,0.368,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598234,60,0.368,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598235,60,0.366,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598236,60,0.361,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598237,60,0.364,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598238,60,0.363,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598239,60,0.37,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598240,60,0.365,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598251,67,0.086,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598252,67,0.086,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598253,67,0.086,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598254,67,0.086,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598255,67,0.087,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598256,67,0.087,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598257,67,0.086,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598258,67,0.085,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598259,67,0.084,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598260,67,0.084,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598261,67,0.084,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598262,67,0.083,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598263,67,0.081,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598264,67,0.082,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598275,75,24.9,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598276,75,24.9,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598277,75,24.7,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598278,75,24.55,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598279,75,24.62,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598280,75,24.4,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598281,75,24.4,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598282,75,24.2,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598283,75,24.05,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598284,75,23.9,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598285,75,23.75,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598286,75,23.6,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598287,75,23.5,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598288,75,23.5,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598299,80,76.8,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598300,80,76.8,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598301,80,76.4,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598302,80,76.15,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598303,80,76.27,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598304,80,75.9,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598305,80,75.9,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598306,80,75.5,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598307,80,75.3,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598308,80,75.1,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598309,80,74.8,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598310,80,74.5,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598311,80,74.3,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598312,80,74.3,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598323,68,0.086,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598324,68,0.086,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598325,68,0.086,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598326,68,0.086,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598327,68,0.086,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598328,68,0.087,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598329,68,0.086,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598330,68,0.084,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598331,68,0.083,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598332,68,0.082,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598333,68,0.082,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598334,68,0.082,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598335,68,0.08,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598336,68,0.081,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598347,88,25.21,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598348,88,25.2,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598349,88,25.11,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598350,88,25.43,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598351,88,25.15,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598352,88,24.72,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598353,88,25.27,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598354,88,25.16,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598355,88,25.04,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598356,88,24.53,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598357,88,24.84,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598358,88,24.69,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598359,88,25.35,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598360,88,24.9,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598371,98,30.98,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598372,98,30.98,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598373,98,31.11,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598374,98,30.79,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598375,98,30.92,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598376,98,31.13,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598377,98,30.61,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598378,98,30.25,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598379,98,29.71,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598380,98,29.75,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598381,98,29.48,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598382,98,29.33,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598383,98,28.63,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598384,98,28.94,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598395,87,25.77,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598396,87,25.76,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598397,87,25.66,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598398,87,25.98,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598399,87,25.69,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598400,87,25.25,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598401,87,25.8,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598402,87,25.68,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598403,87,25.55,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598404,87,25.02,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598405,87,25.33,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598406,87,25.17,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598407,87,25.83,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598408,87,25.37,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598419,97,31.05,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598420,97,31.07,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598421,97,31.23,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598422,97,30.95,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598423,97,31.13,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598424,97,31.37,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598425,97,30.89,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598426,97,30.59,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598427,97,30.11,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598428,97,30.21,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598429,97,30.01,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598430,97,29.91,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598431,97,29.25,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598432,97,29.6,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598443,61,0.261,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598444,61,0.26,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598445,61,0.26,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598446,61,0.261,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598447,61,0.26,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598448,61,0.26,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598449,61,0.262,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598450,61,0.262,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598451,61,0.263,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598452,61,0.264,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598453,61,0.264,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598454,61,0.264,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598455,61,0.264,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598456,61,0.264,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598467,69,0.046,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598468,69,0.046,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598469,69,0.046,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598470,69,0.046,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598471,69,0.046,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598472,69,0.046,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598473,69,0.046,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598474,69,0.046,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598475,69,0.046,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598476,69,0.046,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598477,69,0.046,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598478,69,0.046,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598479,69,0.046,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598480,69,0.046,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598491,76,23.9,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598492,76,23.9,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598493,76,23.9,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598494,76,23.9,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598495,76,23.9,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598496,76,23.9,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598497,76,23.9,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598498,76,23.85,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598499,76,23.85,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598500,76,23.85,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598501,76,23.75,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598502,76,23.75,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598503,76,23.7,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598504,76,23.7,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598515,81,75.1,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598516,81,75.1,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598517,81,75.1,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598518,81,75.1,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598519,81,75.1,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598520,81,75.1,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598521,81,75.1,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598522,81,75,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598523,81,75,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598524,81,75,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598525,81,74.8,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598526,81,74.8,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598527,81,74.7,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598528,81,74.7,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598539,70,0.045,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598540,70,0.045,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598541,70,0.045,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598542,70,0.045,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598543,70,0.045,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598544,70,0.045,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598545,70,0.045,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598546,70,0.046,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598547,70,0.046,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598548,70,0.045,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598549,70,0.045,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598550,70,0.045,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598551,70,0.045,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598552,70,0.045,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598563,90,16.29,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598564,90,16.22,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598565,90,16.18,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598566,90,16.3,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598567,90,16.18,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598568,90,16.22,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598569,90,16.38,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598570,90,16.4,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598571,90,16.4,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598572,90,16.53,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598573,90,16.52,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598574,90,16.52,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598575,90,16.52,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598576,90,16.52,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598587,100,16.26,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598588,100,16.29,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598589,100,16.35,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598590,100,16.27,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598591,100,16.35,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598592,100,16.29,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598593,100,16.25,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598594,100,16.39,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598595,100,16.39,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598596,100,16.21,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598597,100,16.21,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598598,100,16.21,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598599,100,16.21,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598600,100,16.21,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598611,89,16.62,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598612,89,16.55,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598613,89,16.51,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598614,89,16.63,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598615,89,16.51,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598616,89,16.55,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598617,89,16.71,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598618,89,16.74,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598619,89,16.74,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598620,89,16.86,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598621,89,16.86,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598622,89,16.86,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598623,89,16.86,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598624,89,16.85,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598635,99,16.48,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598636,99,16.5,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598637,99,16.56,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598638,99,16.48,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598639,99,16.56,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598640,99,16.5,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598641,99,16.46,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598642,99,16.61,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598643,99,16.61,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598644,99,16.43,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598645,99,16.44,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598646,99,16.44,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598647,99,16.45,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598648,99,16.46,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598659,62,0.376,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598660,62,0.377,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598661,62,0.376,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598662,62,0.376,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598663,62,0.376,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598664,62,0.376,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598665,62,0.376,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598666,62,0.376,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598667,62,0.376,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598668,62,0.382,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598669,62,0.385,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598670,62,0.388,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598671,62,0.388,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598672,62,0.388,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598683,71,0.107,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598684,71,0.106,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598685,71,0.107,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598686,71,0.107,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598687,71,0.107,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598688,71,0.107,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598689,71,0.107,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598690,71,0.107,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598691,71,0.107,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598692,71,0.106,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598693,71,0.106,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598694,71,0.105,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598695,71,0.105,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598696,71,0.105,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598707,77,20.9,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598708,77,20.8,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598709,77,20.9,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598710,77,20.9,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598711,77,20.9,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598712,77,20.9,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598713,77,20.9,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598714,77,20.85,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598715,77,20.85,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598716,77,20.9,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598717,77,20.9,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598718,77,20.85,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598719,77,20.9,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598720,77,20.9,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598731,82,69.6,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598732,82,69.4,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598733,82,69.6,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598734,82,69.6,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598735,82,69.6,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598736,82,69.6,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598737,82,69.6,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598738,82,69.5,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598739,82,69.5,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598740,82,69.6,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598741,82,69.6,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598742,82,69.5,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598743,82,69.6,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598744,82,69.6,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598755,72,0.101,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598756,72,0.101,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598757,72,0.101,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598758,72,0.101,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598759,72,0.101,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598760,72,0.101,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598761,72,0.101,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598762,72,0.101,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598763,72,0.101,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598764,72,0.1,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598765,72,0.099,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598766,72,0.099,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598767,72,0.099,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598768,72,0.099,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598779,92,25.88,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598780,92,26,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598781,92,25.88,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598782,92,25.88,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598783,92,25.88,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598784,92,25.88,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598785,92,25.88,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598786,92,25.88,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598787,92,25.88,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598788,92,26.5,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598789,92,26.8,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598790,92,27.1,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598791,92,27.1,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598792,92,27.1,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598803,102,36.3,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598804,102,36.14,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598805,102,36.3,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598806,102,36.3,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598807,102,36.3,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598808,102,36.3,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598809,102,36.3,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598810,102,36.3,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598811,102,36.3,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598812,102,35.88,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598813,102,35.68,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598814,102,35.47,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598815,102,35.47,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598816,102,35.47,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598827,91,26.22,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598828,91,26.33,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598829,91,26.22,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598830,91,26.22,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598831,91,26.22,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598832,91,26.22,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598833,91,26.22,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598834,91,26.22,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598835,91,26.22,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598836,91,26.84,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598837,91,27.15,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598838,91,27.46,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598839,91,27.46,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598840,91,27.46,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13598851,101,38.58,'2011-08-01 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13598852,101,38.4,'2011-08-01 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13598853,101,38.58,'2011-08-01 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13598854,101,38.58,'2011-08-01 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13598855,101,38.58,'2011-08-01 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13598856,101,38.58,'2011-08-01 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13598857,101,38.58,'2011-08-01 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13598858,101,38.58,'2011-08-01 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13598859,101,38.58,'2011-08-01 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13598860,101,38.13,'2011-08-01 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13598861,101,37.91,'2011-08-01 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13598862,101,37.69,'2011-08-01 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13598863,101,37.69,'2011-08-01 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13598864,101,37.69,'2011-08-01 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604632,31,13.32,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604633,31,13.29,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604634,31,13.26,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604635,31,13.24,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604636,31,13.24,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604637,31,12.88,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604638,31,12.8,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604639,31,12.75,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604640,31,12.7,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604641,31,12.68,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604642,31,12.65,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604643,31,12.62,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604644,31,12.6,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604645,31,12.58,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604646,31,12.54,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604647,31,12.46,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604648,31,12.5,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604649,31,12.56,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604650,31,13.4,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604651,31,13.38,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604652,31,13.35,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604653,31,13.29,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604654,31,13.28,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604655,31,13.25,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604656,32,1.407,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604657,32,1.168,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604658,32,0.853,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604659,32,1.344,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604660,32,0.971,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604661,32,1.539,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604662,32,3.039,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604663,32,2.411,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604664,32,1.31,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604665,32,1.012,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604666,32,1.652,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604667,32,1.119,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604668,32,0.76,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604669,32,0.929,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604670,32,0.983,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604671,32,1.306,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604672,32,1.028,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604673,32,1.41,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604674,32,0.973,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604675,32,2.811,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604676,32,2.589,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604677,32,2.456,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604678,32,3.099,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604679,32,2.998,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604680,33,18.21,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604681,33,55.68,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604682,33,56.34,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604683,33,28.38,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604684,33,326.1,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604685,33,296.1,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604686,33,309,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604687,33,225.1,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604688,33,194,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604689,33,243.6,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604690,33,272.1,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604691,33,193.1,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604692,33,280.1,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604693,33,311.3,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604694,33,336.1,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604695,33,329.4,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604696,33,321,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604697,33,357.8,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604698,33,103.6,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604699,33,199.6,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604700,33,35.33,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604701,33,33.27,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604702,33,39.11,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604703,33,35.57,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604704,34,64.82,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604705,34,35.97,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604706,34,45.5,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604707,34,39.56,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604708,34,49.23,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604709,34,11.09,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604710,34,51.79,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604711,34,19.67,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604712,34,22.93,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604713,34,81,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604714,34,66.1,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604715,34,64.07,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604716,34,64.44,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604717,34,61.77,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604718,34,46.46,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604719,34,62.85,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604720,34,87.3,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604721,34,26.09,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604722,34,64.39,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604723,34,23.29,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604724,34,44.93,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604725,34,20.19,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604726,34,15.38,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604727,34,15.67,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604728,35,633.5,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13604729,35,633.4,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13604730,35,633.1,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13604731,35,632.9,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13604732,35,632.7,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13604733,35,633.1,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13604734,35,633.5,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13604735,35,633.5,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13604736,35,633.7,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13604737,35,633.8,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13604738,35,633.8,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13604739,35,633.7,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13604740,35,633.5,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13604741,35,633.4,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13604742,35,633.2,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13604743,35,633.3,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13604744,35,633.5,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13604745,35,633.5,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13604746,35,633.4,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13604747,35,633.4,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13604748,35,633.4,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13604749,35,633.1,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13604750,35,632.9,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13604751,35,632.5,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13604752,30,0,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604753,30,0,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604754,30,0,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604755,30,0,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604756,30,0,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604757,30,0,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604758,30,0,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604759,30,0,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604760,30,0,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604761,30,0,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604762,30,0,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604763,30,0,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604764,30,0,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604765,30,0,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604766,30,0,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604767,30,0,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604768,30,0,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604769,30,0,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604770,30,0,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604771,30,0,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604772,30,0,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604773,30,0,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604774,30,0,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604775,30,0,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604776,28,21.78,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604777,28,21.82,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604778,28,23.13,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604779,28,23.54,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604780,28,23.93,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604781,28,22.61,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604782,28,19.15,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604783,28,15.81,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604784,28,14.71,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604785,28,13.95,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604786,28,14.16,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604787,28,13.69,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604788,28,13.41,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604789,28,13.04,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604790,28,13.02,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604791,28,12.76,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604792,28,13,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604793,28,15.7,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604794,28,18.46,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604795,28,20.85,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604796,28,21.05,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604797,28,22.65,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604798,28,23.55,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604799,28,24.94,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604800,29,66.62,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604801,29,58.83,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604802,29,56.97,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604803,29,49.32,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604804,29,48.86,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604805,29,67.39,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604806,29,66.89,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604807,29,80.5,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604808,29,83.5,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604809,29,88.5,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604810,29,86.2,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604811,29,91,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604812,29,89.5,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604813,29,89.5,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604814,29,86.9,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604815,29,88.8,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604816,29,86.6,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604817,29,76.55,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604818,29,65.5,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604819,29,55.86,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604820,29,67.4,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604821,29,60.46,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604822,29,57.47,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604823,29,55.71,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604824,36,-9999,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604825,36,484.2,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604826,36,692.7,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604827,36,603.7,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604828,36,382.4,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604829,36,140.3,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604830,36,10.14,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604831,36,0.081,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604832,36,0,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604833,36,0,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604834,36,0,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604835,36,0,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604836,36,0,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604837,36,0,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604838,36,0,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604839,36,0.022,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604840,36,14.12,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604841,36,191.6,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604842,36,294.5,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604843,36,417.4,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604844,36,590.7,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604845,36,-9999,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604846,36,-9999,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604847,36,-9999,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604848,46,1.58,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604849,46,1.5,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604850,46,1.478,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604851,46,1.488,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604852,46,1.435,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604853,46,1.522,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604854,46,1.419,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604855,46,1.548,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604856,46,1.463,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604857,46,1.469,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604858,46,1.498,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604859,46,1.447,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604860,46,1.433,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604861,46,1.445,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604862,46,1.431,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604863,46,1.424,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604864,46,1.427,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604865,46,1.464,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604866,46,1.449,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604867,46,1.397,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604868,46,1.55,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604869,46,1.553,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604870,46,1.637,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604871,46,1.462,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604872,47,1.642,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604873,47,1.559,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604874,47,1.539,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604875,47,1.551,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604876,47,1.496,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604877,47,1.584,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604878,47,1.469,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604879,47,1.592,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604880,47,1.502,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604881,47,1.506,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604882,47,1.536,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604883,47,1.483,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604884,47,1.468,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604885,47,1.479,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604886,47,1.465,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604887,47,1.457,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604888,47,1.46,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604889,47,1.505,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604890,47,1.497,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604891,47,1.449,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604892,47,1.608,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604893,47,1.616,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604894,47,1.706,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604895,47,1.527,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604896,48,0.128,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13604897,48,0.211,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13604898,48,0.231,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13604899,48,0.219,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13604900,48,0.274,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13604901,48,0.186,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13604902,48,0.301,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13604903,48,0.178,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13604904,48,0.268,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13604905,48,0.264,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13604906,48,0.234,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13604907,48,0.287,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13604908,48,0.302,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13604909,48,0.291,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13604910,48,0.305,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13604911,48,0.313,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13604912,48,0.31,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13604913,48,0.265,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13604914,48,0.273,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13604915,48,0.321,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13604916,48,0.162,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13604917,48,0.154,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13604918,48,0.064,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13604919,48,0.243,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13604920,41,18.31,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604921,40,24.61,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604922,39,13.2,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604923,37,12.47,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604924,43,632.5,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604925,44,38.1,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604926,42,82,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604927,45,-9999,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604928,38,1.215,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604929,51,1.298,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604930,53,2.14,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604931,49,1.495,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604932,52,1.331,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604933,54,2.209,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604934,50,1.544,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604935,56,-0.439,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604936,57,0.439,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13604937,55,0.226,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13608178,58,0.431,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608179,58,0.427,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608180,58,0.423,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608181,58,0.421,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608182,58,0.414,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608183,58,0.415,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608184,58,0.409,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608185,58,0.405,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608186,58,0.403,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608187,58,0.404,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608188,58,0.402,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608189,58,0.399,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608190,58,0.394,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608191,58,0.393,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608192,58,0.393,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608193,58,0.388,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608194,58,0.388,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608195,58,0.386,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608196,58,0.383,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608197,58,0.388,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608198,58,0.387,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608199,58,0.392,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608200,58,0.389,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608201,58,0.389,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608202,63,0.102,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608203,63,0.1,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608204,63,0.099,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608205,63,0.097,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608206,63,0.097,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608207,63,0.094,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608208,63,0.094,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608209,63,0.093,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608210,63,0.092,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608211,63,0.09,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608212,63,0.09,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608213,63,0.089,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608214,63,0.09,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608215,63,0.089,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608216,63,0.088,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608217,63,0.089,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608218,63,0.088,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608219,63,0.088,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608220,63,0.088,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608221,63,0.087,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608222,63,0.088,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608223,63,0.088,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608224,63,0.089,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608225,63,0.089,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608226,73,23.03,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608227,73,23.8,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608228,73,24.3,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608229,73,24.85,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608230,73,24.85,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608231,73,24.42,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608232,73,23.82,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608233,73,23.15,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608234,73,22.47,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608235,73,21.85,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608236,73,21.4,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608237,73,21,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608238,73,20.55,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608239,73,20.15,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608240,73,19.9,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608241,73,19.6,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608242,73,19.25,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608243,73,19.1,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608244,73,19.3,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608245,73,19.95,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608246,73,20.8,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608247,73,21.75,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608248,73,22.93,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608249,73,24.13,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608250,78,73.43,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608251,78,74.9,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608252,78,75.7,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608253,78,76.7,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608254,78,76.7,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608255,78,75.92,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608256,78,74.9,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608257,78,73.65,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608258,78,72.45,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608259,78,71.4,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608260,78,70.5,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608261,78,69.8,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608262,78,68.97,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608263,78,68.27,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608264,78,67.82,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608265,78,67.3,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608266,78,66.7,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608267,78,66.4,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608268,78,66.78,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608269,78,67.93,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608270,78,69.43,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608271,78,71.21,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608272,78,73.23,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608273,78,75.43,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608274,64,0.1,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608275,64,0.098,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608276,64,0.098,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608277,64,0.097,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608278,64,0.096,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608279,64,0.093,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608280,64,0.092,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608281,64,0.09,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608282,64,0.088,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608283,64,0.086,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608284,64,0.085,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608285,64,0.084,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608286,64,0.084,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608287,64,0.083,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608288,64,0.082,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608289,64,0.082,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608290,64,0.08,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608291,64,0.08,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608292,64,0.081,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608293,64,0.081,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608294,64,0.082,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608295,64,0.084,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608296,64,0.087,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608297,64,0.088,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608298,84,31.38,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608299,84,30.92,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608300,84,30.45,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608301,84,30.29,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608302,84,29.6,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608303,84,29.71,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608304,84,29.14,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608305,84,28.67,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608306,84,28.5,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608307,84,28.66,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608308,84,28.43,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608309,84,28.11,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608310,84,27.68,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608311,84,27.51,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608312,84,27.52,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608313,84,27.1,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608314,84,27.05,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608315,84,26.87,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608316,84,26.55,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608317,84,27.05,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608318,84,26.94,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608319,84,27.47,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608320,84,27.16,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608321,84,27.21,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608322,94,35.88,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608323,94,35.38,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608324,94,35.08,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608325,94,34.9,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608326,94,34.64,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608327,94,33.54,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608328,94,33.17,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608329,94,32.45,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608330,94,31.82,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608331,94,30.95,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608332,94,30.52,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608333,94,30.2,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608334,94,30.16,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608335,94,29.79,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608336,94,29.42,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608337,94,29.38,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608338,94,28.93,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608339,94,28.96,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608340,94,29.18,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608341,94,29.11,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608342,94,29.78,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608343,94,30.14,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608344,94,31.03,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608345,94,31.52,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608346,83,31.94,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608347,83,31.54,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608348,83,31.08,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608349,83,30.96,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608350,83,30.25,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608351,83,30.33,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608352,83,29.71,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608353,83,29.18,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608354,83,28.96,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608355,83,29.09,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608356,83,28.82,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608357,83,28.47,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608358,83,28.01,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608359,83,27.82,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608360,83,27.8,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608361,83,27.37,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608362,83,27.3,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608363,83,27.1,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608364,83,26.8,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608365,83,27.34,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608366,83,27.27,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608367,83,27.88,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608368,83,27.65,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608369,83,27.77,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608370,93,36.93,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608371,93,35.96,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608372,93,35.44,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608373,93,34.97,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608374,93,34.74,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608375,93,33.85,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608376,93,33.77,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608377,93,33.43,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608378,93,33.12,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608379,93,32.47,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608380,93,32.25,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608381,93,32.12,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608382,93,32.27,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608383,93,32.04,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608384,93,31.79,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608385,93,31.91,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608386,93,31.56,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608387,93,31.68,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608388,93,31.79,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608389,93,31.41,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608390,93,31.73,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608391,93,31.59,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608392,93,31.95,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608393,93,31.87,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608394,59,0.525,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608395,59,0.518,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608396,59,0.519,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608397,59,0.514,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608398,59,0.515,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608399,59,0.507,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608400,59,0.504,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608401,59,0.506,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608402,59,0.498,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608403,59,0.499,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608404,59,0.494,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608405,59,0.494,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608406,59,0.498,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608407,59,0.493,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608408,59,0.489,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608409,59,0.494,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608410,59,0.494,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608411,59,0.488,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608412,59,0.494,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608413,59,0.492,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608414,59,0.485,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608415,59,0.481,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608416,59,0.484,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608417,59,0.49,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608418,65,0.142,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608419,65,0.14,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608420,65,0.137,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608421,65,0.137,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608422,65,0.136,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608423,65,0.137,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608424,65,0.136,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608425,65,0.134,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608426,65,0.135,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608427,65,0.134,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608428,65,0.134,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608429,65,0.133,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608430,65,0.131,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608431,65,0.131,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608432,65,0.132,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608433,65,0.13,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608434,65,0.129,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608435,65,0.129,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608436,65,0.128,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608437,65,0.128,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608438,65,0.13,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608439,65,0.131,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608440,65,0.13,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608441,65,0.129,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608442,74,22.2,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608443,74,22.8,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608444,74,23.4,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608445,74,23.65,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608446,74,23.9,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608447,74,23.9,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608448,74,23.75,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608449,74,23.5,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608450,74,23.15,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608451,74,22.65,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608452,74,22.25,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608453,74,21.85,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608454,74,21.45,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608455,74,21.15,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608456,74,20.9,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608457,74,20.55,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608458,74,20.3,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608459,74,20.1,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608460,74,19.9,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608461,74,20.05,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608462,74,20.4,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608463,74,20.85,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608464,74,21.65,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608465,74,22.58,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608466,79,72,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608467,79,73,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608468,79,74.1,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608469,79,74.6,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608470,79,75.1,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608471,79,75.1,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608472,79,74.8,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608473,79,74.3,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608474,79,73.65,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608475,79,72.72,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608476,79,72.1,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608477,79,71.4,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608478,79,70.6,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608479,79,70.07,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608480,79,69.6,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608481,79,68.97,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608482,79,68.52,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608483,79,68.17,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608484,79,67.8,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608485,79,68.08,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608486,79,68.7,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608487,79,69.5,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608488,79,71,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608489,79,72.66,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608490,66,0.137,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608491,66,0.136,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608492,66,0.134,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608493,66,0.135,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608494,66,0.134,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608495,66,0.135,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608496,66,0.134,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608497,66,0.131,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608498,66,0.132,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608499,66,0.13,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608500,66,0.129,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608501,66,0.127,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608502,66,0.125,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608503,66,0.125,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608504,66,0.125,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608505,66,0.123,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608506,66,0.121,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608507,66,0.121,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608508,66,0.119,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608509,66,0.119,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608510,66,0.122,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608511,66,0.124,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608512,66,0.124,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608513,66,0.124,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608514,86,41.7,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608515,86,40.86,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608516,86,41.01,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608517,86,40.37,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608518,86,40.53,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608519,86,39.57,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608520,86,39.27,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608521,86,39.47,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608522,86,38.58,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608523,86,38.69,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608524,86,38.16,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608525,86,38.18,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608526,86,38.57,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608527,86,38.05,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608528,86,37.5,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608529,86,38.07,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608530,86,38.07,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608531,86,37.41,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608532,86,38.11,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608533,86,37.87,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608534,86,37.13,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608535,86,36.71,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608536,86,36.95,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608537,86,37.6,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608538,96,49.25,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608539,96,49.03,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608540,96,48.33,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608541,96,48.38,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608542,96,48.15,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608543,96,48.64,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608544,96,48.26,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608545,96,47.25,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608546,96,47.39,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608547,96,46.72,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608548,96,46.49,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608549,96,45.74,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608550,96,45.1,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608551,96,44.87,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608552,96,44.97,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608553,96,44.19,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608554,96,43.52,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608555,96,43.43,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608556,96,42.91,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608557,96,42.98,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608558,96,43.83,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608559,96,44.39,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608560,96,44.63,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608561,96,44.66,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608562,85,42.39,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608563,85,41.59,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608564,85,41.79,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608565,85,41.17,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608566,85,41.35,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608567,85,40.38,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608568,85,40.06,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608569,85,40.24,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608570,85,39.3,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608571,85,39.38,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608572,85,38.8,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608573,85,38.79,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608574,85,39.16,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608575,85,38.6,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608576,85,38.01,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608577,85,38.58,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608578,85,38.55,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608579,85,37.86,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608580,85,38.55,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608581,85,38.32,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608582,85,37.59,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608583,85,37.21,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608584,85,37.5,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608585,85,38.24,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608586,95,51.11,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608587,95,50.48,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608588,95,49.41,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608589,95,49.22,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608590,95,48.83,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608591,95,49.28,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608592,95,48.95,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608593,95,48.13,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608594,95,48.5,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608595,95,48.1,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608596,95,48.15,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608597,95,47.64,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608598,95,47.2,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608599,95,47.17,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608600,95,47.53,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608601,95,46.88,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608602,95,46.38,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608603,95,46.47,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608604,95,46.03,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608605,95,46.07,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608606,95,46.76,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608607,95,47.04,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608608,95,46.82,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608609,95,46.25,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608610,60,0.36,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608611,60,0.363,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608612,60,0.36,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608613,60,0.36,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608614,60,0.363,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608615,60,0.367,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608616,60,0.366,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608617,60,0.364,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608618,60,0.365,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608619,60,0.368,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608620,60,0.367,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608621,60,0.367,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608622,60,0.364,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608623,60,0.365,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608624,60,0.365,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608625,60,0.362,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608626,60,0.365,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608627,60,0.357,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608628,60,0.36,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608629,60,0.36,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608630,60,0.361,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608631,60,0.361,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608632,60,0.362,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608633,60,0.362,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608634,67,0.083,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608635,67,0.082,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608636,67,0.083,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608637,67,0.083,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608638,67,0.082,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608639,67,0.082,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608640,67,0.082,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608641,67,0.083,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608642,67,0.083,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608643,67,0.083,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608644,67,0.083,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608645,67,0.083,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608646,67,0.083,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608647,67,0.082,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608648,67,0.082,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608649,67,0.083,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608650,67,0.082,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608651,67,0.084,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608652,67,0.083,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608653,67,0.083,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608654,67,0.082,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608655,67,0.083,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608656,67,0.083,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608657,67,0.083,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608658,75,23.45,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608659,75,23.3,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608660,75,23.3,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608661,75,23.35,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608662,75,23.45,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608663,75,23.5,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608664,75,23.5,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608665,75,23.55,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608666,75,23.55,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608667,75,23.55,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608668,75,23.6,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608669,75,23.5,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608670,75,23.5,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608671,75,23.45,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608672,75,23.3,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608673,75,23.15,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608674,75,23,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608675,75,22.8,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608676,75,22.75,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608677,75,22.65,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608678,75,22.55,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608679,75,22.4,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608680,75,22.33,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608681,75,22.33,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608682,80,74.2,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608683,80,73.9,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608684,80,73.9,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608685,80,74,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608686,80,74.2,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608687,80,74.3,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608688,80,74.3,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608689,80,74.4,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608690,80,74.4,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608691,80,74.4,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608692,80,74.5,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608693,80,74.3,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608694,80,74.3,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608695,80,74.2,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608696,80,73.9,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608697,80,73.65,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608698,80,73.4,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608699,80,73,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608700,80,72.9,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608701,80,72.7,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608702,80,72.52,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608703,80,72.3,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608704,80,72.2,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608705,80,72.2,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608706,68,0.081,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608707,68,0.081,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608708,68,0.081,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608709,68,0.081,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608710,68,0.081,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608711,68,0.08,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608712,68,0.081,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608713,68,0.082,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608714,68,0.081,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608715,68,0.081,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608716,68,0.081,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608717,68,0.081,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608718,68,0.081,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608719,68,0.081,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608720,68,0.081,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608721,68,0.081,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608722,68,0.08,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608723,68,0.081,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608724,68,0.081,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608725,68,0.08,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608726,68,0.079,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608727,68,0.079,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608728,68,0.079,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608729,68,0.079,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608730,88,24.46,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608731,88,24.75,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608732,88,24.44,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608733,88,24.46,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608734,88,24.68,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608735,88,25.06,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608736,88,24.98,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608737,88,24.84,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608738,88,24.85,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608739,88,25.22,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608740,88,25.08,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608741,88,25.07,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608742,88,24.76,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608743,88,24.9,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608744,88,24.89,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608745,88,24.67,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608746,88,24.95,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608747,88,24.16,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608748,88,24.51,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608749,88,24.47,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608750,88,24.58,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608751,88,24.57,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608752,88,24.68,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608753,88,24.71,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608754,98,29.25,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608755,98,28.97,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608756,98,29.25,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608757,98,29.25,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608758,98,29.1,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608759,98,28.9,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608760,98,29.04,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608761,98,29.29,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608762,98,29.29,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608763,98,29.09,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608764,98,29.13,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608765,98,29.12,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608766,98,29.19,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608767,98,28.94,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608768,98,28.93,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608769,98,29.08,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608770,98,28.79,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608771,98,29.35,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608772,98,28.91,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608773,98,28.87,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608774,98,28.59,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608775,98,28.58,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608776,98,28.52,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608777,98,28.54,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608778,87,24.92,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608779,87,25.21,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608780,87,24.89,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608781,87,24.92,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608782,87,25.14,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608783,87,25.53,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608784,87,25.46,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608785,87,25.32,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608786,87,25.34,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608787,87,25.71,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608788,87,25.56,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608789,87,25.55,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608790,87,25.23,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608791,87,25.37,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608792,87,25.35,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608793,87,25.12,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608794,87,25.4,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608795,87,24.58,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608796,87,24.93,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608797,87,24.88,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608798,87,24.99,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608799,87,24.97,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608800,87,25.09,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608801,87,25.12,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608802,97,29.96,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608803,97,29.69,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608804,97,29.98,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608805,97,29.96,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608806,97,29.78,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608807,97,29.56,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608808,97,29.65,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608809,97,29.89,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608810,97,29.85,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608811,97,29.66,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608812,97,29.7,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608813,97,29.74,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608814,97,29.83,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608815,97,29.6,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608816,97,29.66,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608817,97,29.86,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608818,97,29.61,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608819,97,30.25,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608820,97,29.85,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608821,97,29.87,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608822,97,29.63,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608823,97,29.68,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608824,97,29.63,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608825,97,29.65,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608826,61,0.264,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608827,61,0.26,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608828,61,0.261,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608829,61,0.26,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608830,61,0.26,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608831,61,0.26,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608832,61,0.261,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608833,61,0.261,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608834,61,0.26,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608835,61,0.26,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608836,61,0.26,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608837,61,0.26,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608838,61,0.261,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608839,61,0.26,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608840,61,0.261,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608841,61,0.261,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608842,61,0.26,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608843,61,0.261,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608844,61,0.261,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608845,61,0.263,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608846,61,0.265,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608847,61,0.263,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608848,61,0.263,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608849,61,0.259,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608850,69,0.046,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608851,69,0.046,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608852,69,0.046,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608853,69,0.046,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608854,69,0.046,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608855,69,0.046,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608856,69,0.046,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608857,69,0.046,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608858,69,0.046,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608859,69,0.046,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608860,69,0.046,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608861,69,0.046,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608862,69,0.046,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608863,69,0.046,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608864,69,0.046,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608865,69,0.046,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608866,69,0.046,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608867,69,0.046,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608868,69,0.046,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608869,69,0.046,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608870,69,0.045,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608871,69,0.045,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608872,69,0.045,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608873,69,0.046,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608874,76,23.7,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608875,76,23.7,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608876,76,23.7,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608877,76,23.6,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608878,76,23.5,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608879,76,23.5,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608880,76,23.5,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608881,76,23.5,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608882,76,23.5,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608883,76,23.5,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608884,76,23.45,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608885,76,23.45,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608886,76,23.35,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608887,76,23.4,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608888,76,23.3,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608889,76,23.35,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608890,76,23.3,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608891,76,23.3,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608892,76,23.3,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608893,76,23.3,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608894,76,23.3,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608895,76,23.22,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608896,76,23.07,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608897,76,23,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608898,81,74.7,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608899,81,74.7,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608900,81,74.7,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608901,81,74.5,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608902,81,74.3,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608903,81,74.3,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608904,81,74.3,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608905,81,74.3,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608906,81,74.3,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608907,81,74.3,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608908,81,74.2,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608909,81,74.2,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608910,81,74,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608911,81,74.1,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608912,81,73.9,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608913,81,74,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608914,81,73.9,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608915,81,73.9,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608916,81,73.9,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608917,81,73.9,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608918,81,73.9,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608919,81,73.78,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608920,81,73.53,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608921,81,73.4,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608922,70,0.045,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608923,70,0.045,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608924,70,0.045,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608925,70,0.045,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608926,70,0.045,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608927,70,0.045,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608928,70,0.045,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608929,70,0.045,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608930,70,0.045,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608931,70,0.045,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608932,70,0.045,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608933,70,0.045,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608934,70,0.045,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608935,70,0.045,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608936,70,0.045,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608937,70,0.045,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608938,70,0.045,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608939,70,0.045,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608940,70,0.045,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608941,70,0.045,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608942,70,0.044,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608943,70,0.044,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608944,70,0.044,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608945,70,0.045,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608946,90,16.52,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608947,90,16.21,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608948,90,16.33,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608949,90,16.21,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608950,90,16.21,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608951,90,16.21,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608952,90,16.27,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608953,90,16.27,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608954,90,16.21,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608955,90,16.21,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608956,90,16.21,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608957,90,16.21,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608958,90,16.27,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608959,90,16.21,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608960,90,16.27,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608961,90,16.27,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608962,90,16.2,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608963,90,16.33,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608964,90,16.27,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608965,90,16.45,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608966,90,16.57,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608967,90,16.5,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608968,90,16.49,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608969,90,16.15,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608970,100,16.21,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608971,100,16.38,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608972,100,16.21,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608973,100,16.28,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608974,100,16.28,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608975,100,16.28,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13608976,100,16.25,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13608977,100,16.25,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13608978,100,16.27,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13608979,100,16.27,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13608980,100,16.27,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13608981,100,16.27,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13608982,100,16.25,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13608983,100,16.27,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13608984,100,16.25,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13608985,100,16.24,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13608986,100,16.27,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13608987,100,16.22,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13608988,100,16.24,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13608989,100,16.16,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13608990,100,15.98,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13608991,100,16,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13608992,100,16,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13608993,100,16.23,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13608994,89,16.85,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13608995,89,16.53,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13608996,89,16.65,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13608997,89,16.53,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13608998,89,16.53,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13608999,89,16.53,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609000,89,16.59,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609001,89,16.59,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609002,89,16.52,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609003,89,16.52,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609004,89,16.52,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609005,89,16.52,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609006,89,16.58,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609007,89,16.52,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609008,89,16.58,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609009,89,16.58,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609010,89,16.51,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609011,89,16.64,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609012,89,16.58,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609013,89,16.76,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609014,89,16.89,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609015,89,16.8,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609016,89,16.8,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609017,89,16.45,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609018,99,16.46,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609019,99,16.65,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609020,99,16.48,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609021,99,16.57,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609022,99,16.57,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609023,99,16.58,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609024,99,16.56,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609025,99,16.57,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609026,99,16.61,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609027,99,16.61,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609028,99,16.61,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609029,99,16.61,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609030,99,16.58,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609031,99,16.61,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609032,99,16.59,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609033,99,16.6,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609034,99,16.63,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609035,99,16.57,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609036,99,16.6,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609037,99,16.53,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609038,99,16.35,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609039,99,16.38,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609040,99,16.39,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609041,99,16.63,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609042,62,0.386,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609043,62,0.387,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609044,62,0.384,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609045,62,0.385,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609046,62,0.385,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609047,62,0.384,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609048,62,0.384,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609049,62,0.384,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609050,62,0.384,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609051,62,0.384,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609052,62,0.384,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609053,62,0.384,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609054,62,0.384,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609055,62,0.384,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609056,62,0.384,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609057,62,0.384,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609058,62,0.384,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609059,62,0.384,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609060,62,0.384,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609061,62,0.384,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609062,62,0.384,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609063,62,0.384,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609064,62,0.384,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609065,62,0.384,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609066,71,0.106,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609067,71,0.106,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609068,71,0.107,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609069,71,0.106,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609070,71,0.107,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609071,71,0.107,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609072,71,0.107,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609073,71,0.107,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609074,71,0.107,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609075,71,0.107,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609076,71,0.107,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609077,71,0.107,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609078,71,0.107,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609079,71,0.107,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609080,71,0.107,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609081,71,0.107,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609082,71,0.107,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609083,71,0.107,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609084,71,0.107,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609085,71,0.107,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609086,71,0.107,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609087,71,0.107,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609088,71,0.107,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609089,71,0.107,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609090,77,20.9,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609091,77,20.9,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609092,77,20.9,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609093,77,20.9,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609094,77,20.9,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609095,77,20.9,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609096,77,20.9,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609097,77,20.9,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609098,77,20.9,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609099,77,20.9,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609100,77,20.9,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609101,77,20.9,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609102,77,20.9,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609103,77,20.85,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609104,77,20.85,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609105,77,20.9,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609106,77,20.85,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609107,77,20.85,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609108,77,20.85,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609109,77,20.85,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609110,77,20.9,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609111,77,20.9,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609112,77,20.85,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609113,77,20.9,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609114,82,69.6,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609115,82,69.6,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609116,82,69.6,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609117,82,69.6,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609118,82,69.6,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609119,82,69.6,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609120,82,69.6,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609121,82,69.6,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609122,82,69.6,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609123,82,69.6,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609124,82,69.6,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609125,82,69.6,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609126,82,69.6,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609127,82,69.5,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609128,82,69.5,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609129,82,69.6,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609130,82,69.5,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609131,82,69.5,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609132,82,69.5,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609133,82,69.5,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609134,82,69.6,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609135,82,69.6,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609136,82,69.5,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609137,82,69.6,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609138,72,0.099,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609139,72,0.099,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609140,72,0.1,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609141,72,0.1,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609142,72,0.1,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609143,72,0.1,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609144,72,0.1,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609145,72,0.1,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609146,72,0.1,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609147,72,0.1,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609148,72,0.1,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609149,72,0.1,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609150,72,0.1,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609151,72,0.1,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609152,72,0.1,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609153,72,0.1,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609154,72,0.1,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609155,72,0.1,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609156,72,0.1,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609157,72,0.1,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609158,72,0.1,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609159,72,0.1,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609160,72,0.1,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609161,72,0.1,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609162,92,26.89,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609163,92,27,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609164,92,26.67,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609165,92,26.78,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609166,92,26.78,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609167,92,26.67,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609168,92,26.67,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609169,92,26.67,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609170,92,26.67,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609171,92,26.67,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609172,92,26.67,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609173,92,26.68,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609174,92,26.68,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609175,92,26.67,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609176,92,26.67,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609177,92,26.68,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609178,92,26.68,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609179,92,26.68,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609180,92,26.68,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609181,92,26.67,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609182,92,26.67,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609183,92,26.67,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609184,92,26.67,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609185,92,26.67,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609186,102,35.8,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609187,102,35.63,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609188,102,36.12,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609189,102,35.96,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609190,102,35.96,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609191,102,36.12,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609192,102,36.12,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609193,102,36.12,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609194,102,36.12,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609195,102,36.13,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609196,102,36.12,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609197,102,36.13,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609198,102,36.13,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609199,102,36.13,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609200,102,36.12,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609201,102,36.13,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609202,102,36.13,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609203,102,36.13,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609204,102,36.13,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609205,102,36.13,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609206,102,36.12,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609207,102,36.12,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609208,102,36.12,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609209,102,36.12,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609210,91,27.24,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609211,91,27.35,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609212,91,27.02,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609213,91,27.13,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609214,91,27.13,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609215,91,27.02,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609216,91,27.02,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609217,91,27.02,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609218,91,27.02,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609219,91,27.02,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609220,91,27.02,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609221,91,27.02,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609222,91,27.02,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609223,91,27.02,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609224,91,27.02,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609225,91,27.03,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609226,91,27.02,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609227,91,27.02,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609228,91,27.02,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609229,91,27.02,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609230,91,27.02,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609231,91,27.02,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609232,91,27.02,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609233,91,27.02,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13609234,101,38.04,'2011-08-01 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13609235,101,37.87,'2011-08-01 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13609236,101,38.39,'2011-08-01 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13609237,101,38.21,'2011-08-01 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13609238,101,38.21,'2011-08-01 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13609239,101,38.39,'2011-08-01 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13609240,101,38.39,'2011-08-01 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13609241,101,38.39,'2011-08-01 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13609242,101,38.39,'2011-08-01 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13609243,101,38.38,'2011-08-01 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13609244,101,38.39,'2011-08-02 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13609245,101,38.37,'2011-08-02 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13609246,101,38.38,'2011-08-02 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13609247,101,38.38,'2011-08-02 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13609248,101,38.39,'2011-08-02 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13609249,101,38.36,'2011-08-02 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13609250,101,38.38,'2011-08-02 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13609251,101,38.37,'2011-08-02 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13609252,101,38.38,'2011-08-02 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13609253,101,38.38,'2011-08-02 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13609254,101,38.39,'2011-08-02 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13609255,101,38.39,'2011-08-02 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13609256,101,38.39,'2011-08-02 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13609257,101,38.39,'2011-08-02 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615025,31,13.23,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615026,31,13.22,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615027,31,13.2,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615028,31,13.2,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615029,31,13.2,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615030,31,12.88,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615031,31,12.79,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615032,31,12.76,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615033,31,12.72,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615034,31,12.69,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615035,31,12.66,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615036,31,12.64,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615037,31,12.61,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615038,31,12.59,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615039,31,12.5,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615040,31,12.54,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615041,31,12.53,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615042,31,12.57,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615043,31,12.86,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615044,31,13.32,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615045,31,13.27,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615046,31,13.25,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615047,31,13.22,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615048,31,13.23,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615049,32,2.857,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615050,32,2.986,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615051,32,2.85,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615052,32,2.343,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615053,32,1.942,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615054,32,1.784,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615055,32,1.279,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615056,32,2.667,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615057,32,1.332,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615058,32,1.436,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615059,32,1.411,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615060,32,3.891,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615061,32,3.749,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615062,32,4.235,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615063,32,3.717,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615064,32,1.633,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615065,32,2.613,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615066,32,1.046,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615067,32,1.585,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615068,32,1.221,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615069,32,1.502,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615070,32,1.328,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615071,32,1.578,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615072,32,2.738,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615073,33,38.58,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615074,33,23.16,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615075,33,15.07,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615076,33,24.29,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615077,33,352,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615078,33,308.1,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615079,33,246.1,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615080,33,236.8,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615081,33,234,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615082,33,200.1,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615083,33,198.4,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615084,33,189,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615085,33,177.6,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615086,33,177,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615087,33,168.6,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615088,33,315.7,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615089,33,162.2,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615090,33,44.02,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615091,33,96.8,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615092,33,82.6,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615093,33,74.37,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615094,33,98.8,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615095,33,4.979,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615096,33,246.6,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615097,34,15.29,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615098,34,20.24,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615099,34,22.97,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615100,34,20.29,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615101,34,21.72,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615102,34,19.45,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615103,34,53.92,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615104,34,64.12,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615105,34,44.16,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615106,34,76.97,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615107,34,49.42,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615108,34,28.29,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615109,34,28.24,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615110,34,23.37,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615111,34,24.34,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615112,34,100.2,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615113,34,53.56,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615114,34,51.75,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615115,34,39.45,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615116,34,42.85,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615117,34,32.49,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615118,34,75.28,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615119,34,74.83,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615120,34,57.23,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615121,35,632.1,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13615122,35,631.5,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13615123,35,630.9,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13615124,35,630.8,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13615125,35,630.7,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13615126,35,630.8,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13615127,35,631.5,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13615128,35,631.7,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13615129,35,631.7,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13615130,35,631.2,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13615131,35,631.4,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13615132,35,632.4,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13615133,35,631.3,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13615134,35,631.2,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13615135,35,631.3,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13615136,35,631.4,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13615137,35,631.6,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13615138,35,631.7,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13615139,35,631.8,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13615140,35,631.7,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13615141,35,631.7,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13615142,35,631.6,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13615143,35,631.5,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13615144,35,631.2,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13615145,30,0,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615146,30,0,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615147,30,0,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615148,30,0,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615149,30,0,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615150,30,0,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615151,30,0,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615152,30,0,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615153,30,0,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615154,30,0,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615155,30,0,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615156,30,0,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615157,30,0,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615158,30,0,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615159,30,0,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615160,30,0,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615161,30,0,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615162,30,0,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615163,30,0,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615164,30,0,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615165,30,0,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615166,30,0,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615167,30,0,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615168,30,0,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615169,28,25.5,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615170,28,26.65,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615171,28,26.76,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615172,28,27.02,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615173,28,26.14,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615174,28,24.11,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615175,28,22.36,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615176,28,21.23,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615177,28,18.75,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615178,28,17.33,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615179,28,17.26,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615180,28,17.85,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615181,28,17.43,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615182,28,16.87,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615183,28,16.77,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615184,28,15.17,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615185,28,16.04,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615186,28,16.79,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615187,28,19.79,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615188,28,22.24,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615189,28,23.7,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615190,28,25.31,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615191,28,25.81,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615192,28,25.74,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615193,29,48.9,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615194,29,49.65,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615195,29,38.91,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615196,29,44.6,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615197,29,51.73,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615198,29,59.92,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615199,29,49.3,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615200,29,52.38,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615201,29,66.59,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615202,29,63.21,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615203,29,63.17,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615204,29,70.03,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615205,29,71.12,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615206,29,71.42,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615207,29,75.82,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615208,29,74.36,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615209,29,83.1,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615210,29,70.52,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615211,29,60.04,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615212,29,53.6,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615213,29,48.63,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615214,29,41.91,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615215,29,41.25,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615216,29,42.69,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615217,36,-9999,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615218,36,989,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615219,36,816,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615220,36,608.4,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615221,36,326.3,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615222,36,85.9,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615223,36,16.52,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615224,36,0.047,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615225,36,0,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615226,36,0,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615227,36,0,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615228,36,0,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615229,36,0,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615230,36,0,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615231,36,0,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615232,36,0.005,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615233,36,9.58,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615234,36,169.2,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615235,36,387.8,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615236,36,614.2,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615237,36,793.7,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615238,36,921,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615239,36,706.4,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615240,36,-9999,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615241,46,1.226,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615242,46,1.495,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615243,46,1.433,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615244,46,1.393,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615245,46,1.537,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615246,46,1.589,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615247,46,1.422,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615248,46,1.436,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615249,46,1.396,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615250,46,1.418,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615251,46,1.421,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615252,46,1.5,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615253,46,1.557,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615254,46,1.524,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615255,46,1.488,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615256,46,1.43,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615257,46,1.335,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615258,46,1.524,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615259,46,1.357,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615260,46,1.49,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615261,46,1.461,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615262,46,1.431,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615263,46,1.204,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615264,46,1.325,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615265,47,1.282,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615266,47,1.566,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615267,47,1.502,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615268,47,1.46,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615269,47,1.609,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615270,47,1.658,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615271,47,1.479,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615272,47,1.491,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615273,47,1.443,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615274,47,1.462,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615275,47,1.465,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615276,47,1.549,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615277,47,1.606,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615278,47,1.57,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615279,47,1.533,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615280,47,1.47,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615281,47,1.374,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615282,47,1.569,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615283,47,1.405,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615284,47,1.549,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615285,47,1.523,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615286,47,1.496,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615287,47,1.259,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615288,47,1.386,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615289,48,0.488,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13615290,48,0.204,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13615291,48,0.268,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13615292,48,0.31,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13615293,48,0.161,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13615294,48,0.112,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13615295,48,0.291,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13615296,48,0.279,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13615297,48,0.327,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13615298,48,0.308,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13615299,48,0.305,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13615300,48,0.221,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13615301,48,0.164,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13615302,48,0.2,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13615303,48,0.237,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13615304,48,0.3,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13615305,48,0.396,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13615306,48,0.201,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13615307,48,0.365,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13615308,48,0.221,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13615309,48,0.247,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13615310,48,0.274,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13615311,48,0.511,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13615312,48,0.384,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13615313,41,19.97,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615314,40,27.47,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615315,39,12.1,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615316,37,12.46,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615317,43,632.5,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615318,44,0,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615319,42,66.87,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615320,45,-9999,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615321,38,1.89,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615322,51,0,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615323,53,1.834,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615324,49,1.454,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615325,52,0,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615326,54,1.921,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615327,50,1.506,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615328,56,-0.151,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615329,57,1.77,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13615330,55,0.264,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13618571,58,0.388,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618572,58,0.39,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618573,58,0.385,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618574,58,0.383,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618575,58,0.379,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618576,58,0.372,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618577,58,0.373,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618578,58,0.375,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618579,58,0.37,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618580,58,0.369,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618581,58,0.365,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618582,58,0.369,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618583,58,0.362,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618584,58,0.367,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618585,58,0.362,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618586,58,0.361,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618587,58,0.36,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618588,58,0.358,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618589,58,0.359,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618590,58,0.356,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618591,58,0.358,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618592,58,0.36,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618593,58,0.359,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618594,58,0.357,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618595,63,0.088,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618596,63,0.087,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618597,63,0.087,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618598,63,0.086,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618599,63,0.085,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618600,63,0.085,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618601,63,0.084,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618602,63,0.082,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618603,63,0.082,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618604,63,0.081,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618605,63,0.081,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618606,63,0.08,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618607,63,0.081,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618608,63,0.079,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618609,63,0.079,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618610,63,0.079,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618611,63,0.078,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618612,63,0.078,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618613,63,0.078,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618614,63,0.079,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618615,63,0.079,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618616,63,0.078,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618617,63,0.078,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618618,63,0.078,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618619,73,25.08,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618620,73,26.03,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618621,73,26.55,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618622,73,26.62,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618623,73,26.1,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618624,73,25.42,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618625,73,24.82,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618626,73,24.1,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618627,73,23.55,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618628,73,22.9,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618629,73,22.5,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618630,73,22,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618631,73,21.8,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618632,73,21.3,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618633,73,21,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618634,73,20.65,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618635,73,20.3,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618636,73,20.1,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618637,73,20.3,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618638,73,21.1,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618639,73,22.35,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618640,73,23.53,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618641,73,24.65,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618642,73,25.25,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618643,78,77.15,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618644,78,78.85,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618645,78,79.75,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618646,78,79.87,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618647,78,78.95,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618648,78,77.85,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618649,78,76.7,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618650,78,75.4,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618651,78,74.4,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618652,78,73.2,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618653,78,72.45,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618654,78,71.7,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618655,78,71.3,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618656,78,70.32,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618657,78,69.8,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618658,78,69.12,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618659,78,68.55,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618660,78,68.2,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618661,78,68.53,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618662,78,69.96,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618663,78,72.26,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618664,78,74.38,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618665,78,76.38,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618666,78,77.5,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618667,64,0.088,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618668,64,0.089,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618669,64,0.089,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618670,64,0.088,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618671,64,0.086,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618672,64,0.085,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618673,64,0.083,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618674,64,0.081,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618675,64,0.081,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618676,64,0.079,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618677,64,0.078,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618678,64,0.076,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618679,64,0.076,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618680,64,0.074,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618681,64,0.074,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618682,64,0.074,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618683,64,0.073,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618684,64,0.073,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618685,64,0.073,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618686,64,0.074,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618687,64,0.076,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618688,64,0.077,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618689,64,0.078,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618690,64,0.079,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618691,84,27.1,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618692,84,27.23,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618693,84,26.78,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618694,84,26.55,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618695,84,26.27,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618696,84,25.56,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618697,84,25.66,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618698,84,25.8,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618699,84,25.38,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618700,84,25.24,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618701,84,24.92,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618702,84,25.24,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618703,84,24.66,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618704,84,25.07,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618705,84,24.67,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618706,84,24.5,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618707,84,24.44,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618708,84,24.29,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618709,84,24.41,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618710,84,24.11,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618711,84,24.27,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618712,84,24.42,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618713,84,24.38,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618714,84,24.13,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618715,94,31.82,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618716,94,31.97,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618717,94,32.14,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618718,94,31.63,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618719,94,30.86,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618720,94,30.72,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618721,94,29.99,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618722,94,29.13,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618723,94,28.88,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618724,94,28.35,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618725,94,28.18,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618726,94,27.43,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618727,94,27.54,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618728,94,26.73,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618729,94,26.67,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618730,94,26.51,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618731,94,26.28,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618732,94,26.11,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618733,94,26.07,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618734,94,26.62,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618735,94,27.13,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618736,94,27.65,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618737,94,27.96,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618738,94,28.27,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618739,83,27.72,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618740,83,27.92,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618741,83,27.49,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618742,83,27.25,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618743,83,26.93,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618744,83,26.15,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618745,83,26.21,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618746,83,26.33,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618747,83,25.85,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618748,83,25.68,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618749,83,25.33,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618750,83,25.63,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618751,83,25.02,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618752,83,25.41,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618753,83,24.99,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618754,83,24.8,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618755,83,24.72,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618756,83,24.56,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618757,83,24.69,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618758,83,24.43,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618759,83,24.66,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618760,83,24.89,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618761,83,24.91,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618762,83,24.69,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618763,93,31.72,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618764,93,31.46,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618765,93,31.39,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618766,93,30.91,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618767,93,30.39,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618768,93,30.57,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618769,93,30.13,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618770,93,29.53,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618771,93,29.58,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618772,93,29.27,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618773,93,29.29,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618774,93,28.69,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618775,93,28.97,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618776,93,28.26,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618777,93,28.36,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618778,93,28.31,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618779,93,28.2,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618780,93,28.11,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618781,93,27.98,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618782,93,28.23,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618783,93,28.22,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618784,93,28.24,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618785,93,28.11,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618786,93,28.19,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618787,59,0.491,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618788,59,0.489,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618789,59,0.489,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618790,59,0.489,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618791,59,0.488,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618792,59,0.489,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618793,59,0.482,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618794,59,0.481,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618795,59,0.484,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618796,59,0.479,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618797,59,0.476,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618798,59,0.474,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618799,59,0.48,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618800,59,0.477,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618801,59,0.473,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618802,59,0.472,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618803,59,0.47,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618804,59,0.473,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618805,59,0.473,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618806,59,0.47,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618807,59,0.47,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618808,59,0.468,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618809,59,0.471,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618810,59,0.466,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618811,65,0.128,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618812,65,0.129,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618813,65,0.129,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618814,65,0.127,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618815,65,0.127,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618816,65,0.125,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618817,65,0.127,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618818,65,0.127,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618819,65,0.125,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618820,65,0.126,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618821,65,0.126,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618822,65,0.126,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618823,65,0.123,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618824,65,0.123,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618825,65,0.124,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618826,65,0.124,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618827,65,0.124,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618828,65,0.122,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618829,65,0.122,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618830,65,0.122,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618831,65,0.122,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618832,65,0.122,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618833,65,0.123,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618834,65,0.123,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618835,74,23.6,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618836,74,24.38,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618837,74,24.95,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618838,74,25.1,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618839,74,25.25,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618840,74,25.05,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618841,74,24.8,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618842,74,24.55,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618843,74,24.12,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618844,74,23.6,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618845,74,23.27,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618846,74,22.85,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618847,74,22.5,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618848,74,22.12,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618849,74,21.85,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618850,74,21.55,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618851,74,21.2,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618852,74,21,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618853,74,20.75,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618854,74,20.9,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618855,74,21.35,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618856,74,22.08,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618857,74,23.15,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618858,74,24.05,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618859,79,74.5,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618860,79,75.83,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618861,79,76.93,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618862,79,77.3,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618863,79,77.5,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618864,79,77.17,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618865,79,76.6,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618866,79,76.15,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618867,79,75.4,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618868,79,74.5,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618869,79,73.87,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618870,79,73.1,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618871,79,72.45,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618872,79,71.9,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618873,79,71.4,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618874,79,70.8,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618875,79,70.15,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618876,79,69.8,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618877,79,69.3,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618878,79,69.6,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618879,79,70.43,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618880,79,71.78,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618881,79,73.65,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618882,79,75.3,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618883,66,0.126,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618884,66,0.128,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618885,66,0.129,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618886,66,0.128,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618887,66,0.127,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618888,66,0.126,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618889,66,0.127,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618890,66,0.126,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618891,66,0.124,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618892,66,0.124,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618893,66,0.123,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618894,66,0.122,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618895,66,0.12,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618896,66,0.119,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618897,66,0.119,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618898,66,0.118,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618899,66,0.118,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618900,66,0.116,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618901,66,0.115,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618902,66,0.116,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618903,66,0.116,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618904,66,0.117,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618905,66,0.12,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618906,66,0.122,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618907,86,37.75,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618908,86,37.53,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618909,86,37.51,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618910,86,37.53,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618911,86,37.41,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618912,86,37.61,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618913,86,36.73,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618914,86,36.68,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618915,86,36.98,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618916,86,36.44,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618917,86,36.1,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618918,86,35.87,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618919,86,36.59,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618920,86,36.28,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618921,86,35.75,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618922,86,35.71,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618923,86,35.44,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618924,86,35.81,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618925,86,35.79,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618926,86,35.47,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618927,86,35.52,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618928,86,35.26,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618929,86,35.55,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618930,86,35.07,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618931,96,45.16,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618932,96,46.04,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618933,96,46.38,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618934,96,46,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618935,96,45.85,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618936,96,45.31,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618937,96,45.82,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618938,96,45.34,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618939,96,44.61,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618940,96,44.7,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618941,96,44.29,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618942,96,44,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618943,96,43.12,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618944,96,42.75,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618945,96,42.81,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618946,96,42.47,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618947,96,42.48,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618948,96,41.58,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618949,96,41.27,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618950,96,41.55,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618951,96,41.61,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618952,96,42.26,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618953,96,42.94,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618954,96,43.74,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618955,85,38.47,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618956,85,38.32,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618957,85,38.34,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618958,85,38.39,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618959,85,38.28,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618960,85,38.47,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618961,85,37.56,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618962,85,37.48,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618963,85,37.76,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618964,85,37.17,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618965,85,36.79,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618966,85,36.52,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618967,85,37.23,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618968,85,36.89,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618969,85,36.32,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618970,85,36.26,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618971,85,35.96,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618972,85,36.32,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618973,85,36.28,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618974,85,35.96,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618975,85,36.04,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13618976,85,35.83,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13618977,85,36.2,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13618978,85,35.79,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13618979,95,46.12,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13618980,95,46.47,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13618981,95,46.45,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13618982,95,45.87,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13618983,95,45.63,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13618984,95,45.15,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13618985,95,45.82,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13618986,95,45.52,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13618987,95,45.03,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13618988,95,45.38,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13618989,95,45.22,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13618990,95,45.15,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13618991,95,44.48,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13618992,95,44.29,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13618993,95,44.59,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13618994,95,44.43,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13618995,95,44.62,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13618996,95,43.86,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13618997,95,43.66,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13618998,95,43.92,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13618999,95,43.75,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619000,95,44.01,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619001,95,44.12,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619002,95,44.33,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619003,60,0.36,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619004,60,0.359,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619005,60,0.361,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619006,60,0.362,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619007,60,0.364,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619008,60,0.364,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619009,60,0.366,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619010,60,0.366,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619011,60,0.366,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619012,60,0.366,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619013,60,0.363,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619014,60,0.368,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619015,60,0.367,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619016,60,0.366,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619017,60,0.364,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619018,60,0.368,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619019,60,0.366,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619020,60,0.365,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619021,60,0.367,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619022,60,0.362,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619023,60,0.365,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619024,60,0.364,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619025,60,0.364,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619026,60,0.363,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619027,67,0.083,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619028,67,0.083,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619029,67,0.084,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619030,67,0.083,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619031,67,0.083,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619032,67,0.084,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619033,67,0.084,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619034,67,0.084,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619035,67,0.084,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619036,67,0.084,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619037,67,0.084,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619038,67,0.083,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619039,67,0.083,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619040,67,0.084,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619041,67,0.084,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619042,67,0.083,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619043,67,0.083,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619044,67,0.083,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619045,67,0.083,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619046,67,0.084,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619047,67,0.083,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619048,67,0.083,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619049,67,0.083,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619050,67,0.083,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619051,75,22.4,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619052,75,22.55,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619053,75,22.7,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619054,75,22.9,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619055,75,23.08,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619056,75,23.35,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619057,75,23.5,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619058,75,23.6,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619059,75,23.7,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619060,75,23.65,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619061,75,23.7,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619062,75,23.6,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619063,75,23.55,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619064,75,23.65,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619065,75,23.55,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619066,75,23.5,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619067,75,23.4,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619068,75,23.23,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619069,75,23.15,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619070,75,23,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619071,75,22.85,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619072,75,22.7,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619073,75,22.8,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619074,75,22.75,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619075,80,72.3,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619076,80,72.53,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619077,80,72.8,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619078,80,73.2,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619079,80,73.53,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619080,80,74,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619081,80,74.3,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619082,80,74.5,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619083,80,74.7,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619084,80,74.6,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619085,80,74.7,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619086,80,74.5,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619087,80,74.4,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619088,80,74.6,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619089,80,74.4,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619090,80,74.3,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619091,80,74.1,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619092,80,73.78,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619093,80,73.65,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619094,80,73.4,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619095,80,73.1,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619096,80,72.8,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619097,80,73,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619098,80,72.9,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619099,68,0.08,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619100,68,0.081,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619101,68,0.081,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619102,68,0.08,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619103,68,0.081,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619104,68,0.082,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619105,68,0.081,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619106,68,0.081,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619107,68,0.081,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619108,68,0.082,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619109,68,0.083,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619110,68,0.082,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619111,68,0.081,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619112,68,0.081,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619113,68,0.082,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619114,68,0.081,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619115,68,0.081,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619116,68,0.081,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619117,68,0.081,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619118,68,0.081,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619119,68,0.08,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619120,68,0.08,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619121,68,0.08,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619122,68,0.081,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619123,88,24.49,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619124,88,24.37,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619125,88,24.49,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619126,88,24.65,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619127,88,24.87,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619128,88,24.82,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619129,88,24.95,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619130,88,24.97,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619131,88,24.97,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619132,88,25.05,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619133,88,24.75,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619134,88,25.2,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619135,88,25.13,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619136,88,24.97,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619137,88,24.85,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619138,88,25.22,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619139,88,25,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619140,88,24.97,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619141,88,25.1,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619142,88,24.65,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619143,88,24.86,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619144,88,24.85,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619145,88,24.78,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619146,88,24.77,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619147,98,28.7,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619148,98,28.95,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619149,98,29.11,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619150,98,29.06,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619151,98,29.13,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619152,98,29.48,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619153,98,29.39,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619154,98,29.41,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619155,98,29.42,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619156,98,29.51,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619157,98,29.8,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619158,98,29.47,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619159,98,29.38,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619160,98,29.41,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619161,98,29.5,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619162,98,29.08,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619163,98,29.27,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619164,98,29.22,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619165,98,28.97,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619166,98,29.07,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619167,98,28.9,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619168,98,28.89,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619169,98,29.01,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619170,98,29.02,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619171,87,24.9,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619172,87,24.78,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619173,87,24.91,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619174,87,25.08,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619175,87,25.33,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619176,87,25.29,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619177,87,25.43,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619178,87,25.45,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619179,87,25.46,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619180,87,25.55,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619181,87,25.24,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619182,87,25.69,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619183,87,25.62,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619184,87,25.45,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619185,87,25.33,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619186,87,25.7,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619187,87,25.47,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619188,87,25.42,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619189,87,25.56,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619190,87,25.09,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619191,87,25.3,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619192,87,25.29,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619193,87,25.21,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619194,87,25.2,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619195,97,29.8,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619196,97,30.01,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619197,97,30.1,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619198,97,29.95,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619199,97,29.94,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619200,97,30.19,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619201,97,30.04,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619202,97,29.98,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619203,97,29.94,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619204,97,30.02,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619205,97,30.3,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619206,97,29.99,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619207,97,29.91,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619208,97,29.97,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619209,97,30.11,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619210,97,29.72,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619211,97,29.95,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619212,97,29.98,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619213,97,29.76,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619214,97,29.91,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619215,97,29.8,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619216,97,29.83,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619217,97,29.96,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619218,97,29.96,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619219,61,0.26,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619220,61,0.261,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619221,61,0.261,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619222,61,0.261,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619223,61,0.261,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619224,61,0.261,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619225,61,0.261,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619226,61,0.261,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619227,61,0.261,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619228,61,0.26,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619229,61,0.259,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619230,61,0.259,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619231,61,0.262,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619232,61,0.265,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619233,61,0.265,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619234,61,0.265,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619235,61,0.265,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619236,61,0.265,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619237,61,0.265,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619238,61,0.265,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619239,61,0.265,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619240,61,0.26,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619241,61,0.259,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619242,61,0.26,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619243,69,0.046,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619244,69,0.046,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619245,69,0.046,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619246,69,0.046,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619247,69,0.046,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619248,69,0.046,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619249,69,0.046,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619250,69,0.046,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619251,69,0.046,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619252,69,0.046,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619253,69,0.046,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619254,69,0.046,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619255,69,0.045,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619256,69,0.045,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619257,69,0.045,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619258,69,0.045,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619259,69,0.045,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619260,69,0.045,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619261,69,0.045,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619262,69,0.045,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619263,69,0.045,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619264,69,0.046,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619265,69,0.046,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619266,69,0.046,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619267,76,23,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619268,76,22.95,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619269,76,22.9,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619270,76,22.85,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619271,76,22.8,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619272,76,22.8,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619273,76,22.8,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619274,76,22.8,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619275,76,22.85,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619276,76,22.8,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619277,76,22.9,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619278,76,22.95,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619279,76,23,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619280,76,23,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619281,76,22.95,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619282,76,23,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619283,76,23,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619284,76,23,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619285,76,23,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619286,76,23,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619287,76,23,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619288,76,23,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619289,76,23,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619290,76,23,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619291,81,73.4,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619292,81,73.3,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619293,81,73.2,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619294,81,73.1,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619295,81,73,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619296,81,73,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619297,81,73,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619298,81,73,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619299,81,73.1,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619300,81,73,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619301,81,73.2,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619302,81,73.3,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619303,81,73.4,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619304,81,73.4,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619305,81,73.3,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619306,81,73.4,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619307,81,73.4,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619308,81,73.4,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619309,81,73.4,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619310,81,73.4,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619311,81,73.4,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619312,81,73.4,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619313,81,73.4,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619314,81,73.4,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619315,70,0.044,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619316,70,0.044,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619317,70,0.044,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619318,70,0.044,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619319,70,0.044,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619320,70,0.044,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619321,70,0.044,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619322,70,0.044,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619323,70,0.044,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619324,70,0.044,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619325,70,0.045,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619326,70,0.045,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619327,70,0.044,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619328,70,0.044,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619329,70,0.044,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619330,70,0.044,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619331,70,0.044,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619332,70,0.044,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619333,70,0.044,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619334,70,0.044,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619335,70,0.044,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619336,70,0.045,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619337,70,0.045,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619338,70,0.045,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619339,90,16.23,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619340,90,16.31,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619341,90,16.31,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619342,90,16.31,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619343,90,16.31,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619344,90,16.31,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619345,90,16.31,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619346,90,16.31,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619347,90,16.31,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619348,90,16.26,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619349,90,16.14,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619350,90,16.14,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619351,90,16.37,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619352,90,16.6,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619353,90,16.6,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619354,90,16.6,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619355,90,16.6,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619356,90,16.6,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619357,90,16.6,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619358,90,16.6,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619359,90,16.6,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619360,90,16.26,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619361,90,16.14,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619362,90,16.18,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619363,100,16.11,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619364,100,15.99,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619365,100,15.99,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619366,100,15.99,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619367,100,15.99,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619368,100,15.99,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619369,100,15.99,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619370,100,15.99,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619371,100,15.99,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619372,100,16.05,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619373,100,16.22,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619374,100,16.22,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619375,100,16.07,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619376,100,15.92,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619377,100,15.92,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619378,100,15.92,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619379,100,15.92,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619380,100,15.92,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619381,100,15.92,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619382,100,15.92,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619383,100,15.92,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619384,100,16.15,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619385,100,16.22,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619386,100,16.16,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619387,89,16.53,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619388,89,16.61,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619389,89,16.6,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619390,89,16.6,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619391,89,16.6,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619392,89,16.6,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619393,89,16.6,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619394,89,16.6,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619395,89,16.6,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619396,89,16.56,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619397,89,16.43,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619398,89,16.43,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619399,89,16.67,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619400,89,16.91,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619401,89,16.91,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619402,89,16.91,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619403,89,16.91,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619404,89,16.91,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619405,89,16.91,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619406,89,16.91,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619407,89,16.91,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619408,89,16.56,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619409,89,16.44,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619410,89,16.48,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619411,99,16.52,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619412,99,16.42,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619413,99,16.42,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619414,99,16.43,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619415,99,16.43,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619416,99,16.43,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619417,99,16.43,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619418,99,16.43,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619419,99,16.43,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619420,99,16.49,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619421,99,16.67,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619422,99,16.67,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619423,99,16.51,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619424,99,16.34,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619425,99,16.34,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619426,99,16.34,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619427,99,16.34,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619428,99,16.34,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619429,99,16.34,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619430,99,16.34,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619431,99,16.34,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619432,99,16.58,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619433,99,16.66,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619434,99,16.61,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619435,62,0.384,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619436,62,0.384,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619437,62,0.384,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619438,62,0.385,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619439,62,0.384,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619440,62,0.384,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619441,62,0.384,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619442,62,0.384,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619443,62,0.384,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619444,62,0.384,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619445,62,0.385,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619446,62,0.384,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619447,62,0.384,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619448,62,0.384,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619449,62,0.384,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619450,62,0.384,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619451,62,0.384,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619452,62,0.384,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619453,62,0.384,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619454,62,0.384,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619455,62,0.384,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619456,62,0.384,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619457,62,0.384,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619458,62,0.384,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619459,71,0.107,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619460,71,0.107,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619461,71,0.107,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619462,71,0.106,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619463,71,0.107,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619464,71,0.107,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619465,71,0.107,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619466,71,0.107,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619467,71,0.107,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619468,71,0.107,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619469,71,0.106,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619470,71,0.107,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619471,71,0.107,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619472,71,0.107,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619473,71,0.107,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619474,71,0.107,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619475,71,0.107,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619476,71,0.107,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619477,71,0.107,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619478,71,0.107,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619479,71,0.107,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619480,71,0.107,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619481,71,0.107,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619482,71,0.107,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619483,77,20.9,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619484,77,20.9,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619485,77,20.9,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619486,77,20.85,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619487,77,20.8,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619488,77,20.85,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619489,77,20.9,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619490,77,20.85,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619491,77,20.9,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619492,77,20.9,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619493,77,20.85,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619494,77,20.9,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619495,77,20.9,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619496,77,20.9,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619497,77,20.75,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619498,77,20.85,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619499,77,20.85,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619500,77,20.85,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619501,77,20.8,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619502,77,20.85,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619503,77,20.9,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619504,77,20.75,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619505,77,20.8,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619506,77,20.8,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619507,82,69.6,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619508,82,69.6,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619509,82,69.6,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619510,82,69.5,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619511,82,69.4,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619512,82,69.5,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619513,82,69.6,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619514,82,69.5,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619515,82,69.6,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619516,82,69.6,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619517,82,69.5,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619518,82,69.6,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619519,82,69.6,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619520,82,69.6,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619521,82,69.3,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619522,82,69.5,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619523,82,69.5,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619524,82,69.5,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619525,82,69.4,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619526,82,69.5,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619527,82,69.6,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619528,82,69.3,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619529,82,69.4,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619530,82,69.4,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619531,72,0.1,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619532,72,0.1,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619533,72,0.1,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619534,72,0.1,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619535,72,0.1,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619536,72,0.1,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619537,72,0.1,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619538,72,0.1,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619539,72,0.1,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619540,72,0.1,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619541,72,0.1,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619542,72,0.1,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619543,72,0.1,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619544,72,0.1,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619545,72,0.1,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619546,72,0.1,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619547,72,0.1,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619548,72,0.1,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619549,72,0.1,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619550,72,0.1,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619551,72,0.1,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619552,72,0.1,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619553,72,0.1,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619554,72,0.1,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619555,92,26.67,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619556,92,26.67,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619557,92,26.67,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619558,92,26.78,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619559,92,26.67,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619560,92,26.67,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619561,92,26.67,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619562,92,26.67,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619563,92,26.67,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619564,92,26.67,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619565,92,26.78,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619566,92,26.67,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619567,92,26.67,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619568,92,26.67,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619569,92,26.67,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619570,92,26.67,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619571,92,26.67,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619572,92,26.67,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619573,92,26.67,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619574,92,26.67,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619575,92,26.67,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619576,92,26.67,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619577,92,26.67,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619578,92,26.67,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619579,102,36.12,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619580,102,36.12,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619581,102,36.12,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619582,102,35.96,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619583,102,36.12,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619584,102,36.12,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619585,102,36.12,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619586,102,36.12,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619587,102,36.12,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619588,102,36.12,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619589,102,35.96,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619590,102,36.12,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619591,102,36.12,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619592,102,36.12,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619593,102,36.12,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619594,102,36.12,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619595,102,36.12,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619596,102,36.12,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619597,102,36.12,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619598,102,36.12,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619599,102,36.12,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619600,102,36.12,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619601,102,36.12,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619602,102,36.12,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619603,91,27.02,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619604,91,27.02,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619605,91,27.02,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619606,91,27.12,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619607,91,27.02,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619608,91,27.02,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619609,91,27.02,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619610,91,27.02,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619611,91,27.02,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619612,91,27.02,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619613,91,27.12,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619614,91,27.02,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619615,91,27.01,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619616,91,27.01,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619617,91,27.01,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619618,91,27.01,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619619,91,27.01,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619620,91,27.01,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619621,91,27.01,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619622,91,27.01,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619623,91,27.01,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619624,91,27.01,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619625,91,27.01,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619626,91,27.01,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13619627,101,38.39,'2011-08-02 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13619628,101,38.39,'2011-08-02 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13619629,101,38.39,'2011-08-02 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13619630,101,38.22,'2011-08-02 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13619631,101,38.39,'2011-08-02 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13619632,101,38.39,'2011-08-02 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13619633,101,38.39,'2011-08-02 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13619634,101,38.39,'2011-08-02 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13619635,101,38.39,'2011-08-02 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13619636,101,38.39,'2011-08-02 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13619637,101,38.22,'2011-08-03 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13619638,101,38.39,'2011-08-03 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13619639,101,38.4,'2011-08-03 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13619640,101,38.41,'2011-08-03 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13619641,101,38.41,'2011-08-03 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13619642,101,38.42,'2011-08-03 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13619643,101,38.42,'2011-08-03 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13619644,101,38.42,'2011-08-03 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13619645,101,38.42,'2011-08-03 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13619646,101,38.42,'2011-08-03 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13619647,101,38.42,'2011-08-03 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13619648,101,38.42,'2011-08-03 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13619649,101,38.42,'2011-08-03 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13619650,101,38.42,'2011-08-03 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625376,31,13.22,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625377,31,13.22,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625378,31,13.22,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625379,31,13.13,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625380,31,13.15,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625381,31,12.88,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625382,31,12.75,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625383,31,12.68,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625384,31,12.66,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625385,31,12.62,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625386,31,12.58,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625387,31,12.55,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625388,31,12.5,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625389,31,12.49,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625390,31,12.48,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625391,31,12.42,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625392,31,12.47,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625393,31,12.49,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625394,31,12.71,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625395,31,13.33,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625396,31,13.29,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625397,31,13.26,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625398,31,13.14,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625399,31,13.21,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625400,32,3.545,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625401,32,3.511,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625402,32,2.842,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625403,32,2.982,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625404,32,2.763,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625405,32,1.433,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625406,32,2.784,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625407,32,1.179,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625408,32,1.114,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625409,32,1.301,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625410,32,0.882,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625411,32,0.964,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625412,32,0.829,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625413,32,0.868,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625414,32,1.205,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625415,32,1.581,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625416,32,0.913,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625417,32,1.084,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625418,32,1.217,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625419,32,2.518,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625420,32,2.383,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625421,32,2.89,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625422,32,2.918,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625423,32,2.294,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625424,33,248.6,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625425,33,202,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625426,33,187.8,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625427,33,184.4,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625428,33,207.8,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625429,33,282.9,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625430,33,294.7,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625431,33,186.5,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625432,33,209.5,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625433,33,225.3,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625434,33,218.3,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625435,33,250.7,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625436,33,250.1,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625437,33,300,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625438,33,308.5,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625439,33,328.8,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625440,33,348.7,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625441,33,39.27,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625442,33,62.34,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625443,33,32.57,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625444,33,42.96,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625445,33,39.46,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625446,33,37.8,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625447,33,350.7,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625448,34,17.86,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625449,34,31.25,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625450,34,20.37,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625451,34,17.82,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625452,34,21.57,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625453,34,13.32,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625454,34,30.37,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625455,34,63.32,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625456,34,61.85,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625457,34,41.51,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625458,34,36.99,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625459,34,36.49,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625460,34,36.73,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625461,34,43.84,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625462,34,47.12,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625463,34,39.15,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625464,34,71.9,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625465,34,45.05,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625466,34,34.34,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625467,34,19.21,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625468,34,19,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625469,34,17.99,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625470,34,15.96,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625471,34,100.7,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625472,35,630.8,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13625473,35,630.2,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13625474,35,629.9,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13625475,35,629.7,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13625476,35,629.8,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13625477,35,630,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13625478,35,630.5,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13625479,35,630.6,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13625480,35,630.4,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13625481,35,630.6,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13625482,35,630.6,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13625483,35,630.6,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13625484,35,630.4,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13625485,35,630.4,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13625486,35,630.4,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13625487,35,630.5,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13625488,35,630.7,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13625489,35,630.9,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13625490,35,631,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13625491,35,631,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13625492,35,630.9,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13625493,35,630.6,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13625494,35,630.3,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13625495,35,629.8,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13625496,30,0,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625497,30,0,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625498,30,0,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625499,30,0,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625500,30,0,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625501,30,0,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625502,30,0,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625503,30,0,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625504,30,0,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625505,30,0,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625506,30,0,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625507,30,0,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625508,30,0,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625509,30,0,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625510,30,0,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625511,30,0,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625512,30,0,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625513,30,0,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625514,30,0,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625515,30,0,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625516,30,0,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625517,30,0,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625518,30,0,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625519,30,0,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625520,28,25.86,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625521,28,26.2,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625522,28,25.97,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625523,28,26.25,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625524,28,24.85,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625525,28,24.15,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625526,28,21.42,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625527,28,18.53,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625528,28,17.38,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625529,28,16.6,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625530,28,15.49,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625531,28,15.35,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625532,28,14.79,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625533,28,14.22,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625534,28,14.05,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625535,28,13.88,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625536,28,14.08,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625537,28,15.99,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625538,28,19.95,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625539,28,20.55,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625540,28,22.08,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625541,28,24.08,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625542,28,25.31,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625543,28,27.38,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625544,29,40.28,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625545,29,39.31,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625546,29,36.23,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625547,29,37.75,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625548,29,47.57,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625549,29,56.09,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625550,29,53.52,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625551,29,69.14,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625552,29,70.95,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625553,29,75.55,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625554,29,77.58,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625555,29,81.5,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625556,29,79.69,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625557,29,83,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625558,29,82.2,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625559,29,75.23,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625560,29,83.6,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625561,29,70.84,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625562,29,61.77,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625563,29,62.23,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625564,29,55.73,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625565,29,54.23,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625566,29,45.47,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625567,29,27.91,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625568,36,723.3,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625569,36,874,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625570,36,629.5,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625571,36,623,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625572,36,195.4,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625573,36,131.3,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625574,36,20.01,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625575,36,0.043,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625576,36,0,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625577,36,0,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625578,36,0,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625579,36,0,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625580,36,0,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625581,36,0,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625582,36,0,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625583,36,0,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625584,36,9.39,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625585,36,169.9,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625586,36,387.7,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625587,36,609.5,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625588,36,805,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625589,36,959,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625590,36,1066,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625591,36,1102,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625592,46,1.438,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625593,46,1.128,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625594,46,1.518,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625595,46,1.473,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625596,46,1.299,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625597,46,1.428,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625598,46,1.466,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625599,46,1.451,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625600,46,1.417,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625601,46,1.43,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625602,46,1.444,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625603,46,1.452,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625604,46,1.471,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625605,46,1.477,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625606,46,1.468,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625607,46,1.421,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625608,46,1.419,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625609,46,1.42,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625610,46,1.408,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625611,46,1.388,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625612,46,1.482,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625613,46,1.055,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625614,46,1.19,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625615,46,1.235,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625616,47,1.505,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625617,47,1.181,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625618,47,1.588,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625619,47,1.543,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625620,47,1.357,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625621,47,1.49,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625622,47,1.523,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625623,47,1.499,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625624,47,1.461,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625625,47,1.473,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625626,47,1.484,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625627,47,1.492,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625628,47,1.511,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625629,47,1.515,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625630,47,1.505,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625631,47,1.456,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625632,47,1.455,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625633,47,1.461,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625634,47,1.459,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625635,47,1.44,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625636,47,1.541,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625637,47,1.1,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625638,47,1.244,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625639,47,1.295,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625640,48,0.265,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13625641,48,0.589,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13625642,48,0.182,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13625643,48,0.227,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13625644,48,0.413,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13625645,48,0.28,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13625646,48,0.247,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13625647,48,0.271,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13625648,48,0.309,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13625649,48,0.297,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13625650,48,0.286,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13625651,48,0.278,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13625652,48,0.259,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13625653,48,0.255,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13625654,48,0.265,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13625655,48,0.314,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13625656,48,0.315,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13625657,48,0.309,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13625658,48,0.311,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13625659,48,0.33,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13625660,48,0.229,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13625661,48,0.67,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13625662,48,0.526,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13625663,48,0.475,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13625664,41,20.93,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625665,40,27.12,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625666,39,14.01,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625667,37,12.5,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625668,43,631,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625669,44,0,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625670,42,58.44,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625671,45,-9999,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625672,38,2.299,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625673,51,0,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625674,53,1.818,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625675,49,1.422,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625676,52,0,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625677,54,1.901,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625678,50,1.475,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625679,56,-0.131,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625680,57,1.77,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13625681,55,0.295,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13628922,58,0.356,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13628923,58,0.353,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13628924,58,0.354,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13628925,58,0.351,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13628926,58,0.346,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13628927,58,0.344,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13628928,58,0.344,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13628929,58,0.341,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13628930,58,0.341,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13628931,58,0.341,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13628932,58,0.341,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13628933,58,0.337,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13628934,58,0.339,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13628935,58,0.333,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13628936,58,0.333,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13628937,58,0.331,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13628938,58,0.334,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13628939,58,0.33,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13628940,58,0.33,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13628941,58,0.332,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13628942,58,0.328,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13628943,58,0.333,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13628944,58,0.332,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13628945,58,0.331,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13628946,63,0.077,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13628947,63,0.077,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13628948,63,0.075,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13628949,63,0.075,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13628950,63,0.074,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13628951,63,0.074,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13628952,63,0.073,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13628953,63,0.073,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13628954,63,0.072,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13628955,63,0.072,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13628956,63,0.071,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13628957,63,0.071,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13628958,63,0.07,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13628959,63,0.07,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13628960,63,0.07,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13628961,63,0.069,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13628962,63,0.068,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13628963,63,0.069,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13628964,63,0.069,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13628965,63,0.069,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13628966,63,0.069,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13628967,63,0.068,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13628968,63,0.068,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13628969,63,0.068,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13628970,73,25.7,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13628971,73,26.1,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13628972,73,26.48,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13628973,73,26.62,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13628974,73,26.3,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13628975,73,25.62,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13628976,73,25.07,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13628977,73,24.15,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13628978,73,23.5,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13628979,73,22.9,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13628980,73,22.47,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13628981,73,21.9,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13628982,73,21.6,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13628983,73,21.1,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13628984,73,20.65,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13628985,73,20.25,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13628986,73,20,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13628987,73,19.7,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13628988,73,19.95,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13628989,73,20.75,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13628990,73,21.83,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13628991,73,23.25,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13628992,73,24.4,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13628993,73,25.75,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13628994,78,78.28,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13628995,78,78.95,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13628996,78,79.63,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13628997,78,79.87,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13628998,78,79.3,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13628999,78,78.17,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629000,78,77.14,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629001,78,75.5,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629002,78,74.3,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629003,78,73.2,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629004,78,72.45,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629005,78,71.5,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629006,78,70.9,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629007,78,69.97,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629008,78,69.15,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629009,78,68.45,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629010,78,68,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629011,78,67.5,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629012,78,67.93,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629013,78,69.33,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629014,78,71.31,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629015,78,73.86,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629016,78,75.93,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629017,78,78.41,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629018,64,0.078,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629019,64,0.078,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629020,64,0.077,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629021,64,0.077,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629022,64,0.076,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629023,64,0.075,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629024,64,0.073,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629025,64,0.072,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629026,64,0.071,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629027,64,0.07,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629028,64,0.068,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629029,64,0.068,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629030,64,0.066,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629031,64,0.066,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629032,64,0.066,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629033,64,0.065,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629034,64,0.063,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629035,64,0.064,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629036,64,0.064,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629037,64,0.064,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629038,64,0.066,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629039,64,0.067,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629040,64,0.068,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629041,64,0.069,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629042,84,24.1,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629043,84,23.85,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629044,84,23.93,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629045,84,23.67,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629046,84,23.19,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629047,84,23,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629048,84,23.02,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629049,84,22.71,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629050,84,22.75,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629051,84,22.7,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629052,84,22.78,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629053,84,22.44,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629054,84,22.63,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629055,84,22.11,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629056,84,22.1,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629057,84,21.92,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629058,84,22.14,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629059,84,21.84,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629060,84,21.86,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629061,84,21.97,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629062,84,21.62,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629063,84,22.09,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629064,84,21.98,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629065,84,21.88,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629066,94,28.03,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629067,94,28.13,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629068,94,27.82,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629069,94,27.72,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629070,94,27.36,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629071,94,26.96,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629072,94,26.45,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629073,94,25.92,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629074,94,25.47,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629075,94,25.09,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629076,94,24.53,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629077,94,24.33,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629078,94,23.76,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629079,94,23.84,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629080,94,23.52,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629081,94,23.34,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629082,94,22.85,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629083,94,22.83,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629084,94,22.85,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629085,94,23.11,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629086,94,23.77,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629087,94,23.96,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629088,94,24.28,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629089,94,24.66,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629090,83,24.68,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629091,83,24.45,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629092,83,24.56,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629093,83,24.3,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629094,83,23.78,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629095,83,23.54,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629096,83,23.54,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629097,83,23.17,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629098,83,23.18,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629099,83,23.1,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629100,83,23.15,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629101,83,22.78,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629102,83,22.95,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629103,83,22.4,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629104,83,22.37,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629105,83,22.17,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629106,83,22.37,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629107,83,22.06,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629108,83,22.09,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629109,83,22.24,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629110,83,21.95,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629111,83,22.5,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629112,83,22.45,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629113,83,22.41,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629114,93,27.75,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629115,93,27.69,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629116,93,27.2,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629117,93,27.1,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629118,93,26.87,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629119,93,26.77,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629120,93,26.48,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629121,93,26.26,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629122,93,26.08,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629123,93,25.91,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629124,93,25.52,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629125,93,25.49,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629126,93,25.06,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629127,93,25.3,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629128,93,25.12,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629129,93,25.06,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629130,93,24.67,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629131,93,24.74,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629132,93,24.66,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629133,93,24.62,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629134,93,24.87,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629135,93,24.57,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629136,93,24.48,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629137,93,24.39,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629138,59,0.463,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629139,59,0.465,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629140,59,0.467,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629141,59,0.471,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629142,59,0.467,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629143,59,0.467,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629144,59,0.456,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629145,59,0.465,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629146,59,0.466,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629147,59,0.46,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629148,59,0.456,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629149,59,0.459,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629150,59,0.458,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629151,59,0.451,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629152,59,0.448,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629153,59,0.45,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629154,59,0.454,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629155,59,0.45,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629156,59,0.45,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629157,59,0.452,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629158,59,0.451,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629159,59,0.45,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629160,59,0.452,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629161,59,0.442,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629162,65,0.124,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629163,65,0.123,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629164,65,0.121,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629165,65,0.12,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629166,65,0.119,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629167,65,0.12,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629168,65,0.121,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629169,65,0.119,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629170,65,0.118,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629171,65,0.118,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629172,65,0.119,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629173,65,0.117,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629174,65,0.117,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629175,65,0.118,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629176,65,0.118,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629177,65,0.117,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629178,65,0.116,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629179,65,0.117,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629180,65,0.115,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629181,65,0.115,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629182,65,0.115,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629183,65,0.116,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629184,65,0.115,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629185,65,0.118,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629186,74,24.68,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629187,74,25.05,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629188,74,25.33,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629189,74,25.6,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629190,74,25.6,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629191,74,25.4,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629192,74,25,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629193,74,24.72,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629194,74,24.17,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629195,74,23.7,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629196,74,23.27,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629197,74,22.85,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629198,74,22.5,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629199,74,22,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629200,74,21.8,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629201,74,21.35,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629202,74,21.05,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629203,74,20.85,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629204,74,20.5,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629205,74,20.7,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629206,74,21.1,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629207,74,21.93,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629208,74,22.93,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629209,74,24.25,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629210,79,76.38,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629211,79,77.18,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629212,79,77.6,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629213,79,78.2,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629214,79,78.2,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629215,79,77.7,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629216,79,77.05,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629217,79,76.47,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629218,79,75.5,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629219,79,74.7,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629220,79,73.87,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629221,79,73.1,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629222,79,72.45,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629223,79,71.7,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629224,79,71.3,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629225,79,70.4,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629226,79,69.9,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629227,79,69.5,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629228,79,68.9,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629229,79,69.23,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629230,79,69.98,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629231,79,71.5,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629232,79,73.23,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629233,79,75.63,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629234,66,0.123,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629235,66,0.123,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629236,66,0.122,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629237,66,0.121,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629238,66,0.121,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629239,66,0.12,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629240,66,0.122,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629241,66,0.119,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629242,66,0.117,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629243,66,0.116,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629244,66,0.117,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629245,66,0.114,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629246,66,0.113,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629247,66,0.113,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629248,66,0.113,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629249,66,0.112,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629250,66,0.11,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629251,66,0.11,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629252,66,0.108,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629253,66,0.108,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629254,66,0.109,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629255,66,0.111,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629256,66,0.112,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629257,66,0.116,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629258,86,34.67,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629259,86,34.87,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629260,86,35.16,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629261,86,35.51,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629262,86,35.1,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629263,86,35.08,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629264,86,33.93,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629265,86,34.88,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629266,86,35.01,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629267,86,34.37,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629268,86,33.89,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629269,86,34.26,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629270,86,34.17,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629271,86,33.35,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629272,86,33.13,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629273,86,33.28,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629274,86,33.76,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629275,86,33.31,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629276,86,33.37,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629277,86,33.47,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629278,86,33.42,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629279,86,33.33,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629280,86,33.54,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629281,86,32.44,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629282,96,44.34,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629283,96,44.19,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629284,96,43.79,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629285,96,43.51,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629286,96,43.35,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629287,96,43.33,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629288,96,43.74,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629289,96,42.77,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629290,96,41.9,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629291,96,41.8,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629292,96,41.92,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629293,96,41.04,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629294,96,40.64,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629295,96,40.94,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629296,96,40.7,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629297,96,40.24,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629298,96,39.59,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629299,96,39.69,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629300,96,39.15,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629301,96,38.96,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629302,96,39.21,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629303,96,40.01,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629304,96,40.2,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629305,96,41.81,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629306,85,35.42,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629307,85,35.66,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629308,85,35.98,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629309,85,36.36,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629310,85,35.94,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629311,85,35.91,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629312,85,34.71,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629313,85,35.66,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629314,85,35.76,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629315,85,35.06,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629316,85,34.54,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629317,85,34.89,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629318,85,34.77,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629319,85,33.91,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629320,85,33.66,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629321,85,33.78,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629322,85,34.24,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629323,85,33.76,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629324,85,33.8,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629325,85,33.91,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629326,85,33.89,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629327,85,33.85,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629328,85,34.13,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629329,85,33.1,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629330,95,44.58,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629331,95,44.14,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629332,95,43.54,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629333,95,43.15,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629334,95,42.96,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629335,95,43.02,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629336,95,43.6,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629337,95,42.83,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629338,95,42.23,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629339,95,42.38,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629340,95,42.77,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629341,95,42.1,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629342,95,41.94,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629343,95,42.49,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629344,95,42.44,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629345,95,42.16,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629346,95,41.71,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629347,95,42,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629348,95,41.54,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629349,95,41.32,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629350,95,41.34,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629351,95,41.79,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629352,95,41.42,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629353,95,42.37,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629354,60,0.367,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629355,60,0.367,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629356,60,0.367,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629357,60,0.366,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629358,60,0.366,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629359,60,0.369,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629360,60,0.37,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629361,60,0.368,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629362,60,0.364,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629363,60,0.366,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629364,60,0.367,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629365,60,0.372,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629366,60,0.369,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629367,60,0.366,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629368,60,0.367,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629369,60,0.368,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629370,60,0.367,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629371,60,0.365,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629372,60,0.364,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629373,60,0.367,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629374,60,0.366,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629375,60,0.367,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629376,60,0.366,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629377,60,0.366,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629378,67,0.083,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629379,67,0.083,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629380,67,0.083,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629381,67,0.084,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629382,67,0.084,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629383,67,0.083,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629384,67,0.083,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629385,67,0.084,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629386,67,0.084,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629387,67,0.084,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629388,67,0.084,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629389,67,0.083,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629390,67,0.084,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629391,67,0.084,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629392,67,0.084,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629393,67,0.083,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629394,67,0.084,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629395,67,0.084,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629396,67,0.084,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629397,67,0.083,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629398,67,0.083,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629399,67,0.083,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629400,67,0.083,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629401,67,0.084,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629402,75,22.85,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629403,75,23,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629404,75,23.15,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629405,75,23.35,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629406,75,23.38,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629407,75,23.55,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629408,75,23.65,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629409,75,23.9,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629410,75,23.9,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629411,75,23.9,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629412,75,23.9,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629413,75,23.9,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629414,75,23.75,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629415,75,23.65,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629416,75,23.55,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629417,75,23.5,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629418,75,23.4,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629419,75,23.22,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629420,75,23,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629421,75,22.9,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629422,75,22.8,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629423,75,22.8,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629424,75,22.6,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629425,75,22.6,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629426,80,73.1,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629427,80,73.4,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629428,80,73.65,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629429,80,74,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629430,80,74.08,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629431,80,74.4,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629432,80,74.6,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629433,80,75.1,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629434,80,75.1,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629435,80,75.1,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629436,80,75.1,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629437,80,75.1,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629438,80,74.8,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629439,80,74.6,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629440,80,74.4,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629441,80,74.3,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629442,80,74.1,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629443,80,73.77,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629444,80,73.4,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629445,80,73.2,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629446,80,73,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629447,80,73,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629448,80,72.6,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629449,80,72.6,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629450,68,0.081,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629451,68,0.081,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629452,68,0.081,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629453,68,0.081,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629454,68,0.081,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629455,68,0.082,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629456,68,0.082,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629457,68,0.082,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629458,68,0.083,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629459,68,0.083,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629460,68,0.083,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629461,68,0.082,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629462,68,0.082,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629463,68,0.083,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629464,68,0.082,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629465,68,0.081,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629466,68,0.081,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629467,68,0.082,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629468,68,0.082,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629469,68,0.081,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629470,68,0.081,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629471,68,0.08,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629472,68,0.08,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629473,68,0.081,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629474,88,25.08,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629475,88,25.04,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629476,88,25.07,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629477,88,24.94,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629478,88,24.95,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629479,88,25.26,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629480,88,25.35,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629481,88,25.19,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629482,88,24.81,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629483,88,25.01,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629484,88,25.01,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629485,88,25.5,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629486,88,25.27,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629487,88,25.04,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629488,88,25.11,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629489,88,25.18,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629490,88,25.06,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629491,88,24.93,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629492,88,24.78,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629493,88,25.16,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629494,88,25.01,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629495,88,25.07,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629496,88,25.06,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629497,88,25,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629498,98,28.95,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629499,98,29.11,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629500,98,29.12,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629501,98,29.38,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629502,98,29.39,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629503,98,29.33,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629504,98,29.43,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629505,98,29.69,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629506,98,30.08,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629507,98,29.89,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629508,98,29.89,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629509,98,29.4,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629510,98,29.56,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629511,98,29.72,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629512,98,29.58,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629513,98,29.23,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629514,98,29.32,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629515,98,29.37,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629516,98,29.43,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629517,98,29.04,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629518,98,29.07,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629519,98,28.93,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629520,98,28.72,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629521,98,29.06,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629522,87,25.53,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629523,87,25.49,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629524,87,25.52,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629525,87,25.41,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629526,87,25.42,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629527,87,25.75,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629528,87,25.85,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629529,87,25.69,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629530,87,25.31,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629531,87,25.51,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629532,87,25.51,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629533,87,26.01,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629534,87,25.77,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629535,87,25.53,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629536,87,25.59,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629537,87,25.66,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629538,87,25.52,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629539,87,25.38,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629540,87,25.23,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629541,87,25.6,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629542,87,25.44,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629543,87,25.5,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629544,87,25.49,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629545,87,25.43,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629546,97,29.85,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629547,97,29.96,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629548,97,29.9,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629549,97,30.09,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629550,97,30.05,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629551,97,29.91,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629552,97,29.95,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629553,97,30.19,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629554,97,30.55,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629555,97,30.36,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629556,97,30.36,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629557,97,29.89,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629558,97,30.08,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629559,97,30.28,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629560,97,30.18,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629561,97,29.88,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629562,97,30.03,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629563,97,30.15,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629564,97,30.26,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629565,97,29.92,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629566,97,30,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629567,97,29.91,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629568,97,29.72,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629569,97,30.05,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629570,61,0.26,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629571,61,0.261,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629572,61,0.261,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629573,61,0.261,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629574,61,0.261,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629575,61,0.261,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629576,61,0.261,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629577,61,0.261,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629578,61,0.26,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629579,61,0.263,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629580,61,0.263,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629581,61,0.265,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629582,61,0.265,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629583,61,0.265,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629584,61,0.264,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629585,61,0.26,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629586,61,0.262,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629587,61,0.262,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629588,61,0.262,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629589,61,0.264,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629590,61,0.265,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629591,61,0.263,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629592,61,0.26,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629593,61,0.261,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629594,69,0.046,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629595,69,0.046,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629596,69,0.046,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629597,69,0.046,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629598,69,0.046,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629599,69,0.046,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629600,69,0.046,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629601,69,0.046,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629602,69,0.046,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629603,69,0.045,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629604,69,0.045,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629605,69,0.045,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629606,69,0.045,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629607,69,0.045,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629608,69,0.045,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629609,69,0.046,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629610,69,0.046,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629611,69,0.046,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629612,69,0.046,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629613,69,0.046,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629614,69,0.045,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629615,69,0.045,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629616,69,0.046,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629617,69,0.046,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629618,76,22.85,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629619,76,22.8,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629620,76,22.8,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629621,76,22.8,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629622,76,22.8,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629623,76,22.8,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629624,76,22.8,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629625,76,22.8,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629626,76,22.8,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629627,76,22.8,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629628,76,22.85,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629629,76,22.9,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629630,76,22.95,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629631,76,23,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629632,76,23,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629633,76,23,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629634,76,23,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629635,76,23,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629636,76,23,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629637,76,23,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629638,76,22.95,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629639,76,22.95,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629640,76,22.95,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629641,76,22.8,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629642,81,73.1,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629643,81,73,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629644,81,73,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629645,81,73,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629646,81,73,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629647,81,73,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629648,81,73,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629649,81,73,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629650,81,73,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629651,81,73,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629652,81,73.1,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629653,81,73.2,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629654,81,73.3,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629655,81,73.4,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629656,81,73.4,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629657,81,73.4,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629658,81,73.4,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629659,81,73.4,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629660,81,73.4,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629661,81,73.4,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629662,81,73.3,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629663,81,73.3,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629664,81,73.3,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629665,81,73,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629666,70,0.045,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629667,70,0.044,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629668,70,0.044,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629669,70,0.044,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629670,70,0.044,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629671,70,0.044,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629672,70,0.044,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629673,70,0.044,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629674,70,0.045,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629675,70,0.044,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629676,70,0.044,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629677,70,0.044,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629678,70,0.044,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629679,70,0.044,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629680,70,0.044,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629681,70,0.045,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629682,70,0.045,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629683,70,0.045,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629684,70,0.045,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629685,70,0.045,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629686,70,0.044,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629687,70,0.044,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629688,70,0.045,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629689,70,0.045,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629690,90,16.18,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629691,90,16.31,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629692,90,16.3,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629693,90,16.3,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629694,90,16.3,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629695,90,16.3,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629696,90,16.3,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629697,90,16.3,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629698,90,16.18,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629699,90,16.49,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629700,90,16.49,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629701,90,16.6,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629702,90,16.6,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629703,90,16.6,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629704,90,16.5,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629705,90,16.19,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629706,90,16.38,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629707,90,16.38,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629708,90,16.38,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629709,90,16.5,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629710,90,16.6,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629711,90,16.49,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629712,90,16.26,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629713,90,16.3,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629714,100,16.16,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629715,100,15.99,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629716,100,15.99,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629717,100,15.99,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629718,100,15.99,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629719,100,15.99,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629720,100,15.99,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629721,100,15.99,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629722,100,16.16,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629723,100,15.99,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629724,100,15.99,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629725,100,15.92,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629726,100,15.92,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629727,100,15.92,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629728,100,16.01,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629729,100,16.26,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629730,100,16.18,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629731,100,16.18,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629732,100,16.18,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629733,100,16,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629734,100,15.92,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629735,100,15.99,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629736,100,16.15,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629737,100,16.09,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629738,89,16.48,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629739,89,16.6,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629740,89,16.6,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629741,89,16.59,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629742,89,16.59,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629743,89,16.59,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629744,89,16.59,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629745,89,16.59,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629746,89,16.47,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629747,89,16.79,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629748,89,16.79,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629749,89,16.9,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629750,89,16.9,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629751,89,16.91,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629752,89,16.8,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629753,89,16.49,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629754,89,16.68,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629755,89,16.68,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629756,89,16.68,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629757,89,16.8,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629758,89,16.91,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629759,89,16.79,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629760,89,16.55,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629761,89,16.59,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629762,99,16.61,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629763,99,16.43,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629764,99,16.43,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629765,99,16.45,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629766,99,16.45,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629767,99,16.45,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629768,99,16.45,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629769,99,16.45,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629770,99,16.63,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629771,99,16.44,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629772,99,16.44,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629773,99,16.36,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629774,99,16.35,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629775,99,16.35,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629776,99,16.43,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629777,99,16.69,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629778,99,16.61,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629779,99,16.61,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629780,99,16.61,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629781,99,16.43,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629782,99,16.34,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629783,99,16.44,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629784,99,16.59,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629785,99,16.54,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629786,62,0.384,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629787,62,0.384,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629788,62,0.384,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629789,62,0.385,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629790,62,0.384,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629791,62,0.385,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629792,62,0.385,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629793,62,0.384,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629794,62,0.384,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629795,62,0.384,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629796,62,0.384,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629797,62,0.384,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629798,62,0.384,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629799,62,0.384,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629800,62,0.384,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629801,62,0.384,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629802,62,0.384,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629803,62,0.384,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629804,62,0.384,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629805,62,0.384,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629806,62,0.384,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629807,62,0.384,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629808,62,0.384,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629809,62,0.384,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629810,71,0.107,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629811,71,0.107,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629812,71,0.107,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629813,71,0.106,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629814,71,0.107,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629815,71,0.107,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629816,71,0.106,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629817,71,0.107,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629818,71,0.107,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629819,71,0.107,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629820,71,0.107,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629821,71,0.107,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629822,71,0.107,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629823,71,0.107,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629824,71,0.107,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629825,71,0.107,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629826,71,0.107,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629827,71,0.107,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629828,71,0.107,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629829,71,0.107,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629830,71,0.107,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629831,71,0.107,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629832,71,0.107,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629833,71,0.107,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629834,77,20.85,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629835,77,20.65,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629836,77,20.8,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629837,77,20.8,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629838,77,20.75,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629839,77,20.75,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629840,77,20.8,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629841,77,20.75,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629842,77,20.75,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629843,77,20.7,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629844,77,20.65,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629845,77,20.7,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629846,77,20.7,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629847,77,20.7,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629848,77,20.7,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629849,77,20.7,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629850,77,20.75,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629851,77,20.7,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629852,77,20.65,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629853,77,20.7,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629854,77,20.65,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629855,77,20.65,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629856,77,20.7,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629857,77,20.55,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629858,82,69.5,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629859,82,69.12,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629860,82,69.4,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629861,82,69.4,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629862,82,69.3,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629863,82,69.3,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629864,82,69.4,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629865,82,69.3,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629866,82,69.3,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629867,82,69.2,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629868,82,69.12,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629869,82,69.2,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629870,82,69.2,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629871,82,69.2,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629872,82,69.2,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629873,82,69.2,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629874,82,69.3,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629875,82,69.2,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629876,82,69.12,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629877,82,69.2,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629878,82,69.12,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629879,82,69.12,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629880,82,69.2,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629881,82,68.98,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629882,72,0.1,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629883,72,0.1,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629884,72,0.1,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629885,72,0.1,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629886,72,0.1,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629887,72,0.1,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629888,72,0.1,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629889,72,0.1,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629890,72,0.1,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629891,72,0.1,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629892,72,0.1,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629893,72,0.1,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629894,72,0.1,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629895,72,0.1,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629896,72,0.1,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629897,72,0.1,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629898,72,0.1,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629899,72,0.1,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629900,72,0.1,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629901,72,0.1,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629902,72,0.1,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629903,72,0.1,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629904,72,0.1,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629905,72,0.1,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629906,92,26.67,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629907,92,26.66,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629908,92,26.66,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629909,92,26.77,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629910,92,26.67,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629911,92,26.77,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629912,92,26.77,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629913,92,26.66,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629914,92,26.66,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629915,92,26.66,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629916,92,26.66,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629917,92,26.66,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629918,92,26.66,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629919,92,26.66,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629920,92,26.66,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629921,92,26.66,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629922,92,26.66,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629923,92,26.66,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629924,92,26.66,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629925,92,26.66,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629926,92,26.66,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629927,92,26.66,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629928,92,26.66,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629929,92,26.66,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629930,102,36.12,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629931,102,36.11,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629932,102,36.11,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629933,102,35.95,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629934,102,36.11,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629935,102,35.95,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629936,102,35.94,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629937,102,36.11,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629938,102,36.11,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629939,102,36.11,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629940,102,36.11,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629941,102,36.11,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629942,102,36.11,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629943,102,36.11,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629944,102,36.11,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629945,102,36.11,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629946,102,36.11,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629947,102,36.11,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629948,102,36.11,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629949,102,36.11,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629950,102,36.11,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629951,102,36.11,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629952,102,36.11,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629953,102,36.11,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629954,91,27.01,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629955,91,27,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629956,91,27,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629957,91,27.12,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629958,91,27.01,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629959,91,27.11,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629960,91,27.11,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629961,91,27,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629962,91,27,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629963,91,27,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629964,91,27,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629965,91,27,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629966,91,27,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629967,91,27,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629968,91,27,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629969,91,27,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629970,91,27,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629971,91,27,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629972,91,27,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629973,91,27,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629974,91,27,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629975,91,27,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13629976,91,27,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13629977,91,26.99,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13629978,101,38.42,'2011-08-03 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13629979,101,38.43,'2011-08-03 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13629980,101,38.43,'2011-08-03 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13629981,101,38.25,'2011-08-03 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13629982,101,38.42,'2011-08-03 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13629983,101,38.26,'2011-08-03 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13629984,101,38.27,'2011-08-03 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13629985,101,38.45,'2011-08-03 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13629986,101,38.45,'2011-08-03 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13629987,101,38.45,'2011-08-03 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13629988,101,38.45,'2011-08-04 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13629989,101,38.45,'2011-08-04 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13629990,101,38.45,'2011-08-04 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13629991,101,38.45,'2011-08-04 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13629992,101,38.45,'2011-08-04 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13629993,101,38.45,'2011-08-04 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13629994,101,38.45,'2011-08-04 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13629995,101,38.45,'2011-08-04 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13629996,101,38.45,'2011-08-04 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13629997,101,38.45,'2011-08-04 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13629998,101,38.45,'2011-08-04 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13629999,101,38.45,'2011-08-04 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13630000,101,38.45,'2011-08-04 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13630001,101,38.45,'2011-08-04 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635783,31,13.2,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635784,31,13.17,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635785,31,13.19,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635786,31,13.2,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635787,31,13.22,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635788,31,12.9,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635789,31,12.77,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635790,31,12.74,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635791,31,12.72,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635792,31,12.7,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635793,31,12.66,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635794,31,12.63,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635795,31,12.61,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635796,31,12.59,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635797,31,12.55,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635798,31,12.52,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635799,31,12.5,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635800,31,12.54,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635801,31,12.87,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635802,31,13.38,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635803,31,13.29,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635804,31,13.26,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635805,31,13.25,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635806,31,13.23,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635807,32,3.002,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635808,32,2.288,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635809,32,1.707,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635810,32,2.893,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635811,32,1.731,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635812,32,2.325,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635813,32,2.195,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635814,32,1.665,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635815,32,3.679,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635816,32,2.976,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635817,32,2.507,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635818,32,2.654,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635819,32,0.968,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635820,32,1.316,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635821,32,1.019,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635822,32,1.432,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635823,32,1.072,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635824,32,0.604,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635825,32,1.086,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635826,32,1.856,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635827,32,2.144,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635828,32,2.697,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635829,32,2.838,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635830,32,3.255,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635831,33,198.8,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635832,33,181.6,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635833,33,269.7,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635834,33,226.9,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635835,33,150,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635836,33,216.8,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635837,33,218.2,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635838,33,223.5,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635839,33,216.3,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635840,33,232,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635841,33,212.4,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635842,33,306,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635843,33,246.8,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635844,33,235.8,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635845,33,219.1,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635846,33,221.9,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635847,33,228.6,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635848,33,155.5,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635849,33,134.3,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635850,33,109.2,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635851,33,145.6,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635852,33,158.8,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635853,33,175.8,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635854,33,34.03,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635855,34,27.58,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635856,34,39.13,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635857,34,26.58,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635858,34,56.87,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635859,34,32.25,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635860,34,11.1,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635861,34,28.27,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635862,34,41.49,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635863,34,33.51,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635864,34,65.4,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635865,34,72.47,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635866,34,44.07,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635867,34,34.78,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635868,34,45.2,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635869,34,39.83,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635870,34,24.7,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635871,34,61.13,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635872,34,42.27,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635873,34,37.55,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635874,34,23.55,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635875,34,31.25,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635876,34,20.83,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635877,34,82.4,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635878,34,14.66,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635879,35,629.3,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13635880,35,629,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13635881,35,628.9,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13635882,35,628.3,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13635883,35,628,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13635884,35,628.1,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13635885,35,628.2,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13635886,35,628.5,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13635887,35,628.3,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13635888,35,628.9,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13635889,35,628.9,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13635890,35,630.2,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13635891,35,630,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13635892,35,629.8,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13635893,35,629.6,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13635894,35,629.8,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13635895,35,630.2,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13635896,35,630.4,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13635897,35,630.4,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13635898,35,630.1,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13635899,35,630,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13635900,35,630.2,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13635901,35,630.2,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13635902,35,630,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13635903,30,0,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635904,30,0,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635905,30,0,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635906,30,0,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635907,30,0,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635908,30,0,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635909,30,0,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635910,30,0,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635911,30,2.032,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635912,30,0,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635913,30,0,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635914,30,0,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635915,30,0,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635916,30,0,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635917,30,0,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635918,30,0,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635919,30,0,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635920,30,0,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635921,30,0,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635922,30,0,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635923,30,0,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635924,30,0,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635925,30,0,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635926,30,0,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635927,28,28.8,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635928,28,28.9,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635929,28,27.3,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635930,28,26.78,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635931,28,27.3,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635932,28,26.11,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635933,28,23.15,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635934,28,21.83,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635935,28,20.66,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635936,28,19.55,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635937,28,18.7,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635938,28,17.33,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635939,28,14.59,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635940,28,12.7,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635941,28,11.83,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635942,28,11.09,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635943,28,10,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635944,28,12.7,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635945,28,16.82,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635946,28,21.36,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635947,28,24.55,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635948,28,25.8,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635949,28,26.86,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635950,28,26.04,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635951,29,27.48,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635952,29,35.43,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635953,29,46.78,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635954,29,38.4,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635955,29,35.04,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635956,29,35.72,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635957,29,43.93,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635958,29,38.76,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635959,29,49.66,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635960,29,58.95,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635961,29,57.84,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635962,29,66.97,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635963,29,82.9,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635964,29,84.1,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635965,29,85.4,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635966,29,89.6,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635967,29,92.2,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635968,29,76.22,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635969,29,57.33,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635970,29,42.08,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635971,29,32.56,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635972,29,22.08,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635973,29,45.96,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635974,29,42.12,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635975,36,1071,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13635976,36,789.2,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13635977,36,266.8,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13635978,36,275.5,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13635979,36,381.2,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13635980,36,136.6,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13635981,36,16.11,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13635982,36,0.014,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13635983,36,0,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13635984,36,0,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13635985,36,0,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13635986,36,0,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13635987,36,0,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13635988,36,0,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13635989,36,0,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13635990,36,0,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13635991,36,8.93,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13635992,36,167.3,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13635993,36,394,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13635994,36,624.5,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13635995,36,828,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13635996,36,981,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13635997,36,1081,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13635998,36,1105,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13635999,46,1.224,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13636000,46,1.006,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13636001,46,1.429,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13636002,46,1.426,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13636003,46,1.476,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13636004,46,1.288,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13636005,46,1.452,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13636006,46,1.127,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13636007,46,1.453,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13636008,46,1.541,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13636009,46,1.476,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13636010,46,1.519,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13636011,46,1.432,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13636012,46,1.507,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13636013,46,1.42,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13636014,46,1.462,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13636015,46,1.496,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13636016,46,1.599,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13636017,46,1.7,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13636018,46,1.588,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13636019,46,1.61,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13636020,46,1.354,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13636021,46,1.297,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13636022,46,1.486,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13636023,47,1.287,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13636024,47,1.058,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13636025,47,1.499,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13636026,47,1.494,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13636027,47,1.548,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13636028,47,1.349,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13636029,47,1.512,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13636030,47,1.171,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13636031,47,1.507,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13636032,47,1.596,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13636033,47,1.526,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13636034,47,1.566,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13636035,47,1.47,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13636036,47,1.542,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13636037,47,1.451,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13636038,47,1.492,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13636039,47,1.524,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13636040,47,1.636,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13636041,47,1.751,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13636042,47,1.648,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13636043,47,1.681,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13636044,47,1.417,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13636045,47,1.359,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13636046,47,1.555,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13636047,48,0.483,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13636048,48,0.712,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13636049,48,0.271,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13636050,48,0.276,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13636051,48,0.222,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13636052,48,0.421,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13636053,48,0.258,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13636054,48,0.599,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13636055,48,0.263,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13636056,48,0.174,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13636057,48,0.244,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13636058,48,0.204,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13636059,48,0.3,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13636060,48,0.228,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13636061,48,0.319,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13636062,48,0.278,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13636063,48,0.246,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13636064,48,0.134,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13636065,48,0.019,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13636066,48,0.122,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13636067,48,0.089,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13636068,48,0.353,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13636069,48,0.411,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13636070,48,0.215,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13636071,41,21.28,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636072,40,29.7,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636073,39,13.2,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636074,37,12.42,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636075,43,629.7,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636076,44,2.032,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636077,42,55.92,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636078,45,28.64163,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636079,38,2.026,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636080,51,0,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636081,53,1.95,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636082,49,1.366,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636083,52,0,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636084,54,2.045,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636085,50,1.417,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636086,56,-0.275,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636087,57,1.77,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13636088,55,0.353,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13639329,58,0.331,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639330,58,0.329,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639331,58,0.328,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639332,58,0.322,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639333,58,0.321,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639334,58,0.316,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639335,58,0.319,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639336,58,0.317,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639337,58,0.314,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639338,58,0.312,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639339,58,0.313,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639340,58,0.309,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639341,58,0.311,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639342,58,0.309,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639343,58,0.31,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639344,58,0.304,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639345,58,0.307,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639346,58,0.304,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639347,58,0.305,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639348,58,0.305,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639349,58,0.307,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639350,58,0.307,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639351,58,0.31,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639352,58,0.31,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639353,63,0.067,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639354,63,0.066,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639355,63,0.065,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639356,63,0.064,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639357,63,0.063,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639358,63,0.063,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639359,63,0.062,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639360,63,0.061,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639361,63,0.061,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639362,63,0.06,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639363,63,0.06,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639364,63,0.06,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639365,63,0.059,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639366,63,0.059,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639367,63,0.059,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639368,63,0.059,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639369,63,0.058,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639370,63,0.058,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639371,63,0.058,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639372,63,0.058,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639373,63,0.058,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639374,63,0.059,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639375,63,0.058,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639376,63,0.058,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639377,73,27.15,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639378,73,28.03,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639379,73,28.07,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639380,73,27.35,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639381,73,26.67,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639382,73,26.17,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639383,73,25.57,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639384,73,24.82,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639385,73,24.12,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639386,73,23.2,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639387,73,22.7,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639388,73,22.25,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639389,73,21.8,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639390,73,21.3,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639391,73,20.85,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639392,73,20.35,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639393,73,19.85,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639394,73,19.4,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639395,73,19.55,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639396,73,20.3,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639397,73,21.6,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639398,73,23.05,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639399,73,24.08,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639400,73,25.45,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639401,78,80.9,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639402,78,82.5,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639403,78,82.6,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639404,78,81.2,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639405,78,80,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639406,78,79.07,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639407,78,78.05,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639408,78,76.7,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639409,78,75.4,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639410,78,73.75,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639411,78,72.8,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639412,78,72.1,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639413,78,71.3,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639414,78,70.32,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639415,78,69.5,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639416,78,68.62,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639417,78,67.75,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639418,78,66.95,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639419,78,67.2,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639420,78,68.53,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639421,78,70.93,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639422,78,73.45,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639423,78,75.33,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639424,78,77.83,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639425,64,0.069,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639426,64,0.069,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639427,64,0.067,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639428,64,0.066,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639429,64,0.065,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639430,64,0.064,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639431,64,0.062,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639432,64,0.061,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639433,64,0.06,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639434,64,0.058,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639435,64,0.057,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639436,64,0.057,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639437,64,0.056,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639438,64,0.056,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639439,64,0.055,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639440,64,0.055,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639441,64,0.054,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639442,64,0.054,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639443,64,0.054,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639444,64,0.055,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639445,64,0.056,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639446,64,0.057,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639447,64,0.057,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639448,64,0.059,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639449,84,21.91,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639450,84,21.76,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639451,84,21.65,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639452,84,21.16,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639453,84,21.05,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639454,84,20.59,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639455,84,20.85,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639456,84,20.73,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639457,84,20.43,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639458,84,20.33,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639459,84,20.35,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639460,84,20.06,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639461,84,20.2,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639462,84,19.99,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639463,84,20.16,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639464,84,19.62,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639465,84,19.94,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639466,84,19.64,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639467,84,19.74,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639468,84,19.71,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639469,84,19.89,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639470,84,19.83,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639471,84,20.08,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639472,84,20.13,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639473,94,24.84,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639474,94,24.67,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639475,94,24.2,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639476,94,23.84,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639477,94,23.25,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639478,94,23.05,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639479,94,22.3,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639480,94,21.91,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639481,94,21.61,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639482,94,21.09,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639483,94,20.73,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639484,94,20.68,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639485,94,20.34,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639486,94,20.13,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639487,94,19.69,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639488,94,19.74,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639489,94,19.25,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639490,94,19.18,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639491,94,19.16,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639492,94,19.61,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639493,94,20.02,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639494,94,20.58,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639495,94,20.71,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639496,94,21,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639497,83,22.52,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639498,83,22.42,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639499,83,22.29,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639500,83,21.75,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639501,83,21.6,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639502,83,21.1,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639503,83,21.34,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639504,83,21.18,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639505,83,20.84,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639506,83,20.7,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639507,83,20.69,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639508,83,20.38,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639509,83,20.5,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639510,83,20.26,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639511,83,20.41,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639512,83,19.84,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639513,83,20.15,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639514,83,19.83,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639515,83,19.93,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639516,83,19.94,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639517,83,20.18,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639518,83,20.18,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639519,83,20.49,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639520,83,20.61,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639521,93,24.07,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639522,93,23.59,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639523,93,23.17,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639524,93,23.08,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639525,93,22.74,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639526,93,22.69,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639527,93,22.17,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639528,93,22,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639529,93,21.93,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639530,93,21.69,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639531,93,21.46,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639532,93,21.57,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639533,93,21.38,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639534,93,21.31,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639535,93,21.01,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639536,93,21.23,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639537,93,20.82,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639538,93,20.87,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639539,93,20.81,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639540,93,21.02,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639541,93,21.02,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639542,93,21.19,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639543,93,20.98,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639544,93,20.83,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639545,59,0.453,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639546,59,0.455,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639547,59,0.455,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639548,59,0.448,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639549,59,0.45,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639550,59,0.446,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639551,59,0.451,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639552,59,0.447,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639553,59,0.444,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639554,59,0.439,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639555,59,0.44,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639556,59,0.439,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639557,59,0.433,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639558,59,0.434,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639559,59,0.432,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639560,59,0.43,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639561,59,0.431,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639562,59,0.426,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639563,59,0.433,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639564,59,0.426,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639565,59,0.426,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639566,59,0.434,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639567,59,0.429,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639568,59,0.426,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639569,65,0.115,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639570,65,0.114,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639571,65,0.113,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639572,65,0.114,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639573,65,0.113,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639574,65,0.112,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639575,65,0.11,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639576,65,0.111,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639577,65,0.11,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639578,65,0.111,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639579,65,0.11,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639580,65,0.109,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639581,65,0.11,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639582,65,0.11,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639583,65,0.109,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639584,65,0.109,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639585,65,0.108,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639586,65,0.108,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639587,65,0.106,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639588,65,0.108,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639589,65,0.107,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639590,65,0.105,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639591,65,0.105,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639592,65,0.106,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639593,74,25.5,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639594,74,26.55,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639595,74,27.13,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639596,74,27.05,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639597,74,26.75,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639598,74,26.35,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639599,74,25.97,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639600,74,25.5,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639601,74,25,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639602,74,24.5,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639603,74,23.8,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639604,74,23.4,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639605,74,22.9,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639606,74,22.55,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639607,74,22,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639608,74,21.65,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639609,74,21.25,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639610,74,20.85,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639611,74,20.55,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639612,74,20.55,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639613,74,20.95,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639614,74,21.65,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639615,74,22.7,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639616,74,24,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639617,79,77.96,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639618,79,79.78,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639619,79,80.9,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639620,79,80.7,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639621,79,80.1,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639622,79,79.4,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639623,79,78.72,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639624,79,77.95,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639625,79,77.05,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639626,79,76.05,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639627,79,74.9,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639628,79,74.1,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639629,79,73.2,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639630,79,72.52,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639631,79,71.7,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639632,79,71,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639633,79,70.22,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639634,79,69.5,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639635,79,68.97,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639636,79,68.98,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639637,79,69.7,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639638,79,71.01,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639639,79,72.83,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639640,79,75.21,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639641,66,0.116,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639642,66,0.116,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639643,66,0.117,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639644,66,0.117,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639645,66,0.115,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639646,66,0.115,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639647,66,0.112,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639648,66,0.112,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639649,66,0.11,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639650,66,0.111,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639651,66,0.108,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639652,66,0.107,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639653,66,0.108,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639654,66,0.106,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639655,66,0.105,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639656,66,0.104,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639657,66,0.103,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639658,66,0.103,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639659,66,0.1,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639660,66,0.102,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639661,66,0.101,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639662,66,0.1,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639663,66,0.102,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639664,66,0.104,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639665,86,33.65,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639666,86,33.8,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639667,86,33.77,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639668,86,33.08,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639669,86,33.33,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639670,86,32.92,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639671,86,33.41,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639672,86,32.96,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639673,86,32.67,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639674,86,32.18,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639675,86,32.27,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639676,86,32.17,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639677,86,31.49,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639678,86,31.65,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639679,86,31.4,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639680,86,31.26,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639681,86,31.31,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639682,86,30.86,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639683,86,31.49,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639684,86,30.74,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639685,86,30.78,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639686,86,31.68,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639687,86,31.13,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639688,86,30.79,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639689,96,41.57,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639690,96,41.72,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639691,96,42.03,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639692,96,42.21,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639693,96,41.49,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639694,96,41.33,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639695,96,40.31,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639696,96,40.4,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639697,96,39.75,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639698,96,39.82,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639699,96,38.99,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639700,96,38.6,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639701,96,38.7,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639702,96,38.32,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639703,96,37.73,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639704,96,37.59,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639705,96,37.1,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639706,96,36.85,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639707,96,36,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639708,96,36.47,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639709,96,36.51,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639710,96,35.94,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639711,96,36.61,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639712,96,37.57,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639713,85,34.43,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639714,85,34.66,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639715,85,34.69,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639716,85,33.98,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639717,85,34.22,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639718,85,33.78,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639719,85,34.25,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639720,85,33.75,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639721,85,33.43,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639722,85,32.89,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639723,85,32.94,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639724,85,32.8,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639725,85,32.07,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639726,85,32.21,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639727,85,31.92,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639728,85,31.76,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639729,85,31.77,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639730,85,31.28,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639731,85,31.9,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639732,85,31.14,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639733,85,31.2,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639734,85,32.17,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639735,85,31.67,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639736,85,31.4,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639737,95,41.38,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639738,95,40.94,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639739,95,40.88,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639740,95,41,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639741,95,40.45,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639742,95,40.46,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639743,95,39.67,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639744,95,39.97,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639745,95,39.6,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639746,95,39.97,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639747,95,39.43,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639748,95,39.31,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639749,95,39.66,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639750,95,39.5,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639751,95,39.15,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639752,95,39.22,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639753,95,38.97,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639754,95,38.95,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639755,95,38.21,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639756,95,38.73,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639757,95,38.59,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639758,95,37.63,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639759,95,37.82,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639760,95,38.18,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639761,60,0.366,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639762,60,0.369,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639763,60,0.363,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639764,60,0.369,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639765,60,0.367,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639766,60,0.369,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639767,60,0.37,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639768,60,0.369,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639769,60,0.368,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639770,60,0.368,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639771,60,0.371,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639772,60,0.369,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639773,60,0.369,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639774,60,0.369,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639775,60,0.368,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639776,60,0.367,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639777,60,0.373,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639778,60,0.367,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639779,60,0.368,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639780,60,0.368,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639781,60,0.362,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639782,60,0.366,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639783,60,0.366,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639784,60,0.365,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639785,67,0.083,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639786,67,0.083,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639787,67,0.084,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639788,67,0.084,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639789,67,0.085,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639790,67,0.084,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639791,67,0.084,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639792,67,0.085,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639793,67,0.084,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639794,67,0.085,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639795,67,0.085,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639796,67,0.085,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639797,67,0.084,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639798,67,0.084,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639799,67,0.084,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639800,67,0.085,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639801,67,0.083,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639802,67,0.084,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639803,67,0.084,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639804,67,0.084,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639805,67,0.085,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639806,67,0.084,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639807,67,0.083,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639808,67,0.084,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639809,75,22.8,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639810,75,22.85,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639811,75,23.15,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639812,75,23.45,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639813,75,23.65,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639814,75,23.9,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639815,75,24.05,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639816,75,24.13,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639817,75,24.2,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639818,75,24.2,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639819,75,24.2,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639820,75,24.2,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639821,75,24.2,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639822,75,23.9,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639823,75,23.9,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639824,75,23.7,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639825,75,23.55,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639826,75,23.5,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639827,75,23.3,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639828,75,23.07,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639829,75,23,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639830,75,22.75,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639831,75,22.75,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639832,75,22.8,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639833,80,73,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639834,80,73.1,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639835,80,73.65,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639836,80,74.2,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639837,80,74.6,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639838,80,75.1,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639839,80,75.3,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639840,80,75.4,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639841,80,75.5,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639842,80,75.5,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639843,80,75.5,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639844,80,75.5,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639845,80,75.5,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639846,80,75.1,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639847,80,75.1,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639848,80,74.7,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639849,80,74.4,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639850,80,74.3,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639851,80,73.9,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639852,80,73.52,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639853,80,73.4,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639854,80,72.9,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639855,80,72.9,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639856,80,73,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639857,68,0.081,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639858,68,0.081,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639859,68,0.082,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639860,68,0.082,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639861,68,0.083,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639862,68,0.082,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639863,68,0.083,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639864,68,0.084,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639865,68,0.083,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639866,68,0.084,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639867,68,0.084,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639868,68,0.084,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639869,68,0.082,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639870,68,0.082,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639871,68,0.083,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639872,68,0.083,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639873,68,0.081,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639874,68,0.083,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639875,68,0.081,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639876,68,0.081,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639877,68,0.082,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639878,68,0.081,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639879,68,0.081,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639880,68,0.081,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639881,88,25.01,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639882,88,25.25,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639883,88,24.72,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639884,88,25.32,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639885,88,25.11,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639886,88,25.27,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639887,88,25.32,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639888,88,25.28,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639889,88,25.21,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639890,88,25.21,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639891,88,25.44,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639892,88,25.32,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639893,88,25.27,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639894,88,25.27,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639895,88,25.19,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639896,88,25.14,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639897,88,25.67,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639898,88,25.03,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639899,88,25.23,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639900,88,25.19,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639901,88,24.62,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639902,88,25.01,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639903,88,25,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639904,88,24.95,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639905,98,29.06,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639906,98,28.95,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639907,98,29.56,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639908,98,29.41,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639909,98,29.81,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639910,98,29.75,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639911,98,29.8,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639912,98,29.96,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639913,98,29.88,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639914,98,30.1,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639915,98,29.93,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639916,98,30.02,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639917,98,29.74,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639918,98,29.73,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639919,98,29.88,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639920,98,29.81,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639921,98,29.16,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639922,98,29.69,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639923,98,29.3,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639924,98,29.26,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639925,98,29.67,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639926,98,29.28,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639927,98,29.06,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639928,98,29.22,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639929,87,25.44,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639930,87,25.7,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639931,87,25.17,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639932,87,25.8,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639933,87,25.6,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639934,87,25.77,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639935,87,25.84,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639936,87,25.8,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639937,87,25.74,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639938,87,25.73,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639939,87,25.96,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639940,87,25.84,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639941,87,25.79,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639942,87,25.78,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639943,87,25.7,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639944,87,25.63,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639945,87,26.16,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639946,87,25.5,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639947,87,25.7,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639948,87,25.65,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639949,87,25.06,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639950,87,25.44,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639951,87,25.44,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639952,87,25.39,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639953,97,30.02,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639954,97,29.83,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639955,97,30.35,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639956,97,30.08,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639957,97,30.36,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639958,97,30.22,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639959,97,30.19,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639960,97,30.32,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639961,97,30.2,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639962,97,30.41,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639963,97,30.25,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639964,97,30.37,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639965,97,30.11,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639966,97,30.15,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639967,97,30.36,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639968,97,30.34,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639969,97,29.75,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639970,97,30.35,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639971,97,30.04,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639972,97,30.07,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639973,97,30.55,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639974,97,30.21,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639975,97,30.01,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13639976,97,30.17,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13639977,61,0.261,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13639978,61,0.261,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13639979,61,0.261,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13639980,61,0.261,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13639981,61,0.261,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13639982,61,0.261,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13639983,61,0.26,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13639984,61,0.26,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13639985,61,0.26,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13639986,61,0.264,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13639987,61,0.264,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13639988,61,0.264,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13639989,61,0.264,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13639990,61,0.262,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13639991,61,0.261,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13639992,61,0.261,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13639993,61,0.26,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13639994,61,0.26,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13639995,61,0.26,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13639996,61,0.26,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13639997,61,0.261,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13639998,61,0.262,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13639999,61,0.264,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640000,61,0.264,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640001,69,0.046,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640002,69,0.046,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640003,69,0.046,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640004,69,0.046,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640005,69,0.046,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640006,69,0.046,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640007,69,0.046,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640008,69,0.046,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640009,69,0.046,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640010,69,0.046,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640011,69,0.045,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640012,69,0.045,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640013,69,0.045,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640014,69,0.046,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640015,69,0.046,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640016,69,0.046,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640017,69,0.046,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640018,69,0.046,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640019,69,0.046,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640020,69,0.046,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640021,69,0.046,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640022,69,0.046,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640023,69,0.045,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640024,69,0.045,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640025,76,22.8,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640026,76,22.8,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640027,76,22.8,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640028,76,22.8,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640029,76,22.8,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640030,76,22.75,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640031,76,22.8,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640032,76,22.8,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640033,76,22.8,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640034,76,22.8,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640035,76,22.9,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640036,76,22.95,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640037,76,23,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640038,76,23,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640039,76,23,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640040,76,23,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640041,76,23,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640042,76,23,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640043,76,23,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640044,76,23,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640045,76,23,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640046,76,23,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640047,76,22.9,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640048,76,23,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640049,81,73,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640050,81,73,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640051,81,73,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640052,81,73,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640053,81,73,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640054,81,72.9,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640055,81,73,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640056,81,73,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640057,81,73,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640058,81,73,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640059,81,73.2,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640060,81,73.3,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640061,81,73.4,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640062,81,73.4,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640063,81,73.4,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640064,81,73.4,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640065,81,73.4,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640066,81,73.4,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640067,81,73.4,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640068,81,73.4,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640069,81,73.4,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640070,81,73.4,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640071,81,73.2,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640072,81,73.4,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640073,70,0.044,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640074,70,0.044,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640075,70,0.044,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640076,70,0.044,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640077,70,0.044,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640078,70,0.044,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640079,70,0.044,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640080,70,0.044,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640081,70,0.045,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640082,70,0.044,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640083,70,0.044,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640084,70,0.044,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640085,70,0.044,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640086,70,0.045,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640087,70,0.045,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640088,70,0.045,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640089,70,0.045,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640090,70,0.045,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640091,70,0.045,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640092,70,0.045,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640093,70,0.045,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640094,70,0.045,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640095,70,0.044,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640096,70,0.044,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640097,90,16.26,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640098,90,16.3,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640099,90,16.3,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640100,90,16.3,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640101,90,16.3,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640102,90,16.3,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640103,90,16.26,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640104,90,16.22,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640105,90,16.25,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640106,90,16.49,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640107,90,16.54,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640108,90,16.54,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640109,90,16.54,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640110,90,16.38,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640111,90,16.32,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640112,90,16.26,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640113,90,16.2,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640114,90,16.2,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640115,90,16.2,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640116,90,16.2,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640117,90,16.26,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640118,90,16.36,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640119,90,16.54,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640120,90,16.54,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640121,100,16.05,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640122,100,15.99,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640123,100,15.99,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640124,100,15.99,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640125,100,15.99,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640126,100,15.99,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640127,100,16.05,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640128,100,16.1,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640129,100,16.14,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640130,100,15.99,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640131,100,15.94,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640132,100,15.94,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640133,100,15.95,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640134,100,16.18,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640135,100,16.21,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640136,100,16.24,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640137,100,16.27,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640138,100,16.27,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640139,100,16.27,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640140,100,16.27,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640141,100,16.24,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640142,100,16.15,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640143,100,15.95,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640144,100,15.95,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640145,89,16.56,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640146,89,16.59,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640147,89,16.59,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640148,89,16.59,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640149,89,16.59,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640150,89,16.59,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640151,89,16.55,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640152,89,16.51,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640153,89,16.54,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640154,89,16.78,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640155,89,16.84,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640156,89,16.84,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640157,89,16.84,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640158,89,16.68,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640159,89,16.62,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640160,89,16.56,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640161,89,16.5,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640162,89,16.5,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640163,89,16.5,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640164,89,16.5,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640165,89,16.56,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640166,89,16.66,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640167,89,16.84,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640168,89,16.84,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640169,99,16.51,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640170,99,16.45,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640171,99,16.45,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640172,99,16.46,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640173,99,16.46,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640174,99,16.47,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640175,99,16.52,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640176,99,16.57,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640177,99,16.61,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640178,99,16.45,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640179,99,16.39,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640180,99,16.39,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640181,99,16.38,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640182,99,16.61,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640183,99,16.64,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640184,99,16.66,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640185,99,16.68,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640186,99,16.68,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640187,99,16.68,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640188,99,16.68,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640189,99,16.65,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640190,99,16.58,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640191,99,16.37,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640192,99,16.37,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640193,62,0.384,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640194,62,0.385,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640195,62,0.381,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640196,62,0.384,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640197,62,0.384,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640198,62,0.382,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640199,62,0.387,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640200,62,0.381,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640201,62,0.383,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640202,62,0.384,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640203,62,0.386,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640204,62,0.384,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640205,62,0.386,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640206,62,0.384,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640207,62,0.384,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640208,62,0.384,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640209,62,0.384,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640210,62,0.384,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640211,62,0.384,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640212,62,0.384,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640213,62,0.384,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640214,62,0.384,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640215,62,0.384,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640216,62,0.384,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640217,71,0.107,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640218,71,0.106,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640219,71,0.107,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640220,71,0.106,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640221,71,0.106,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640222,71,0.106,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640223,71,0.106,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640224,71,0.106,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640225,71,0.107,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640226,71,0.107,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640227,71,0.106,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640228,71,0.107,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640229,71,0.106,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640230,71,0.107,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640231,71,0.107,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640232,71,0.107,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640233,71,0.107,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640234,71,0.107,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640235,71,0.107,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640236,71,0.107,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640237,71,0.107,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640238,71,0.107,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640239,71,0.107,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640240,71,0.107,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640241,77,20.65,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640242,77,20.65,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640243,77,20.6,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640244,77,20.65,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640245,77,20.7,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640246,77,20.7,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640247,77,20.7,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640248,77,20.65,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640249,77,20.7,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640250,77,20.7,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640251,77,20.6,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640252,77,20.65,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640253,77,20.55,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640254,77,20.7,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640255,77,20.7,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640256,77,20.7,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640257,77,20.65,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640258,77,20.7,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640259,77,20.65,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640260,77,20.7,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640261,77,20.65,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640262,77,20.65,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640263,77,20.7,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640264,77,20.6,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640265,82,69.13,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640266,82,69.12,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640267,82,69.05,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640268,82,69.12,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640269,82,69.2,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640270,82,69.2,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640271,82,69.2,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640272,82,69.12,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640273,82,69.2,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640274,82,69.2,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640275,82,69.05,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640276,82,69.12,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640277,82,68.98,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640278,82,69.2,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640279,82,69.2,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640280,82,69.2,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640281,82,69.12,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640282,82,69.2,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640283,82,69.12,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640284,82,69.2,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640285,82,69.12,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640286,82,69.12,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640287,82,69.2,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640288,82,69.05,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640289,72,0.1,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640290,72,0.1,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640291,72,0.1,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640292,72,0.1,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640293,72,0.1,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640294,72,0.1,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640295,72,0.099,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640296,72,0.1,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640297,72,0.1,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640298,72,0.1,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640299,72,0.1,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640300,72,0.1,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640301,72,0.1,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640302,72,0.1,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640303,72,0.1,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640304,72,0.1,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640305,72,0.1,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640306,72,0.1,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640307,72,0.1,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640308,72,0.1,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640309,72,0.1,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640310,72,0.1,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640311,72,0.1,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640312,72,0.1,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640313,92,26.66,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640314,92,26.77,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640315,92,26.37,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640316,92,26.68,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640317,92,26.67,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640318,92,26.48,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640319,92,26.97,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640320,92,26.47,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640321,92,26.56,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640322,92,26.65,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640323,92,26.87,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640324,92,26.65,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640325,92,26.87,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640326,92,26.65,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640327,92,26.65,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640328,92,26.65,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640329,92,26.65,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640330,92,26.65,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640331,92,26.65,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640332,92,26.65,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640333,92,26.65,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640334,92,26.65,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640335,92,26.65,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640336,92,26.65,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640337,102,36.1,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640338,102,35.94,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640339,102,36.03,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640340,102,35.82,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640341,102,35.82,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640342,102,35.86,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640343,102,35.61,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640344,102,35.86,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640345,102,35.98,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640346,102,36.1,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640347,102,35.77,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640348,102,36.1,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640349,102,35.77,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640350,102,36.1,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640351,102,36.1,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640352,102,36.1,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640353,102,36.1,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640354,102,36.1,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640355,102,36.1,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640356,102,36.1,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640357,102,36.1,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640358,102,36.1,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640359,102,36.1,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640360,102,36.1,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640361,91,26.99,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640362,91,27.1,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640363,91,26.7,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640364,91,27.01,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640365,91,27.01,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640366,91,26.81,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640367,91,27.31,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640368,91,26.8,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640369,91,26.89,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640370,91,26.99,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640371,91,27.2,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640372,91,26.98,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640373,91,27.2,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640374,91,26.98,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640375,91,26.98,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640376,91,26.98,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640377,91,26.98,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640378,91,26.98,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640379,91,26.98,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640380,91,26.98,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640381,91,26.98,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640382,91,26.98,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640383,91,26.98,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640384,91,26.98,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13640385,101,38.46,'2011-08-04 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13640386,101,38.29,'2011-08-04 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13640387,101,38.39,'2011-08-04 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13640388,101,38.16,'2011-08-04 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13640389,101,38.16,'2011-08-04 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13640390,101,38.21,'2011-08-04 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13640391,101,37.96,'2011-08-04 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13640392,101,38.23,'2011-08-04 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13640393,101,38.36,'2011-08-04 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13640394,101,38.48,'2011-08-04 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13640395,101,38.14,'2011-08-05 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13640396,101,38.49,'2011-08-05 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13640397,101,38.14,'2011-08-05 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13640398,101,38.49,'2011-08-05 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13640399,101,38.49,'2011-08-05 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13640400,101,38.49,'2011-08-05 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13640401,101,38.49,'2011-08-05 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13640402,101,38.49,'2011-08-05 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13640403,101,38.49,'2011-08-05 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13640404,101,38.49,'2011-08-05 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13640405,101,38.49,'2011-08-05 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13640406,101,38.49,'2011-08-05 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13640407,101,38.49,'2011-08-05 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13640408,101,38.49,'2011-08-05 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646176,31,13.21,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646177,31,13.09,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646178,31,13.18,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646179,31,13.18,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646180,31,13.2,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646181,31,12.87,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646182,31,12.75,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646183,31,12.7,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646184,31,12.67,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646185,31,12.65,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646186,31,12.61,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646187,31,12.58,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646188,31,12.56,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646189,31,12.53,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646190,31,12.5,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646191,31,12.49,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646192,31,12.49,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646193,31,12.51,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646194,31,12.88,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646195,31,13.35,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646196,31,13.3,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646197,31,13.26,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646198,31,13.24,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646199,31,13.23,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646200,32,2.35,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646201,32,2.89,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646202,32,2.755,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646203,32,2.821,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646204,32,4.173,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646205,32,1.18,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646206,32,1.668,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646207,32,1.249,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646208,32,1.54,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646209,32,1.53,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646210,32,1.451,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646211,32,1.083,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646212,32,1.296,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646213,32,1.315,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646214,32,1.348,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646215,32,1.23,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646216,32,1.072,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646217,32,1.357,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646218,32,2.174,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646219,32,2.741,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646220,32,2.421,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646221,32,2.218,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646222,32,3.147,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646223,32,3.259,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646224,33,37.1,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646225,33,219.9,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646226,33,227.6,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646227,33,232.5,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646228,33,327.7,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646229,33,285.5,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646230,33,235,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646231,33,226.2,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646232,33,216.6,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646233,33,213.1,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646234,33,221.7,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646235,33,294.7,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646236,33,328,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646237,33,303.5,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646238,33,325.7,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646239,33,316.2,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646240,33,358.3,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646241,33,35.73,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646242,33,35.29,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646243,33,187.8,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646244,33,187.7,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646245,33,93,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646246,33,172.5,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646247,33,167.4,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646248,34,45.49,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646249,34,39.89,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646250,34,39.93,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646251,34,33.91,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646252,34,24.82,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646253,34,43.37,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646254,34,26.38,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646255,34,26.26,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646256,34,21.45,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646257,34,25.16,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646258,34,31.54,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646259,34,62.69,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646260,34,38.99,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646261,34,59.64,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646262,34,43.25,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646263,34,68.28,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646264,34,72.42,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646265,34,63.58,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646266,34,82.9,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646267,34,20.68,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646268,34,20.27,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646269,34,73.25,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646270,34,20.57,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646271,34,22.52,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646272,35,630,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13646273,35,629.6,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13646274,35,629.4,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13646275,35,629.5,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13646276,35,629.9,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13646277,35,629.8,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13646278,35,629.9,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13646279,35,630.2,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13646280,35,630.1,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13646281,35,630.1,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13646282,35,630,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13646283,35,629.9,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13646284,35,629.9,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13646285,35,629.9,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13646286,35,630,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13646287,35,630,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13646288,35,630.2,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13646289,35,630.4,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13646290,35,630.4,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13646291,35,630.4,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13646292,35,630.4,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13646293,35,630.4,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13646294,35,630.2,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13646295,35,630.1,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13646296,30,0,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646297,30,0,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646298,30,0,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646299,30,0,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646300,30,0,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646301,30,0,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646302,30,0,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646303,30,0,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646304,30,0,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646305,30,0,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646306,30,0,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646307,30,0,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646308,30,0,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646309,30,0,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646310,30,0,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646311,30,0,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646312,30,0,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646313,30,0,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646314,30,0,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646315,30,0,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646316,30,0,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646317,30,0,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646318,30,0,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646319,30,0,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646320,28,27.35,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646321,28,28.94,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646322,28,29.15,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646323,28,28.77,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646324,28,24.07,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646325,28,22.49,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646326,28,18.59,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646327,28,15.86,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646328,28,14.73,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646329,28,13.9,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646330,28,13.65,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646331,28,13.12,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646332,28,13.43,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646333,28,13.06,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646334,28,12.49,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646335,28,12.39,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646336,28,13.69,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646337,28,15.45,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646338,28,18.31,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646339,28,21.96,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646340,28,24.31,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646341,28,25.85,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646342,28,27.17,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646343,28,27.84,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646344,29,16.84,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646345,29,16.51,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646346,29,13.61,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646347,29,17.6,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646348,29,38.69,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646349,29,45.14,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646350,29,63.01,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646351,29,66.35,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646352,29,70.16,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646353,29,69.39,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646354,29,72.68,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646355,29,66.36,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646356,29,59.41,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646357,29,60.88,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646358,29,62.47,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646359,29,54.64,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646360,29,65.53,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646361,29,58.42,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646362,29,38.38,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646363,29,34.62,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646364,29,31.03,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646365,29,18.39,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646366,29,16.6,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646367,29,16.01,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646368,36,1075,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646369,36,1000,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646370,36,839,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646371,36,632.3,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646372,36,388.2,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646373,36,134.9,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646374,36,9.52,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646375,36,0.027,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646376,36,0,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646377,36,0,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646378,36,0,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646379,36,0,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646380,36,0,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646381,36,0,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646382,36,0,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646383,36,0,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646384,36,8.7,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646385,36,163.8,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646386,36,395.6,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646387,36,625.5,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646388,36,828,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646389,36,982,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646390,36,1086,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646391,36,1119,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646392,46,1.327,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646393,46,1.452,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646394,46,1.317,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646395,46,1.42,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646396,46,1.215,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646397,46,1.446,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646398,46,1.418,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646399,46,1.431,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646400,46,1.403,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646401,46,1.397,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646402,46,1.395,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646403,46,1.396,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646404,46,1.411,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646405,46,1.421,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646406,46,1.44,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646407,46,1.582,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646408,46,1.44,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646409,46,1.475,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646410,46,1.467,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646411,46,1.388,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646412,46,1.51,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646413,46,1.463,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646414,46,1.357,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646415,46,1.286,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646416,47,1.392,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646417,47,1.526,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646418,47,1.385,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646419,47,1.493,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646420,47,1.268,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646421,47,1.504,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646422,47,1.466,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646423,47,1.472,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646424,47,1.441,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646425,47,1.432,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646426,47,1.43,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646427,47,1.429,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646428,47,1.446,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646429,47,1.455,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646430,47,1.473,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646431,47,1.618,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646432,47,1.476,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646433,47,1.515,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646434,47,1.516,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646435,47,1.443,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646436,47,1.575,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646437,47,1.53,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646438,47,1.423,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646439,47,1.35,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646440,48,0.378,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13646441,48,0.244,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13646442,48,0.385,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13646443,48,0.277,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13646444,48,0.502,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13646445,48,0.266,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13646446,48,0.304,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13646447,48,0.298,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13646448,48,0.329,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13646449,48,0.338,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13646450,48,0.34,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13646451,48,0.341,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13646452,48,0.324,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13646453,48,0.315,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13646454,48,0.297,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13646455,48,0.152,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13646456,48,0.294,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13646457,48,0.255,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13646458,48,0.254,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13646459,48,0.327,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13646460,48,0.195,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13646461,48,0.24,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13646462,48,0.347,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13646463,48,0.42,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13646464,41,19.55,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646465,40,29.86,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646466,39,9.68,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646467,37,12.5,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646468,43,630,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646469,44,0,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646470,42,55.1,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646471,45,32.99786,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646472,38,1.94,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646473,51,0,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646474,53,2.111,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646475,49,1.446,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646476,52,0,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646477,54,2.16,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646478,50,1.496,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646479,56,-0.39,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646480,57,1.77,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13646481,55,0.274,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13649722,58,0.305,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649723,58,0.308,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649724,58,0.308,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649725,58,0.304,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649726,58,0.303,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649727,58,0.298,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649728,58,0.297,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649729,58,0.294,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649730,58,0.292,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649731,58,0.291,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649732,58,0.29,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649733,58,0.287,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649734,58,0.285,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649735,58,0.281,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649736,58,0.281,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649737,58,0.282,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649738,58,0.282,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649739,58,0.279,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649740,58,0.279,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649741,58,0.278,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649742,58,0.282,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649743,58,0.281,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649744,58,0.283,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649745,58,0.286,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649746,63,0.058,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649747,63,0.057,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649748,63,0.056,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649749,63,0.056,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649750,63,0.054,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649751,63,0.053,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649752,63,0.053,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649753,63,0.052,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649754,63,0.051,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649755,63,0.051,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649756,63,0.05,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649757,63,0.05,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649758,63,0.049,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649759,63,0.049,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649760,63,0.049,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649761,63,0.048,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649762,63,0.048,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649763,63,0.047,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649764,63,0.047,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649765,63,0.047,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649766,63,0.047,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649767,63,0.048,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649768,63,0.048,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649769,63,0.047,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649770,73,26.8,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649771,73,27.78,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649772,73,28.15,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649773,73,28.07,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649774,73,27.35,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649775,73,26.1,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649776,73,25.25,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649777,73,24.3,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649778,73,23.55,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649779,73,22.85,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649780,73,22.25,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649781,73,21.65,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649782,73,21.1,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649783,73,20.65,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649784,73,20.1,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649785,73,19.7,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649786,73,19.2,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649787,73,18.95,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649788,73,19.1,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649789,73,19.85,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649790,73,21.1,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649791,73,22.75,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649792,73,24,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649793,73,25.38,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649794,78,80.3,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649795,78,82,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649796,78,82.8,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649797,78,82.6,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649798,78,81.2,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649799,78,78.95,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649800,78,77.49,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649801,78,75.72,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649802,78,74.4,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649803,78,73.1,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649804,78,72.07,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649805,78,71,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649806,78,69.95,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649807,78,69.15,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649808,78,68.17,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649809,78,67.47,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649810,78,66.6,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649811,78,66.17,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649812,78,66.43,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649813,78,67.76,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649814,78,69.98,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649815,78,72.96,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649816,78,75.21,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649817,78,77.73,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649818,64,0.06,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649819,64,0.059,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649820,64,0.059,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649821,64,0.058,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649822,64,0.056,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649823,64,0.054,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649824,64,0.053,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649825,64,0.052,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649826,64,0.05,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649827,64,0.049,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649828,64,0.048,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649829,64,0.047,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649830,64,0.046,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649831,64,0.046,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649832,64,0.045,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649833,64,0.044,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649834,64,0.044,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649835,64,0.043,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649836,64,0.043,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649837,64,0.044,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649838,64,0.045,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649839,64,0.047,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649840,64,0.047,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649841,64,0.048,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649842,84,19.68,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649843,84,19.93,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649844,84,19.97,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649845,84,19.61,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649846,84,19.59,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649847,84,19.13,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649848,84,19.05,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649849,84,18.81,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649850,84,18.71,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649851,84,18.6,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649852,84,18.47,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649853,84,18.28,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649854,84,18.13,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649855,84,17.82,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649856,84,17.78,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649857,84,17.9,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649858,84,17.91,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649859,84,17.6,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649860,84,17.64,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649861,84,17.6,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649862,84,17.83,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649863,84,17.82,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649864,84,17.93,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649865,84,18.21,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649866,94,21.6,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649867,94,21.43,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649868,94,21.2,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649869,94,20.96,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649870,94,20.02,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649871,94,19.56,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649872,94,19.01,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649873,94,18.53,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649874,94,17.99,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649875,94,17.67,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649876,94,17.34,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649877,94,17.05,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649878,94,16.7,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649879,94,16.58,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649880,94,16.36,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649881,94,15.89,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649882,94,15.63,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649883,94,15.61,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649884,94,15.55,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649885,94,15.79,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649886,94,16.12,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649887,94,16.69,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649888,94,16.98,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649889,94,17.15,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649890,83,20.22,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649891,83,20.51,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649892,83,20.57,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649893,83,20.2,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649894,83,20.14,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649895,83,19.61,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649896,83,19.49,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649897,83,19.2,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649898,83,19.06,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649899,83,18.92,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649900,83,18.76,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649901,83,18.54,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649902,83,18.37,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649903,83,18.03,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649904,83,17.98,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649905,83,18.07,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649906,83,18.07,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649907,83,17.75,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649908,83,17.8,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649909,83,17.78,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649910,83,18.08,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649911,83,18.13,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649912,83,18.29,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649913,83,18.63,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649914,93,21.02,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649915,93,20.59,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649916,93,20.25,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649917,93,20.08,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649918,93,19.41,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649919,93,19.28,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649920,93,18.97,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649921,93,18.74,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649922,93,18.41,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649923,93,18.27,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649924,93,18.09,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649925,93,17.95,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649926,93,17.72,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649927,93,17.74,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649928,93,17.63,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649929,93,17.25,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649930,93,17.06,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649931,93,17.1,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649932,93,16.98,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649933,93,17.05,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649934,93,17.05,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649935,93,17.26,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649936,93,17.24,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649937,93,17.06,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649938,59,0.432,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649939,59,0.438,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649940,59,0.43,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649941,59,0.425,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649942,59,0.422,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649943,59,0.419,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649944,59,0.421,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649945,59,0.416,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649946,59,0.416,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649947,59,0.413,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649948,59,0.413,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649949,59,0.412,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649950,59,0.409,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649951,59,0.406,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649952,59,0.405,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649953,59,0.401,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649954,59,0.404,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649955,59,0.403,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649956,59,0.399,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649957,59,0.401,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649958,59,0.396,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649959,59,0.391,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649960,59,0.392,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649961,59,0.393,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649962,65,0.104,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649963,65,0.102,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649964,65,0.102,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649965,65,0.101,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649966,65,0.101,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649967,65,0.1,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649968,65,0.099,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649969,65,0.099,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649970,65,0.098,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649971,65,0.098,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649972,65,0.097,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649973,65,0.096,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649974,65,0.096,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649975,65,0.095,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13649976,65,0.095,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13649977,65,0.095,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13649978,65,0.094,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13649979,65,0.093,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13649980,65,0.093,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13649981,65,0.091,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13649982,65,0.091,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13649983,65,0.091,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13649984,65,0.09,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13649985,65,0.089,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13649986,74,25.15,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13649987,74,26.1,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13649988,74,26.7,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13649989,74,26.8,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13649990,74,26.75,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13649991,74,26.3,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13649992,74,25.75,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13649993,74,25.3,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13649994,74,24.72,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13649995,74,24.1,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13649996,74,23.55,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13649997,74,23.02,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13649998,74,22.55,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13649999,74,22,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650000,74,21.65,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650001,74,21.25,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650002,74,20.8,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650003,74,20.55,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650004,74,20.3,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650005,74,20.3,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650006,74,20.65,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650007,74,21.4,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650008,74,22.48,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650009,74,23.83,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650010,79,77.28,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650011,79,78.98,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650012,79,80,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650013,79,80.3,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650014,79,80.1,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650015,79,79.3,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650016,79,78.4,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650017,79,77.62,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650018,79,76.47,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650019,79,75.4,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650020,79,74.4,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650021,79,73.42,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650022,79,72.52,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650023,79,71.7,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650024,79,71,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650025,79,70.25,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650026,79,69.4,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650027,79,68.97,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650028,79,68.5,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650029,79,68.5,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650030,79,69.15,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650031,79,70.53,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650032,79,72.46,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650033,79,74.91,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650034,66,0.104,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650035,66,0.104,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650036,66,0.104,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650037,66,0.104,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650038,66,0.103,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650039,66,0.102,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650040,66,0.1,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650041,66,0.1,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650042,66,0.098,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650043,66,0.097,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650044,66,0.095,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650045,66,0.094,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650046,66,0.093,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650047,66,0.092,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650048,66,0.091,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650049,66,0.091,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650050,66,0.089,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650051,66,0.088,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650052,66,0.087,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650053,66,0.085,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650054,66,0.086,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650055,66,0.087,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650056,66,0.087,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650057,66,0.087,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650058,86,31.42,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650059,86,32.03,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650060,86,31.21,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650061,86,30.78,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650062,86,30.45,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650063,86,30.13,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650064,86,30.28,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650065,86,29.79,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650066,86,29.79,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650067,86,29.48,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650068,86,29.5,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650069,86,29.44,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650070,86,29.04,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650071,86,28.82,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650072,86,28.74,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650073,86,28.25,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650074,86,28.62,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650075,86,28.52,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650076,86,28.14,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650077,86,28.31,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650078,86,27.84,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650079,86,27.3,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650080,86,27.47,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650081,86,27.51,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650082,96,37.43,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650083,96,37.28,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650084,96,37.72,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650085,96,37.5,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650086,96,37.11,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650087,96,36.74,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650088,96,36.1,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650089,96,35.81,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650090,96,35.3,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650091,96,34.98,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650092,96,34.26,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650093,96,33.72,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650094,96,33.54,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650095,96,33.07,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650096,96,32.78,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650097,96,32.69,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650098,96,32.01,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650099,96,31.48,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650100,96,31.31,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650101,96,30.68,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650102,96,30.8,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650103,96,31.23,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650104,96,31.19,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650105,96,31.43,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650106,85,32.14,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650107,85,32.83,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650108,85,32.03,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650109,85,31.6,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650110,85,31.27,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650111,85,30.91,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650112,85,31.03,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650113,85,30.49,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650114,85,30.46,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650115,85,30.11,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650116,85,30.08,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650117,85,29.99,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650118,85,29.56,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650119,85,29.3,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650120,85,29.19,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650121,85,28.66,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650122,85,29.01,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650123,85,28.89,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650124,85,28.49,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650125,85,28.66,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650126,85,28.21,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650127,85,27.7,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650128,85,27.93,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650129,85,28.05,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650130,95,37.41,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650131,95,36.75,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650132,95,36.89,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650133,95,36.56,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650134,95,36.19,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650135,95,35.98,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650136,95,35.58,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650137,95,35.56,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650138,95,35.32,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650139,95,35.25,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650140,95,34.82,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650141,95,34.53,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650142,95,34.57,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650143,95,34.32,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650144,95,34.24,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650145,95,34.35,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650146,95,33.84,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650147,95,33.45,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650148,95,33.39,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650149,95,32.73,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650150,95,32.71,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650151,95,32.85,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650152,95,32.32,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650153,95,31.99,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650154,60,0.364,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650155,60,0.37,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650156,60,0.367,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650157,60,0.368,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650158,60,0.366,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650159,60,0.368,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650160,60,0.371,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650161,60,0.368,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650162,60,0.367,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650163,60,0.371,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650164,60,0.37,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650165,60,0.371,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650166,60,0.367,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650167,60,0.366,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650168,60,0.368,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650169,60,0.37,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650170,60,0.371,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650171,60,0.371,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650172,60,0.367,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650173,60,0.367,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650174,60,0.367,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650175,60,0.367,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650176,60,0.365,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650177,60,0.368,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650178,67,0.084,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650179,67,0.083,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650180,67,0.084,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650181,67,0.084,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650182,67,0.085,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650183,67,0.084,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650184,67,0.084,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650185,67,0.085,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650186,67,0.085,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650187,67,0.085,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650188,67,0.085,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650189,67,0.085,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650190,67,0.085,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650191,67,0.085,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650192,67,0.084,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650193,67,0.084,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650194,67,0.084,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650195,67,0.084,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650196,67,0.084,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650197,67,0.084,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650198,67,0.084,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650199,67,0.084,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650200,67,0.084,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650201,67,0.083,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650202,75,22.8,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650203,75,23,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650204,75,23.23,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650205,75,23.45,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650206,75,23.55,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650207,75,23.85,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650208,75,23.9,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650209,75,24.2,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650210,75,24.2,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650211,75,24.2,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650212,75,24.2,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650213,75,24.2,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650214,75,23.9,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650215,75,23.9,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650216,75,23.75,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650217,75,23.55,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650218,75,23.5,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650219,75,23.3,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650220,75,23.22,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650221,75,22.95,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650222,75,22.75,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650223,75,22.7,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650224,75,22.6,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650225,75,22.6,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650226,80,73,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650227,80,73.4,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650228,80,73.78,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650229,80,74.2,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650230,80,74.4,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650231,80,75,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650232,80,75.1,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650233,80,75.5,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650234,80,75.5,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650235,80,75.5,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650236,80,75.5,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650237,80,75.5,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650238,80,75.1,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650239,80,75.1,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650240,80,74.8,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650241,80,74.4,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650242,80,74.3,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650243,80,73.9,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650244,80,73.77,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650245,80,73.3,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650246,80,72.9,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650247,80,72.8,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650248,80,72.6,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650249,80,72.6,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650250,68,0.081,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650251,68,0.081,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650252,68,0.082,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650253,68,0.082,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650254,68,0.083,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650255,68,0.082,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650256,68,0.083,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650257,68,0.084,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650258,68,0.084,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650259,68,0.084,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650260,68,0.084,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650261,68,0.084,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650262,68,0.084,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650263,68,0.084,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650264,68,0.083,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650265,68,0.082,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650266,68,0.082,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650267,68,0.082,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650268,68,0.082,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650269,68,0.081,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650270,68,0.081,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650271,68,0.081,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650272,68,0.081,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650273,68,0.08,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650274,88,24.86,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650275,88,25.36,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650276,88,25.15,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650277,88,25.24,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650278,88,25.01,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650279,88,25.26,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650280,88,25.5,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650281,88,25.2,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650282,88,25.13,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650283,88,25.44,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650284,88,25.36,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650285,88,25.43,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650286,88,25.1,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650287,88,25.03,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650288,88,25.17,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650289,88,25.35,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650290,88,25.44,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650291,88,25.53,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650292,88,25.08,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650293,88,25.14,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650294,88,25.14,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650295,88,25.06,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650296,88,24.87,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650297,88,25.21,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650298,98,29.31,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650299,98,29.03,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650300,98,29.42,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650301,98,29.54,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650302,98,29.87,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650303,98,29.72,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650304,98,29.79,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650305,98,30.09,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650306,98,30.23,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650307,98,30.15,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650308,98,30.28,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650309,98,29.92,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650310,98,30.22,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650311,98,30.11,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650312,98,29.84,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650313,98,29.64,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650314,98,29.52,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650315,98,29.23,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650316,98,29.54,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650317,98,29.19,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650318,98,29.21,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650319,98,29.15,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650320,98,29.32,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650321,98,28.89,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650322,87,25.29,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650323,87,25.81,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650324,87,25.62,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650325,87,25.72,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650326,87,25.5,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650327,87,25.76,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650328,87,26.02,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650329,87,25.72,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650330,87,25.65,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650331,87,25.97,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650332,87,25.89,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650333,87,25.95,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650334,87,25.61,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650335,87,25.53,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650336,87,25.66,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650337,87,25.85,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650338,87,25.92,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650339,87,26.01,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650340,87,25.53,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650341,87,25.59,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650342,87,25.57,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650343,87,25.49,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650344,87,25.29,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650345,87,25.63,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650346,97,30.25,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650347,97,29.9,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650348,97,30.19,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650349,97,30.2,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650350,97,30.44,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650351,97,30.19,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650352,97,30.2,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650353,97,30.45,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650354,97,30.55,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650355,97,30.46,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650356,97,30.6,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650357,97,30.28,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650358,97,30.61,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650359,97,30.57,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650360,97,30.36,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650361,97,30.22,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650362,97,30.17,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650363,97,29.96,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650364,97,30.34,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650365,97,30.05,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650366,97,30.15,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650367,97,30.14,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650368,97,30.37,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650369,97,29.91,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650370,61,0.265,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650371,61,0.263,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650372,61,0.259,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650373,61,0.262,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650374,61,0.259,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650375,61,0.259,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650376,61,0.264,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650377,61,0.265,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650378,61,0.265,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650379,61,0.262,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650380,61,0.262,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650381,61,0.261,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650382,61,0.26,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650383,61,0.26,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650384,61,0.26,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650385,61,0.26,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650386,61,0.26,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650387,61,0.26,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650388,61,0.26,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650389,61,0.261,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650390,61,0.26,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650391,61,0.262,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650392,61,0.263,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650393,61,0.265,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650394,69,0.045,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650395,69,0.045,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650396,69,0.046,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650397,69,0.046,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650398,69,0.046,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650399,69,0.046,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650400,69,0.046,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650401,69,0.046,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650402,69,0.045,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650403,69,0.046,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650404,69,0.046,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650405,69,0.046,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650406,69,0.046,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650407,69,0.046,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650408,69,0.046,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650409,69,0.046,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650410,69,0.046,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650411,69,0.046,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650412,69,0.046,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650413,69,0.046,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650414,69,0.046,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650415,69,0.046,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650416,69,0.046,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650417,69,0.045,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650418,76,22.95,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650419,76,22.85,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650420,76,22.8,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650421,76,22.8,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650422,76,22.8,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650423,76,22.8,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650424,76,22.75,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650425,76,22.8,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650426,76,22.8,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650427,76,22.9,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650428,76,22.9,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650429,76,22.9,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650430,76,23,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650431,76,23,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650432,76,23,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650433,76,23,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650434,76,23,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650435,76,23,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650436,76,23,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650437,76,23,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650438,76,22.95,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650439,76,22.95,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650440,76,23,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650441,76,23,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650442,81,73.3,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650443,81,73.1,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650444,81,73,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650445,81,73,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650446,81,73,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650447,81,73,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650448,81,72.9,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650449,81,73,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650450,81,73,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650451,81,73.2,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650452,81,73.2,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650453,81,73.2,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650454,81,73.4,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650455,81,73.4,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650456,81,73.4,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650457,81,73.4,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650458,81,73.4,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650459,81,73.4,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650460,81,73.4,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650461,81,73.4,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650462,81,73.3,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650463,81,73.3,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650464,81,73.4,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650465,81,73.4,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650466,70,0.044,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650467,70,0.044,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650468,70,0.045,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650469,70,0.045,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650470,70,0.045,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650471,70,0.045,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650472,70,0.044,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650473,70,0.044,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650474,70,0.044,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650475,70,0.045,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650476,70,0.045,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650477,70,0.045,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650478,70,0.045,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650479,70,0.045,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650480,70,0.045,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650481,70,0.045,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650482,70,0.045,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650483,70,0.045,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650484,70,0.045,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650485,70,0.045,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650486,70,0.045,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650487,70,0.045,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650488,70,0.045,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650489,70,0.044,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650490,90,16.6,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650491,90,16.49,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650492,90,16.14,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650493,90,16.37,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650494,90,16.14,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650495,90,16.14,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650496,90,16.49,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650497,90,16.6,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650498,90,16.6,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650499,90,16.38,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650500,90,16.36,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650501,90,16.26,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650502,90,16.19,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650503,90,16.19,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650504,90,16.19,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650505,90,16.2,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650506,90,16.2,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650507,90,16.2,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650508,90,16.2,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650509,90,16.26,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650510,90,16.19,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650511,90,16.32,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650512,90,16.4,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650513,90,16.6,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650514,100,15.92,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650515,100,15.99,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650516,100,16.22,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650517,100,16.07,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650518,100,16.22,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650519,100,16.22,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650520,100,15.99,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650521,100,15.91,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650522,100,15.91,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650523,100,16.06,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650524,100,16.15,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650525,100,16.23,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650526,100,16.26,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650527,100,16.26,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650528,100,16.26,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650529,100,16.27,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650530,100,16.27,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650531,100,16.27,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650532,100,16.27,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650533,100,16.24,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650534,100,16.26,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650535,100,16.21,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650536,100,16.09,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650537,100,15.92,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650538,89,16.9,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650539,89,16.79,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650540,89,16.43,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650541,89,16.66,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650542,89,16.43,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650543,89,16.43,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650544,89,16.78,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650545,89,16.9,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650546,89,16.9,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650547,89,16.67,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650548,89,16.65,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650549,89,16.55,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650550,89,16.49,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650551,89,16.49,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650552,89,16.49,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650553,89,16.5,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650554,89,16.5,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650555,89,16.5,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650556,89,16.5,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650557,89,16.56,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650558,89,16.49,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650559,89,16.62,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650560,89,16.7,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650561,89,16.9,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650562,99,16.36,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650563,99,16.44,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650564,99,16.67,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650565,99,16.53,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650566,99,16.69,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650567,99,16.69,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650568,99,16.45,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650569,99,16.37,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650570,99,16.37,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650571,99,16.5,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650572,99,16.6,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650573,99,16.67,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650574,99,16.69,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650575,99,16.69,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650576,99,16.69,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650577,99,16.68,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650578,99,16.68,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650579,99,16.68,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650580,99,16.68,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650581,99,16.65,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650582,99,16.69,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650583,99,16.64,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650584,99,16.52,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650585,99,16.36,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650586,62,0.384,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650587,62,0.375,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650588,62,0.381,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650589,62,0.375,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650590,62,0.375,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650591,62,0.375,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650592,62,0.375,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650593,62,0.378,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650594,62,0.377,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650595,62,0.381,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650596,62,0.381,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650597,62,0.381,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650598,62,0.384,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650599,62,0.384,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650600,62,0.384,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650601,62,0.384,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650602,62,0.384,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650603,62,0.384,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650604,62,0.384,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650605,62,0.384,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650606,62,0.384,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650607,62,0.384,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650608,62,0.385,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650609,62,0.382,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650610,71,0.107,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650611,71,0.109,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650612,71,0.107,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650613,71,0.108,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650614,71,0.108,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650615,71,0.108,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650616,71,0.108,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650617,71,0.107,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650618,71,0.108,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650619,71,0.107,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650620,71,0.108,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650621,71,0.108,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650622,71,0.107,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650623,71,0.107,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650624,71,0.107,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650625,71,0.107,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650626,71,0.107,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650627,71,0.107,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650628,71,0.107,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650629,71,0.107,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650630,71,0.107,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650631,71,0.107,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650632,71,0.106,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650633,71,0.107,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650634,77,20.7,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650635,77,20.7,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650636,77,20.65,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650637,77,20.7,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650638,77,20.7,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650639,77,20.7,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650640,77,20.65,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650641,77,20.65,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650642,77,20.7,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650643,77,20.65,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650644,77,20.7,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650645,77,20.7,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650646,77,20.7,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650647,77,20.7,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650648,77,20.7,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650649,77,20.65,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650650,77,20.7,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650651,77,20.7,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650652,77,20.6,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650653,77,20.65,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650654,77,20.65,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650655,77,20.7,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650656,77,20.65,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650657,77,20.65,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650658,82,69.2,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650659,82,69.2,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650660,82,69.12,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650661,82,69.2,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650662,82,69.2,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650663,82,69.2,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650664,82,69.12,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650665,82,69.13,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650666,82,69.2,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650667,82,69.12,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650668,82,69.2,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650669,82,69.2,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650670,82,69.2,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650671,82,69.2,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650672,82,69.2,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650673,82,69.12,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650674,82,69.2,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650675,82,69.2,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650676,82,69.05,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650677,82,69.12,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650678,82,69.13,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650679,82,69.2,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650680,82,69.13,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650681,82,69.12,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650682,72,0.1,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650683,72,0.102,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650684,72,0.1,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650685,72,0.101,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650686,72,0.101,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650687,72,0.101,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650688,72,0.101,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650689,72,0.101,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650690,72,0.101,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650691,72,0.101,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650692,72,0.101,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650693,72,0.101,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650694,72,0.1,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650695,72,0.1,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650696,72,0.1,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650697,72,0.1,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650698,72,0.1,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650699,72,0.1,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650700,72,0.1,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650701,72,0.1,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650702,72,0.1,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650703,72,0.1,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650704,72,0.1,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650705,72,0.1,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650706,92,26.65,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650707,92,25.82,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650708,92,26.47,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650709,92,25.86,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650710,92,25.86,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650711,92,25.86,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650712,92,25.86,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650713,92,26.17,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650714,92,26.06,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650715,92,26.44,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650716,92,26.33,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650717,92,26.33,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650718,92,26.65,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650719,92,26.65,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650720,92,26.65,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650721,92,26.65,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650722,92,26.65,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650723,92,26.65,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650724,92,26.65,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650725,92,26.65,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650726,92,26.65,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650727,92,26.65,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650728,92,26.76,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650729,92,26.45,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650730,102,36.1,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650731,102,36.57,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650732,102,35.86,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650733,102,36.28,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650734,102,36.28,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650735,102,36.28,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650736,102,36.27,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650737,102,36.07,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650738,102,36.23,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650739,102,36.15,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650740,102,36.31,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650741,102,36.31,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650742,102,36.1,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650743,102,36.1,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650744,102,36.1,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650745,102,36.1,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650746,102,36.1,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650747,102,36.1,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650748,102,36.1,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650749,102,36.1,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650750,102,36.1,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650751,102,36.1,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650752,102,35.93,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650753,102,36.14,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650754,91,26.98,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650755,91,26.14,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650756,91,26.8,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650757,91,26.18,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650758,91,26.18,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650759,91,26.18,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650760,91,26.18,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650761,91,26.49,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650762,91,26.38,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650763,91,26.77,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650764,91,26.66,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650765,91,26.66,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650766,91,26.98,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650767,91,26.98,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650768,91,26.98,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650769,91,26.98,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650770,91,26.98,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650771,91,26.98,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650772,91,26.98,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650773,91,26.98,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650774,91,26.98,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650775,91,26.98,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650776,91,27.09,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650777,91,26.78,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13650778,101,38.49,'2011-08-05 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13650779,101,38.99,'2011-08-05 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13650780,101,38.24,'2011-08-05 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13650781,101,38.68,'2011-08-05 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13650782,101,38.68,'2011-08-05 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13650783,101,38.68,'2011-08-05 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13650784,101,38.69,'2011-08-05 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13650785,101,38.46,'2011-08-05 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13650786,101,38.63,'2011-08-05 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13650787,101,38.54,'2011-08-05 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13650788,101,38.71,'2011-08-06 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13650789,101,38.71,'2011-08-06 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13650790,101,38.49,'2011-08-06 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13650791,101,38.49,'2011-08-06 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13650792,101,38.49,'2011-08-06 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13650793,101,38.49,'2011-08-06 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13650794,101,38.49,'2011-08-06 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13650795,101,38.49,'2011-08-06 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13650796,101,38.49,'2011-08-06 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13650797,101,38.49,'2011-08-06 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13650798,101,38.49,'2011-08-06 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13650799,101,38.49,'2011-08-06 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13650800,101,38.31,'2011-08-06 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13650801,101,38.54,'2011-08-06 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656626,31,13.21,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656627,31,13.19,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656628,31,13.17,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656629,31,13.18,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656630,31,13.18,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656631,31,12.88,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656632,31,12.77,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656633,31,12.73,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656634,31,12.68,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656635,31,12.64,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656636,31,12.61,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656637,31,12.6,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656638,31,12.57,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656639,31,12.55,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656640,31,12.52,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656641,31,12.5,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656642,31,12.49,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656643,31,12.52,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656644,31,12.95,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656645,31,13.39,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656646,31,13.32,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656647,31,13.28,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656648,31,13.26,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656649,31,13.24,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656650,32,2.6,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656651,32,2.376,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656652,32,2.158,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656653,32,2.599,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656654,32,1.89,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656655,32,2.113,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656656,32,1.748,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656657,32,1.215,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656658,32,1.019,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656659,32,1.319,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656660,32,1.163,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656661,32,1.332,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656662,32,1.694,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656663,32,1.34,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656664,32,0.935,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656665,32,1.507,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656666,32,1.194,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656667,32,1.164,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656668,32,1.327,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656669,32,1.828,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656670,32,2.862,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656671,32,2.443,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656672,32,3.338,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656673,32,3.083,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656674,33,203.2,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656675,33,255.8,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656676,33,182.8,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656677,33,190.9,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656678,33,286.1,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656679,33,265.5,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656680,33,227.5,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656681,33,286.1,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656682,33,247.6,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656683,33,243.7,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656684,33,214.3,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656685,33,228,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656686,33,342.9,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656687,33,268.1,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656688,33,198.6,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656689,33,209.5,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656690,33,204.8,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656691,33,53.61,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656692,33,136.5,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656693,33,50.68,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656694,33,34.38,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656695,33,87,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656696,33,41.55,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656697,33,52.67,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656698,34,42.91,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656699,34,43.95,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656700,34,37.41,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656701,34,24.06,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656702,34,29.55,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656703,34,25.72,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656704,34,44.38,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656705,34,66.32,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656706,34,59.19,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656707,34,20.23,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656708,34,40.85,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656709,34,56.54,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656710,34,36.21,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656711,34,58.11,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656712,34,51.16,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656713,34,53.82,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656714,34,54.96,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656715,34,72.46,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656716,34,36.69,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656717,34,38.34,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656718,34,24.51,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656719,34,73.61,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656720,34,15.08,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656721,34,69.07,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656722,35,630,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13656723,35,629.7,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13656724,35,629.3,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13656725,35,629.1,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13656726,35,629,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13656727,35,629.1,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13656728,35,629.8,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13656729,35,630.4,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13656730,35,630.1,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13656731,35,629.7,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13656732,35,629.3,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13656733,35,629.1,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13656734,35,629.3,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13656735,35,629.8,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13656736,35,629.6,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13656737,35,629.6,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13656738,35,629.5,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13656739,35,629.7,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13656740,35,630,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13656741,35,630.2,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13656742,35,630.2,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13656743,35,630.2,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13656744,35,630.1,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13656745,35,630,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13656746,30,0,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656747,30,0,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656748,30,0,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656749,30,0,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656750,30,0,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656751,30,0,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656752,30,0,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656753,30,0,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656754,30,0,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656755,30,0,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656756,30,0,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656757,30,0,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656758,30,0,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656759,30,0,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656760,30,0,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656761,30,0,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656762,30,0,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656763,30,0,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656764,30,0,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656765,30,0,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656766,30,0,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656767,30,0,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656768,30,0,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656769,30,0,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656770,28,28.78,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656771,28,28.95,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656772,28,29.31,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656773,28,28.95,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656774,28,27.82,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656775,28,24.51,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656776,28,20.11,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656777,28,19.37,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656778,28,15.01,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656779,28,13.87,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656780,28,13.16,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656781,28,13.15,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656782,28,13.59,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656783,28,12.76,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656784,28,11.29,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656785,28,11.75,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656786,28,11.85,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656787,28,14.38,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656788,28,18.6,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656789,28,21.14,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656790,28,22.43,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656791,28,24.75,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656792,28,24.83,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656793,28,26.8,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656794,29,16.53,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656795,29,21.87,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656796,29,11.06,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656797,29,15.74,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656798,29,25.35,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656799,29,39.41,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656800,29,42.1,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656801,29,55.21,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656802,29,61.72,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656803,29,61.76,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656804,29,56.69,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656805,29,56.51,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656806,29,49.98,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656807,29,63.89,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656808,29,63.43,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656809,29,57.15,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656810,29,49.91,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656811,29,40.42,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656812,29,32.63,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656813,29,36.93,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656814,29,33.42,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656815,29,35.55,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656816,29,29.43,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656817,29,19.06,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656818,36,1084,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656819,36,982,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656820,36,831,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656821,36,620.2,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656822,36,384.6,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656823,36,131.9,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656824,36,9.76,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656825,36,0.011,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656826,36,0,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656827,36,0,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656828,36,0,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656829,36,0,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656830,36,0,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656831,36,0,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656832,36,0,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656833,36,0,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656834,36,9.23,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656835,36,160.2,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656836,36,396.4,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656837,36,623.3,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656838,36,821,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656839,36,980,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656840,36,1034,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656841,36,1105,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656842,46,1.456,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656843,46,1.435,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656844,46,1.616,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656845,46,1.243,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656846,46,1.64,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656847,46,1.675,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656848,46,1.592,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656849,46,1.39,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656850,46,1.384,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656851,46,1.397,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656852,46,1.569,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656853,46,1.484,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656854,46,1.605,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656855,46,1.595,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656856,46,1.467,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656857,46,1.451,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656858,46,1.504,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656859,46,1.532,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656860,46,1.509,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656861,46,1.627,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656862,46,1.613,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656863,46,1.175,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656864,46,1.027,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656865,46,1.431,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656866,47,1.531,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656867,47,1.509,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656868,47,1.7,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656869,47,1.308,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656870,47,1.721,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656871,47,1.749,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656872,47,1.65,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656873,47,1.439,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656874,47,1.422,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656875,47,1.432,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656876,47,1.606,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656877,47,1.52,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656878,47,1.644,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656879,47,1.632,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656880,47,1.497,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656881,47,1.482,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656882,47,1.536,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656883,47,1.571,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656884,47,1.559,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656885,47,1.689,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656886,47,1.678,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656887,47,1.227,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656888,47,1.072,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656889,47,1.499,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656890,48,0.239,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13656891,48,0.261,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13656892,48,0.07,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13656893,48,0.462,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13656894,48,0.049,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13656895,48,0.021,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13656896,48,0.12,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13656897,48,0.331,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13656898,48,0.348,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13656899,48,0.338,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13656900,48,0.164,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13656901,48,0.25,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13656902,48,0.126,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13656903,48,0.138,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13656904,48,0.273,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13656905,48,0.288,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13656906,48,0.234,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13656907,48,0.199,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13656908,48,0.211,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13656909,48,0.081,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13656910,48,0.092,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13656911,48,0.543,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13656912,48,0.698,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13656913,48,0.271,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13656914,41,20.37,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656915,40,29.72,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656916,39,11.51,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656917,37,12.49,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656918,43,630,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656919,44,0,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656920,42,41.34,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656921,45,32.93282,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656922,38,1.869,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656923,51,0,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656924,53,2.184,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656925,49,1.46,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656926,52,0,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656927,54,2.237,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656928,50,1.513,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656929,56,-0.467,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656930,57,1.77,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13656931,55,0.257,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13660172,58,0.287,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660173,58,0.29,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660174,58,0.288,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660175,58,0.283,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660176,58,0.28,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660177,58,0.279,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660178,58,0.277,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660179,58,0.273,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660180,58,0.269,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660181,58,0.268,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660182,58,0.265,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660183,58,0.264,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660184,58,0.263,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660185,58,0.262,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660186,58,0.26,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660187,58,0.257,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660188,58,0.256,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660189,58,0.257,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660190,58,0.256,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660191,58,0.255,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660192,58,0.258,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660193,58,0.261,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660194,58,0.262,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660195,58,0.264,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660196,63,0.047,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660197,63,0.047,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660198,63,0.047,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660199,63,0.046,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660200,63,0.045,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660201,63,0.045,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660202,63,0.044,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660203,63,0.043,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660204,63,0.043,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660205,63,0.042,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660206,63,0.042,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660207,63,0.042,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660208,63,0.041,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660209,63,0.041,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660210,63,0.04,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660211,63,0.04,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660212,63,0.04,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660213,63,0.039,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660214,63,0.039,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660215,63,0.039,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660216,63,0.04,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660217,63,0.04,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660218,63,0.04,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660219,63,0.04,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660220,73,26.88,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660221,73,27.95,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660222,73,28.45,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660223,73,28.37,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660224,73,27.7,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660225,73,26.8,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660226,73,25.82,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660227,73,24.9,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660228,73,24.05,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660229,73,23.2,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660230,73,22.42,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660231,73,21.85,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660232,73,21.3,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660233,73,20.8,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660234,73,20.3,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660235,73,19.9,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660236,73,19.45,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660237,73,19.05,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660238,73,19.25,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660239,73,20.1,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660240,73,21.45,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660241,73,22.75,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660242,73,24,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660243,73,25.33,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660244,78,80.4,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660245,78,82.4,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660246,78,83.3,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660247,78,83.1,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660248,78,81.9,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660249,78,80.2,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660250,78,78.49,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660251,78,76.82,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660252,78,75.3,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660253,78,73.75,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660254,78,72.35,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660255,78,71.4,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660256,78,70.32,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660257,78,69.4,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660258,78,68.55,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660259,78,67.82,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660260,78,67.02,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660261,78,66.32,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660262,78,66.68,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660263,78,68.18,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660264,78,70.63,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660265,78,72.96,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660266,78,75.21,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660267,78,77.61,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660268,64,0.049,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660269,64,0.049,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660270,64,0.049,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660271,64,0.049,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660272,64,0.047,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660273,64,0.046,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660274,64,0.044,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660275,64,0.043,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660276,64,0.042,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660277,64,0.041,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660278,64,0.04,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660279,64,0.04,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660280,64,0.039,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660281,64,0.038,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660282,64,0.037,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660283,64,0.037,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660284,64,0.037,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660285,64,0.036,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660286,64,0.036,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660287,64,0.037,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660288,64,0.038,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660289,64,0.038,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660290,64,0.039,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660291,64,0.04,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660292,84,18.29,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660293,84,18.51,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660294,84,18.39,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660295,84,17.95,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660296,84,17.78,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660297,84,17.65,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660298,84,17.5,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660299,84,17.24,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660300,84,16.89,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660301,84,16.82,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660302,84,16.61,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660303,84,16.54,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660304,84,16.39,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660305,84,16.36,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660306,84,16.22,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660307,84,15.98,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660308,84,15.94,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660309,84,15.98,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660310,84,15.93,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660311,84,15.84,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660312,84,16.06,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660313,84,16.3,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660314,84,16.37,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660315,84,16.5,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660316,94,17.54,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660317,94,17.64,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660318,94,17.62,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660319,94,17.49,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660320,94,17,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660321,94,16.46,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660322,94,15.93,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660323,94,15.49,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660324,94,15.26,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660325,94,14.82,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660326,94,14.53,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660327,94,14.2,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660328,94,13.99,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660329,94,13.71,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660330,94,13.5,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660331,94,13.43,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660332,94,13.23,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660333,94,12.96,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660334,94,12.98,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660335,94,13.3,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660336,94,13.5,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660337,94,13.8,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660338,94,14.21,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660339,94,14.49,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660340,83,18.79,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660341,83,19.06,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660342,83,18.95,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660343,83,18.5,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660344,83,18.3,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660345,83,18.12,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660346,83,17.92,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660347,83,17.62,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660348,83,17.23,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660349,83,17.12,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660350,83,16.88,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660351,83,16.79,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660352,83,16.62,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660353,83,16.57,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660354,83,16.4,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660355,83,16.14,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660356,83,16.09,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660357,83,16.12,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660358,83,16.07,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660359,83,16.02,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660360,83,16.29,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660361,83,16.58,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660362,83,16.7,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660363,83,16.89,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660364,93,17.07,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660365,93,16.91,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660366,93,16.78,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660367,93,16.67,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660368,93,16.36,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660369,93,16.06,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660370,93,15.75,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660371,93,15.54,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660372,93,15.51,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660373,93,15.24,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660374,93,15.11,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660375,93,14.91,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660376,93,14.8,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660377,93,14.63,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660378,93,14.5,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660379,93,14.53,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660380,93,14.41,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660381,93,14.18,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660382,93,14.16,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660383,93,14.32,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660384,93,14.23,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660385,93,14.26,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660386,93,14.43,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660387,93,14.41,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660388,59,0.394,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660389,59,0.397,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660390,59,0.393,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660391,59,0.389,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660392,59,0.392,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660393,59,0.387,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660394,59,0.388,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660395,59,0.383,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660396,59,0.385,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660397,59,0.38,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660398,59,0.381,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660399,59,0.381,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660400,59,0.378,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660401,59,0.377,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660402,59,0.375,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660403,59,0.372,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660404,59,0.37,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660405,59,0.369,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660406,59,0.368,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660407,59,0.368,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660408,59,0.366,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660409,59,0.365,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660410,59,0.365,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660411,59,0.365,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660412,65,0.087,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660413,65,0.086,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660414,65,0.085,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660415,65,0.084,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660416,65,0.082,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660417,65,0.082,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660418,65,0.081,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660419,65,0.081,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660420,65,0.081,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660421,65,0.08,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660422,65,0.08,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660423,65,0.079,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660424,65,0.079,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660425,65,0.078,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660426,65,0.078,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660427,65,0.078,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660428,65,0.077,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660429,65,0.077,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660430,65,0.076,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660431,65,0.074,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660432,65,0.073,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660433,65,0.073,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660434,65,0.072,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660435,65,0.071,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660436,74,25.15,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660437,74,26.18,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660438,74,26.75,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660439,74,26.9,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660440,74,26.97,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660441,74,26.62,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660442,74,26.25,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660443,74,25.62,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660444,74,25,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660445,74,24.42,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660446,74,23.8,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660447,74,23.27,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660448,74,22.75,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660449,74,22.25,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660450,74,21.85,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660451,74,21.45,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660452,74,21,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660453,74,20.65,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660454,74,20.35,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660455,74,20.4,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660456,74,20.85,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660457,74,21.45,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660458,74,22.63,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660459,74,23.78,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660460,79,77.28,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660461,79,79.08,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660462,79,80.1,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660463,79,80.5,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660464,79,80.6,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660465,79,79.87,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660466,79,79.2,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660467,79,78.17,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660468,79,77.05,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660469,79,75.92,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660470,79,74.9,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660471,79,73.87,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660472,79,72.9,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660473,79,72.1,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660474,79,71.4,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660475,79,70.6,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660476,79,69.8,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660477,79,69.12,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660478,79,68.6,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660479,79,68.7,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660480,79,69.5,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660481,79,70.63,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660482,79,72.73,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660483,79,74.81,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660484,66,0.088,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660485,66,0.087,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660486,66,0.087,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660487,66,0.086,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660488,66,0.084,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660489,66,0.084,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660490,66,0.083,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660491,66,0.082,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660492,66,0.081,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660493,66,0.08,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660494,66,0.078,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660495,66,0.077,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660496,66,0.077,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660497,66,0.075,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660498,66,0.075,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660499,66,0.074,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660500,66,0.073,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660501,66,0.072,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660502,66,0.071,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660503,66,0.069,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660504,66,0.069,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660505,66,0.069,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660506,66,0.07,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660507,66,0.07,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660508,86,27.63,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660509,86,27.87,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660510,86,27.59,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660511,86,27.11,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660512,86,27.39,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660513,86,26.99,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660514,86,27.12,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660515,86,26.55,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660516,86,26.79,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660517,86,26.3,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660518,86,26.38,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660519,86,26.4,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660520,86,26.12,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660521,86,26.02,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660522,86,25.83,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660523,86,25.54,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660524,86,25.42,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660525,86,25.32,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660526,86,25.13,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660527,86,25.22,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660528,86,25,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660529,86,24.86,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660530,86,24.92,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660531,86,24.9,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660532,96,31.54,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660533,96,31.36,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660534,96,31.26,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660535,96,31.14,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660536,96,30.43,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660537,96,30.21,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660538,96,29.77,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660539,96,29.75,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660540,96,29.07,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660541,96,28.93,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660542,96,28.3,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660543,96,27.81,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660544,96,27.54,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660545,96,27.11,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660546,96,26.93,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660547,96,26.65,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660548,96,26.38,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660549,96,25.98,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660550,96,25.65,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660551,96,24.98,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660552,96,24.92,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660553,96,24.92,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660554,96,24.97,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660555,96,25.24,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660556,85,28.25,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660557,85,28.57,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660558,85,28.32,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660559,85,27.83,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660560,85,28.13,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660561,85,27.7,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660562,85,27.82,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660563,85,27.2,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660564,85,27.41,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660565,85,26.88,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660566,85,26.93,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660567,85,26.91,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660568,85,26.59,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660569,85,26.46,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660570,85,26.24,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660571,85,25.93,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660572,85,25.78,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660573,85,25.65,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660574,85,25.45,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660575,85,25.54,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660576,85,25.33,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660577,85,25.23,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660578,85,25.34,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660579,85,25.39,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660580,95,31.53,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660581,95,30.9,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660582,95,30.56,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660583,95,30.33,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660584,95,29.6,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660585,95,29.48,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660586,95,29.19,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660587,95,29.38,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660588,95,28.93,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660589,95,29.02,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660590,95,28.63,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660591,95,28.36,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660592,95,28.3,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660593,95,28.05,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660594,95,28.03,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660595,95,27.92,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660596,95,27.8,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660597,95,27.53,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660598,95,27.29,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660599,95,26.6,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660600,95,26.41,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660601,95,26.16,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660602,95,25.87,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660603,95,25.71,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660604,60,0.366,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660605,60,0.366,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660606,60,0.37,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660607,60,0.37,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660608,60,0.37,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660609,60,0.369,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660610,60,0.373,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660611,60,0.37,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660612,60,0.374,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660613,60,0.372,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660614,60,0.38,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660615,60,0.37,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660616,60,0.372,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660617,60,0.371,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660618,60,0.37,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660619,60,0.372,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660620,60,0.373,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660621,60,0.371,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660622,60,0.369,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660623,60,0.373,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660624,60,0.367,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660625,60,0.372,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660626,60,0.367,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660627,60,0.368,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660628,67,0.084,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660629,67,0.084,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660630,67,0.084,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660631,67,0.084,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660632,67,0.084,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660633,67,0.085,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660634,67,0.084,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660635,67,0.085,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660636,67,0.085,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660637,67,0.085,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660638,67,0.083,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660639,67,0.085,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660640,67,0.084,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660641,67,0.085,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660642,67,0.085,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660643,67,0.084,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660644,67,0.084,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660645,67,0.084,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660646,67,0.084,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660647,67,0.083,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660648,67,0.084,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660649,67,0.083,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660650,67,0.084,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660651,67,0.084,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660652,75,22.7,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660653,75,22.85,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660654,75,23,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660655,75,23.33,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660656,75,23.6,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660657,75,23.8,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660658,75,23.9,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660659,75,24.2,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660660,75,24.2,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660661,75,24.2,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660662,75,24.2,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660663,75,24.2,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660664,75,24.12,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660665,75,23.9,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660666,75,23.85,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660667,75,23.55,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660668,75,23.55,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660669,75,23.45,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660670,75,23.3,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660671,75,23,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660672,75,22.8,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660673,75,22.8,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660674,75,22.65,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660675,75,22.6,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660676,80,72.8,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660677,80,73.1,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660678,80,73.4,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660679,80,73.98,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660680,80,74.5,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660681,80,74.9,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660682,80,75.1,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660683,80,75.5,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660684,80,75.5,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660685,80,75.5,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660686,80,75.5,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660687,80,75.5,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660688,80,75.4,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660689,80,75.1,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660690,80,75,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660691,80,74.4,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660692,80,74.4,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660693,80,74.2,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660694,80,73.9,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660695,80,73.4,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660696,80,73,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660697,80,73,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660698,80,72.7,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660699,80,72.6,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660700,68,0.081,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660701,68,0.081,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660702,68,0.082,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660703,68,0.082,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660704,68,0.082,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660705,68,0.084,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660706,68,0.083,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660707,68,0.084,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660708,68,0.084,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660709,68,0.084,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660710,68,0.082,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660711,68,0.084,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660712,68,0.083,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660713,68,0.084,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660714,68,0.084,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660715,68,0.082,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660716,68,0.082,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660717,68,0.082,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660718,68,0.082,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660719,68,0.081,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660720,68,0.082,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660721,68,0.08,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660722,68,0.081,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660723,68,0.081,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660724,88,25.05,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660725,88,25.03,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660726,88,25.37,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660727,88,25.37,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660728,88,25.35,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660729,88,25.29,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660730,88,25.65,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660731,88,25.36,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660732,88,25.74,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660733,88,25.52,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660734,88,26.27,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660735,88,25.36,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660736,88,25.58,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660737,88,25.49,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660738,88,25.33,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660739,88,25.55,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660740,88,25.68,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660741,88,25.47,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660742,88,25.26,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660743,88,25.63,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660744,88,25.13,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660745,88,25.55,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660746,88,25.11,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660747,88,25.16,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660748,98,29.12,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660749,98,29.28,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660750,98,29.25,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660751,98,29.46,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660752,98,29.63,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660753,98,30,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660754,98,29.97,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660755,98,30.27,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660756,98,30.08,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660757,98,30.24,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660758,98,29.62,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660759,98,30.28,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660760,98,30.1,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660761,98,30,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660762,98,30.03,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660763,98,29.63,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660764,98,29.37,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660765,98,29.58,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660766,98,29.54,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660767,98,29.15,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660768,98,29.39,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660769,98,28.86,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660770,98,29.17,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660771,98,29.22,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660772,87,25.48,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660773,87,25.47,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660774,87,25.83,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660775,87,25.85,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660776,87,25.84,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660777,87,25.8,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660778,87,26.17,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660779,87,25.88,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660780,87,26.28,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660781,87,26.05,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660782,87,26.82,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660783,87,25.88,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660784,87,26.1,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660785,87,26.01,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660786,87,25.83,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660787,87,26.04,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660788,87,26.17,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660789,87,25.95,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660790,87,25.72,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660791,87,26.09,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660792,87,25.57,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660793,87,25.99,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660794,87,25.54,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660795,87,25.58,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660796,97,30.1,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660797,97,30.2,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660798,97,30.07,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660799,97,30.17,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660800,97,30.23,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660801,97,30.5,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660802,97,30.38,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660803,97,30.63,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660804,97,30.39,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660805,97,30.56,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660806,97,29.92,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660807,97,30.62,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660808,97,30.49,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660809,97,30.43,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660810,97,30.51,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660811,97,30.18,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660812,97,29.99,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660813,97,30.27,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660814,97,30.3,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660815,97,29.98,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660816,97,30.31,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660817,97,29.81,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660818,97,30.16,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660819,97,30.24,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660820,61,0.265,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660821,61,0.263,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660822,61,0.26,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660823,61,0.259,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660824,61,0.26,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660825,61,0.261,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660826,61,0.263,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660827,61,0.265,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660828,61,0.265,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660829,61,0.261,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660830,61,0.261,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660831,61,0.26,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660832,61,0.26,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660833,61,0.26,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660834,61,0.261,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660835,61,0.265,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660836,61,0.263,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660837,61,0.262,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660838,61,0.263,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660839,61,0.26,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660840,61,0.26,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660841,61,0.26,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660842,61,0.261,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660843,61,0.263,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660844,69,0.045,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660845,69,0.046,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660846,69,0.046,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660847,69,0.046,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660848,69,0.046,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660849,69,0.046,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660850,69,0.046,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660851,69,0.046,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660852,69,0.046,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660853,69,0.047,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660854,69,0.046,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660855,69,0.046,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660856,69,0.046,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660857,69,0.046,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660858,69,0.046,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660859,69,0.046,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660860,69,0.046,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660861,69,0.046,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660862,69,0.046,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660863,69,0.046,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660864,69,0.046,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660865,69,0.046,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660866,69,0.046,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660867,69,0.046,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660868,76,22.85,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660869,76,22.8,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660870,76,22.8,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660871,76,22.8,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660872,76,22.8,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660873,76,22.8,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660874,76,22.8,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660875,76,22.8,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660876,76,22.8,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660877,76,22.8,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660878,76,22.85,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660879,76,22.9,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660880,76,23,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660881,76,23,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660882,76,23,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660883,76,23,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660884,76,23,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660885,76,23,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660886,76,23,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660887,76,23,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660888,76,23,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660889,76,23,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660890,76,23,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660891,76,22.95,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660892,81,73.1,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660893,81,73,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660894,81,73,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660895,81,73,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660896,81,73,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660897,81,73,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660898,81,73,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660899,81,73,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660900,81,73,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660901,81,73,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660902,81,73.1,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660903,81,73.2,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660904,81,73.4,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660905,81,73.4,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660906,81,73.4,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660907,81,73.4,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660908,81,73.4,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660909,81,73.4,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660910,81,73.4,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660911,81,73.4,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660912,81,73.4,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660913,81,73.4,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660914,81,73.4,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660915,81,73.3,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660916,70,0.044,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660917,70,0.044,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660918,70,0.045,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660919,70,0.045,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660920,70,0.045,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660921,70,0.045,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660922,70,0.044,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660923,70,0.044,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660924,70,0.044,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660925,70,0.045,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660926,70,0.045,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660927,70,0.045,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660928,70,0.045,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660929,70,0.045,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660930,70,0.045,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660931,70,0.044,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660932,70,0.045,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660933,70,0.045,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660934,70,0.045,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660935,70,0.045,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660936,70,0.045,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660937,70,0.045,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660938,70,0.045,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660939,70,0.045,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660940,90,16.6,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660941,90,16.48,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660942,90,16.25,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660943,90,16.14,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660944,90,16.25,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660945,90,16.25,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660946,90,16.48,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660947,90,16.6,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660948,90,16.6,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660949,90,16.29,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660950,90,16.25,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660951,90,16.19,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660952,90,16.19,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660953,90,16.19,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660954,90,16.31,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660955,90,16.54,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660956,90,16.42,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660957,90,16.31,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660958,90,16.42,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660959,90,16.19,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660960,90,16.19,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660961,90,16.19,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660962,90,16.32,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660963,90,16.44,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660964,100,15.92,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660965,100,15.99,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660966,100,16.14,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660967,100,16.22,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660968,100,16.14,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660969,100,16.14,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660970,100,15.99,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660971,100,15.91,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660972,100,15.91,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660973,100,16.17,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660974,100,16.23,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660975,100,16.26,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13660976,100,16.26,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13660977,100,16.26,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13660978,100,16.19,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13660979,100,16.03,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13660980,100,16.11,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13660981,100,16.19,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13660982,100,16.11,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13660983,100,16.26,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13660984,100,16.26,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13660985,100,16.26,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13660986,100,16.21,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13660987,100,16.03,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13660988,89,16.9,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13660989,89,16.78,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13660990,89,16.54,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13660991,89,16.43,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13660992,89,16.54,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13660993,89,16.54,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13660994,89,16.77,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13660995,89,16.9,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13660996,89,16.9,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13660997,89,16.58,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13660998,89,16.54,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13660999,89,16.48,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661000,89,16.48,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661001,89,16.49,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661002,89,16.61,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661003,89,16.84,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661004,89,16.72,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661005,89,16.61,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661006,89,16.73,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661007,89,16.49,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661008,89,16.49,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661009,89,16.49,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661010,89,16.62,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661011,89,16.74,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661012,99,16.36,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661013,99,16.45,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661014,99,16.61,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661015,99,16.7,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661016,99,16.62,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661017,99,16.62,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661018,99,16.47,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661019,99,16.38,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661020,99,16.37,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661021,99,16.64,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661022,99,16.69,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661023,99,16.71,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661024,99,16.71,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661025,99,16.7,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661026,99,16.62,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661027,99,16.46,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661028,99,16.54,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661029,99,16.61,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661030,99,16.53,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661031,99,16.69,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661032,99,16.69,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661033,99,16.69,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661034,99,16.65,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661035,99,16.47,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661036,62,0.377,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661037,62,0.378,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661038,62,0.375,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661039,62,0.375,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661040,62,0.375,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661041,62,0.375,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661042,62,0.375,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661043,62,0.375,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661044,62,0.375,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661045,62,0.375,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661046,62,0.371,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661047,62,0.384,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661048,62,0.381,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661049,62,0.381,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661050,62,0.384,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661051,62,0.384,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661052,62,0.384,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661053,62,0.384,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661054,62,0.384,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661055,62,0.384,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661056,62,0.384,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661057,62,0.384,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661058,62,0.381,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661059,62,0.376,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661060,71,0.108,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661061,71,0.107,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661062,71,0.108,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661063,71,0.108,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661064,71,0.108,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661065,71,0.108,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661066,71,0.108,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661067,71,0.108,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661068,71,0.108,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661069,71,0.108,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661070,71,0.109,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661071,71,0.106,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661072,71,0.108,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661073,71,0.108,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661074,71,0.107,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661075,71,0.107,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661076,71,0.107,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661077,71,0.107,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661078,71,0.107,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661079,71,0.107,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661080,71,0.107,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661081,71,0.107,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661082,71,0.108,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661083,71,0.108,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661084,77,20.6,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661085,77,20.7,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661086,77,20.65,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661087,77,20.7,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661088,77,20.65,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661089,77,20.7,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661090,77,20.6,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661091,77,20.7,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661092,77,20.65,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661093,77,20.65,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661094,77,20.65,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661095,77,20.65,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661096,77,20.7,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661097,77,20.7,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661098,77,20.65,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661099,77,20.7,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661100,77,20.65,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661101,77,20.65,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661102,77,20.65,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661103,77,20.65,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661104,77,20.65,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661105,77,20.7,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661106,77,20.7,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661107,77,20.65,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661108,82,69.05,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661109,82,69.2,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661110,82,69.12,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661111,82,69.2,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661112,82,69.12,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661113,82,69.2,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661114,82,69.05,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661115,82,69.2,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661116,82,69.13,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661117,82,69.12,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661118,82,69.12,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661119,82,69.12,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661120,82,69.2,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661121,82,69.2,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661122,82,69.12,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661123,82,69.2,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661124,82,69.12,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661125,82,69.13,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661126,82,69.12,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661127,82,69.12,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661128,82,69.12,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661129,82,69.2,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661130,82,69.2,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661131,82,69.13,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661132,72,0.101,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661133,72,0.101,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661134,72,0.101,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661135,72,0.101,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661136,72,0.101,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661137,72,0.101,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661138,72,0.101,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661139,72,0.101,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661140,72,0.101,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661141,72,0.101,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661142,72,0.102,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661143,72,0.1,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661144,72,0.101,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661145,72,0.101,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661146,72,0.1,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661147,72,0.1,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661148,72,0.1,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661149,72,0.1,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661150,72,0.1,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661151,72,0.1,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661152,72,0.1,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661153,72,0.1,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661154,72,0.101,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661155,72,0.102,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661156,92,26.04,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661157,92,26.17,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661158,92,25.86,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661159,92,25.86,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661160,92,25.86,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661161,92,25.86,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661162,92,25.86,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661163,92,25.86,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661164,92,25.86,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661165,92,25.86,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661166,92,25.5,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661167,92,26.67,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661168,92,26.33,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661169,92,26.33,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661170,92,26.65,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661171,92,26.65,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661172,92,26.65,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661173,92,26.65,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661174,92,26.65,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661175,92,26.65,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661176,92,26.65,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661177,92,26.65,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661178,92,26.33,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661179,92,25.92,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661180,102,36.24,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661181,102,36.07,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661182,102,36.28,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661183,102,36.28,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661184,102,36.27,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661185,102,36.28,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661186,102,36.27,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661187,102,36.28,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661188,102,36.28,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661189,102,36.28,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661190,102,36.78,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661191,102,35.82,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661192,102,36.31,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661193,102,36.31,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661194,102,36.1,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661195,102,36.1,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661196,102,36.1,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661197,102,36.1,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661198,102,36.1,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661199,102,36.1,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661200,102,36.1,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661201,102,36.1,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661202,102,36.31,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661203,102,36.41,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661204,91,26.37,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661205,91,26.49,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661206,91,26.18,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661207,91,26.18,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661208,91,26.18,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661209,91,26.18,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661210,91,26.18,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661211,91,26.18,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661212,91,26.18,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661213,91,26.18,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661214,91,25.82,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661215,91,27,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661216,91,26.66,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661217,91,26.66,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661218,91,26.98,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661219,91,26.98,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661220,91,26.98,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661221,91,26.98,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661222,91,26.98,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661223,91,26.98,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661224,91,26.98,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661225,91,26.98,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661226,91,26.66,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661227,91,26.24,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13661228,101,38.64,'2011-08-06 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13661229,101,38.46,'2011-08-06 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13661230,101,38.68,'2011-08-06 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13661231,101,38.68,'2011-08-06 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13661232,101,38.69,'2011-08-06 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13661233,101,38.68,'2011-08-06 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13661234,101,38.69,'2011-08-06 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13661235,101,38.68,'2011-08-06 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13661236,101,38.69,'2011-08-06 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13661237,101,38.68,'2011-08-06 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13661238,101,39.21,'2011-08-07 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13661239,101,38.19,'2011-08-07 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13661240,101,38.71,'2011-08-07 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13661241,101,38.71,'2011-08-07 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13661242,101,38.49,'2011-08-07 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13661243,101,38.49,'2011-08-07 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13661244,101,38.49,'2011-08-07 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13661245,101,38.49,'2011-08-07 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13661246,101,38.5,'2011-08-07 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13661247,101,38.49,'2011-08-07 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13661248,101,38.49,'2011-08-07 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13661249,101,38.49,'2011-08-07 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13661250,101,38.71,'2011-08-07 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13661251,101,38.82,'2011-08-07 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13666962,31,13.22,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13666963,31,13.21,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13666964,31,13.18,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13666965,31,13.18,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13666966,31,13.2,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13666967,31,12.87,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13666968,31,12.76,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13666969,31,12.7,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13666970,31,12.67,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13666971,31,12.66,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13666972,31,12.62,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13666973,31,12.6,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13666974,31,12.58,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13666975,31,12.54,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13666976,31,12.51,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13666977,31,12.5,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13666978,31,12.49,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13666979,31,12.52,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13666980,31,12.86,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13666981,31,13.35,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13666982,31,13.29,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13666983,31,13.26,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13666984,31,13.25,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13666985,31,13.25,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13666986,32,2.891,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13666987,32,3.168,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13666988,32,2.733,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13666989,32,3.431,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13666990,32,3.591,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13666991,32,1.852,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13666992,32,1.836,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13666993,32,1.624,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13666994,32,1.96,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13666995,32,1.853,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13666996,32,1.79,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13666997,32,0.874,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13666998,32,1.085,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13666999,32,1.093,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667000,32,1.142,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667001,32,0.917,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667002,32,1.025,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667003,32,0.942,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667004,32,0.928,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667005,32,1.855,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667006,32,2.15,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667007,32,3.584,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667008,32,4.152,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667009,32,2.981,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667010,33,213.9,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667011,33,209.7,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667012,33,246.3,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667013,33,289.6,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667014,33,330.7,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667015,33,252.5,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667016,33,226.1,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667017,33,203.1,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667018,33,220,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667019,33,214.2,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667020,33,224.9,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667021,33,257.7,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667022,33,263.4,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667023,33,234.3,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667024,33,239.9,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667025,33,295.3,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667026,33,267.2,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667027,33,13.63,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667028,33,42.9,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667029,33,44.27,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667030,33,31.86,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667031,33,181,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667032,33,32.53,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667033,33,37.7,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667034,34,59.23,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667035,34,32.44,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667036,34,47.83,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667037,34,15.24,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667038,34,39.1,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667039,34,19.89,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667040,34,23.63,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667041,34,26.06,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667042,34,22.63,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667043,34,16.74,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667044,34,26.87,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667045,34,24.66,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667046,34,49.31,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667047,34,53.66,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667048,34,48.43,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667049,34,67.63,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667050,34,61.91,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667051,34,61.12,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667052,34,54.34,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667053,34,29.2,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667054,34,23.93,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667055,34,25.55,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667056,34,22.39,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667057,34,19.43,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667058,35,629.7,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13667059,35,629.3,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13667060,35,629.2,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13667061,35,629.3,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13667062,35,629.7,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13667063,35,629.6,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13667064,35,629.7,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13667065,35,629.9,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13667066,35,629.8,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13667067,35,629.5,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13667068,35,629.7,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13667069,35,629.7,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13667070,35,629.8,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13667071,35,629.7,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13667072,35,629.7,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13667073,35,629.7,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13667074,35,629.9,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13667075,35,630.2,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13667076,35,630.4,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13667077,35,630.4,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13667078,35,630.4,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13667079,35,630.4,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13667080,35,630.4,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13667081,35,630,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13667082,30,0,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667083,30,0,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667084,30,0,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667085,30,0,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667086,30,0,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667087,30,0,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667088,30,0,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667089,30,0,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667090,30,0,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667091,30,0,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667092,30,0,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667093,30,0,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667094,30,0,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667095,30,0,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667096,30,0,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667097,30,0,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667098,30,0,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667099,30,0,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667100,30,0,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667101,30,0,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667102,30,0,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667103,30,0,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667104,30,0,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667105,30,0,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667106,28,28.02,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667107,28,28.73,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667108,28,28.69,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667109,28,27.77,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667110,28,24.83,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667111,28,21.81,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667112,28,18.09,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667113,28,15.97,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667114,28,15.1,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667115,28,14.79,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667116,28,15.1,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667117,28,14.68,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667118,28,14.39,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667119,28,13.35,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667120,28,13.07,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667121,28,13.39,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667122,28,13.55,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667123,28,15.44,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667124,28,18.15,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667125,28,21.6,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667126,28,23.16,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667127,28,26.64,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667128,28,24.84,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667129,28,25.95,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667130,29,16.62,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667131,29,14.6,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667132,29,18.34,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667133,29,18.49,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667134,29,33.23,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667135,29,44,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667136,29,54.5,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667137,29,54.94,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667138,29,55.77,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667139,29,50.99,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667140,29,47.23,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667141,29,47.99,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667142,29,59.76,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667143,29,57.26,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667144,29,54.71,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667145,29,58.12,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667146,29,51.74,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667147,29,50.64,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667148,29,46.65,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667149,29,45.31,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667150,29,36.11,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667151,29,17.93,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667152,29,41.07,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667153,29,35.73,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667154,36,1073,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667155,36,973,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667156,36,815,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667157,36,608.3,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667158,36,353.5,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667159,36,118.3,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667160,36,7.673,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667161,36,0.005,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667162,36,0,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667163,36,0,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667164,36,0,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667165,36,0,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667166,36,0,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667167,36,0,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667168,36,0,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667169,36,0,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667170,36,12.17,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667171,36,138.5,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667172,36,350.7,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667173,36,615,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667174,36,820,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667175,36,984,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667176,36,1074,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667177,36,1106,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667178,46,1.343,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667179,46,1.375,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667180,46,1.511,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667181,46,1.644,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667182,46,1.177,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667183,46,1.671,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667184,46,1.52,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667185,46,1.377,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667186,46,1.445,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667187,46,1.514,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667188,46,1.437,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667189,46,1.403,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667190,46,1.607,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667191,46,1.489,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667192,46,1.515,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667193,46,1.488,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667194,46,1.639,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667195,46,1.455,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667196,46,1.454,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667197,46,1.542,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667198,46,1.591,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667199,46,1.382,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667200,46,1.467,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667201,46,1.034,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667202,47,1.41,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667203,47,1.445,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667204,47,1.588,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667205,47,1.726,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667206,47,1.23,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667207,47,1.737,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667208,47,1.57,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667209,47,1.416,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667210,47,1.484,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667211,47,1.555,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667212,47,1.476,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667213,47,1.441,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667214,47,1.649,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667215,47,1.526,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667216,47,1.551,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667217,47,1.524,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667218,47,1.679,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667219,47,1.495,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667220,47,1.5,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667221,47,1.602,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667222,47,1.656,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667223,47,1.447,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667224,47,1.533,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667225,47,1.081,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667226,48,0.36,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13667227,48,0.325,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13667228,48,0.182,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13667229,48,0.044,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13667230,48,0.54,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13667231,48,0.033,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13667232,48,0.2,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13667233,48,0.354,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13667234,48,0.286,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13667235,48,0.215,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13667236,48,0.294,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13667237,48,0.329,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13667238,48,0.121,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13667239,48,0.244,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13667240,48,0.219,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13667241,48,0.246,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13667242,48,0.091,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13667243,48,0.275,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13667244,48,0.27,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13667245,48,0.168,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13667246,48,0.114,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13667247,48,0.323,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13667248,48,0.237,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13667249,48,0.689,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13667250,41,19.43,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667251,40,29.29,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667252,39,10.66,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667253,37,12.49,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667254,43,629.7,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667255,44,0,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667256,42,41.55,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667257,45,32.37898,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667258,38,2.116,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667259,51,0,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667260,53,1.842,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667261,49,1.46,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667262,52,0,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667263,54,1.923,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667264,50,1.51,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667265,56,-0.153,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667266,57,1.77,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13667267,55,0.26,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13670508,58,0.267,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670509,58,0.266,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670510,58,0.267,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670511,58,0.264,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670512,58,0.262,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670513,58,0.259,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670514,58,0.255,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670515,58,0.255,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670516,58,0.251,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670517,58,0.248,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670518,58,0.247,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670519,58,0.246,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670520,58,0.244,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670521,58,0.242,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670522,58,0.24,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670523,58,0.241,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670524,58,0.24,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670525,58,0.24,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670526,58,0.24,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670527,58,0.239,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670528,58,0.241,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670529,58,0.244,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670530,58,0.247,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670531,58,0.248,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670532,63,0.04,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670533,63,0.04,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670534,63,0.04,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670535,63,0.039,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670536,63,0.039,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670537,63,0.038,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670538,63,0.038,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670539,63,0.037,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670540,63,0.037,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670541,63,0.036,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670542,63,0.036,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670543,63,0.036,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670544,63,0.036,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670545,63,0.036,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670546,63,0.035,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670547,63,0.035,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670548,63,0.035,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670549,63,0.035,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670550,63,0.035,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670551,63,0.035,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670552,63,0.035,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670553,63,0.035,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670554,63,0.035,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670555,63,0.036,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670556,73,26.87,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670557,73,27.9,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670558,73,28.38,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670559,73,28.3,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670560,73,27.35,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670561,73,26.3,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670562,73,25.45,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670563,73,24.55,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670564,73,23.75,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670565,73,23.02,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670566,73,22.42,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670567,73,21.85,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670568,73,21.4,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670569,73,20.95,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670570,73,20.55,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670571,73,20.1,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670572,73,19.75,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670573,73,19.5,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670574,73,19.65,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670575,73,20.4,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670576,73,21.6,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670577,73,23.15,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670578,73,24.43,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670579,73,25.78,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670580,78,80.4,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670581,78,82.3,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670582,78,83.1,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670583,78,83,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670584,78,81.2,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670585,78,79.3,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670586,78,77.82,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670587,78,76.15,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670588,78,74.8,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670589,78,73.42,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670590,78,72.35,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670591,78,71.4,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670592,78,70.5,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670593,78,69.7,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670594,78,68.97,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670595,78,68.17,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670596,78,67.57,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670597,78,67.1,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670598,78,67.38,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670599,78,68.73,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670600,78,70.93,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670601,78,73.66,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670602,78,75.96,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670603,78,78.38,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670604,64,0.041,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670605,64,0.042,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670606,64,0.042,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670607,64,0.041,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670608,64,0.04,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670609,64,0.039,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670610,64,0.038,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670611,64,0.037,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670612,64,0.036,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670613,64,0.035,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670614,64,0.035,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670615,64,0.034,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670616,64,0.034,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670617,64,0.034,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670618,64,0.033,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670619,64,0.033,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670620,64,0.032,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670621,64,0.032,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670622,64,0.032,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670623,64,0.033,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670624,64,0.034,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670625,64,0.035,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670626,64,0.035,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670627,64,0.036,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670628,84,16.77,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670629,84,16.62,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670630,84,16.71,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670631,84,16.49,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670632,84,16.39,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670633,84,16.14,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670634,84,15.85,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670635,84,15.85,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670636,84,15.59,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670637,84,15.38,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670638,84,15.29,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670639,84,15.19,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670640,84,15.09,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670641,84,14.95,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670642,84,14.79,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670643,84,14.87,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670644,84,14.8,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670645,84,14.78,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670646,84,14.8,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670647,84,14.7,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670648,84,14.84,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670649,84,15.07,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670650,84,15.26,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670651,84,15.38,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670652,94,14.83,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670653,94,15.13,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670654,94,15.03,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670655,94,14.9,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670656,94,14.36,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670657,94,13.94,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670658,94,13.67,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670659,94,13.18,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670660,94,12.94,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670661,94,12.74,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670662,94,12.5,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670663,94,12.33,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670664,94,12.17,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670665,94,12.03,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670666,94,11.96,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670667,94,11.65,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670668,94,11.6,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670669,94,11.43,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670670,94,11.46,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670671,94,11.72,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670672,94,11.99,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670673,94,12.37,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670674,94,12.53,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670675,94,12.95,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670676,83,17.22,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670677,83,17.11,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670678,83,17.23,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670679,83,16.99,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670680,83,16.85,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670681,83,16.54,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670682,83,16.22,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670683,83,16.18,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670684,83,15.89,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670685,83,15.65,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670686,83,15.54,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670687,83,15.41,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670688,83,15.3,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670689,83,15.14,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670690,83,14.96,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670691,83,15.03,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670692,83,14.95,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670693,83,14.92,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670694,83,14.95,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670695,83,14.87,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670696,83,15.06,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670697,83,15.35,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670698,83,15.58,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670699,83,15.76,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670700,93,14.43,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670701,93,14.52,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670702,93,14.32,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670703,93,14.23,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670704,93,13.9,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670705,93,13.72,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670706,93,13.62,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670707,93,13.3,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670708,93,13.2,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670709,93,13.14,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670710,93,13.01,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670711,93,12.93,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670712,93,12.87,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670713,93,12.81,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670714,93,12.82,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670715,93,12.56,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670716,93,12.57,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670717,93,12.43,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670718,93,12.43,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670719,93,12.56,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670720,93,12.59,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670721,93,12.7,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670722,93,12.63,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670723,93,12.8,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670724,59,0.362,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670725,59,0.364,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670726,59,0.364,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670727,59,0.361,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670728,59,0.357,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670729,59,0.357,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670730,59,0.358,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670731,59,0.357,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670732,59,0.354,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670733,59,0.35,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670734,59,0.348,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670735,59,0.349,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670736,59,0.35,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670737,59,0.345,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670738,59,0.345,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670739,59,0.344,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670740,59,0.342,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670741,59,0.342,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670742,59,0.34,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670743,59,0.339,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670744,59,0.338,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670745,59,0.339,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670746,59,0.334,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670747,59,0.338,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670748,65,0.072,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670749,65,0.071,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670750,65,0.069,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670751,65,0.068,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670752,65,0.068,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670753,65,0.067,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670754,65,0.067,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670755,65,0.066,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670756,65,0.066,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670757,65,0.066,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670758,65,0.065,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670759,65,0.065,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670760,65,0.064,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670761,65,0.064,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670762,65,0.064,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670763,65,0.063,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670764,65,0.063,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670765,65,0.062,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670766,65,0.062,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670767,65,0.061,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670768,65,0.061,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670769,65,0.06,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670770,65,0.061,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670771,65,0.06,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670772,74,25.07,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670773,74,26.23,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670774,74,26.75,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670775,74,26.97,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670776,74,26.85,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670777,74,26.55,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670778,74,26.05,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670779,74,25.5,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670780,74,24.9,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670781,74,24.45,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670782,74,23.75,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670783,74,23.35,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670784,74,22.8,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670785,74,22.37,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670786,74,21.95,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670787,74,21.65,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670788,74,21.2,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670789,74,20.9,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670790,74,20.75,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670791,74,20.7,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670792,74,21.1,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670793,74,21.8,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670794,74,22.88,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670795,74,24.13,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670796,79,77.17,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670797,79,79.18,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670798,79,80.1,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670799,79,80.6,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670800,79,80.4,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670801,79,79.75,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670802,79,78.85,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670803,79,77.95,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670804,79,76.82,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670805,79,75.95,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670806,79,74.8,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670807,79,74,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670808,79,73,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670809,79,72.27,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670810,79,71.6,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670811,79,71,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670812,79,70.15,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670813,79,69.6,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670814,79,69.3,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670815,79,69.2,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670816,79,69.98,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670817,79,71.3,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670818,79,73.16,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670819,79,75.43,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670820,66,0.072,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670821,66,0.071,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670822,66,0.071,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670823,66,0.07,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670824,66,0.07,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670825,66,0.069,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670826,66,0.068,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670827,66,0.066,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670828,66,0.066,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670829,66,0.065,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670830,66,0.065,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670831,66,0.063,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670832,66,0.062,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670833,66,0.062,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670834,66,0.062,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670835,66,0.06,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670836,66,0.06,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670837,66,0.059,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670838,66,0.058,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670839,66,0.057,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670840,66,0.058,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670841,66,0.057,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670842,66,0.059,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670843,66,0.059,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670844,86,24.68,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670845,86,24.8,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670846,86,24.87,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670847,86,24.54,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670848,86,24.21,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670849,86,24.18,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670850,86,24.23,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670851,86,24.15,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670852,86,23.95,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670853,86,23.56,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670854,86,23.35,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670855,86,23.53,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670856,86,23.51,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670857,86,23.14,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670858,86,23.06,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670859,86,23.05,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670860,86,22.83,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670861,86,22.85,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670862,86,22.63,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670863,86,22.56,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670864,86,22.45,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670865,86,22.57,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670866,86,22.15,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670867,86,22.52,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670868,96,25.78,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670869,96,25.72,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670870,96,25.48,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670871,96,25.3,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670872,96,25.12,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670873,96,24.66,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670874,96,24.28,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670875,96,23.91,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670876,96,23.75,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670877,96,23.65,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670878,96,23.3,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670879,96,22.84,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670880,96,22.44,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670881,96,22.34,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670882,96,22.16,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670883,96,21.63,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670884,96,21.58,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670885,96,21.25,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670886,96,21.05,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670887,96,20.74,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670888,96,20.78,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670889,96,20.65,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670890,96,21.18,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670891,96,21.28,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670892,85,25.23,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670893,85,25.42,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670894,85,25.52,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670895,85,25.2,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670896,85,24.86,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670897,85,24.82,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670898,85,24.85,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670899,85,24.73,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670900,85,24.5,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670901,85,24.07,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670902,85,23.82,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670903,85,23.99,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670904,85,23.94,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670905,85,23.54,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670906,85,23.44,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670907,85,23.4,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670908,85,23.17,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670909,85,23.17,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670910,85,22.93,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670911,85,22.86,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670912,85,22.77,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670913,85,22.92,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670914,85,22.54,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670915,85,22.98,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670916,95,25.79,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670917,95,25.33,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670918,95,24.91,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670919,95,24.63,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670920,95,24.47,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670921,95,24.1,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670922,95,23.88,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670923,95,23.68,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670924,95,23.68,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670925,95,23.77,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670926,95,23.61,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670927,95,23.3,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670928,95,23.04,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670929,95,23.08,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670930,95,23.04,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670931,95,22.61,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670932,95,22.68,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670933,95,22.44,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670934,95,22.3,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670935,95,21.99,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670936,95,21.92,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670937,95,21.57,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670938,95,21.82,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670939,95,21.57,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670940,60,0.369,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670941,60,0.367,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670942,60,0.374,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670943,60,0.37,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670944,60,0.366,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670945,60,0.371,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670946,60,0.37,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670947,60,0.375,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670948,60,0.375,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670949,60,0.378,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670950,60,0.374,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670951,60,0.37,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670952,60,0.374,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670953,60,0.374,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670954,60,0.371,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670955,60,0.374,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670956,60,0.366,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670957,60,0.368,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670958,60,0.369,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670959,60,0.366,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670960,60,0.367,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670961,60,0.372,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670962,60,0.37,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670963,60,0.364,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670964,67,0.084,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670965,67,0.084,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670966,67,0.083,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670967,67,0.084,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670968,67,0.085,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670969,67,0.085,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670970,67,0.085,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670971,67,0.084,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670972,67,0.084,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670973,67,0.084,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670974,67,0.085,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670975,67,0.085,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13670976,67,0.084,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13670977,67,0.084,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13670978,67,0.085,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13670979,67,0.084,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13670980,67,0.085,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13670981,67,0.085,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13670982,67,0.084,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13670983,67,0.085,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13670984,67,0.085,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13670985,67,0.083,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13670986,67,0.084,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13670987,67,0.085,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13670988,75,22.75,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13670989,75,22.85,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13670990,75,23,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13670991,75,23.4,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13670992,75,23.6,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13670993,75,23.75,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13670994,75,23.9,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13670995,75,24.2,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13670996,75,24.2,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13670997,75,24.2,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13670998,75,24.2,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13670999,75,24.2,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671000,75,23.97,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671001,75,23.9,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671002,75,23.85,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671003,75,23.65,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671004,75,23.65,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671005,75,23.5,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671006,75,23.3,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671007,75,23,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671008,75,22.95,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671009,75,22.8,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671010,75,22.65,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671011,75,22.8,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671012,80,72.9,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671013,80,73.1,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671014,80,73.4,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671015,80,74.1,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671016,80,74.5,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671017,80,74.8,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671018,80,75.1,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671019,80,75.5,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671020,80,75.5,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671021,80,75.5,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671022,80,75.5,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671023,80,75.5,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671024,80,75.2,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671025,80,75.1,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671026,80,75,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671027,80,74.6,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671028,80,74.6,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671029,80,74.3,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671030,80,73.9,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671031,80,73.4,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671032,80,73.3,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671033,80,73,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671034,80,72.7,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671035,80,73,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671036,68,0.081,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671037,68,0.082,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671038,68,0.081,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671039,68,0.082,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671040,68,0.084,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671041,68,0.084,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671042,68,0.084,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671043,68,0.083,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671044,68,0.083,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671045,68,0.083,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671046,68,0.084,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671047,68,0.084,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671048,68,0.083,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671049,68,0.083,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671050,68,0.084,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671051,68,0.083,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671052,68,0.083,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671053,68,0.082,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671054,68,0.082,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671055,68,0.083,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671056,68,0.083,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671057,68,0.081,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671058,68,0.081,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671059,68,0.082,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671060,88,25.26,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671061,88,25.05,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671062,88,25.77,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671063,88,25.35,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671064,88,25,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671065,88,25.46,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671066,88,25.35,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671067,88,25.81,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671068,88,25.82,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671069,88,26.13,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671070,88,25.74,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671071,88,25.35,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671072,88,25.73,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671073,88,25.79,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671074,88,25.41,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671075,88,25.77,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671076,88,24.99,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671077,88,25.21,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671078,88,25.22,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671079,88,25.02,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671080,88,25.12,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671081,88,25.5,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671082,88,25.33,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671083,88,24.82,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671084,98,29.14,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671085,98,29.52,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671086,98,29.08,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671087,98,29.64,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671088,98,30.08,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671089,98,30,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671090,98,30.26,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671091,98,29.94,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671092,98,29.95,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671093,98,29.87,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671094,98,30.08,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671095,98,30.27,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671096,98,30.06,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671097,98,29.93,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671098,98,30.12,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671099,98,29.68,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671100,98,30.08,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671101,98,29.68,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671102,98,29.69,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671103,98,29.7,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671104,98,29.62,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671105,98,29.19,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671106,98,29.22,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671107,98,29.68,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671108,87,25.7,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671109,87,25.49,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671110,87,26.24,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671111,87,25.82,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671112,87,25.48,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671113,87,25.96,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671114,87,25.86,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671115,87,26.34,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671116,87,26.35,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671117,87,26.67,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671118,87,26.28,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671119,87,25.88,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671120,87,26.26,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671121,87,26.31,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671122,87,25.91,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671123,87,26.27,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671124,87,25.47,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671125,87,25.69,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671126,87,25.68,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671127,87,25.47,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671128,87,25.57,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671129,87,25.94,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671130,87,25.77,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671131,87,25.25,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671132,97,30.11,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671133,97,30.44,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671134,97,29.89,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671135,97,30.35,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671136,97,30.69,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671137,97,30.5,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671138,97,30.68,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671139,97,30.3,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671140,97,30.27,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671141,97,30.19,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671142,97,30.4,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671143,97,30.63,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671144,97,30.45,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671145,97,30.36,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671146,97,30.61,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671147,97,30.24,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671148,97,30.7,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671149,97,30.37,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671150,97,30.46,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671151,97,30.53,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671152,97,30.51,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671153,97,30.12,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671154,97,30.2,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671155,97,30.64,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671156,61,0.265,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671157,61,0.265,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671158,61,0.265,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671159,61,0.262,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671160,61,0.26,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671161,61,0.264,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671162,61,0.265,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671163,61,0.265,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671164,61,0.265,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671165,61,0.263,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671166,61,0.261,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671167,61,0.261,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671168,61,0.26,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671169,61,0.26,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671170,61,0.26,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671171,61,0.261,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671172,61,0.263,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671173,61,0.264,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671174,61,0.261,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671175,61,0.261,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671176,61,0.26,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671177,61,0.26,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671178,61,0.261,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671179,61,0.264,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671180,69,0.045,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671181,69,0.046,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671182,69,0.046,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671183,69,0.046,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671184,69,0.046,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671185,69,0.046,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671186,69,0.046,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671187,69,0.046,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671188,69,0.046,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671189,69,0.046,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671190,69,0.046,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671191,69,0.046,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671192,69,0.046,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671193,69,0.046,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671194,69,0.046,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671195,69,0.046,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671196,69,0.046,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671197,69,0.046,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671198,69,0.046,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671199,69,0.046,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671200,69,0.046,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671201,69,0.046,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671202,69,0.046,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671203,69,0.045,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671204,76,22.8,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671205,76,22.8,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671206,76,22.8,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671207,76,22.8,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671208,76,22.75,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671209,76,22.8,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671210,76,22.8,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671211,76,22.8,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671212,76,22.8,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671213,76,22.8,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671214,76,22.8,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671215,76,22.85,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671216,76,22.95,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671217,76,23,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671218,76,23,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671219,76,23,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671220,76,23,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671221,76,22.95,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671222,76,23,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671223,76,23,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671224,76,23,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671225,76,23,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671226,76,22.95,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671227,76,22.9,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671228,81,73,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671229,81,73,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671230,81,73,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671231,81,73,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671232,81,72.9,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671233,81,73,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671234,81,73,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671235,81,73,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671236,81,73,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671237,81,73,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671238,81,73,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671239,81,73.1,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671240,81,73.3,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671241,81,73.4,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671242,81,73.4,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671243,81,73.4,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671244,81,73.4,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671245,81,73.3,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671246,81,73.4,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671247,81,73.4,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671248,81,73.4,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671249,81,73.4,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671250,81,73.3,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671251,81,73.2,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671252,70,0.044,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671253,70,0.044,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671254,70,0.044,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671255,70,0.045,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671256,70,0.045,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671257,70,0.044,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671258,70,0.044,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671259,70,0.044,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671260,70,0.044,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671261,70,0.045,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671262,70,0.045,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671263,70,0.045,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671264,70,0.045,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671265,70,0.045,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671266,70,0.045,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671267,70,0.045,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671268,70,0.044,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671269,70,0.044,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671270,70,0.045,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671271,70,0.045,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671272,70,0.045,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671273,70,0.045,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671274,70,0.045,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671275,70,0.044,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671276,90,16.6,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671277,90,16.6,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671278,90,16.6,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671279,90,16.37,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671280,90,16.25,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671281,90,16.48,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671282,90,16.6,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671283,90,16.6,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671284,90,16.6,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671285,90,16.43,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671286,90,16.31,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671287,90,16.25,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671288,90,16.19,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671289,90,16.19,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671290,90,16.19,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671291,90,16.31,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671292,90,16.43,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671293,90,16.54,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671294,90,16.31,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671295,90,16.26,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671296,90,16.19,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671297,90,16.19,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671298,90,16.32,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671299,90,16.54,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671300,100,15.92,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671301,100,15.91,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671302,100,15.91,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671303,100,16.07,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671304,100,16.14,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671305,100,15.99,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671306,100,15.91,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671307,100,15.91,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671308,100,15.91,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671309,100,16.03,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671310,100,16.2,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671311,100,16.23,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671312,100,16.26,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671313,100,16.26,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671314,100,16.26,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671315,100,16.19,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671316,100,16.11,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671317,100,16.03,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671318,100,16.19,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671319,100,16.24,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671320,100,16.26,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671321,100,16.26,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671322,100,16.21,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671323,100,15.94,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671324,89,16.9,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671325,89,16.9,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671326,89,16.9,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671327,89,16.66,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671328,89,16.54,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671329,89,16.78,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671330,89,16.89,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671331,89,16.89,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671332,89,16.9,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671333,89,16.73,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671334,89,16.61,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671335,89,16.55,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671336,89,16.48,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671337,89,16.49,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671338,89,16.49,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671339,89,16.61,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671340,89,16.73,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671341,89,16.84,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671342,89,16.61,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671343,89,16.55,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671344,89,16.49,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671345,89,16.49,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671346,89,16.61,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671347,89,16.84,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671348,99,16.36,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671349,99,16.37,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671350,99,16.37,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671351,99,16.53,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671352,99,16.62,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671353,99,16.47,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671354,99,16.39,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671355,99,16.39,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671356,99,16.38,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671357,99,16.49,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671358,99,16.67,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671359,99,16.68,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671360,99,16.71,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671361,99,16.71,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671362,99,16.69,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671363,99,16.62,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671364,99,16.54,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671365,99,16.46,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671366,99,16.62,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671367,99,16.67,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671368,99,16.69,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671369,99,16.69,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671370,99,16.65,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671371,99,16.39,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671372,62,0.371,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671373,62,0.374,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671374,62,0.375,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671375,62,0.377,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671376,62,0.378,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671377,62,0.375,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671378,62,0.377,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671379,62,0.377,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671380,62,0.375,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671381,62,0.375,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671382,62,0.375,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671383,62,0.375,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671384,62,0.378,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671385,62,0.379,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671386,62,0.384,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671387,62,0.382,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671388,62,0.385,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671389,62,0.384,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671390,62,0.384,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671391,62,0.384,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671392,62,0.384,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671393,62,0.377,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671394,62,0.375,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671395,62,0.375,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671396,71,0.11,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671397,71,0.109,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671398,71,0.108,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671399,71,0.107,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671400,71,0.107,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671401,71,0.108,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671402,71,0.108,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671403,71,0.108,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671404,71,0.108,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671405,71,0.108,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671406,71,0.108,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671407,71,0.108,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671408,71,0.107,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671409,71,0.107,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671410,71,0.107,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671411,71,0.107,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671412,71,0.106,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671413,71,0.107,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671414,71,0.107,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671415,71,0.107,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671416,71,0.107,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671417,71,0.109,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671418,71,0.108,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671419,71,0.108,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671420,77,20.7,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671421,77,20.7,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671422,77,20.6,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671423,77,20.6,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671424,77,20.65,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671425,77,20.7,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671426,77,20.7,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671427,77,20.7,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671428,77,20.6,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671429,77,20.7,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671430,77,20.7,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671431,77,20.7,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671432,77,20.65,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671433,77,20.7,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671434,77,20.7,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671435,77,20.65,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671436,77,20.65,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671437,77,20.7,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671438,77,20.7,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671439,77,20.65,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671440,77,20.65,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671441,77,20.7,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671442,77,20.65,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671443,77,20.6,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671444,82,69.2,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671445,82,69.2,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671446,82,69.05,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671447,82,69.05,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671448,82,69.12,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671449,82,69.2,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671450,82,69.2,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671451,82,69.2,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671452,82,69.05,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671453,82,69.2,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671454,82,69.2,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671455,82,69.2,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671456,82,69.12,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671457,82,69.2,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671458,82,69.2,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671459,82,69.12,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671460,82,69.12,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671461,82,69.2,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671462,82,69.2,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671463,82,69.12,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671464,82,69.12,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671465,82,69.2,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671466,82,69.12,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671467,82,69.05,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671468,72,0.103,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671469,72,0.102,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671470,72,0.101,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671471,72,0.101,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671472,72,0.101,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671473,72,0.101,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671474,72,0.101,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671475,72,0.101,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671476,72,0.101,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671477,72,0.101,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671478,72,0.101,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671479,72,0.101,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671480,72,0.101,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671481,72,0.101,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671482,72,0.1,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671483,72,0.1,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671484,72,0.1,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671485,72,0.1,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671486,72,0.1,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671487,72,0.1,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671488,72,0.1,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671489,72,0.102,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671490,72,0.101,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671491,72,0.101,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671492,92,25.5,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671493,92,25.74,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671494,92,25.86,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671495,92,26.02,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671496,92,26.18,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671497,92,25.86,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671498,92,26.02,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671499,92,26.02,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671500,92,25.86,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671501,92,25.86,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671502,92,25.86,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671503,92,25.86,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671504,92,26.17,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671505,92,26.24,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671506,92,26.65,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671507,92,26.44,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671508,92,26.76,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671509,92,26.65,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671510,92,26.65,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671511,92,26.65,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671512,92,26.65,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671513,92,26.01,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671514,92,25.86,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671515,92,25.86,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671516,102,36.78,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671517,102,36.45,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671518,102,36.28,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671519,102,36.19,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671520,102,36.1,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671521,102,36.28,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671522,102,36.19,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671523,102,36.19,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671524,102,36.28,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671525,102,36.28,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671526,102,36.28,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671527,102,36.27,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671528,102,36.07,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671529,102,36.19,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671530,102,36.1,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671531,102,36.14,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671532,102,35.93,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671533,102,36.1,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671534,102,36.1,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671535,102,36.1,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671536,102,36.1,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671537,102,36.52,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671538,102,36.27,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671539,102,36.27,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671540,91,25.81,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671541,91,26.06,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671542,91,26.18,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671543,91,26.35,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671544,91,26.51,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671545,91,26.18,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671546,91,26.35,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671547,91,26.35,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671548,91,26.18,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671549,91,26.18,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671550,91,26.18,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671551,91,26.19,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671552,91,26.49,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671553,91,26.57,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671554,91,26.98,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671555,91,26.77,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671556,91,27.09,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671557,91,26.98,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671558,91,26.98,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671559,91,26.98,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671560,91,26.98,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671561,91,26.33,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671562,91,26.18,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671563,91,26.18,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13671564,101,39.22,'2011-08-07 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13671565,101,38.86,'2011-08-07 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13671566,101,38.68,'2011-08-07 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13671567,101,38.59,'2011-08-07 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13671568,101,38.49,'2011-08-07 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13671569,101,38.68,'2011-08-07 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13671570,101,38.59,'2011-08-07 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13671571,101,38.59,'2011-08-07 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13671572,101,38.68,'2011-08-07 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13671573,101,38.68,'2011-08-07 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13671574,101,38.68,'2011-08-08 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13671575,101,38.68,'2011-08-08 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13671576,101,38.46,'2011-08-08 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13671577,101,38.59,'2011-08-08 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13671578,101,38.49,'2011-08-08 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13671579,101,38.54,'2011-08-08 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13671580,101,38.31,'2011-08-08 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13671581,101,38.49,'2011-08-08 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13671582,101,38.49,'2011-08-08 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13671583,101,38.49,'2011-08-08 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13671584,101,38.49,'2011-08-08 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13671585,101,38.94,'2011-08-08 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13671586,101,38.69,'2011-08-08 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13671587,101,38.69,'2011-08-08 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675629,31,13.21,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675630,31,13.19,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675631,31,13.17,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675632,31,13.17,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675633,31,13.17,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675634,31,12.88,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675635,31,12.77,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675636,31,12.72,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675637,31,12.69,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675638,31,12.66,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675639,31,12.63,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675640,31,12.6,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675641,31,12.59,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675642,31,12.56,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675643,31,12.53,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675644,31,12.51,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675645,31,12.48,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675646,31,12.54,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675647,31,12.87,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675648,31,13.4,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675649,31,13.34,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675650,31,13.3,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675651,31,13.29,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675652,31,13.25,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675653,32,3.081,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675654,32,2.39,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675655,32,2.318,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675656,32,1.734,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675657,32,0.871,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675658,32,1.722,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675659,32,1.966,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675660,32,1.599,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675661,32,1.258,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675662,32,2.273,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675663,32,1.011,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675664,32,1.139,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675665,32,1.205,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675666,32,1.294,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675667,32,1.319,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675668,32,0.879,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675669,32,0.89,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675670,32,0.692,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675671,32,2.108,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675672,32,2.498,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675673,32,2.356,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675674,32,2.407,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675675,32,2.334,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675676,32,2.102,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675677,33,33.94,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675678,33,358.2,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675679,33,256.9,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675680,33,327.5,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675681,33,178.3,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675682,33,247.1,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675683,33,219.6,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675684,33,221.4,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675685,33,215,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675686,33,228.3,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675687,33,256.9,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675688,33,10.05,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675689,33,328.5,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675690,33,317.7,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675691,33,337.9,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675692,33,262.4,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675693,33,245.6,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675694,33,209.4,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675695,33,28.24,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675696,33,56.76,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675697,33,56.13,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675698,33,57.46,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675699,33,50.75,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675700,33,52.21,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675701,34,19.83,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675702,34,58.58,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675703,34,46.79,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675704,34,78.34,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675705,34,91,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675706,34,18.8,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675707,34,18.99,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675708,34,30.88,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675709,34,28,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675710,34,17.5,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675711,34,78.6,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675712,34,82.8,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675713,34,50.3,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675714,34,63.17,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675715,34,44.86,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675716,34,57.77,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675717,34,55.94,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675718,34,76.71,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675719,34,64.44,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675720,34,18.49,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675721,34,20.44,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675722,34,17.82,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675723,34,20.17,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675724,34,59.81,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675725,35,629.8,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13675726,35,629.6,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13675727,35,629.3,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13675728,35,629,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13675729,35,628.5,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13675730,35,628.5,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13675731,35,628.5,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13675732,35,628.7,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13675733,35,628.5,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13675734,35,628.2,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13675735,35,627.9,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13675736,35,627.8,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13675737,35,627.4,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13675738,35,627.4,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13675739,35,627.8,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13675740,35,628,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13675741,35,628.2,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13675742,35,628.2,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13675743,35,629,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13675744,35,629.2,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13675745,35,629.3,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13675746,35,629.2,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13675747,35,629,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13675748,35,628.8,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13675749,30,0,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675750,30,0,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675751,30,0,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675752,30,0,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675753,30,0,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675754,30,0,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675755,30,0,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675756,30,0,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675757,30,0,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675758,30,0,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675759,30,0,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675760,30,0,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675761,30,0,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675762,30,0,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675763,30,0,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675764,30,0,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675765,30,0,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675766,30,0,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675767,30,0,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675768,30,0,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675769,30,0,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675770,30,0,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675771,30,0,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675772,30,0,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675773,28,27.64,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675774,28,28.74,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675775,28,29.38,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675776,28,28.93,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675777,28,28.39,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675778,28,25.16,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675779,28,20.46,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675780,28,17.84,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675781,28,15.89,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675782,28,16.4,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675783,28,16.68,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675784,28,17.21,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675785,28,16.52,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675786,28,16.48,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675787,28,14.13,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675788,28,11.89,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675789,28,10.98,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675790,28,13.55,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675791,28,18.42,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675792,28,18.27,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675793,28,20.3,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675794,28,21.97,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675795,28,24.33,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675796,28,26.5,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675797,29,22.26,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675798,29,21.17,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675799,29,19.15,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675800,29,16.85,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675801,29,17.86,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675802,29,35.63,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675803,29,39.14,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675804,29,40.22,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675805,29,42.74,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675806,29,38.8,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675807,29,36.48,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675808,29,37.64,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675809,29,41.99,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675810,29,42.61,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675811,29,51.71,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675812,29,60.55,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675813,29,60.19,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675814,29,51.17,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675815,29,43.9,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675816,29,46.38,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675817,29,39.07,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675818,29,30.15,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675819,29,29.85,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675820,29,19.41,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675821,36,1067,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675822,36,971,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675823,36,824,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675824,36,613.4,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675825,36,379,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675826,36,120.3,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675827,36,9.33,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675828,36,0,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675829,36,0,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675830,36,0,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675831,36,0,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675832,36,0,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675833,36,0,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675834,36,0,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675835,36,0,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675836,36,0,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675837,36,7.747,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675838,36,154.7,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675839,36,386.9,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675840,36,614.6,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675841,36,820,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675842,36,975,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675843,36,1073,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675844,36,1107,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675845,46,1.225,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675846,46,1.298,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675847,46,1.478,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675848,46,1.459,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675849,46,1.452,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675850,46,1.567,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675851,46,1.617,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675852,46,1.589,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675853,46,1.565,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675854,46,1.36,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675855,46,1.734,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675856,46,1.685,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675857,46,1.599,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675858,46,1.582,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675859,46,1.372,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675860,46,1.714,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675861,46,1.77,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675862,46,1.623,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675863,46,1.514,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675864,46,1.332,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675865,46,1.588,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675866,46,1.295,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675867,46,1.513,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675868,46,1.473,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675869,47,1.286,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675870,47,1.364,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675871,47,1.556,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675872,47,1.534,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675873,47,1.526,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675874,47,1.638,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675875,47,1.677,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675876,47,1.64,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675877,47,1.61,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675878,47,1.4,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675879,47,1.786,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675880,47,1.738,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675881,47,1.647,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675882,47,1.629,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675883,47,1.407,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675884,47,1.75,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675885,47,1.806,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675886,47,1.662,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675887,47,1.564,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675888,47,1.376,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675889,47,1.646,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675890,47,1.346,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675891,47,1.579,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675892,47,1.543,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675893,48,0.484,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13675894,48,0.406,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13675895,48,0.214,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13675896,48,0.236,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13675897,48,0.244,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13675898,48,0.132,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13675899,48,0.093,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13675900,48,0.13,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13675901,48,0.16,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13675902,48,0.37,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13675903,48,-0.016,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13675904,48,0.032,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13675905,48,0.123,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13675906,48,0.141,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13675907,48,0.363,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13675908,48,0.02,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13675909,48,-0.036,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13675910,48,0.108,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13675911,48,0.206,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13675912,48,0.394,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13675913,48,0.124,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13675914,48,0.424,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13675915,48,0.191,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13675916,48,0.227,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13675917,41,20.57,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675918,40,29.87,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675919,39,12.32,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675920,37,12.49,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675921,43,629.6,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675922,44,0,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675923,42,39.58,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675924,45,32.34285,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675925,38,1.79,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675926,51,0,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675927,53,1.882,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675928,49,1.475,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675929,52,0,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675930,54,1.934,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675931,50,1.529,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675932,56,-0.164,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675933,57,1.77,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13675934,55,0.241,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13678095,58,0.253,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678096,58,0.254,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678097,58,0.253,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678098,58,0.251,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678099,58,0.249,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678100,58,0.246,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678101,58,0.245,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678102,58,0.242,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678103,58,0.239,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678104,58,0.236,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678105,58,0.234,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678106,58,0.232,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678107,58,0.23,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678108,58,0.23,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678109,58,0.228,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678110,58,0.227,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678111,58,0.226,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678112,58,0.226,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678113,58,0.224,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678114,58,0.226,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678115,58,0.227,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678116,58,0.228,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678117,58,0.233,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678118,58,0.237,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678119,63,0.035,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678120,63,0.035,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678121,63,0.035,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678122,63,0.035,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678123,63,0.035,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678124,63,0.034,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678125,63,0.034,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678126,63,0.033,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678127,63,0.033,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678128,63,0.033,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678129,63,0.033,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678130,63,0.033,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678131,63,0.032,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678132,63,0.032,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678133,63,0.032,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678134,63,0.032,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678135,63,0.032,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678136,63,0.032,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678137,63,0.032,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678138,63,0.031,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678139,63,0.032,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678140,63,0.032,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678141,63,0.032,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678142,63,0.032,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678143,73,27.35,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678144,73,28.38,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678145,73,28.83,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678146,73,28.75,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678147,73,28.1,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678148,73,27.12,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678149,73,26.3,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678150,73,25.2,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678151,73,24.37,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678152,73,23.5,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678153,73,22.8,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678154,73,22.3,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678155,73,21.8,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678156,73,21.35,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678157,73,20.9,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678158,73,20.5,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678159,73,20.05,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678160,73,19.6,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678161,73,19.8,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678162,73,20.45,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678163,73,21.6,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678164,73,23.2,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678165,73,24.48,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678166,73,26.1,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678167,78,81.3,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678168,78,83.1,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678169,78,83.9,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678170,78,83.7,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678171,78,82.6,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678172,78,80.9,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678173,78,79.29,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678174,78,77.37,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678175,78,75.85,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678176,78,74.3,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678177,78,73,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678178,78,72.17,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678179,78,71.3,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678180,78,70.4,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678181,78,69.6,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678182,78,68.87,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678183,78,68.07,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678184,78,67.3,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678185,78,67.68,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678186,78,68.81,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678187,78,70.93,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678188,78,73.76,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678189,78,76.06,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678190,78,78.98,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678191,64,0.037,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678192,64,0.037,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678193,64,0.037,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678194,64,0.037,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678195,64,0.036,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678196,64,0.035,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678197,64,0.034,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678198,64,0.033,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678199,64,0.033,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678200,64,0.032,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678201,64,0.032,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678202,64,0.031,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678203,64,0.031,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678204,64,0.03,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678205,64,0.03,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678206,64,0.03,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678207,64,0.029,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678208,64,0.029,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678209,64,0.029,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678210,64,0.03,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678211,64,0.03,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678212,64,0.031,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678213,64,0.032,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678214,64,0.033,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678215,84,15.73,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678216,84,15.79,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678217,84,15.73,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678218,84,15.56,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678219,84,15.41,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678220,84,15.19,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678221,84,15.13,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678222,84,14.93,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678223,84,14.7,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678224,84,14.52,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678225,84,14.37,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678226,84,14.22,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678227,84,14.11,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678228,84,14.06,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678229,84,13.9,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678230,84,13.89,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678231,84,13.81,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678232,84,13.76,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678233,84,13.69,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678234,84,13.81,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678235,84,13.89,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678236,84,13.97,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678237,84,14.28,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678238,84,14.55,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678239,94,13.2,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678240,94,13.42,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678241,94,13.44,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678242,94,13.37,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678243,94,13.05,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678244,94,12.75,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678245,94,12.31,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678246,94,11.97,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678247,94,11.77,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678248,94,11.53,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678249,94,11.38,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678250,94,11.23,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678251,94,11.05,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678252,94,10.95,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678253,94,10.86,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678254,94,10.72,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678255,94,10.58,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678256,94,10.46,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678257,94,10.52,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678258,94,10.56,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678259,94,10.85,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678260,94,11.27,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678261,94,11.5,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678262,94,11.75,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678263,83,16.17,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678264,83,16.27,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678265,83,16.23,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678266,83,16.05,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678267,83,15.86,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678268,83,15.61,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678269,83,15.5,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678270,83,15.27,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678271,83,15,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678272,83,14.79,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678273,83,14.61,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678274,83,14.44,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678275,83,14.32,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678276,83,14.25,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678277,83,14.08,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678278,83,14.05,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678279,83,13.96,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678280,83,13.9,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678281,83,13.83,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678282,83,13.97,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678283,83,14.1,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678284,83,14.22,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678285,83,14.58,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678286,83,14.91,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678287,93,12.75,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678288,93,12.78,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678289,93,12.73,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678290,93,12.69,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678291,93,12.51,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678292,93,12.38,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678293,93,12.12,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678294,93,11.96,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678295,93,11.92,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678296,93,11.81,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678297,93,11.77,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678298,93,11.71,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678299,93,11.61,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678300,93,11.59,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678301,93,11.56,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678302,93,11.49,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678303,93,11.42,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678304,93,11.36,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678305,93,11.39,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678306,93,11.3,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678307,93,11.38,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678308,93,11.57,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678309,93,11.59,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678310,93,11.58,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678311,59,0.34,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678312,59,0.338,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678313,59,0.339,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678314,59,0.34,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678315,59,0.339,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678316,59,0.337,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678317,59,0.335,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678318,59,0.333,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678319,59,0.331,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678320,59,0.332,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678321,59,0.331,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678322,59,0.327,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678323,59,0.327,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678324,59,0.325,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678325,59,0.325,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678326,59,0.325,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678327,59,0.323,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678328,59,0.32,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678329,59,0.319,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678330,59,0.318,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678331,59,0.316,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678332,59,0.318,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678333,59,0.317,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678334,59,0.321,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678335,65,0.059,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678336,65,0.06,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678337,65,0.059,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678338,65,0.058,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678339,65,0.057,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678340,65,0.057,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678341,65,0.057,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678342,65,0.057,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678343,65,0.057,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678344,65,0.056,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678345,65,0.056,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678346,65,0.056,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678347,65,0.055,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678348,65,0.055,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678349,65,0.055,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678350,65,0.054,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678351,65,0.054,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678352,65,0.054,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678353,65,0.054,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678354,65,0.053,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678355,65,0.054,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678356,65,0.053,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678357,65,0.053,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678358,65,0.053,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678359,74,25.38,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678360,74,26.55,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678361,74,26.98,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678362,74,27.2,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678363,74,27.27,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678364,74,26.97,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678365,74,26.62,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678366,74,25.97,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678367,74,25.42,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678368,74,24.8,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678369,74,24.17,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678370,74,23.7,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678371,74,23.2,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678372,74,22.8,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678373,74,22.37,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678374,74,21.95,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678375,74,21.6,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678376,74,21.2,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678377,74,20.95,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678378,74,20.95,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678379,74,21.35,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678380,74,22.03,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678381,74,23.15,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678382,74,24.43,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678383,79,77.73,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678384,79,79.78,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678385,79,80.6,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678386,79,81,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678387,79,81.1,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678388,79,80.6,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678389,79,79.87,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678390,79,78.75,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678391,79,77.85,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678392,79,76.6,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678393,79,75.5,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678394,79,74.7,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678395,79,73.75,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678396,79,73,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678397,79,72.27,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678398,79,71.6,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678399,79,70.9,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678400,79,70.15,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678401,79,69.7,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678402,79,69.7,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678403,79,70.4,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678404,79,71.71,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678405,79,73.66,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678406,79,75.96,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678407,66,0.06,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678408,66,0.061,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678409,66,0.061,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678410,66,0.06,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678411,66,0.059,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678412,66,0.059,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678413,66,0.058,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678414,66,0.058,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678415,66,0.057,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678416,66,0.056,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678417,66,0.055,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678418,66,0.055,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678419,66,0.054,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678420,66,0.054,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678421,66,0.053,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678422,66,0.052,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678423,66,0.052,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678424,66,0.051,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678425,66,0.051,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678426,66,0.05,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678427,66,0.051,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678428,66,0.051,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678429,66,0.052,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678430,66,0.052,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678431,86,22.72,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678432,86,22.52,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678433,86,22.56,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678434,86,22.69,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678435,86,22.57,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678436,86,22.43,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678437,86,22.26,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678438,86,22.12,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678439,86,21.88,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678440,86,21.94,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678441,86,21.86,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678442,86,21.59,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678443,86,21.56,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678444,86,21.39,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678445,86,21.36,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678446,86,21.39,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678447,86,21.18,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678448,86,20.94,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678449,86,20.84,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678450,86,20.78,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678451,86,20.55,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678452,86,20.79,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678453,86,20.72,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678454,86,21.02,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678455,96,21.32,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678456,96,21.87,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678457,96,21.9,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678458,96,21.51,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678459,96,21.41,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678460,96,21.28,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678461,96,21.12,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678462,96,20.88,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678463,96,20.66,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678464,96,20.26,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678465,96,19.98,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678466,96,19.85,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678467,96,19.5,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678468,96,19.33,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678469,96,19.12,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678470,96,18.73,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678471,96,18.66,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678472,96,18.55,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678473,96,18.37,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678474,96,18.21,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678475,96,18.4,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678476,96,18.31,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678477,96,18.65,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678478,96,18.8,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678479,85,23.25,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678480,85,23.09,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678481,85,23.17,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678482,85,23.32,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678483,85,23.2,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678484,85,23.05,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678485,85,22.85,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678486,85,22.68,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678487,85,22.41,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678488,85,22.43,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678489,85,22.33,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678490,85,22.03,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678491,85,21.97,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678492,85,21.77,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678493,85,21.73,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678494,85,21.74,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678495,85,21.51,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678496,85,21.24,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678497,85,21.13,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678498,85,21.07,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678499,85,20.84,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678500,85,21.12,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678501,85,21.09,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678502,85,21.45,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678503,95,21.24,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678504,95,21.47,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678505,95,21.3,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678506,95,20.86,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678507,95,20.74,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678508,95,20.66,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678509,95,20.61,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678510,95,20.52,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678511,95,20.47,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678512,95,20.24,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678513,95,20.11,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678514,95,20.14,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678515,95,19.91,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678516,95,19.87,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678517,95,19.76,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678518,95,19.47,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678519,95,19.49,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678520,95,19.5,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678521,95,19.39,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678522,95,19.23,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678523,95,19.36,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678524,95,19.09,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678525,95,19.17,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678526,95,19,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678527,60,0.372,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678528,60,0.37,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678529,60,0.369,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678530,60,0.367,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678531,60,0.371,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678532,60,0.373,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678533,60,0.372,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678534,60,0.374,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678535,60,0.371,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678536,60,0.378,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678537,60,0.374,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678538,60,0.373,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678539,60,0.375,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678540,60,0.374,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678541,60,0.378,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678542,60,0.377,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678543,60,0.37,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678544,60,0.368,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678545,60,0.363,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678546,60,0.369,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678547,60,0.37,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678548,60,0.37,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678549,60,0.368,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678550,60,0.367,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678551,67,0.084,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678552,67,0.084,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678553,67,0.084,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678554,67,0.085,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678555,67,0.085,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678556,67,0.085,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678557,67,0.085,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678558,67,0.085,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678559,67,0.086,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678560,67,0.084,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678561,67,0.085,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678562,67,0.085,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678563,67,0.085,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678564,67,0.086,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678565,67,0.084,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678566,67,0.084,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678567,67,0.085,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678568,67,0.086,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678569,67,0.086,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678570,67,0.085,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678571,67,0.084,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678572,67,0.085,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678573,67,0.085,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678574,67,0.085,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678575,75,22.8,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678576,75,22.95,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678577,75,23.23,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678578,75,23.5,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678579,75,23.65,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678580,75,23.9,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678581,75,24.2,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678582,75,24.35,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678583,75,24.4,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678584,75,24.4,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678585,75,24.4,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678586,75,24.4,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678587,75,24.3,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678588,75,24.13,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678589,75,24.05,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678590,75,23.9,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678591,75,23.8,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678592,75,23.65,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678593,75,23.5,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678594,75,23.35,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678595,75,23.22,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678596,75,23,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678597,75,23,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678598,75,23,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678599,80,73,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678600,80,73.3,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678601,80,73.78,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678602,80,74.3,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678603,80,74.6,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678604,80,75.1,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678605,80,75.5,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678606,80,75.8,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678607,80,75.9,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678608,80,75.9,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678609,80,75.9,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678610,80,75.9,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678611,80,75.7,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678612,80,75.4,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678613,80,75.3,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678614,80,75.1,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678615,80,74.9,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678616,80,74.6,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678617,80,74.3,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678618,80,74,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678619,80,73.77,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678620,80,73.4,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678621,80,73.4,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678622,80,73.4,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678623,68,0.081,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678624,68,0.082,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678625,68,0.082,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678626,68,0.083,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678627,68,0.084,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678628,68,0.084,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678629,68,0.084,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678630,68,0.085,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678631,68,0.085,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678632,68,0.084,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678633,68,0.085,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678634,68,0.085,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678635,68,0.084,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678636,68,0.084,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678637,68,0.083,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678638,68,0.083,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678639,68,0.084,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678640,68,0.084,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678641,68,0.084,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678642,68,0.083,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678643,68,0.082,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678644,68,0.082,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678645,68,0.082,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678646,68,0.083,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678647,88,25.5,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678648,88,25.36,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678649,88,25.32,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678650,88,25.07,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678651,88,25.47,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678652,88,25.57,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678653,88,25.55,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678654,88,25.74,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678655,88,25.46,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678656,88,26.19,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678657,88,25.7,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678658,88,25.69,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678659,88,25.84,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678660,88,25.73,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678661,88,26.11,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678662,88,26.02,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678663,88,25.33,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678664,88,25.22,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678665,88,24.72,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678666,88,25.27,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678667,88,25.36,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678668,88,25.33,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678669,88,25.2,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678670,88,25.07,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678671,98,29.2,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678672,98,29.46,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678673,98,29.6,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678674,98,29.94,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678675,98,29.98,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678676,98,30.09,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678677,98,30.27,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678678,98,30.28,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678679,98,30.61,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678680,98,29.92,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678681,98,30.45,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678682,98,30.44,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678683,98,30.17,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678684,98,30.26,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678685,98,29.86,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678686,98,29.76,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678687,98,30.24,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678688,98,30.14,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678689,98,30.43,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678690,98,29.77,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678691,98,29.65,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678692,98,29.62,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678693,98,29.68,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678694,98,29.74,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678695,87,25.95,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678696,87,25.81,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678697,87,25.78,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678698,87,25.55,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678699,87,25.97,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678700,87,26.08,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678701,87,26.07,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678702,87,26.29,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678703,87,26,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678704,87,26.75,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678705,87,26.25,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678706,87,26.23,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678707,87,26.38,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678708,87,26.26,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678709,87,26.65,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678710,87,26.54,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678711,87,25.83,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678712,87,25.71,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678713,87,25.19,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678714,87,25.74,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678715,87,25.83,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678716,87,25.78,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678717,87,25.65,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678718,87,25.52,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678719,97,30.11,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678720,97,30.32,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678721,97,30.37,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678722,97,30.6,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678723,97,30.53,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678724,97,30.53,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678725,97,30.61,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678726,97,30.54,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678727,97,30.86,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678728,97,30.13,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678729,97,30.67,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678730,97,30.7,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678731,97,30.47,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678732,97,30.61,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678733,97,30.25,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678734,97,30.21,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678735,97,30.75,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678736,97,30.72,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678737,97,31.09,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678738,97,30.5,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678739,97,30.45,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678740,97,30.46,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678741,97,30.55,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678742,97,30.63,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678743,61,0.265,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678744,61,0.265,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678745,61,0.265,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678746,61,0.263,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678747,61,0.262,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678748,61,0.265,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678749,61,0.265,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678750,61,0.264,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678751,61,0.261,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678752,61,0.261,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678753,61,0.26,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678754,61,0.26,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678755,61,0.26,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678756,61,0.26,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678757,61,0.26,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678758,61,0.263,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678759,61,0.261,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678760,61,0.263,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678761,61,0.261,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678762,61,0.26,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678763,61,0.26,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678764,61,0.261,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678765,61,0.262,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678766,61,0.264,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678767,69,0.045,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678768,69,0.046,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678769,69,0.046,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678770,69,0.046,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678771,69,0.046,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678772,69,0.046,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678773,69,0.046,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678774,69,0.046,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678775,69,0.046,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678776,69,0.046,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678777,69,0.046,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678778,69,0.046,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678779,69,0.046,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678780,69,0.046,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678781,69,0.046,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678782,69,0.046,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678783,69,0.046,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678784,69,0.045,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678785,69,0.046,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678786,69,0.046,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678787,69,0.046,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678788,69,0.046,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678789,69,0.046,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678790,69,0.045,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678791,76,22.8,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678792,76,22.8,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678793,76,22.8,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678794,76,22.8,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678795,76,22.8,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678796,76,22.8,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678797,76,22.8,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678798,76,22.8,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678799,76,22.8,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678800,76,22.8,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678801,76,22.9,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678802,76,23,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678803,76,22.95,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678804,76,23,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678805,76,23,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678806,76,23,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678807,76,23,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678808,76,23,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678809,76,23,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678810,76,23,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678811,76,23,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678812,76,23,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678813,76,23,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678814,76,23,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678815,81,73,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678816,81,73,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678817,81,73,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678818,81,73,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678819,81,73,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678820,81,73,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678821,81,73,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678822,81,73,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678823,81,73,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678824,81,73,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678825,81,73.2,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678826,81,73.4,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678827,81,73.3,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678828,81,73.4,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678829,81,73.4,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678830,81,73.4,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678831,81,73.4,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678832,81,73.4,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678833,81,73.4,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678834,81,73.4,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678835,81,73.4,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678836,81,73.4,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678837,81,73.4,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678838,81,73.4,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678839,70,0.044,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678840,70,0.044,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678841,70,0.044,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678842,70,0.044,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678843,70,0.044,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678844,70,0.044,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678845,70,0.044,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678846,70,0.044,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678847,70,0.045,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678848,70,0.045,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678849,70,0.045,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678850,70,0.045,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678851,70,0.045,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678852,70,0.045,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678853,70,0.045,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678854,70,0.045,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678855,70,0.045,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678856,70,0.044,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678857,70,0.045,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678858,70,0.045,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678859,70,0.045,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678860,70,0.045,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678861,70,0.045,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678862,70,0.044,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678863,90,16.6,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678864,90,16.6,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678865,90,16.6,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678866,90,16.48,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678867,90,16.37,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678868,90,16.6,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678869,90,16.6,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678870,90,16.54,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678871,90,16.27,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678872,90,16.25,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678873,90,16.19,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678874,90,16.19,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678875,90,16.19,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678876,90,16.19,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678877,90,16.2,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678878,90,16.43,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678879,90,16.31,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678880,90,16.43,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678881,90,16.31,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678882,90,16.2,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678883,90,16.2,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678884,90,16.26,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678885,90,16.36,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678886,90,16.5,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678887,100,15.92,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678888,100,15.91,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678889,100,15.91,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678890,100,15.99,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678891,100,16.07,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678892,100,15.91,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678893,100,15.91,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678894,100,15.94,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678895,100,16.14,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678896,100,16.23,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678897,100,16.26,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678898,100,16.26,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678899,100,16.26,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678900,100,16.26,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678901,100,16.26,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678902,100,16.11,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678903,100,16.19,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678904,100,16.11,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678905,100,16.19,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678906,100,16.27,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678907,100,16.27,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678908,100,16.24,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678909,100,16.15,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678910,100,16,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678911,89,16.9,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678912,89,16.9,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678913,89,16.9,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678914,89,16.78,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678915,89,16.66,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678916,89,16.89,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678917,89,16.9,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678918,89,16.83,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678919,89,16.56,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678920,89,16.54,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678921,89,16.48,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678922,89,16.48,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678923,89,16.49,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678924,89,16.49,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678925,89,16.49,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678926,89,16.73,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678927,89,16.61,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678928,89,16.73,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678929,89,16.61,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678930,89,16.5,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678931,89,16.5,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678932,89,16.56,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678933,89,16.67,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678934,89,16.81,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678935,99,16.36,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678936,99,16.37,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678937,99,16.37,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678938,99,16.45,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678939,99,16.54,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678940,99,16.38,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678941,99,16.38,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678942,99,16.4,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678943,99,16.61,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678944,99,16.69,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678945,99,16.71,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678946,99,16.71,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678947,99,16.69,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678948,99,16.69,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678949,99,16.69,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678950,99,16.52,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678951,99,16.6,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678952,99,16.52,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678953,99,16.6,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678954,99,16.68,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678955,99,16.68,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678956,99,16.65,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678957,99,16.56,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678958,99,16.42,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678959,62,0.378,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678960,62,0.377,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678961,62,0.378,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678962,62,0.382,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678963,62,0.38,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678964,62,0.378,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678965,62,0.377,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678966,62,0.377,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678967,62,0.377,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678968,62,0.377,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678969,62,0.375,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678970,62,0.375,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678971,62,0.375,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678972,62,0.375,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678973,62,0.375,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678974,62,0.381,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678975,62,0.377,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13678976,62,0.384,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13678977,62,0.379,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13678978,62,0.384,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13678979,62,0.377,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13678980,62,0.375,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13678981,62,0.375,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13678982,62,0.375,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13678983,71,0.107,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13678984,71,0.107,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13678985,71,0.107,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13678986,71,0.106,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13678987,71,0.107,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13678988,71,0.107,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13678989,71,0.108,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13678990,71,0.108,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13678991,71,0.108,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13678992,71,0.108,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13678993,71,0.108,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13678994,71,0.108,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13678995,71,0.108,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13678996,71,0.108,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13678997,71,0.108,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13678998,71,0.107,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13678999,71,0.108,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679000,71,0.106,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679001,71,0.107,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679002,71,0.107,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679003,71,0.108,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679004,71,0.108,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679005,71,0.108,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679006,71,0.108,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679007,77,20.7,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679008,77,20.65,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679009,77,20.6,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679010,77,20.7,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679011,77,20.7,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679012,77,20.6,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679013,77,20.6,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679014,77,20.7,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679015,77,20.65,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679016,77,20.7,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679017,77,20.7,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679018,77,20.7,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679019,77,20.7,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679020,77,20.7,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679021,77,20.6,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679022,77,20.65,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679023,77,20.6,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679024,77,20.7,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679025,77,20.7,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679026,77,20.7,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679027,77,20.6,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679028,77,20.55,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679029,77,20.6,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679030,77,20.7,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679031,82,69.2,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679032,82,69.12,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679033,82,69.05,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679034,82,69.2,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679035,82,69.2,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679036,82,69.05,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679037,82,69.05,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679038,82,69.2,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679039,82,69.12,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679040,82,69.2,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679041,82,69.2,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679042,82,69.2,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679043,82,69.2,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679044,82,69.2,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679045,82,69.05,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679046,82,69.12,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679047,82,69.05,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679048,82,69.2,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679049,82,69.2,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679050,82,69.2,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679051,82,69.05,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679052,82,68.98,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679053,82,69.05,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679054,82,69.2,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679055,72,0.101,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679056,72,0.101,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679057,72,0.101,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679058,72,0.1,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679059,72,0.1,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679060,72,0.101,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679061,72,0.101,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679062,72,0.101,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679063,72,0.101,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679064,72,0.101,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679065,72,0.101,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679066,72,0.101,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679067,72,0.101,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679068,72,0.101,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679069,72,0.101,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679070,72,0.1,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679071,72,0.101,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679072,72,0.1,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679073,72,0.101,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679074,72,0.1,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679075,72,0.101,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679076,72,0.101,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679077,72,0.101,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679078,72,0.101,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679079,92,26.19,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679080,92,26.02,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679081,92,26.19,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679082,92,26.51,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679083,92,26.35,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679084,92,26.19,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679085,92,26.02,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679086,92,26.02,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679087,92,26.02,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679088,92,26.02,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679089,92,25.86,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679090,92,25.86,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679091,92,25.86,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679092,92,25.86,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679093,92,25.86,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679094,92,26.47,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679095,92,26.04,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679096,92,26.67,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679097,92,26.24,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679098,92,26.65,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679099,92,26.04,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679100,92,25.86,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679101,92,25.86,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679102,92,25.86,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679103,102,36.1,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679104,102,36.19,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679105,102,36.1,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679106,102,35.93,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679107,102,36.02,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679108,102,36.1,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679109,102,36.19,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679110,102,36.19,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679111,102,36.19,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679112,102,36.19,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679113,102,36.28,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679114,102,36.28,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679115,102,36.28,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679116,102,36.28,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679117,102,36.27,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679118,102,35.86,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679119,102,36.24,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679120,102,35.81,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679121,102,36.19,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679122,102,36.1,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679123,102,36.23,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679124,102,36.28,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679125,102,36.28,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679126,102,36.28,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679127,91,26.51,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679128,91,26.35,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679129,91,26.51,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679130,91,26.84,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679131,91,26.68,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679132,91,26.51,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679133,91,26.35,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679134,91,26.35,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679135,91,26.35,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679136,91,26.35,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679137,91,26.18,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679138,91,26.18,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679139,91,26.18,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679140,91,26.18,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679141,91,26.19,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679142,91,26.8,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679143,91,26.37,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679144,91,27,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679145,91,26.57,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679146,91,26.98,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679147,91,26.37,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679148,91,26.18,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679149,91,26.18,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679150,91,26.18,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13679151,101,38.49,'2011-08-08 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13679152,101,38.59,'2011-08-08 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13679153,101,38.49,'2011-08-08 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13679154,101,38.31,'2011-08-08 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13679155,101,38.4,'2011-08-08 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13679156,101,38.49,'2011-08-08 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13679157,101,38.59,'2011-08-08 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13679158,101,38.59,'2011-08-08 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13679159,101,38.59,'2011-08-08 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13679160,101,38.59,'2011-08-08 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13679161,101,38.68,'2011-08-09 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13679162,101,38.68,'2011-08-09 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13679163,101,38.68,'2011-08-09 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13679164,101,38.68,'2011-08-09 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13679165,101,38.68,'2011-08-09 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13679166,101,38.24,'2011-08-09 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13679167,101,38.64,'2011-08-09 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13679168,101,38.19,'2011-08-09 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13679169,101,38.59,'2011-08-09 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13679170,101,38.49,'2011-08-09 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13679171,101,38.64,'2011-08-09 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13679172,101,38.68,'2011-08-09 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13679173,101,38.68,'2011-08-09 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13679174,101,38.68,'2011-08-09 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686781,31,13.22,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686782,31,13.21,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686783,31,13.2,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686784,31,13.18,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686785,31,13.2,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686786,31,12.86,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686787,31,12.77,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686788,31,12.73,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686789,31,12.68,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686790,31,12.65,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686791,31,12.62,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686792,31,12.61,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686793,31,12.57,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686794,31,12.53,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686795,31,12.5,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686796,31,12.48,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686797,31,12.48,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686798,31,12.48,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686799,31,12.89,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686800,31,13.35,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686801,31,13.3,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686802,31,13.27,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686803,31,13.26,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686804,31,13.23,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686805,31,13.21,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686806,31,13.1,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686807,31,13.18,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686808,31,13.17,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686809,31,13.18,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686810,31,12.87,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686811,31,12.77,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686812,31,12.72,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686813,31,12.68,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686814,31,12.64,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686815,31,12.62,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686816,31,12.61,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686817,31,12.58,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686818,31,12.56,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686819,31,12.52,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686820,31,12.5,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686821,31,12.5,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686822,31,12.51,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686823,31,12.87,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686824,31,13.35,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686825,31,13.3,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686826,31,13.28,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686827,31,13.26,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686828,31,13.23,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686829,32,2.68,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686830,32,2.267,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686831,32,2.557,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686832,32,3.169,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686833,32,3.535,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686834,32,2.132,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686835,32,1.614,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686836,32,1.29,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686837,32,1.741,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686838,32,2.133,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686839,32,2.124,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686840,32,2.13,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686841,32,2.41,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686842,32,1.615,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686843,32,1.006,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686844,32,0.631,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686845,32,1.29,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686846,32,0.845,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686847,32,1.021,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686848,32,1.872,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686849,32,2.412,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686850,32,2.62,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686851,32,3.042,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686852,32,3.053,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686853,32,2.624,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686854,32,2.42,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686855,32,2.152,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686856,32,2.116,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686857,32,1.544,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686858,32,2.031,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686859,32,2.116,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686860,32,1.948,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686861,32,2.124,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686862,32,1.797,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686863,32,1.315,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686864,32,1.3,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686865,32,1.759,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686866,32,1.317,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686867,32,1.361,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686868,32,1.197,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686869,32,1.25,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686870,32,1.304,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686871,32,0.731,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686872,32,1.92,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686873,32,2.998,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686874,32,3.39,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686875,32,2.994,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686876,32,3.013,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686877,33,291.4,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686878,33,262.2,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686879,33,269.4,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686880,33,225.6,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686881,33,219.6,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686882,33,241.6,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686883,33,227.4,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686884,33,210.1,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686885,33,222,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686886,33,212.2,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686887,33,209,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686888,33,201.6,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686889,33,202.5,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686890,33,223.3,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686891,33,208.9,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686892,33,210.8,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686893,33,246.9,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686894,33,151.5,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686895,33,60.85,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686896,33,160.5,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686897,33,191.2,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686898,33,38.73,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686899,33,36.29,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686900,33,37.25,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686901,33,352.5,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686902,33,261.5,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686903,33,268.2,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686904,33,262.9,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686905,33,244.9,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686906,33,260.3,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686907,33,223.1,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686908,33,214.8,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686909,33,219.3,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686910,33,191.6,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686911,33,290.4,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686912,33,244.5,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686913,33,287.9,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686914,33,318,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686915,33,287.4,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686916,33,297,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686917,33,285.9,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686918,33,56.43,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686919,33,114.2,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686920,33,64.5,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686921,33,39.12,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686922,33,42.33,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686923,33,42.47,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686924,33,14.28,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686925,34,38.78,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686926,34,54.66,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686927,34,41.47,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686928,34,22.87,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686929,34,15.58,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686930,34,15.64,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686931,34,56.96,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686932,34,34.22,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686933,34,33.08,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686934,34,49.96,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686935,34,23.92,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686936,34,21.55,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686937,34,17.39,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686938,34,24.28,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686939,34,31.44,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686940,34,75.99,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686941,34,48.82,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686942,34,83.8,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686943,34,49.78,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686944,34,59.8,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686945,34,25.59,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686946,34,28.25,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686947,34,16.32,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686948,34,15.55,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686949,34,50.41,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13686950,34,45.66,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13686951,34,33.5,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13686952,34,34.02,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13686953,34,36.14,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13686954,34,18.73,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13686955,34,15.57,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13686956,34,17.84,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13686957,34,17.65,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13686958,34,52.73,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13686959,34,74.41,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13686960,34,47.51,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13686961,34,90.7,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13686962,34,54.81,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13686963,34,54.41,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13686964,34,54.14,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13686965,34,69.46,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13686966,34,96.3,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13686967,34,49.53,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13686968,34,52.02,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13686969,34,14.03,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13686970,34,12.46,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13686971,34,15.19,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13686972,34,57.62,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13686973,35,628.6,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13686974,35,628.3,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13686975,35,628,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13686976,35,627.8,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13686977,35,627.6,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13686978,35,627.5,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13686979,35,627.6,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13686980,35,628,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13686981,35,628.1,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13686982,35,628.6,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13686983,35,628.7,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13686984,35,628.7,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13686985,35,628.7,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13686986,35,628.6,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13686987,35,628.6,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13686988,35,628.6,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13686989,35,628.9,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13686990,35,628.9,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13686991,35,629.1,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13686992,35,629,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13686993,35,629.1,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13686994,35,629,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13686995,35,628.7,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13686996,35,628.5,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13686997,35,628.4,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13686998,35,628.1,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13686999,35,627.8,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13687000,35,627.6,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13687001,35,627.3,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13687002,35,627.1,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13687003,35,627.3,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13687004,35,627.5,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13687005,35,627.2,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13687006,35,627.2,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13687007,35,627,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13687008,35,627.1,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13687009,35,627,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13687010,35,627.1,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13687011,35,627.5,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13687012,35,627.8,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13687013,35,628.3,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13687014,35,628.8,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13687015,35,628.9,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13687016,35,629.1,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13687017,35,629.4,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13687018,35,629.6,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13687019,35,629.5,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13687020,35,629.3,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13687021,30,0,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687022,30,0,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687023,30,0,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687024,30,0,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687025,30,0,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687026,30,0,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687027,30,0,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687028,30,0,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687029,30,0,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687030,30,0,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687031,30,0,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687032,30,0,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687033,30,0,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687034,30,0,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687035,30,0,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687036,30,0,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687037,30,0,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687038,30,0,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687039,30,0,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687040,30,0,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687041,30,0,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687042,30,0,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687043,30,0,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687044,30,0,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687045,30,0,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687046,30,0,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687047,30,0,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687048,30,0,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687049,30,0,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687050,30,0,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687051,30,0,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687052,30,0,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687053,30,0,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687054,30,0,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687055,30,0,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687056,30,0,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687057,30,0,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687058,30,0,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687059,30,0,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687060,30,0,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687061,30,0,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687062,30,0,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687063,30,0,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687064,30,0,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687065,30,0,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687066,30,0,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687067,30,0,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687068,30,0,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687069,28,27.81,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687070,28,28.11,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687071,28,28.15,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687072,28,28.11,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687073,28,27.24,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687074,28,23.63,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687075,28,19.68,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687076,28,17.12,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687077,28,15.51,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687078,28,14.89,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687079,28,13.99,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687080,28,12.76,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687081,28,12.15,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687082,28,11.69,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687083,28,11.26,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687084,28,11.36,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687085,28,11.85,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687086,28,14.43,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687087,28,18.96,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687088,28,21.96,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687089,28,24.06,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687090,28,24.42,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687091,28,25.32,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687092,28,26.67,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687093,28,27.79,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687094,28,28.44,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687095,28,28.67,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687096,28,28.53,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687097,28,27.99,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687098,28,24.35,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687099,28,19.51,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687100,28,17.13,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687101,28,15.87,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687102,28,16.04,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687103,28,16.59,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687104,28,16.36,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687105,28,16.92,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687106,28,14.91,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687107,28,14.98,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687108,28,14,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687109,28,13.8,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687110,28,15.38,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687111,28,19.15,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687112,28,21.89,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687113,28,22,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687114,28,23.53,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687115,28,25.46,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687116,28,27,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687117,29,16.36,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687118,29,17.52,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687119,29,19.9,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687120,29,16.26,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687121,29,16.68,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687122,29,33.39,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687123,29,39.1,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687124,29,39.71,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687125,29,40.54,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687126,29,42.43,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687127,29,46.84,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687128,29,53.51,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687129,29,57.32,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687130,29,62,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687131,29,61.82,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687132,29,60.03,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687133,29,53.91,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687134,29,40.07,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687135,29,45.17,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687136,29,30.23,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687137,29,25.75,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687138,29,34,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687139,29,32.28,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687140,29,28.26,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687141,29,18.94,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687142,29,18.2,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687143,29,16.37,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687144,29,23.24,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687145,29,23.33,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687146,29,36.74,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687147,29,40.75,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687148,29,40.98,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687149,29,39.78,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687150,29,36.37,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687151,29,40.86,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687152,29,37.32,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687153,29,44.66,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687154,29,40.21,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687155,29,45.62,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687156,29,45.18,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687157,29,50.22,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687158,29,46.73,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687159,29,36.99,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687160,29,38.77,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687161,29,38.62,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687162,29,32.74,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687163,29,27.6,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687164,29,21.08,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687165,36,1017,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687166,36,976,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687167,36,819,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687168,36,614.8,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687169,36,375.8,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687170,36,116.3,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687171,36,8.88,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687172,36,0,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687173,36,0,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687174,36,0,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687175,36,0,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687176,36,0,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687177,36,0,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687178,36,0,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687179,36,0,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687180,36,0,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687181,36,7.802,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687182,36,151.8,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687183,36,385.7,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687184,36,616.8,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687185,36,820,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687186,36,975,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687187,36,1071,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687188,36,1099,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687189,36,1074,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687190,36,971,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687191,36,812,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687192,36,603.7,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687193,36,368.3,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687194,36,111.5,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687195,36,8.5,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687196,36,0,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687197,36,0,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687198,36,0,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687199,36,0,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687200,36,0,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687201,36,0,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687202,36,0,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687203,36,0,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687204,36,0,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687205,36,7.501,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687206,36,145.9,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687207,36,378.2,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687208,36,609.4,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687209,36,811,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687210,36,965,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687211,36,1061,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687212,36,1103,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687213,46,1.278,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687214,46,1.239,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687215,46,1.574,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687216,46,1.632,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687217,46,1.508,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687218,46,1.609,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687219,46,1.585,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687220,46,1.51,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687221,46,1.621,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687222,46,1.615,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687223,46,1.62,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687224,46,1.593,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687225,46,1.502,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687226,46,1.448,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687227,46,1.435,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687228,46,1.519,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687229,46,1.479,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687230,46,1.468,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687231,46,1.464,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687232,46,1.468,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687233,46,1.523,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687234,46,0.995,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687235,46,1.438,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687236,46,1.345,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687237,46,1.452,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687238,46,1.657,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687239,46,1.468,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687240,46,1.519,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687241,46,1.645,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687242,46,1.441,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687243,46,1.526,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687244,46,1.677,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687245,46,1.644,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687246,46,1.556,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687247,46,1.51,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687248,46,1.462,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687249,46,1.378,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687250,46,1.572,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687251,46,1.711,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687252,46,1.626,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687253,46,1.529,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687254,46,1.599,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687255,46,1.445,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687256,46,1.413,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687257,46,1.489,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687258,46,0.949,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687259,46,0.996,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687260,46,1.339,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687261,47,1.341,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687262,47,1.301,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687263,47,1.653,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687264,47,1.714,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687265,47,1.581,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687266,47,1.678,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687267,47,1.641,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687268,47,1.557,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687269,47,1.667,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687270,47,1.659,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687271,47,1.661,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687272,47,1.63,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687273,47,1.535,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687274,47,1.479,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687275,47,1.464,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687276,47,1.55,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687277,47,1.51,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687278,47,1.505,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687279,47,1.513,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687280,47,1.525,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687281,47,1.588,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687282,47,1.039,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687283,47,1.503,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687284,47,1.409,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687285,47,1.524,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687286,47,1.742,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687287,47,1.543,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687288,47,1.596,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687289,47,1.727,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687290,47,1.504,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687291,47,1.579,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687292,47,1.729,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687293,47,1.691,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687294,47,1.601,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687295,47,1.556,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687296,47,1.505,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687297,47,1.42,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687298,47,1.614,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687299,47,1.758,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687300,47,1.668,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687301,47,1.567,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687302,47,1.644,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687303,47,1.495,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687304,47,1.468,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687305,47,1.548,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687306,47,0.989,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687307,47,1.041,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687308,47,1.403,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687309,48,0.429,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687310,48,0.469,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687311,48,0.117,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687312,48,0.056,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687313,48,0.189,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687314,48,0.092,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687315,48,0.129,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687316,48,0.213,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687317,48,0.103,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687318,48,0.111,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687319,48,0.109,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687320,48,0.14,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687321,48,0.235,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687322,48,0.291,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687323,48,0.306,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687324,48,0.22,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687325,48,0.26,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687326,48,0.265,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687327,48,0.257,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687328,48,0.245,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687329,48,0.182,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687330,48,0.731,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687331,48,0.267,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687332,48,0.361,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687333,48,0.246,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13687334,48,0.028,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13687335,48,0.227,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13687336,48,0.174,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13687337,48,0.043,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13687338,48,0.266,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13687339,48,0.191,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13687340,48,0.041,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13687341,48,0.079,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13687342,48,0.169,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13687343,48,0.214,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13687344,48,0.265,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13687345,48,0.35,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13687346,48,0.156,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13687347,48,0.012,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13687348,48,0.102,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13687349,48,0.203,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13687350,48,0.126,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13687351,48,0.275,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13687352,48,0.302,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13687353,48,0.222,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13687354,48,0.781,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13687355,48,0.729,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13687356,48,0.367,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13687357,41,19.78,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687358,41,19.91,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687359,40,29.03,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687360,40,29.23,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687361,39,10.32,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687362,39,10.84,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687363,37,12.48,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687364,37,12.48,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687365,43,628.2,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687366,43,628.3,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687367,44,0,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687368,44,0,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687369,42,36.84,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687370,42,38.54,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687371,45,32.27766,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687372,45,32.30987,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687373,38,1.936,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687374,38,1.922,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687375,51,0,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687376,51,0,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687377,53,2.148,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687378,53,2.156,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687379,49,1.535,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687380,49,1.49,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687381,52,0,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687382,52,0,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687383,54,2.212,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687384,54,2.219,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687385,50,1.589,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687386,50,1.544,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687387,56,-0.442,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687388,56,-0.449,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687389,57,1.77,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687390,57,1.77,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687391,55,0.181,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13687392,55,0.226,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13691713,58,0.24,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691714,58,0.241,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691715,58,0.241,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691716,58,0.238,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691717,58,0.237,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691718,58,0.233,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691719,58,0.229,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691720,58,0.226,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691721,58,0.224,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691722,58,0.222,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691723,58,0.22,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691724,58,0.219,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691725,58,0.219,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691726,58,0.218,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691727,58,0.214,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691728,58,0.212,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691729,58,0.214,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691730,58,0.212,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691731,58,0.213,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691732,58,0.213,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691733,58,0.218,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691734,58,0.22,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691735,58,0.221,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691736,58,0.225,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691737,58,0.226,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691738,58,0.227,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691739,58,0.229,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691740,58,0.227,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691741,58,0.225,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691742,58,0.221,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691743,58,0.219,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691744,58,0.217,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691745,58,0.213,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691746,58,0.212,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691747,58,0.211,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691748,58,0.209,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691749,58,0.207,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691750,58,0.205,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691751,58,0.205,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691752,58,0.204,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691753,58,0.203,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691754,58,0.201,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691755,58,0.203,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691756,58,0.204,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691757,58,0.205,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691758,58,0.208,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691759,58,0.212,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691760,58,0.213,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691761,63,0.032,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691762,63,0.032,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691763,63,0.032,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691764,63,0.032,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691765,63,0.031,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691766,63,0.031,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691767,63,0.031,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691768,63,0.03,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691769,63,0.03,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691770,63,0.03,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691771,63,0.03,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691772,63,0.03,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691773,63,0.029,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691774,63,0.029,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691775,63,0.029,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691776,63,0.029,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691777,63,0.029,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691778,63,0.029,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691779,63,0.029,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691780,63,0.029,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691781,63,0.029,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691782,63,0.029,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691783,63,0.029,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691784,63,0.029,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691785,63,0.029,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691786,63,0.029,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691787,63,0.029,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691788,63,0.029,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691789,63,0.029,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691790,63,0.028,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691791,63,0.028,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691792,63,0.028,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691793,63,0.028,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691794,63,0.027,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691795,63,0.027,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691796,63,0.027,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691797,63,0.027,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691798,63,0.027,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691799,63,0.027,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691800,63,0.027,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691801,63,0.027,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691802,63,0.027,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691803,63,0.027,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691804,63,0.027,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691805,63,0.027,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691806,63,0.027,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691807,63,0.027,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691808,63,0.027,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691809,73,27.55,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691810,73,28.6,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691811,73,29.13,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691812,73,28.9,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691813,73,28.17,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691814,73,27.12,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691815,73,26.15,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691816,73,25.2,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691817,73,24.3,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691818,73,23.55,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691819,73,22.9,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691820,73,22.2,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691821,73,21.75,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691822,73,21.15,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691823,73,20.8,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691824,73,20.35,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691825,73,19.95,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691826,73,19.65,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691827,73,19.85,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691828,73,20.65,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691829,73,21.93,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691830,73,23.48,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691831,73,24.85,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691832,73,26.43,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691833,73,27.75,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691834,73,28.83,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691835,73,29.27,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691836,73,29.12,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691837,73,28.45,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691838,73,27.62,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691839,73,26.55,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691840,73,25.5,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691841,73,24.6,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691842,73,23.87,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691843,73,23.2,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691844,73,22.65,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691845,73,22.12,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691846,73,21.65,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691847,73,21.15,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691848,73,20.75,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691849,73,20.35,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691850,73,20.1,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691851,73,20.2,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691852,73,21.05,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691853,73,22.25,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691854,73,23.6,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691855,73,24.95,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691856,73,26.43,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691857,78,81.6,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691858,78,83.5,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691859,78,84.5,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691860,78,84,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691861,78,82.7,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691862,78,80.9,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691863,78,79.04,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691864,78,77.37,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691865,78,75.72,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691866,78,74.4,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691867,78,73.2,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691868,78,72,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691869,78,71.2,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691870,78,70.05,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691871,78,69.4,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691872,78,68.62,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691873,78,67.92,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691874,78,67.4,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691875,78,67.75,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691876,78,69.18,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691877,78,71.48,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691878,78,74.28,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691879,78,76.71,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691880,78,79.56,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691881,78,82,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691882,78,83.9,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691883,78,84.7,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691884,78,84.4,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691885,78,83.2,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691886,78,81.7,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691887,78,79.77,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691888,78,77.94,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691889,78,76.25,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691890,78,75,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691891,78,73.75,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691892,78,72.7,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691893,78,71.9,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691894,78,71,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691895,78,70.05,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691896,78,69.32,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691897,78,68.62,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691898,78,68.2,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691899,78,68.38,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691900,78,69.88,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691901,78,72.08,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691902,78,74.48,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691903,78,76.96,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691904,78,79.56,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691905,64,0.033,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691906,64,0.034,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691907,64,0.034,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691908,64,0.034,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691909,64,0.032,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691910,64,0.032,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691911,64,0.031,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691912,64,0.03,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691913,64,0.03,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691914,64,0.029,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691915,64,0.029,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691916,64,0.028,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691917,64,0.028,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691918,64,0.027,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691919,64,0.028,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691920,64,0.027,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691921,64,0.027,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691922,64,0.027,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691923,64,0.027,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691924,64,0.027,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691925,64,0.028,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691926,64,0.029,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691927,64,0.029,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691928,64,0.03,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691929,64,0.031,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691930,64,0.031,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691931,64,0.031,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691932,64,0.031,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691933,64,0.03,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691934,64,0.029,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691935,64,0.028,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691936,64,0.028,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691937,64,0.027,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691938,64,0.027,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691939,64,0.026,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691940,64,0.026,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691941,64,0.026,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691942,64,0.026,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691943,64,0.025,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691944,64,0.025,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691945,64,0.025,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691946,64,0.025,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691947,64,0.025,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691948,64,0.025,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691949,64,0.026,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691950,64,0.026,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691951,64,0.027,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691952,64,0.027,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691953,84,14.81,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691954,84,14.84,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691955,84,14.82,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691956,84,14.64,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691957,84,14.54,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691958,84,14.27,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691959,84,14.01,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691960,84,13.8,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691961,84,13.72,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691962,84,13.55,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691963,84,13.42,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691964,84,13.33,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691965,84,13.34,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691966,84,13.24,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691967,84,13.01,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691968,84,12.87,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691969,84,12.98,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691970,84,12.86,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691971,84,12.92,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691972,84,12.94,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691973,84,13.28,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691974,84,13.41,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691975,84,13.48,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13691976,84,13.71,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13691977,84,13.78,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13691978,84,13.86,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13691979,84,14.02,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13691980,84,13.86,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13691981,84,13.75,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13691982,84,13.46,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13691983,84,13.36,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13691984,84,13.19,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13691985,84,12.97,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13691986,84,12.89,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13691987,84,12.81,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13691988,84,12.69,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13691989,84,12.52,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13691990,84,12.45,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13691991,84,12.4,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13691992,84,12.37,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13691993,84,12.29,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13691994,84,12.18,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13691995,84,12.29,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13691996,84,12.36,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13691997,84,12.4,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13691998,84,12.61,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13691999,84,12.85,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692000,84,12.92,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692001,94,11.98,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692002,94,12.24,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692003,94,12.22,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692004,94,12.12,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692005,94,11.8,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692006,94,11.54,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692007,94,11.29,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692008,94,11.02,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692009,94,10.73,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692010,94,10.58,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692011,94,10.38,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692012,94,10.23,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692013,94,10.03,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692014,94,9.95,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692015,94,9.9,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692016,94,9.83,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692017,94,9.63,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692018,94,9.64,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692019,94,9.63,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692020,94,9.77,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692021,94,9.9,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692022,94,10.23,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692023,94,10.55,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692024,94,10.77,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692025,94,11.05,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692026,94,11.2,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692027,94,11.13,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692028,94,11.04,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692029,94,10.8,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692030,94,10.58,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692031,94,10.29,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692032,94,9.99,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692033,94,9.84,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692034,94,9.64,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692035,94,9.5,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692036,94,9.38,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692037,94,9.34,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692038,94,9.21,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692039,94,9.11,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692040,94,9.02,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692041,94,8.94,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692042,94,8.96,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692043,94,8.88,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692044,94,9.07,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692045,94,9.36,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692046,94,9.49,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692047,94,9.59,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692048,94,9.84,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692049,83,15.24,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692050,83,15.3,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692051,83,15.29,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692052,83,15.11,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692053,83,14.98,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692054,83,14.67,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692055,83,14.36,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692056,83,14.11,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692057,83,14,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692058,83,13.8,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692059,83,13.65,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692060,83,13.54,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103); +INSERT INTO `TimeSeriesResultValues` VALUES (13692061,83,13.53,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692062,83,13.42,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692063,83,13.17,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692064,83,13.01,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692065,83,13.12,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692066,83,12.98,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692067,83,13.05,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692068,83,13.1,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692069,83,13.48,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692070,83,13.66,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692071,83,13.77,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692072,83,14.06,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692073,83,14.19,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692074,83,14.3,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692075,83,14.48,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692076,83,14.3,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692077,83,14.17,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692078,83,13.84,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692079,83,13.7,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692080,83,13.5,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692081,83,13.24,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692082,83,13.14,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692083,83,13.03,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692084,83,12.9,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692085,83,12.71,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692086,83,12.62,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692087,83,12.56,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692088,83,12.52,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692089,83,12.43,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692090,83,12.31,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692091,83,12.43,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692092,83,12.52,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692093,83,12.6,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692094,83,12.86,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692095,83,13.14,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692096,83,13.26,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692097,93,11.52,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692098,93,11.62,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692099,93,11.54,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692100,93,11.48,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692101,93,11.3,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692102,93,11.2,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692103,93,11.12,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692104,93,11.01,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692105,93,10.86,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692106,93,10.84,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692107,93,10.74,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692108,93,10.67,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692109,93,10.55,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692110,93,10.54,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692111,93,10.56,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692112,93,10.55,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692113,93,10.4,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692114,93,10.47,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692115,93,10.41,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692116,93,10.42,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692117,93,10.35,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692118,93,10.45,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692119,93,10.58,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692120,93,10.56,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692121,93,10.59,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692122,93,10.6,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692123,93,10.48,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692124,93,10.42,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692125,93,10.3,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692126,93,10.22,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692127,93,10.09,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692128,93,9.93,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692129,93,9.92,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692130,93,9.83,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692131,93,9.78,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692132,93,9.74,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692133,93,9.77,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692134,93,9.7,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692135,93,9.66,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692136,93,9.63,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692137,93,9.6,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692138,93,9.66,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692139,93,9.54,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692140,93,9.61,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692141,93,9.73,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692142,93,9.68,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692143,93,9.6,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692144,93,9.64,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692145,59,0.323,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692146,59,0.321,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692147,59,0.321,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692148,59,0.323,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692149,59,0.323,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692150,59,0.321,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692151,59,0.32,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692152,59,0.317,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692153,59,0.318,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692154,59,0.312,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692155,59,0.314,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692156,59,0.313,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692157,59,0.311,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692158,59,0.311,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692159,59,0.308,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692160,59,0.308,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692161,59,0.306,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692162,59,0.305,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692163,59,0.304,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692164,59,0.302,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692165,59,0.301,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692166,59,0.305,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692167,59,0.306,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692168,59,0.308,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692169,59,0.31,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692170,59,0.311,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692171,59,0.312,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692172,59,0.312,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692173,59,0.313,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692174,59,0.31,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692175,59,0.312,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692176,59,0.309,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692177,59,0.308,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692178,59,0.307,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692179,59,0.306,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692180,59,0.303,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692181,59,0.302,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692182,59,0.301,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692183,59,0.3,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692184,59,0.299,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692185,59,0.297,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692186,59,0.297,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692187,59,0.297,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692188,59,0.295,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692189,59,0.295,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692190,59,0.298,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692191,59,0.297,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692192,59,0.301,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692193,65,0.053,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692194,65,0.053,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692195,65,0.053,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692196,65,0.052,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692197,65,0.052,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692198,65,0.052,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692199,65,0.051,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692200,65,0.051,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692201,65,0.051,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692202,65,0.051,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692203,65,0.051,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692204,65,0.05,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692205,65,0.05,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692206,65,0.049,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692207,65,0.05,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692208,65,0.049,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692209,65,0.049,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692210,65,0.049,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692211,65,0.048,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692212,65,0.049,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692213,65,0.048,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692214,65,0.048,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692215,65,0.048,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692216,65,0.048,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692217,65,0.048,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692218,65,0.048,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692219,65,0.048,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692220,65,0.047,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692221,65,0.047,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692222,65,0.047,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692223,65,0.047,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692224,65,0.047,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692225,65,0.047,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692226,65,0.047,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692227,65,0.046,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692228,65,0.047,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692229,65,0.046,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692230,65,0.045,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692231,65,0.045,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692232,65,0.046,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692233,65,0.045,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692234,65,0.045,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692235,65,0.045,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692236,65,0.045,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692237,65,0.045,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692238,65,0.045,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692239,65,0.045,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692240,65,0.045,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692241,74,25.78,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692242,74,26.78,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692243,74,27.2,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692244,74,27.5,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692245,74,27.42,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692246,74,27.05,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692247,74,26.62,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692248,74,26.05,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692249,74,25.42,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692250,74,24.8,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692251,74,24.17,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692252,74,23.75,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692253,74,23.15,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692254,74,22.7,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692255,74,22.25,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692256,74,21.85,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692257,74,21.5,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692258,74,21.15,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692259,74,20.9,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692260,74,20.95,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692261,74,21.35,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692262,74,22.03,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692263,74,23.25,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692264,74,24.53,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692265,74,25.83,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692266,74,26.8,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692267,74,27.35,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692268,74,27.63,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692269,74,27.57,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692270,74,27.35,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692271,74,26.8,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692272,74,26.37,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692273,74,25.67,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692274,74,25.07,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692275,74,24.5,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692276,74,23.92,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692277,74,23.55,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692278,74,23.02,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692279,74,22.7,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692280,74,22.3,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692281,74,21.85,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692282,74,21.55,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692283,74,21.3,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692284,74,21.4,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692285,74,21.75,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692286,74,22.48,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692287,74,23.53,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692288,74,24.85,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692289,79,78.41,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692290,79,80.3,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692291,79,81,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692292,79,81.5,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692293,79,81.4,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692294,79,80.7,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692295,79,79.87,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692296,79,78.85,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692297,79,77.85,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692298,79,76.6,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692299,79,75.5,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692300,79,74.8,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692301,79,73.65,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692302,79,72.8,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692303,79,72.1,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692304,79,71.4,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692305,79,70.7,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692306,79,70.07,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692307,79,69.6,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692308,79,69.7,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692309,79,70.4,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692310,79,71.71,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692311,79,73.86,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692312,79,76.18,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692313,79,78.51,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692314,79,80.3,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692315,79,81.3,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692316,79,81.8,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692317,79,81.6,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692318,79,81.2,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692319,79,80.2,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692320,79,79.42,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692321,79,78.3,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692322,79,77.15,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692323,79,76.05,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692324,79,75.1,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692325,79,74.4,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692326,79,73.42,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692327,79,72.8,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692328,79,72.17,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692329,79,71.4,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692330,79,70.8,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692331,79,70.3,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692332,79,70.5,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692333,79,71.2,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692334,79,72.45,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692335,79,74.38,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692336,79,76.71,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692337,66,0.053,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692338,66,0.054,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692339,66,0.054,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692340,66,0.054,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692341,66,0.053,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692342,66,0.053,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692343,66,0.053,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692344,66,0.052,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692345,66,0.051,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692346,66,0.051,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692347,66,0.05,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692348,66,0.049,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692349,66,0.049,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692350,66,0.048,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692351,66,0.047,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692352,66,0.047,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692353,66,0.047,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692354,66,0.046,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692355,66,0.046,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692356,66,0.046,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692357,66,0.046,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692358,66,0.046,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692359,66,0.047,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692360,66,0.047,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692361,66,0.049,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692362,66,0.049,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692363,66,0.049,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692364,66,0.049,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692365,66,0.049,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692366,66,0.049,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692367,66,0.048,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692368,66,0.048,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692369,66,0.048,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692370,66,0.047,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692371,66,0.046,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692372,66,0.046,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692373,66,0.046,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692374,66,0.044,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692375,66,0.044,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692376,66,0.044,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692377,66,0.043,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692378,66,0.043,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692379,66,0.043,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692380,66,0.043,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692381,66,0.043,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692382,66,0.043,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692383,66,0.044,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692384,66,0.045,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692385,86,21.2,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692386,86,21.07,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692387,86,21.06,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692388,86,21.24,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692389,86,21.25,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692390,86,21.05,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692391,86,20.95,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692392,86,20.72,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692393,86,20.83,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692394,86,20.34,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692395,86,20.46,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692396,86,20.33,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692397,86,20.27,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692398,86,20.22,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692399,86,19.94,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692400,86,19.96,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692401,86,19.84,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692402,86,19.73,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692403,86,19.64,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692404,86,19.47,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692405,86,19.39,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692406,86,19.69,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692407,86,19.83,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692408,86,19.91,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692409,86,20.1,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692410,86,20.18,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692411,86,20.33,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692412,86,20.27,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692413,86,20.34,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692414,86,20.06,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692415,86,20.31,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692416,86,20.03,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692417,86,19.94,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692418,86,19.87,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692419,86,19.84,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692420,86,19.56,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692421,86,19.44,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692422,86,19.39,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692423,86,19.33,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692424,86,19.22,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692425,86,19.06,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692426,86,19.07,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692427,86,19.07,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692428,86,18.89,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692429,86,18.92,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692430,86,19.13,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692431,86,19.06,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692432,86,19.39,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692433,96,19.05,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692434,96,19.46,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692435,96,19.56,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692436,96,19.27,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692437,96,19.19,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692438,96,19.11,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692439,96,18.92,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692440,96,18.82,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692441,96,18.41,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692442,96,18.38,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692443,96,18,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692444,96,17.78,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692445,96,17.45,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692446,96,17.32,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692447,96,17.16,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692448,96,16.91,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692449,96,16.81,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692450,96,16.63,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692451,96,16.46,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692452,96,16.49,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692453,96,16.6,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692454,96,16.59,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692455,96,16.8,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692456,96,17.12,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692457,96,17.47,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692458,96,17.72,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692459,96,17.65,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692460,96,17.8,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692461,96,17.66,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692462,96,17.81,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692463,96,17.36,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692464,96,17.3,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692465,96,17.13,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692466,96,16.89,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692467,96,16.6,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692468,96,16.54,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692469,96,16.35,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692470,96,16.03,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692471,96,15.91,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692472,96,15.73,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692473,96,15.69,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692474,96,15.44,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692475,96,15.28,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692476,96,15.38,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692477,96,15.4,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692478,96,15.49,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692479,96,15.85,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692480,96,16.03,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692481,85,21.7,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692482,85,21.63,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692483,85,21.64,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692484,85,21.83,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692485,85,21.85,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692486,85,21.63,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692487,85,21.51,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692488,85,21.24,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692489,85,21.33,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692490,85,20.81,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692491,85,20.9,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692492,85,20.75,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692493,85,20.66,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692494,85,20.59,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692495,85,20.28,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692496,85,20.28,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692497,85,20.14,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692498,85,20.02,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692499,85,19.91,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692500,85,19.74,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692501,85,19.67,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692502,85,20.01,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692503,85,20.2,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692504,85,20.33,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692505,85,20.58,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692506,85,20.72,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692507,85,20.89,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692508,85,20.84,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692509,85,20.92,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692510,85,20.63,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692511,85,20.87,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692512,85,20.56,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692513,85,20.43,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692514,85,20.33,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692515,85,20.27,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692516,85,19.97,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692517,85,19.83,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692518,85,19.76,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692519,85,19.68,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692520,85,19.55,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692521,85,19.37,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692522,85,19.37,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692523,85,19.35,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692524,85,19.17,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692525,85,19.21,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692526,85,19.45,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692527,85,19.43,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692528,85,19.81,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692529,95,18.9,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692530,95,19.03,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692531,95,18.98,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692532,95,18.64,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692533,95,18.55,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692534,95,18.53,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692535,95,18.45,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692536,95,18.49,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692537,95,18.22,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692538,95,18.34,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692539,95,18.11,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692540,95,18.03,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692541,95,17.81,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692542,95,17.8,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692543,95,17.75,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692544,95,17.6,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692545,95,17.6,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692546,95,17.5,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692547,95,17.39,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692548,95,17.43,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692549,95,17.45,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692550,95,17.27,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692551,95,17.23,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692552,95,17.27,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692553,95,17.29,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692554,95,17.31,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692555,95,17.11,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692556,95,17.18,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692557,95,17.04,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692558,95,17.23,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692559,95,16.86,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692560,95,16.93,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692561,95,16.89,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692562,95,16.8,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692563,95,16.64,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692564,95,16.7,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692565,95,16.62,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692566,95,16.4,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692567,95,16.38,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692568,95,16.28,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692569,95,16.32,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692570,95,16.15,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692571,95,16.05,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692572,95,16.15,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692573,95,16.1,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692574,95,16.04,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692575,95,16.19,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692576,95,16.09,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692577,60,0.372,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692578,60,0.368,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692579,60,0.368,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692580,60,0.372,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692581,60,0.374,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692582,60,0.371,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692583,60,0.373,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692584,60,0.369,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692585,60,0.373,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692586,60,0.371,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692587,60,0.371,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692588,60,0.374,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692589,60,0.375,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692590,60,0.374,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692591,60,0.372,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692592,60,0.379,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692593,60,0.374,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692594,60,0.371,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692595,60,0.368,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692596,60,0.367,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692597,60,0.367,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692598,60,0.368,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692599,60,0.367,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692600,60,0.371,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692601,60,0.371,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692602,60,0.371,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692603,60,0.368,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692604,60,0.372,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692605,60,0.373,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692606,60,0.371,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692607,60,0.374,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692608,60,0.372,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692609,60,0.375,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692610,60,0.373,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692611,60,0.374,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692612,60,0.375,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692613,60,0.372,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692614,60,0.373,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692615,60,0.372,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692616,60,0.374,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692617,60,0.378,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692618,60,0.374,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692619,60,0.371,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692620,60,0.367,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692621,60,0.372,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692622,60,0.372,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692623,60,0.37,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692624,60,0.371,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692625,67,0.084,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692626,67,0.084,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692627,67,0.085,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692628,67,0.085,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692629,67,0.085,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692630,67,0.086,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692631,67,0.085,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692632,67,0.087,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692633,67,0.086,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692634,67,0.087,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692635,67,0.086,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692636,67,0.085,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692637,67,0.085,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692638,67,0.085,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692639,67,0.085,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692640,67,0.083,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692641,67,0.085,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692642,67,0.086,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692643,67,0.085,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692644,67,0.085,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692645,67,0.085,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692646,67,0.085,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692647,67,0.085,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692648,67,0.085,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692649,67,0.084,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692650,67,0.084,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692651,67,0.085,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692652,67,0.084,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692653,67,0.085,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692654,67,0.086,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692655,67,0.085,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692656,67,0.086,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692657,67,0.085,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692658,67,0.085,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692659,67,0.086,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692660,67,0.086,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692661,67,0.085,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692662,67,0.085,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692663,67,0.085,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692664,67,0.085,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692665,67,0.084,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692666,67,0.085,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692667,67,0.086,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692668,67,0.086,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692669,67,0.084,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692670,67,0.084,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692671,67,0.084,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692672,67,0.084,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692673,75,23,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692674,75,23.23,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692675,75,23.45,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692676,75,23.65,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692677,75,23.85,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692678,75,24.2,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692679,75,24.35,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692680,75,24.4,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692681,75,24.63,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692682,75,24.63,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692683,75,24.63,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692684,75,24.47,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692685,75,24.4,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692686,75,24.25,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692687,75,24.2,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692688,75,23.9,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692689,75,23.75,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692690,75,23.65,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692691,75,23.5,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692692,75,23.4,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692693,75,23.22,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692694,75,23,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692695,75,22.95,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692696,75,23,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692697,75,23,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692698,75,23.3,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692699,75,23.45,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692700,75,23.6,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692701,75,23.9,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692702,75,24.25,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692703,75,24.4,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692704,75,24.63,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692705,75,24.63,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692706,75,24.7,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692707,75,24.63,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692708,75,24.62,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692709,75,24.55,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692710,75,24.35,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692711,75,24.3,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692712,75,24.12,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692713,75,23.9,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692714,75,23.8,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692715,75,23.65,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692716,75,23.55,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692717,75,23.45,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692718,75,23.3,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692719,75,23.22,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692720,75,23.3,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692721,80,73.4,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692722,80,73.78,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692723,80,74.2,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692724,80,74.6,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692725,80,75,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692726,80,75.5,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692727,80,75.8,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692728,80,75.9,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692729,80,76.28,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692730,80,76.28,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692731,80,76.28,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692732,80,76.02,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692733,80,75.9,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692734,80,75.6,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692735,80,75.5,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692736,80,75.1,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692737,80,74.8,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692738,80,74.6,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692739,80,74.3,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692740,80,74.1,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692741,80,73.77,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692742,80,73.4,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692743,80,73.3,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692744,80,73.4,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692745,80,73.4,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692746,80,73.9,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692747,80,74.2,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692748,80,74.5,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692749,80,75.1,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692750,80,75.6,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692751,80,75.9,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692752,80,76.28,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692753,80,76.28,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692754,80,76.4,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692755,80,76.28,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692756,80,76.27,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692757,80,76.15,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692758,80,75.8,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692759,80,75.7,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692760,80,75.4,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692761,80,75.1,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692762,80,74.9,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692763,80,74.6,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692764,80,74.4,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692765,80,74.2,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692766,80,73.9,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692767,80,73.78,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692768,80,73.9,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692769,68,0.082,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692770,68,0.082,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692771,68,0.083,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692772,68,0.083,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692773,68,0.083,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692774,68,0.085,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692775,68,0.085,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692776,68,0.086,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692777,68,0.085,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692778,68,0.086,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692779,68,0.085,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692780,68,0.085,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692781,68,0.084,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692782,68,0.085,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692783,68,0.084,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692784,68,0.082,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692785,68,0.083,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692786,68,0.084,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692787,68,0.084,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692788,68,0.083,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692789,68,0.083,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692790,68,0.083,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692791,68,0.083,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692792,68,0.082,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692793,68,0.082,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692794,68,0.082,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692795,68,0.083,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692796,68,0.083,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692797,68,0.084,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692798,68,0.085,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692799,68,0.085,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692800,68,0.085,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692801,68,0.085,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692802,68,0.085,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692803,68,0.085,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692804,68,0.085,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692805,68,0.085,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692806,68,0.085,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692807,68,0.085,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692808,68,0.084,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692809,68,0.082,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692810,68,0.083,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692811,68,0.084,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692812,68,0.084,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692813,68,0.083,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692814,68,0.082,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692815,68,0.082,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692816,68,0.082,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692817,88,25.53,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692818,88,25.2,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692819,88,25.21,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692820,88,25.54,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692821,88,25.79,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692822,88,25.5,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692823,88,25.66,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692824,88,25.26,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692825,88,25.66,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692826,88,25.42,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692827,88,25.42,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692828,88,25.75,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692829,88,25.83,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692830,88,25.76,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692831,88,25.57,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692832,88,26.25,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692833,88,25.78,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692834,88,25.54,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692835,88,25.14,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692836,88,25.05,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692837,88,25.09,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692838,88,25.2,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692839,88,25.09,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692840,88,25.39,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692841,88,25.43,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692842,88,25.49,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692843,88,25.21,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692844,88,25.55,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692845,88,25.71,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692846,88,25.51,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692847,88,25.77,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692848,88,25.55,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692849,88,25.9,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692850,88,25.67,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692851,88,25.8,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692852,88,25.9,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692853,88,25.57,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692854,88,25.7,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692855,88,25.53,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692856,88,25.73,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692857,88,26.18,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692858,88,25.78,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692859,88,25.54,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692860,88,25.11,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692861,88,25.56,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692862,88,25.55,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692863,88,25.34,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692864,88,25.44,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692865,98,29.42,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692866,98,29.66,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692867,98,29.9,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692868,98,29.84,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692869,98,29.92,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692870,98,30.46,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692871,98,30.41,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692872,98,30.82,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692873,98,30.62,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692874,98,30.79,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692875,98,30.79,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692876,98,30.51,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692877,98,30.37,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692878,98,30.3,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692879,98,30.29,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692880,98,29.59,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692881,98,29.91,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692882,98,30.07,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692883,98,30.04,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692884,98,29.93,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692885,98,29.76,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692886,98,29.68,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692887,98,29.78,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692888,98,29.49,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692889,98,29.52,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692890,98,29.59,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692891,98,29.91,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692892,98,29.85,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692893,98,30.06,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692894,98,30.46,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692895,98,30.31,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692896,98,30.71,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692897,98,30.46,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692898,98,30.63,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692899,98,30.56,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692900,98,30.45,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692901,98,30.52,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692902,98,30.44,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692903,98,30.47,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692904,98,30.25,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692905,98,29.72,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692906,98,29.91,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692907,98,30.07,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692908,98,30.23,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692909,98,29.67,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692910,98,29.44,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692911,98,29.63,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692912,98,29.53,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692913,87,25.99,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692914,87,25.66,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692915,87,25.68,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692916,87,26.03,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692917,87,26.3,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692918,87,26.03,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692919,87,26.2,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692920,87,25.8,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692921,87,26.21,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692922,87,25.97,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692923,87,25.97,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692924,87,26.3,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692925,87,26.37,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692926,87,26.29,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692927,87,26.1,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692928,87,26.78,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692929,87,26.29,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692930,87,26.03,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692931,87,25.62,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692932,87,25.52,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692933,87,25.55,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692934,87,25.66,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692935,87,25.53,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692936,87,25.85,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692937,87,25.89,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692938,87,25.96,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692939,87,25.68,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692940,87,26.04,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692941,87,26.23,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692942,87,26.03,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692943,87,26.31,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692944,87,26.1,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692945,87,26.46,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692946,87,26.23,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692947,87,26.36,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692948,87,26.46,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692949,87,26.12,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692950,87,26.24,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692951,87,26.07,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692952,87,26.25,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692953,87,26.7,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692954,87,26.29,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692955,87,26.04,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692956,87,25.59,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692957,87,26.05,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692958,87,26.02,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692959,87,25.8,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692960,87,25.9,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692961,97,30.26,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692962,97,30.45,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692963,97,30.59,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692964,97,30.43,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692965,97,30.39,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692966,97,30.82,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692967,97,30.68,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692968,97,31.04,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692969,97,30.81,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692970,97,30.98,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692971,97,30.98,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692972,97,30.73,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692973,97,30.63,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692974,97,30.61,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692975,97,30.66,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13692976,97,30.03,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13692977,97,30.41,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13692978,97,30.64,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13692979,97,30.68,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13692980,97,30.65,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13692981,97,30.56,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13692982,97,30.53,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13692983,97,30.65,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13692984,97,30.35,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13692985,97,30.36,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13692986,97,30.36,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13692987,97,30.58,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13692988,97,30.41,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13692989,97,30.5,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13692990,97,30.81,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13692991,97,30.57,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13692992,97,30.92,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13692993,97,30.6,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13692994,97,30.76,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13692995,97,30.7,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13692996,97,30.62,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13692997,97,30.74,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13692998,97,30.71,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13692999,97,30.77,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693000,97,30.62,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693001,97,30.16,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693002,97,30.41,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693003,97,30.63,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693004,97,30.87,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693005,97,30.35,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693006,97,30.18,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693007,97,30.41,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693008,97,30.31,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693009,61,0.265,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693010,61,0.265,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693011,61,0.265,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693012,61,0.265,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693013,61,0.265,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693014,61,0.265,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693015,61,0.265,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693016,61,0.265,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693017,61,0.262,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693018,61,0.261,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693019,61,0.261,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693020,61,0.26,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693021,61,0.26,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693022,61,0.261,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693023,61,0.265,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693024,61,0.263,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693025,61,0.266,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693026,61,0.264,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693027,61,0.261,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693028,61,0.26,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693029,61,0.26,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693030,61,0.26,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693031,61,0.262,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693032,61,0.264,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693033,61,0.265,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693034,61,0.265,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693035,61,0.263,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693036,61,0.264,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693037,61,0.265,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693038,61,0.265,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693039,61,0.265,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693040,61,0.265,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693041,61,0.263,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693042,61,0.263,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693043,61,0.261,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693044,61,0.261,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693045,61,0.261,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693046,61,0.261,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693047,61,0.26,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693048,61,0.265,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693049,61,0.263,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693050,61,0.261,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693051,61,0.26,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693052,61,0.26,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693053,61,0.26,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693054,61,0.263,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693055,61,0.264,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693056,61,0.264,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693057,69,0.045,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693058,69,0.045,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693059,69,0.045,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693060,69,0.045,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693061,69,0.045,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693062,69,0.045,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693063,69,0.045,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693064,69,0.045,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693065,69,0.046,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693066,69,0.046,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693067,69,0.046,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693068,69,0.046,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693069,69,0.046,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693070,69,0.046,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693071,69,0.045,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693072,69,0.045,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693073,69,0.045,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693074,69,0.045,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693075,69,0.046,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693076,69,0.046,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693077,69,0.046,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693078,69,0.046,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693079,69,0.046,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693080,69,0.045,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693081,69,0.045,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693082,69,0.045,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693083,69,0.045,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693084,69,0.045,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693085,69,0.045,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693086,69,0.045,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693087,69,0.045,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693088,69,0.045,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693089,69,0.046,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693090,69,0.046,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693091,69,0.046,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693092,69,0.046,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693093,69,0.046,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693094,69,0.046,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693095,69,0.046,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693096,69,0.045,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693097,69,0.046,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693098,69,0.046,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693099,69,0.046,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693100,69,0.046,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693101,69,0.046,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693102,69,0.046,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693103,69,0.045,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693104,69,0.045,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693105,76,23,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693106,76,22.95,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693107,76,22.9,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693108,76,22.8,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693109,76,22.85,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693110,76,22.8,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693111,76,22.8,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693112,76,22.9,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693113,76,22.95,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693114,76,23,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693115,76,23,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693116,76,23,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693117,76,23,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693118,76,23,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693119,76,23.08,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693120,76,23.3,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693121,76,23.3,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693122,76,23.3,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693123,76,23.3,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693124,76,23.3,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693125,76,23.15,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693126,76,23.07,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693127,76,23,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693128,76,23,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693129,76,23,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693130,76,23,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693131,76,23,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693132,76,23,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693133,76,22.95,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693134,76,23,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693135,76,22.95,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693136,76,23,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693137,76,23,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693138,76,23,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693139,76,23,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693140,76,23,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693141,76,23.15,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693142,76,23.3,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693143,76,23.3,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693144,76,23.3,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693145,76,23.3,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693146,76,23.3,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693147,76,23.3,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693148,76,23.3,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693149,76,23.3,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693150,76,23.22,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693151,76,23.3,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693152,76,23.15,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693153,81,73.4,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693154,81,73.3,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693155,81,73.2,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693156,81,73,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693157,81,73.1,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693158,81,73,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693159,81,73,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693160,81,73.2,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693161,81,73.3,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693162,81,73.4,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693163,81,73.4,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693164,81,73.4,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693165,81,73.4,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693166,81,73.4,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693167,81,73.53,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693168,81,73.9,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693169,81,73.9,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693170,81,73.9,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693171,81,73.9,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693172,81,73.9,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693173,81,73.65,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693174,81,73.53,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693175,81,73.4,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693176,81,73.4,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693177,81,73.4,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693178,81,73.4,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693179,81,73.4,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693180,81,73.4,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693181,81,73.3,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693182,81,73.4,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693183,81,73.3,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693184,81,73.4,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693185,81,73.4,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693186,81,73.4,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693187,81,73.4,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693188,81,73.4,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693189,81,73.65,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693190,81,73.9,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693191,81,73.9,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693192,81,73.9,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693193,81,73.9,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693194,81,73.9,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693195,81,73.9,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693196,81,73.9,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693197,81,73.9,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693198,81,73.78,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693199,81,73.9,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693200,81,73.65,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693201,70,0.044,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693202,70,0.044,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693203,70,0.044,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693204,70,0.044,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693205,70,0.044,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693206,70,0.044,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693207,70,0.044,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693208,70,0.044,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693209,70,0.045,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693210,70,0.045,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693211,70,0.045,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693212,70,0.045,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693213,70,0.045,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693214,70,0.045,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693215,70,0.044,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693216,70,0.044,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693217,70,0.044,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693218,70,0.044,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693219,70,0.045,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693220,70,0.045,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693221,70,0.045,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693222,70,0.045,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693223,70,0.045,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693224,70,0.044,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693225,70,0.044,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693226,70,0.044,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693227,70,0.044,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693228,70,0.044,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693229,70,0.044,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693230,70,0.044,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693231,70,0.044,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693232,70,0.044,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693233,70,0.045,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693234,70,0.045,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693235,70,0.045,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693236,70,0.045,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693237,70,0.045,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693238,70,0.045,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693239,70,0.045,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693240,70,0.044,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693241,70,0.045,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693242,70,0.045,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693243,70,0.045,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693244,70,0.045,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693245,70,0.045,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693246,70,0.045,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693247,70,0.044,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693248,70,0.044,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693249,90,16.6,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693250,90,16.6,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693251,90,16.6,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693252,90,16.6,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693253,90,16.6,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693254,90,16.6,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693255,90,16.6,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693256,90,16.6,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693257,90,16.33,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693258,90,16.3,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693259,90,16.26,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693260,90,16.2,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693261,90,16.2,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693262,90,16.31,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693263,90,16.54,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693264,90,16.43,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693265,90,16.66,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693266,90,16.54,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693267,90,16.31,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693268,90,16.2,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693269,90,16.2,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693270,90,16.24,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693271,90,16.38,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693272,90,16.48,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693273,90,16.61,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693274,90,16.61,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693275,90,16.49,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693276,90,16.53,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693277,90,16.6,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693278,90,16.6,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693279,90,16.6,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693280,90,16.6,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693281,90,16.48,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693282,90,16.44,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693283,90,16.28,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693284,90,16.26,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693285,90,16.26,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693286,90,16.31,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693287,90,16.2,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693288,90,16.55,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693289,90,16.43,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693290,90,16.32,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693291,90,16.2,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693292,90,16.2,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693293,90,16.2,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693294,90,16.43,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693295,90,16.55,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693296,90,16.55,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693297,100,15.92,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693298,100,15.92,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693299,100,15.92,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693300,100,15.92,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693301,100,15.92,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693302,100,15.92,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693303,100,15.92,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693304,100,15.92,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693305,100,16.12,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693306,100,16.18,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693307,100,16.24,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693308,100,16.27,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693309,100,16.27,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693310,100,16.19,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693311,100,16.04,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693312,100,16.11,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693313,100,15.96,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693314,100,16.04,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693315,100,16.19,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693316,100,16.27,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693317,100,16.27,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693318,100,16.21,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693319,100,16.06,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693320,100,15.98,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693321,100,15.92,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693322,100,15.92,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693323,100,15.99,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693324,100,15.94,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693325,100,15.92,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693326,100,15.92,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693327,100,15.92,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693328,100,15.92,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693329,100,15.97,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693330,100,16.03,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693331,100,16.15,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693332,100,16.24,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693333,100,16.24,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693334,100,16.19,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693335,100,16.27,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693336,100,16.04,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693337,100,16.12,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693338,100,16.19,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693339,100,16.27,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693340,100,16.27,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693341,100,16.27,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693342,100,16.01,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693343,100,15.95,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693344,100,15.95,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693345,89,16.91,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693346,89,16.91,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693347,89,16.9,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693348,89,16.9,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693349,89,16.9,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693350,89,16.9,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693351,89,16.9,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693352,89,16.9,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693353,89,16.63,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693354,89,16.59,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693355,89,16.55,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693356,89,16.49,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693357,89,16.5,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693358,89,16.61,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693359,89,16.85,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693360,89,16.74,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693361,89,16.97,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693362,89,16.85,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693363,89,16.62,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693364,89,16.5,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693365,89,16.5,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693366,89,16.54,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693367,89,16.69,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693368,89,16.79,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693369,89,16.91,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693370,89,16.91,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693371,89,16.79,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693372,89,16.83,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693373,89,16.9,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693374,89,16.9,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693375,89,16.9,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693376,89,16.91,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693377,89,16.78,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693378,89,16.74,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693379,89,16.58,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693380,89,16.56,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693381,89,16.56,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693382,89,16.62,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693383,89,16.51,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693384,89,16.86,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693385,89,16.74,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693386,89,16.62,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693387,89,16.51,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693388,89,16.51,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693389,89,16.51,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693390,89,16.74,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693391,89,16.86,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693392,89,16.86,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693393,99,16.34,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693394,99,16.35,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693395,99,16.36,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693396,99,16.36,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693397,99,16.36,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693398,99,16.36,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693399,99,16.36,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693400,99,16.36,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693401,99,16.56,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693402,99,16.61,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693403,99,16.67,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693404,99,16.69,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693405,99,16.68,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693406,99,16.6,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693407,99,16.43,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693408,99,16.5,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693409,99,16.34,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693410,99,16.42,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693411,99,16.58,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693412,99,16.66,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693413,99,16.66,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693414,99,16.6,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693415,99,16.46,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693416,99,16.38,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693417,99,16.32,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693418,99,16.34,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693419,99,16.42,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693420,99,16.37,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693421,99,16.35,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693422,99,16.35,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693423,99,16.36,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693424,99,16.35,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693425,99,16.4,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693426,99,16.45,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693427,99,16.56,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693428,99,16.65,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693429,99,16.64,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693430,99,16.58,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693431,99,16.65,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693432,99,16.41,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693433,99,16.49,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693434,99,16.56,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693435,99,16.64,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693436,99,16.64,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693437,99,16.64,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693438,99,16.37,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693439,99,16.32,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693440,99,16.33,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693441,62,0.375,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693442,62,0.375,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693443,62,0.38,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693444,62,0.381,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693445,62,0.383,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693446,62,0.384,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693447,62,0.379,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693448,62,0.383,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693449,62,0.38,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693450,62,0.377,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693451,62,0.375,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693452,62,0.375,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693453,62,0.375,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693454,62,0.375,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693455,62,0.375,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693456,62,0.375,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693457,62,0.375,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693458,62,0.378,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693459,62,0.373,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693460,62,0.378,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693461,62,0.375,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693462,62,0.375,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693463,62,0.377,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693464,62,0.378,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693465,62,0.378,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693466,62,0.383,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693467,62,0.385,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693468,62,0.387,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693469,62,0.387,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693470,62,0.387,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693471,62,0.387,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693472,62,0.387,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693473,62,0.387,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693474,62,0.384,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693475,62,0.381,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693476,62,0.38,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693477,62,0.38,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693478,62,0.379,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693479,62,0.38,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693480,62,0.375,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693481,62,0.377,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693482,62,0.375,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693483,62,0.378,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693484,62,0.377,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693485,62,0.38,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693486,62,0.38,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693487,62,0.38,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693488,62,0.383,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693489,71,0.108,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693490,71,0.108,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693491,71,0.106,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693492,71,0.106,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693493,71,0.106,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693494,71,0.106,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693495,71,0.107,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693496,71,0.106,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693497,71,0.107,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693498,71,0.108,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693499,71,0.108,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693500,71,0.108,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693501,71,0.108,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693502,71,0.108,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693503,71,0.108,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693504,71,0.108,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693505,71,0.108,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693506,71,0.107,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693507,71,0.109,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693508,71,0.107,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693509,71,0.108,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693510,71,0.108,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693511,71,0.108,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693512,71,0.107,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693513,71,0.107,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693514,71,0.106,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693515,71,0.105,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693516,71,0.105,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693517,71,0.105,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693518,71,0.105,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693519,71,0.105,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693520,71,0.105,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693521,71,0.105,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693522,71,0.105,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693523,71,0.106,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693524,71,0.106,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693525,71,0.106,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693526,71,0.107,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693527,71,0.106,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693528,71,0.107,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693529,71,0.107,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693530,71,0.107,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693531,71,0.106,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693532,71,0.107,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693533,71,0.106,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693534,71,0.106,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693535,71,0.106,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693536,71,0.105,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693537,77,20.65,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693538,77,20.7,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693539,77,20.65,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693540,77,20.65,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693541,77,20.65,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693542,77,20.6,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693543,77,20.7,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693544,77,20.65,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693545,77,20.7,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693546,77,20.65,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693547,77,20.65,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693548,77,20.55,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693549,77,20.65,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693550,77,20.65,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693551,77,20.7,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693552,77,20.7,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693553,77,20.65,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693554,77,20.7,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693555,77,20.7,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693556,77,20.7,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693557,77,20.65,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693558,77,20.7,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693559,77,20.65,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693560,77,20.7,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693561,77,20.65,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693562,77,20.65,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693563,77,20.65,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693564,77,20.7,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693565,77,20.7,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693566,77,20.65,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693567,77,20.65,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693568,77,20.7,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693569,77,20.65,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693570,77,20.7,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693571,77,20.7,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693572,77,20.65,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693573,77,20.7,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693574,77,20.6,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693575,77,20.7,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693576,77,20.7,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693577,77,20.7,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693578,77,20.7,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693579,77,20.65,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693580,77,20.7,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693581,77,20.65,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693582,77,20.65,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693583,77,20.65,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693584,77,20.65,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693585,82,69.12,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693586,82,69.2,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693587,82,69.12,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693588,82,69.12,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693589,82,69.12,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693590,82,69.05,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693591,82,69.2,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693592,82,69.12,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693593,82,69.2,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693594,82,69.12,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693595,82,69.12,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693596,82,68.98,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693597,82,69.12,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693598,82,69.12,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693599,82,69.2,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693600,82,69.2,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693601,82,69.12,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693602,82,69.2,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693603,82,69.2,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693604,82,69.2,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693605,82,69.12,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693606,82,69.2,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693607,82,69.12,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693608,82,69.2,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693609,82,69.12,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693610,82,69.12,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693611,82,69.12,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693612,82,69.2,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693613,82,69.2,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693614,82,69.13,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693615,82,69.12,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693616,82,69.2,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693617,82,69.12,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693618,82,69.2,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693619,82,69.2,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693620,82,69.12,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693621,82,69.2,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693622,82,69.05,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693623,82,69.2,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693624,82,69.2,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693625,82,69.2,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693626,82,69.2,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693627,82,69.13,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693628,82,69.2,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693629,82,69.13,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693630,82,69.12,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693631,82,69.12,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693632,82,69.12,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693633,72,0.101,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693634,72,0.101,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693635,72,0.1,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693636,72,0.1,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693637,72,0.099,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693638,72,0.099,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693639,72,0.1,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693640,72,0.099,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693641,72,0.1,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693642,72,0.101,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693643,72,0.101,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693644,72,0.101,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693645,72,0.101,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693646,72,0.101,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693647,72,0.101,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693648,72,0.101,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693649,72,0.101,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693650,72,0.101,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693651,72,0.102,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693652,72,0.101,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693653,72,0.101,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693654,72,0.101,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693655,72,0.101,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693656,72,0.101,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693657,72,0.1,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693658,72,0.099,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693659,72,0.099,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693660,72,0.098,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693661,72,0.098,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693662,72,0.098,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693663,72,0.098,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693664,72,0.098,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693665,72,0.098,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693666,72,0.099,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693667,72,0.1,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693668,72,0.1,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693669,72,0.1,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693670,72,0.1,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693671,72,0.1,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693672,72,0.101,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693673,72,0.101,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693674,72,0.101,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693675,72,0.101,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693676,72,0.101,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693677,72,0.1,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693678,72,0.1,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693679,72,0.1,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693680,72,0.099,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693681,92,25.86,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693682,92,25.86,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693683,92,26.35,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693684,92,26.45,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693685,92,26.62,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693686,92,26.72,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693687,92,26.19,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693688,92,26.62,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693689,92,26.35,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693690,92,26.02,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693691,92,25.86,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693692,92,25.86,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693693,92,25.86,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693694,92,25.86,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693695,92,25.86,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693696,92,25.86,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693697,92,25.86,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693698,92,26.16,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693699,92,25.62,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693700,92,26.17,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693701,92,25.86,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693702,92,25.86,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693703,92,26.02,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693704,92,26.19,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693705,92,26.14,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693706,92,26.62,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693707,92,26.73,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693708,92,26.94,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693709,92,26.94,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693710,92,26.94,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693711,92,26.94,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693712,92,26.94,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693713,92,26.94,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693714,92,26.73,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693715,92,26.46,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693716,92,26.35,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693717,92,26.35,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693718,92,26.19,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693719,92,26.35,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693720,92,25.87,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693721,92,26.03,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693722,92,25.87,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693723,92,26.19,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693724,92,26.03,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693725,92,26.36,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693726,92,26.35,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693727,92,26.36,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693728,92,26.63,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693729,102,36.28,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693730,102,36.28,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693731,102,36.01,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693732,102,35.85,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693733,102,35.76,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693734,102,35.61,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693735,102,36.1,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693736,102,35.77,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693737,102,36.02,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693738,102,36.19,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693739,102,36.28,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693740,102,36.28,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693741,102,36.28,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693742,102,36.28,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693743,102,36.28,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693744,102,36.28,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693745,102,36.27,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693746,102,36.07,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693747,102,36.61,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693748,102,36.07,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693749,102,36.28,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693750,102,36.28,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693751,102,36.19,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693752,102,36.1,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693753,102,36.02,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693754,102,35.77,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693755,102,35.6,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693756,102,35.28,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693757,102,35.28,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693758,102,35.28,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693759,102,35.28,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693760,102,35.28,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693761,102,35.28,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693762,102,35.61,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693763,102,35.86,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693764,102,36.02,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693765,102,36.02,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693766,102,36.11,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693767,102,36.02,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693768,102,36.29,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693769,102,36.2,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693770,102,36.28,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693771,102,36.11,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693772,102,36.2,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693773,102,36.02,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693774,102,36.02,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693775,102,36.02,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693776,102,35.77,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693777,91,26.18,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693778,91,26.18,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693779,91,26.68,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693780,91,26.78,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693781,91,26.95,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693782,91,27.06,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693783,91,26.51,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693784,91,26.95,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693785,91,26.68,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693786,91,26.35,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693787,91,26.18,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693788,91,26.18,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693789,91,26.18,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693790,91,26.18,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693791,91,26.18,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693792,91,26.18,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693793,91,26.18,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693794,91,26.49,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693795,91,25.94,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693796,91,26.49,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693797,91,26.18,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693798,91,26.18,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693799,91,26.35,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693800,91,26.51,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693801,91,26.46,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693802,91,26.95,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693803,91,27.06,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693804,91,27.28,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693805,91,27.28,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693806,91,27.28,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693807,91,27.28,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693808,91,27.28,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693809,91,27.28,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693810,91,27.06,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693811,91,26.79,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693812,91,26.68,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693813,91,26.68,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693814,91,26.52,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693815,91,26.68,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693816,91,26.19,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693817,91,26.36,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693818,91,26.19,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693819,91,26.52,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693820,91,26.36,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693821,91,26.69,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693822,91,26.69,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693823,91,26.69,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693824,91,26.96,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693825,101,38.68,'2011-08-09 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693826,101,38.68,'2011-08-09 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693827,101,38.4,'2011-08-09 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693828,101,38.23,'2011-08-09 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693829,101,38.14,'2011-08-09 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693830,101,37.96,'2011-08-09 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693831,101,38.49,'2011-08-09 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693832,101,38.13,'2011-08-09 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693833,101,38.4,'2011-08-09 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693834,101,38.59,'2011-08-09 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693835,101,38.68,'2011-08-10 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693836,101,38.68,'2011-08-10 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693837,101,38.68,'2011-08-10 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693838,101,38.68,'2011-08-10 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693839,101,38.68,'2011-08-10 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693840,101,38.68,'2011-08-10 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693841,101,38.68,'2011-08-10 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693842,101,38.46,'2011-08-10 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693843,101,39.04,'2011-08-10 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693844,101,38.46,'2011-08-10 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693845,101,38.68,'2011-08-10 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693846,101,38.68,'2011-08-10 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693847,101,38.59,'2011-08-10 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693848,101,38.49,'2011-08-10 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13693849,101,38.41,'2011-08-10 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13693850,101,38.13,'2011-08-10 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13693851,101,37.96,'2011-08-10 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13693852,101,37.61,'2011-08-10 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13693853,101,37.61,'2011-08-10 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13693854,101,37.61,'2011-08-10 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13693855,101,37.61,'2011-08-10 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13693856,101,37.61,'2011-08-10 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13693857,101,37.61,'2011-08-10 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13693858,101,37.95,'2011-08-10 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13693859,101,38.22,'2011-08-11 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13693860,101,38.38,'2011-08-11 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13693861,101,38.38,'2011-08-11 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13693862,101,38.47,'2011-08-11 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13693863,101,38.38,'2011-08-11 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13693864,101,38.65,'2011-08-11 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13693865,101,38.55,'2011-08-11 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13693866,101,38.65,'2011-08-11 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13693867,101,38.46,'2011-08-11 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13693868,101,38.55,'2011-08-11 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13693869,101,38.37,'2011-08-11 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13693870,101,38.37,'2011-08-11 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13693871,101,38.37,'2011-08-11 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13693872,101,38.1,'2011-08-11 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13697942,31,13.21,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13697943,31,13.2,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13697944,31,13.11,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13697945,31,13.19,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13697946,31,13.2,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13697947,31,12.86,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13697948,31,12.76,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13697949,31,12.71,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13697950,31,12.67,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13697951,31,12.59,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13697952,31,12.61,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13697953,31,12.57,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13697954,31,12.56,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13697955,31,12.53,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13697956,31,12.5,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13697957,31,12.48,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13697958,31,12.47,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13697959,31,12.51,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13697960,31,12.87,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13697961,31,13.38,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13697962,31,13.34,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13697963,31,13.3,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13697964,31,13.28,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13697965,31,13.26,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13697966,32,3.065,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13697967,32,3.04,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13697968,32,3.744,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13697969,32,3.046,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13697970,32,2.328,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13697971,32,2.201,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13697972,32,1.152,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13697973,32,1.768,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13697974,32,1.898,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13697975,32,1.603,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13697976,32,1.919,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13697977,32,2.117,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13697978,32,2.244,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13697979,32,1.98,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13697980,32,0.686,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13697981,32,1.233,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13697982,32,1.011,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13697983,32,0.807,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13697984,32,1.361,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13697985,32,3.256,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13697986,32,2.518,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13697987,32,2.89,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13697988,32,3.12,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13697989,32,2.405,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13697990,33,299.4,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13697991,33,275.5,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13697992,33,242.2,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13697993,33,210.5,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13697994,33,221.4,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13697995,33,237.6,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13697996,33,240,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13697997,33,219.9,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13697998,33,212.3,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13697999,33,222.6,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698000,33,211.3,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698001,33,218.6,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698002,33,216.7,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698003,33,215.3,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698004,33,194.6,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698005,33,240.7,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698006,33,224.5,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698007,33,15.21,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698008,33,35.2,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698009,33,34.14,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698010,33,47.65,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698011,33,45.12,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698012,33,44.33,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698013,33,47.87,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698014,34,34.5,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698015,34,40.46,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698016,34,23.5,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698017,34,28.43,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698018,34,12.59,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698019,34,12.24,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698020,34,51.48,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698021,34,37.27,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698022,34,21.7,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698023,34,28.07,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698024,34,19.14,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698025,34,21.26,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698026,34,15.05,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698027,34,21.64,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698028,34,33.54,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698029,34,46.78,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698030,34,61.86,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698031,34,89.5,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698032,34,29.64,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698033,34,15.05,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698034,34,15.74,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698035,34,16.61,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698036,34,15.92,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698037,34,20.45,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698038,35,629.3,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13698039,35,629.2,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13698040,35,629,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13698041,35,628.8,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13698042,35,628.6,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13698043,35,628.6,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13698044,35,629.1,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13698045,35,629.9,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13698046,35,630,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13698047,35,630.1,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13698048,35,630.3,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13698049,35,630.2,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13698050,35,630.3,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13698051,35,630.4,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13698052,35,630.5,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13698053,35,630.7,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13698054,35,631,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13698055,35,631.3,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13698056,35,631.6,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13698057,35,631.9,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13698058,35,632,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13698059,35,632,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13698060,35,631.9,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13698061,35,631.7,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13698062,30,0,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698063,30,0,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698064,30,0,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698065,30,0,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698066,30,0,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698067,30,0,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698068,30,0,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698069,30,0,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698070,30,0,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698071,30,0,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698072,30,0,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698073,30,0,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698074,30,0,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698075,30,0,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698076,30,0,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698077,30,0,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698078,30,0,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698079,30,0,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698080,30,0,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698081,30,0,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698082,30,0,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698083,30,0,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698084,30,0,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698085,30,0,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698086,28,27.74,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698087,28,28.12,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698088,28,28.33,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698089,28,28.1,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698090,28,27.48,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698091,28,23.41,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698092,28,19.14,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698093,28,17.07,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698094,28,14.53,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698095,28,13.32,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698096,28,12.85,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698097,28,12.46,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698098,28,12.19,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698099,28,11.76,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698100,28,11.48,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698101,28,12.14,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698102,28,12.56,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698103,28,14.99,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698104,28,19.32,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698105,28,18.47,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698106,28,20.1,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698107,28,22.23,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698108,28,23.73,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698109,28,25.2,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698110,29,17.96,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698111,29,15.54,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698112,29,12.8,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698113,29,14.28,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698114,29,15.99,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698115,29,31.88,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698116,29,37.06,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698117,29,44.44,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698118,29,53.64,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698119,29,53.63,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698120,29,55.51,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698121,29,57.11,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698122,29,57.29,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698123,29,59.29,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698124,29,59.28,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698125,29,51.97,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698126,29,52.17,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698127,29,48.68,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698128,29,45.52,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698129,29,44.43,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698130,29,36.43,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698131,29,36.7,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698132,29,30.69,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698133,29,23.38,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698134,36,1066,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698135,36,972,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698136,36,816,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698137,36,606.5,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698138,36,367.5,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698139,36,107.9,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698140,36,7.84,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698141,36,0,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698142,36,0,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698143,36,0,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698144,36,0,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698145,36,0,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698146,36,0,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698147,36,0,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698148,36,0,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698149,36,0,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698150,36,7.227,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698151,36,146.4,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698152,36,380.9,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698153,36,610.2,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698154,36,814,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698155,36,968,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698156,36,1065,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698157,36,1102,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698158,46,1.527,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698159,46,1.543,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698160,46,1.547,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698161,46,1.587,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698162,46,1.394,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698163,46,1.379,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698164,46,1.388,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698165,46,1.465,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698166,46,1.411,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698167,46,1.427,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698168,46,1.482,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698169,46,1.454,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698170,46,1.445,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698171,46,1.475,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698172,46,1.634,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698173,46,1.616,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698174,46,1.43,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698175,46,1.439,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698176,46,1.56,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698177,46,1.53,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698178,46,1.344,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698179,46,1.565,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698180,46,0.978,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698181,46,1.049,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698182,47,1.603,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698183,47,1.621,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698184,47,1.626,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698185,47,1.667,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698186,47,1.462,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698187,47,1.437,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698188,47,1.436,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698189,47,1.511,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698190,47,1.449,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698191,47,1.461,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698192,47,1.516,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698193,47,1.487,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698194,47,1.477,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698195,47,1.506,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698196,47,1.668,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698197,47,1.651,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698198,47,1.463,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698199,47,1.478,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698200,47,1.614,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698201,47,1.581,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698202,47,1.392,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698203,47,1.628,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698204,47,1.019,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698205,47,1.097,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698206,48,0.167,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13698207,48,0.149,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13698208,48,0.144,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13698209,48,0.103,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13698210,48,0.308,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13698211,48,0.333,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13698212,48,0.334,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13698213,48,0.259,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13698214,48,0.321,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13698215,48,0.309,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13698216,48,0.254,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13698217,48,0.283,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13698218,48,0.293,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13698219,48,0.264,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13698220,48,0.102,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13698221,48,0.119,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13698222,48,0.307,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13698223,48,0.292,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13698224,48,0.156,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13698225,48,0.189,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13698226,48,0.378,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13698227,48,0.142,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13698228,48,0.751,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13698229,48,0.673,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13698230,41,20.23,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698231,40,28.84,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698232,39,12.23,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698233,37,12.5,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698234,43,628.7,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698235,44,0,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698236,42,35.94,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698237,45,32.12392,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698238,38,2.096,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698239,51,0,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698240,53,2.172,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698241,49,1.444,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698242,52,0,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698243,54,2.226,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698244,50,1.496,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698245,56,-0.456,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698246,57,1.77,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13698247,55,0.274,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13700408,58,0.214,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700409,58,0.217,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700410,58,0.216,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700411,58,0.211,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700412,58,0.213,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700413,58,0.211,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700414,58,0.207,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700415,58,0.204,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700416,58,0.204,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700417,58,0.199,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700418,58,0.197,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700419,58,0.198,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700420,58,0.196,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700421,58,0.195,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700422,58,0.194,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700423,58,0.192,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700424,58,0.192,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700425,58,0.19,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700426,58,0.192,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700427,58,0.193,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700428,58,0.194,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700429,58,0.196,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700430,58,0.199,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700431,58,0.201,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700432,63,0.027,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700433,63,0.027,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700434,63,0.027,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700435,63,0.027,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700436,63,0.026,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700437,63,0.026,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700438,63,0.025,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700439,63,0.025,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700440,63,0.025,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700441,63,0.025,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700442,63,0.025,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700443,63,0.025,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700444,63,0.025,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700445,63,0.025,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700446,63,0.025,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700447,63,0.025,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700448,63,0.024,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700449,63,0.025,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700450,63,0.024,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700451,63,0.025,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700452,63,0.025,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700453,63,0.025,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700454,63,0.025,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700455,63,0.025,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700456,73,27.98,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700457,73,28.9,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700458,73,29.2,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700459,73,29.05,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700460,73,28.37,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700461,73,27.7,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700462,73,26.55,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700463,73,25.55,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700464,73,24.6,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700465,73,23.75,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700466,73,23.15,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700467,73,22.55,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700468,73,21.95,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700469,73,21.55,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700470,73,21.1,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700471,73,20.65,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700472,73,20.2,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700473,73,19.95,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700474,73,20.1,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700475,73,20.95,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700476,73,21.98,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700477,73,23.43,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700478,73,24.85,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700479,73,26.28,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700480,78,82.4,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700481,78,84,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700482,78,84.6,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700483,78,84.3,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700484,78,83.1,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700485,78,81.9,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700486,78,79.77,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700487,78,78.07,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700488,78,76.25,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700489,78,74.8,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700490,78,73.65,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700491,78,72.55,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700492,78,71.6,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700493,78,70.8,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700494,78,69.97,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700495,78,69.15,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700496,78,68.35,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700497,78,67.9,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700498,78,68.18,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700499,78,69.71,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700500,78,71.58,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700501,78,74.18,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700502,78,76.71,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700503,78,79.33,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700504,64,0.028,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700505,64,0.028,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700506,64,0.028,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700507,64,0.028,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700508,64,0.027,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700509,64,0.026,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700510,64,0.026,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700511,64,0.025,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700512,64,0.025,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700513,64,0.025,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700514,64,0.024,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700515,64,0.024,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700516,64,0.024,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700517,64,0.023,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700518,64,0.023,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700519,64,0.023,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700520,64,0.023,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700521,64,0.023,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700522,64,0.023,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700523,64,0.023,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700524,64,0.024,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700525,64,0.024,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700526,64,0.025,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700527,64,0.025,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700528,84,13,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700529,84,13.18,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700530,84,13.13,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700531,84,12.81,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700532,84,12.92,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700533,84,12.8,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700534,84,12.53,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700535,84,12.37,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700536,84,12.32,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700537,84,12.02,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700538,84,11.9,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700539,84,11.95,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700540,84,11.83,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700541,84,11.75,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700542,84,11.73,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700543,84,11.58,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700544,84,11.59,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700545,84,11.43,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700546,84,11.57,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700547,84,11.62,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700548,84,11.71,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700549,84,11.83,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700550,84,12.02,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700551,84,12.15,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700552,94,10.12,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700553,94,10.15,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700554,94,10.17,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700555,94,10.19,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700556,94,9.83,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700557,94,9.58,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700558,94,9.38,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700559,94,9.17,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700560,94,8.94,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700561,94,8.89,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700562,94,8.77,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700563,94,8.58,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700564,94,8.53,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700565,94,8.45,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700566,94,8.31,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700567,94,8.28,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700568,94,8.18,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700569,94,8.19,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700570,94,8.15,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700571,94,8.32,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700572,94,8.53,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700573,94,8.76,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700574,94,8.88,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700575,94,9.07,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700576,83,13.39,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700577,83,13.6,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700578,83,13.56,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700579,83,13.22,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700580,83,13.32,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700581,83,13.16,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700582,83,12.85,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700583,83,12.66,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700584,83,12.58,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700585,83,12.26,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700586,83,12.11,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700587,83,12.14,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700588,83,12,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700589,83,11.91,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700590,83,11.88,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700591,83,11.72,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700592,83,11.72,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700593,83,11.55,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700594,83,11.7,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700595,83,11.77,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700596,83,11.89,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700597,83,12.05,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700598,83,12.28,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700599,83,12.47,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700600,93,9.68,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700601,93,9.6,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700602,93,9.58,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700603,93,9.62,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700604,93,9.36,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700605,93,9.25,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700606,93,9.19,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700607,93,9.13,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700608,93,9.01,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700609,93,9.07,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700610,93,9.04,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700611,93,8.92,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700612,93,8.93,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700613,93,8.91,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700614,93,8.84,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700615,93,8.86,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700616,93,8.8,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700617,93,8.84,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700618,93,8.78,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700619,93,8.83,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700620,93,8.9,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700621,93,8.96,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700622,93,8.9,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700623,93,8.9,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700624,59,0.302,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700625,59,0.303,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700626,59,0.304,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700627,59,0.303,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700628,59,0.305,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700629,59,0.305,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700630,59,0.302,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700631,59,0.301,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700632,59,0.298,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700633,59,0.299,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700634,59,0.299,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700635,59,0.296,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700636,59,0.296,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700637,59,0.293,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700638,59,0.292,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700639,59,0.291,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700640,59,0.29,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700641,59,0.29,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700642,59,0.29,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700643,59,0.29,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700644,59,0.289,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700645,59,0.29,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700646,59,0.292,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700647,59,0.295,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700648,65,0.045,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700649,65,0.045,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700650,65,0.046,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700651,65,0.045,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700652,65,0.045,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700653,65,0.045,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700654,65,0.045,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700655,65,0.045,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700656,65,0.045,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700657,65,0.044,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700658,65,0.044,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700659,65,0.044,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700660,65,0.043,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700661,65,0.043,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700662,65,0.043,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700663,65,0.043,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700664,65,0.043,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700665,65,0.043,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700666,65,0.042,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700667,65,0.043,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700668,65,0.043,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700669,65,0.042,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700670,65,0.043,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700671,65,0.043,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700672,74,26.03,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700673,74,27,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700674,74,27.5,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700675,74,27.65,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700676,74,27.5,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700677,74,27.35,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700678,74,26.87,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700679,74,26.42,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700680,74,25.62,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700681,74,25.07,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700682,74,24.5,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700683,74,23.92,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700684,74,23.5,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700685,74,22.95,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700686,74,22.5,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700687,74,22.05,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700688,74,21.75,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700689,74,21.35,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700690,74,21.1,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700691,74,21.15,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700692,74,21.55,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700693,74,22.25,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700694,74,23.33,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700695,74,24.73,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700696,79,78.86,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700697,79,80.6,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700698,79,81.5,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700699,79,81.8,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700700,79,81.5,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700701,79,81.2,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700702,79,80.4,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700703,79,79.52,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700704,79,78.17,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700705,79,77.15,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700706,79,76.05,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700707,79,75.1,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700708,79,74.3,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700709,79,73.3,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700710,79,72.45,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700711,79,71.8,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700712,79,71.2,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700713,79,70.4,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700714,79,70,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700715,79,70.08,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700716,79,70.8,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700717,79,72.08,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700718,79,73.98,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700719,79,76.51,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700720,66,0.046,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700721,66,0.046,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700722,66,0.047,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700723,66,0.047,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700724,66,0.046,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700725,66,0.046,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700726,66,0.047,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700727,66,0.046,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700728,66,0.045,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700729,66,0.044,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700730,66,0.044,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700731,66,0.043,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700732,66,0.042,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700733,66,0.042,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700734,66,0.042,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700735,66,0.041,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700736,66,0.041,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700737,66,0.041,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700738,66,0.04,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700739,66,0.04,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700740,66,0.041,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700741,66,0.041,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700742,66,0.042,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700743,66,0.043,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700744,86,19.5,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700745,86,19.57,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700746,86,19.64,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700747,86,19.54,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700748,86,19.65,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700749,86,19.74,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700750,86,19.43,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700751,86,19.43,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700752,86,19.15,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700753,86,19.26,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700754,86,19.23,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700755,86,18.99,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700756,86,19,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700757,86,18.71,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700758,86,18.71,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700759,86,18.63,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700760,86,18.54,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700761,86,18.52,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700762,86,18.53,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700763,86,18.49,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700764,86,18.44,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700765,86,18.52,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700766,86,18.62,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700767,86,18.89,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700768,96,16.47,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700769,96,16.71,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700770,96,16.87,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700771,96,16.96,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700772,96,16.77,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700773,96,16.57,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700774,96,16.67,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700775,96,16.41,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700776,96,16.24,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700777,96,15.91,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700778,96,15.63,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700779,96,15.6,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700780,96,15.28,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700781,96,15.28,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700782,96,15.03,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700783,96,14.9,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700784,96,14.74,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700785,96,14.57,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700786,96,14.42,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700787,96,14.47,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700788,96,14.58,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700789,96,14.73,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700790,96,15.04,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700791,96,15.27,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700792,85,19.98,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700793,85,20.1,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700794,85,20.19,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700795,85,20.1,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700796,85,20.21,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700797,85,20.3,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700798,85,19.96,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700799,85,19.94,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700800,85,19.62,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700801,85,19.71,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700802,85,19.65,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700803,85,19.39,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700804,85,19.37,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700805,85,19.06,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700806,85,19.04,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700807,85,18.94,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700808,85,18.83,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700809,85,18.8,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700810,85,18.8,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700811,85,18.75,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700812,85,18.72,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700813,85,18.83,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700814,85,18.97,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700815,85,19.3,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700816,95,16.25,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700817,95,16.28,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700818,95,16.32,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700819,95,16.36,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700820,95,16.17,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700821,95,16.03,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700822,95,16.19,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700823,95,16.05,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700824,95,16.03,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700825,95,15.83,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700826,95,15.68,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700827,95,15.77,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700828,95,15.55,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700829,95,15.66,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700830,95,15.5,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700831,95,15.45,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700832,95,15.37,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700833,95,15.28,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700834,95,15.18,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700835,95,15.23,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700836,95,15.27,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700837,95,15.29,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700838,95,15.39,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700839,95,15.36,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700840,60,0.371,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700841,60,0.367,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700842,60,0.369,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700843,60,0.371,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700844,60,0.375,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700845,60,0.375,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700846,60,0.372,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700847,60,0.373,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700848,60,0.369,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700849,60,0.371,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700850,60,0.374,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700851,60,0.369,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700852,60,0.371,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700853,60,0.372,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700854,60,0.377,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700855,60,0.372,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700856,60,0.372,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700857,60,0.373,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700858,60,0.37,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700859,60,0.367,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700860,60,0.37,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700861,60,0.37,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700862,60,0.37,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700863,60,0.371,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700864,67,0.084,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700865,67,0.085,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700866,67,0.085,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700867,67,0.085,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700868,67,0.084,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700869,67,0.085,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700870,67,0.086,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700871,67,0.086,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700872,67,0.086,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700873,67,0.085,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700874,67,0.085,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700875,67,0.086,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700876,67,0.086,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700877,67,0.085,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700878,67,0.084,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700879,67,0.085,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700880,67,0.085,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700881,67,0.084,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700882,67,0.085,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700883,67,0.085,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700884,67,0.084,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700885,67,0.084,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700886,67,0.084,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700887,67,0.084,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700888,75,23.3,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700889,75,23.45,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700890,75,23.55,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700891,75,23.85,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700892,75,24.13,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700893,75,24.35,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700894,75,24.63,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700895,75,24.63,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700896,75,24.85,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700897,75,24.75,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700898,75,24.75,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700899,75,24.7,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700900,75,24.7,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700901,75,24.47,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700902,75,24.35,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700903,75,24.2,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700904,75,24.05,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700905,75,23.9,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700906,75,23.65,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700907,75,23.55,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700908,75,23.45,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700909,75,23.3,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700910,75,23.3,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700911,75,23.3,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700912,80,73.9,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700913,80,74.2,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700914,80,74.4,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700915,80,75,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700916,80,75.4,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700917,80,75.8,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700918,80,76.28,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700919,80,76.28,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700920,80,76.7,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700921,80,76.5,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700922,80,76.5,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700923,80,76.4,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700924,80,76.4,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700925,80,76.02,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700926,80,75.8,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700927,80,75.5,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700928,80,75.3,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700929,80,75.1,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700930,80,74.6,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700931,80,74.4,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700932,80,74.2,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700933,80,73.9,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700934,80,73.9,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700935,80,73.9,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700936,68,0.082,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700937,68,0.083,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700938,68,0.084,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700939,68,0.084,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700940,68,0.083,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700941,68,0.084,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700942,68,0.085,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700943,68,0.085,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700944,68,0.086,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700945,68,0.085,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700946,68,0.085,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700947,68,0.086,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700948,68,0.085,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700949,68,0.085,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700950,68,0.084,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700951,68,0.084,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700952,68,0.084,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700953,68,0.083,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700954,68,0.083,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700955,68,0.083,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700956,68,0.082,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700957,68,0.082,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700958,68,0.082,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700959,68,0.082,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700960,88,25.45,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700961,88,25.06,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700962,88,25.31,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700963,88,25.48,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700964,88,25.81,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700965,88,25.81,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700966,88,25.58,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700967,88,25.67,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700968,88,25.33,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700969,88,25.44,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700970,88,25.8,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700971,88,25.28,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700972,88,25.43,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700973,88,25.55,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700974,88,26.04,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700975,88,25.51,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13700976,88,25.57,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13700977,88,25.63,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13700978,88,25.39,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13700979,88,25.04,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13700980,88,25.38,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13700981,88,25.34,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13700982,88,25.34,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13700983,88,25.41,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13700984,98,29.54,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13700985,98,29.94,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13700986,98,30.01,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13700987,98,29.99,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13700988,98,29.94,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13700989,98,30.15,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13700990,98,30.52,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13700991,98,30.63,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13700992,98,30.91,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13700993,98,30.81,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13700994,98,30.56,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13700995,98,30.84,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13700996,98,30.56,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13700997,98,30.48,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13700998,98,29.98,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13700999,98,30.23,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701000,98,30.1,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701001,98,29.95,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701002,98,29.89,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701003,98,29.92,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701004,98,29.67,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701005,98,29.64,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701006,98,29.63,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701007,98,29.5,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701008,87,25.92,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701009,87,25.53,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701010,87,25.8,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701011,87,25.99,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701012,87,26.34,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701013,87,26.36,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701014,87,26.13,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701015,87,26.23,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701016,87,25.89,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701017,87,26.01,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701018,87,26.37,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701019,87,25.83,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701020,87,25.98,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701021,87,26.09,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701022,87,26.59,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701023,87,26.04,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701024,87,26.09,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701025,87,26.14,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701026,87,25.88,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701027,87,25.52,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701028,87,25.86,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701029,87,25.81,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701030,87,25.8,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701031,87,25.87,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701032,97,30.28,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701033,97,30.63,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701034,97,30.6,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701035,97,30.47,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701036,97,30.3,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701037,97,30.42,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701038,97,30.72,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701039,97,30.77,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701040,97,30.99,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701041,97,30.89,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701042,97,30.67,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701043,97,30.96,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701044,97,30.74,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701045,97,30.71,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701046,97,30.26,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701047,97,30.59,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701048,97,30.5,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701049,97,30.45,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701050,97,30.44,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701051,97,30.55,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701052,97,30.36,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701053,97,30.38,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701054,97,30.4,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701055,97,30.28,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701056,61,0.265,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701057,61,0.267,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701058,61,0.265,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701059,61,0.264,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701060,61,0.267,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701061,61,0.267,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701062,61,0.265,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701063,61,0.265,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701064,61,0.264,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701065,61,0.263,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701066,61,0.262,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701067,61,0.262,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701068,61,0.261,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701069,61,0.26,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701070,61,0.26,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701071,61,0.261,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701072,61,0.26,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701073,61,0.26,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701074,61,0.261,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701075,61,0.262,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701076,61,0.262,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701077,61,0.264,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701078,61,0.265,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701079,61,0.265,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701080,69,0.045,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701081,69,0.045,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701082,69,0.045,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701083,69,0.046,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701084,69,0.045,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701085,69,0.045,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701086,69,0.045,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701087,69,0.045,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701088,69,0.045,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701089,69,0.046,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701090,69,0.046,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701091,69,0.046,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701092,69,0.046,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701093,69,0.046,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701094,69,0.046,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701095,69,0.046,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701096,69,0.046,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701097,69,0.046,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701098,69,0.046,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701099,69,0.046,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701100,69,0.046,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701101,69,0.045,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701102,69,0.045,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701103,69,0.045,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701104,76,23.07,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701105,76,23,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701106,76,23,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701107,76,23,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701108,76,23,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701109,76,22.95,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701110,76,23,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701111,76,23,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701112,76,23,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701113,76,23.08,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701114,76,23.3,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701115,76,23.3,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701116,76,23.3,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701117,76,23.3,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701118,76,23.3,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701119,76,23.3,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701120,76,23.3,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701121,76,23.35,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701122,76,23.4,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701123,76,23.3,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701124,76,23.3,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701125,76,23.3,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701126,76,23.3,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701127,76,23.3,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701128,81,73.52,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701129,81,73.4,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701130,81,73.4,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701131,81,73.4,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701132,81,73.4,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701133,81,73.3,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701134,81,73.4,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701135,81,73.4,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701136,81,73.4,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701137,81,73.53,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701138,81,73.9,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701139,81,73.9,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701140,81,73.9,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701141,81,73.9,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701142,81,73.9,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701143,81,73.9,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701144,81,73.9,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701145,81,74,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701146,81,74.1,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701147,81,73.9,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701148,81,73.9,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701149,81,73.9,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701150,81,73.9,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701151,81,73.9,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701152,70,0.044,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701153,70,0.044,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701154,70,0.044,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701155,70,0.044,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701156,70,0.044,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701157,70,0.044,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701158,70,0.044,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701159,70,0.044,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701160,70,0.044,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701161,70,0.045,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701162,70,0.045,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701163,70,0.045,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701164,70,0.045,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701165,70,0.045,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701166,70,0.045,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701167,70,0.045,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701168,70,0.045,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701169,70,0.045,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701170,70,0.045,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701171,70,0.045,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701172,70,0.045,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701173,70,0.044,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701174,70,0.044,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701175,70,0.044,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701176,90,16.61,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701177,90,16.72,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701178,90,16.65,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701179,90,16.54,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701180,90,16.76,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701181,90,16.76,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701182,90,16.61,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701183,90,16.61,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701184,90,16.55,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701185,90,16.49,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701186,90,16.36,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701187,90,16.39,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701188,90,16.27,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701189,90,16.2,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701190,90,16.2,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701191,90,16.32,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701192,90,16.2,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701193,90,16.2,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701194,90,16.27,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701195,90,16.39,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701196,90,16.37,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701197,90,16.49,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701198,90,16.62,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701199,90,16.61,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701200,100,15.92,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701201,100,15.75,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701202,100,15.77,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701203,100,15.84,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701204,100,15.69,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701205,100,15.69,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701206,100,15.92,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701207,100,15.92,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701208,100,15.95,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701209,100,15.98,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701210,100,16.04,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701211,100,16.07,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701212,100,16.24,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701213,100,16.27,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701214,100,16.27,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701215,100,16.2,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701216,100,16.27,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701217,100,16.27,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701218,100,16.24,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701219,100,16.07,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701220,100,16.04,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701221,100,15.98,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701222,100,15.93,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701223,100,15.92,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701224,89,16.92,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701225,89,17.03,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701226,89,16.96,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701227,89,16.84,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701228,89,17.07,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701229,89,17.07,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701230,89,16.91,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701231,89,16.91,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701232,89,16.85,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701233,89,16.79,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701234,89,16.67,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701235,89,16.7,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701236,89,16.57,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701237,89,16.51,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701238,89,16.51,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701239,89,16.63,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701240,89,16.51,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701241,89,16.51,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701242,89,16.58,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701243,89,16.7,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701244,89,16.68,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701245,89,16.81,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701246,89,16.93,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701247,89,16.93,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701248,99,16.31,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701249,99,16.14,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701250,99,16.17,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701251,99,16.24,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701252,99,16.09,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701253,99,16.09,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701254,99,16.32,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701255,99,16.32,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701256,99,16.35,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701257,99,16.37,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701258,99,16.42,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701259,99,16.44,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701260,99,16.61,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701261,99,16.64,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701262,99,16.63,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701263,99,16.55,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701264,99,16.63,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701265,99,16.62,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701266,99,16.59,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701267,99,16.41,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701268,99,16.39,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701269,99,16.33,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701270,99,16.28,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701271,99,16.29,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701272,62,0.386,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701273,62,0.387,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701274,62,0.387,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701275,62,0.387,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701276,62,0.387,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701277,62,0.387,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701278,62,0.387,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701279,62,0.387,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701280,62,0.387,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701281,62,0.387,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701282,62,0.387,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701283,62,0.387,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701284,62,0.386,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701285,62,0.382,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701286,62,0.38,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701287,62,0.378,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701288,62,0.375,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701289,62,0.375,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701290,62,0.375,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701291,62,0.38,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701292,62,0.382,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701293,62,0.378,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701294,62,0.382,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701295,62,0.387,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701296,71,0.105,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701297,71,0.104,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701298,71,0.104,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701299,71,0.104,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701300,71,0.104,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701301,71,0.104,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701302,71,0.104,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701303,71,0.104,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701304,71,0.104,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701305,71,0.104,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701306,71,0.104,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701307,71,0.104,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701308,71,0.104,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701309,71,0.106,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701310,71,0.106,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701311,71,0.107,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701312,71,0.107,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701313,71,0.107,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701314,71,0.107,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701315,71,0.106,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701316,71,0.106,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701317,71,0.106,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701318,71,0.106,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701319,71,0.104,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701320,77,20.65,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701321,77,20.7,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701322,77,20.65,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701323,77,20.7,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701324,77,20.7,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701325,77,20.65,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701326,77,20.7,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701327,77,20.7,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701328,77,20.7,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701329,77,20.7,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701330,77,20.65,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701331,77,20.7,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701332,77,20.7,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701333,77,20.7,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701334,77,20.65,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701335,77,20.7,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701336,77,20.7,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701337,77,20.75,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701338,77,20.7,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701339,77,20.7,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701340,77,20.65,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701341,77,20.7,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701342,77,20.75,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701343,77,20.65,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701344,82,69.13,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701345,82,69.2,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701346,82,69.13,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701347,82,69.2,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701348,82,69.2,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701349,82,69.12,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701350,82,69.2,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701351,82,69.2,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701352,82,69.2,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701353,82,69.2,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701354,82,69.12,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701355,82,69.2,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701356,82,69.2,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701357,82,69.2,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701358,82,69.12,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701359,82,69.2,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701360,82,69.2,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701361,82,69.3,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701362,82,69.2,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701363,82,69.2,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701364,82,69.13,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701365,82,69.2,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701366,82,69.3,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701367,82,69.12,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701368,72,0.098,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701369,72,0.098,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701370,72,0.098,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701371,72,0.098,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701372,72,0.098,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701373,72,0.098,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701374,72,0.098,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701375,72,0.098,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701376,72,0.098,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701377,72,0.098,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701378,72,0.098,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701379,72,0.098,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701380,72,0.098,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701381,72,0.1,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701382,72,0.1,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701383,72,0.101,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701384,72,0.101,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701385,72,0.101,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701386,72,0.101,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701387,72,0.1,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701388,72,0.1,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701389,72,0.101,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701390,72,0.1,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701391,72,0.098,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701392,92,26.84,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701393,92,26.95,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701394,92,26.95,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701395,92,26.95,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701396,92,26.95,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701397,92,26.95,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701398,92,26.95,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701399,92,26.95,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701400,92,26.95,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701401,92,26.95,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701402,92,26.95,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701403,92,26.95,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701404,92,26.84,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701405,92,26.52,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701406,92,26.31,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701407,92,26.19,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701408,92,25.87,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701409,92,25.87,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701410,92,25.87,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701411,92,26.36,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701412,92,26.52,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701413,92,26.2,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701414,92,26.47,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701415,92,26.95,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701416,102,35.45,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701417,102,35.29,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701418,102,35.29,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701419,102,35.29,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701420,102,35.29,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701421,102,35.29,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701422,102,35.29,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701423,102,35.29,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701424,102,35.29,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701425,102,35.29,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701426,102,35.29,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701427,102,35.29,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701428,102,35.45,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701429,102,35.94,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701430,102,35.95,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701431,102,36.11,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701432,102,36.29,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701433,102,36.29,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701434,102,36.29,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701435,102,36.02,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701436,102,35.94,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701437,102,36.11,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701438,102,35.86,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701439,102,35.29,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701440,91,27.18,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701441,91,27.29,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701442,91,27.29,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701443,91,27.29,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701444,91,27.29,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701445,91,27.29,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701446,91,27.29,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701447,91,27.29,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701448,91,27.29,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701449,91,27.29,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701450,91,27.29,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701451,91,27.29,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701452,91,27.18,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701453,91,26.85,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701454,91,26.64,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701455,91,26.52,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701456,91,26.19,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701457,91,26.19,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701458,91,26.2,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701459,91,26.69,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701460,91,26.86,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701461,91,26.53,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701462,91,26.81,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701463,91,27.29,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13701464,101,37.76,'2011-08-11 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13701465,101,37.58,'2011-08-11 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13701466,101,37.59,'2011-08-11 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13701467,101,37.58,'2011-08-11 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13701468,101,37.58,'2011-08-11 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13701469,101,37.58,'2011-08-11 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13701470,101,37.58,'2011-08-11 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13701471,101,37.58,'2011-08-11 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13701472,101,37.58,'2011-08-11 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13701473,101,37.58,'2011-08-11 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13701474,101,37.58,'2011-08-12 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13701475,101,37.58,'2011-08-12 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13701476,101,37.75,'2011-08-12 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13701477,101,38.27,'2011-08-12 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13701478,101,38.28,'2011-08-12 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13701479,101,38.46,'2011-08-12 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13701480,101,38.65,'2011-08-12 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13701481,101,38.65,'2011-08-12 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13701482,101,38.64,'2011-08-12 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13701483,101,38.37,'2011-08-12 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13701484,101,38.27,'2011-08-12 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13701485,101,38.45,'2011-08-12 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13701486,101,38.17,'2011-08-12 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13701487,101,37.57,'2011-08-12 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705543,31,13.23,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705544,31,13.12,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705545,31,13.19,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705546,31,13.18,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705547,31,13.19,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705548,31,12.86,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705549,31,12.77,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705550,31,12.73,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705551,31,12.68,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705552,31,12.66,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705553,31,12.62,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705554,31,12.59,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705555,31,12.57,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705556,31,12.54,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705557,31,12.5,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705558,31,12.49,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705559,31,12.47,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705560,31,12.5,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705561,31,12.83,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705562,31,13.37,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705563,31,13.31,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705564,31,13.27,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705565,31,13.23,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705566,31,13.21,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705567,32,2.7,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705568,32,2.146,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705569,32,1.927,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705570,32,1.932,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705571,32,1.669,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705572,32,2.342,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705573,32,2.456,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705574,32,1.945,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705575,32,2.262,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705576,32,1.355,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705577,32,1.342,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705578,32,1.353,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705579,32,1.369,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705580,32,1.341,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705581,32,1.14,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705582,32,1.406,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705583,32,1.336,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705584,32,1.623,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705585,32,3.131,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705586,32,4.772,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705587,32,5.508,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705588,32,5.033,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705589,32,3.884,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705590,32,4.381,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705591,33,38.34,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705592,33,45.55,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705593,33,347,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705594,33,291.3,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705595,33,279.3,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705596,33,271.6,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705597,33,222.8,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705598,33,224.5,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705599,33,219.4,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705600,33,217.3,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705601,33,211.3,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705602,33,253.2,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705603,33,319.8,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705604,33,326.3,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705605,33,334.8,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705606,33,328.5,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705607,33,321.5,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705608,33,346.1,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705609,33,175.7,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705610,33,182.4,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705611,33,197.9,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705612,33,194.5,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705613,33,191.6,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705614,33,191.9,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705615,34,25.98,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705616,34,37.51,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705617,34,68.3,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705618,34,39.63,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705619,34,24.97,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705620,34,27.98,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705621,34,14.1,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705622,34,15.74,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705623,34,16.58,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705624,34,24.04,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705625,34,32.15,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705626,34,64.02,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705627,34,54.27,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705628,34,58.74,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705629,34,68.19,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705630,34,50.9,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705631,34,39.89,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705632,34,62.82,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705633,34,29.94,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705634,34,16.89,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705635,34,13.83,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705636,34,14.27,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705637,34,16.62,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705638,34,16.64,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705639,35,631.5,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13705640,35,631.3,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13705641,35,631,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13705642,35,630.8,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13705643,35,630.7,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13705644,35,630.8,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13705645,35,631,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13705646,35,631.3,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13705647,35,631.3,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13705648,35,631.3,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13705649,35,631.1,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13705650,35,631,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13705651,35,631,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13705652,35,630.9,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13705653,35,630.9,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13705654,35,631.1,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13705655,35,631.1,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13705656,35,631.3,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13705657,35,631.3,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13705658,35,631.2,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13705659,35,631,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13705660,35,630.9,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13705661,35,630.8,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13705662,35,630.4,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13705663,30,0,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705664,30,0,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705665,30,0,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705666,30,0,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705667,30,0,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705668,30,0,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705669,30,0,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705670,30,0,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705671,30,0,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705672,30,0,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705673,30,0,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705674,30,0,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705675,30,0,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705676,30,0,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705677,30,0,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705678,30,0,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705679,30,0,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705680,30,0,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705681,30,0,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705682,30,0,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705683,30,0,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705684,30,0,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705685,30,0,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705686,30,0,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705687,28,26.96,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705688,28,27.34,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705689,28,27.9,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705690,28,28.04,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705691,28,27.32,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705692,28,23.96,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705693,28,18.89,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705694,28,16.2,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705695,28,14.96,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705696,28,13.86,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705697,28,13.38,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705698,28,13.28,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705699,28,13.1,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705700,28,12.89,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705701,28,12.4,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705702,28,12.29,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705703,28,12.48,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705704,28,14.33,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705705,28,20.16,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705706,28,21.55,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705707,28,23.42,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705708,28,25.88,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705709,28,28.33,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705710,28,30.39,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705711,29,22.2,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705712,29,19.07,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705713,29,15.48,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705714,29,18.48,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705715,29,20.63,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705716,29,32.09,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705717,29,41.14,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705718,29,44.16,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705719,29,46.99,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705720,29,45.24,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705721,29,41.9,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705722,29,43.69,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705723,29,45.32,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705724,29,47.2,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705725,29,48.48,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705726,29,48.54,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705727,29,52.58,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705728,29,36.85,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705729,29,26.4,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705730,29,27.77,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705731,29,26.32,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705732,29,24.07,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705733,29,22.72,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705734,29,18.94,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705735,36,1059,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705736,36,961,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705737,36,807,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705738,36,600,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705739,36,363.4,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705740,36,103.9,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705741,36,7.182,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705742,36,0,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705743,36,0,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705744,36,0,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705745,36,0,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705746,36,0,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705747,36,0,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705748,36,0,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705749,36,0,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705750,36,0,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705751,36,7.421,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705752,36,143,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705753,36,372.7,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705754,36,609.2,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705755,36,806,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705756,36,933,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705757,36,993,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705758,36,1065,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705759,46,1.296,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705760,46,1.443,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705761,46,1.451,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705762,46,1.403,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705763,46,1.477,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705764,46,1.51,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705765,46,1.517,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705766,46,1.444,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705767,46,1.409,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705768,46,1.415,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705769,46,1.417,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705770,46,1.419,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705771,46,1.517,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705772,46,1.416,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705773,46,1.48,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705774,46,1.42,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705775,46,1.452,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705776,46,1.416,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705777,46,1.452,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705778,46,1.344,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705779,46,1.417,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705780,46,1.672,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705781,46,1.396,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705782,46,1.386,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705783,47,1.358,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705784,47,1.514,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705785,47,1.523,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705786,47,1.474,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705787,47,1.549,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705788,47,1.576,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705789,47,1.569,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705790,47,1.487,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705791,47,1.448,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705792,47,1.451,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705793,47,1.451,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705794,47,1.453,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705795,47,1.553,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705796,47,1.449,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705797,47,1.513,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705798,47,1.451,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705799,47,1.485,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705800,47,1.452,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705801,47,1.504,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705802,47,1.395,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705803,47,1.476,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705804,47,1.749,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705805,47,1.466,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705806,47,1.461,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705807,48,0.412,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13705808,48,0.256,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13705809,48,0.247,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13705810,48,0.296,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13705811,48,0.221,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13705812,48,0.194,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13705813,48,0.201,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13705814,48,0.283,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13705815,48,0.322,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13705816,48,0.319,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13705817,48,0.319,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13705818,48,0.317,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13705819,48,0.217,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13705820,48,0.321,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13705821,48,0.257,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13705822,48,0.319,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13705823,48,0.285,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13705824,48,0.318,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13705825,48,0.266,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13705826,48,0.375,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13705827,48,0.294,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13705828,48,0.021,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13705829,48,0.304,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13705830,48,0.309,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13705831,41,18.98,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705832,40,28.73,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705833,39,11.21,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705834,37,12.47,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705835,43,631.1,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705836,44,0,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705837,42,39.67,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705838,45,32.036,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705839,38,1.988,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705840,51,0,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705841,53,1.841,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705842,49,1.429,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705843,52,0,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705844,54,1.927,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705845,50,1.477,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705846,56,-0.157,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705847,57,1.77,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13705848,55,0.293,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13708009,58,0.203,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708010,58,0.204,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708011,58,0.205,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708012,58,0.204,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708013,58,0.2,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708014,58,0.198,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708015,58,0.196,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708016,58,0.194,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708017,58,0.19,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708018,58,0.189,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708019,58,0.187,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708020,58,0.186,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708021,58,0.184,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708022,58,0.183,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708023,58,0.183,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708024,58,0.182,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708025,58,0.183,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708026,58,0.18,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708027,58,0.182,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708028,58,0.182,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708029,58,0.183,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708030,58,0.187,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708031,58,0.19,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708032,58,0.191,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708033,63,0.025,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708034,63,0.024,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708035,63,0.024,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708036,63,0.024,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708037,63,0.024,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708038,63,0.023,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708039,63,0.023,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708040,63,0.023,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708041,63,0.023,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708042,63,0.023,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708043,63,0.023,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708044,63,0.023,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708045,63,0.023,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708046,63,0.023,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708047,63,0.023,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708048,63,0.023,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708049,63,0.023,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708050,63,0.023,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708051,63,0.023,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708052,63,0.023,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708053,63,0.023,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708054,63,0.023,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708055,63,0.023,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708056,63,0.023,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708057,73,27.83,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708058,73,28.9,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708059,73,29.35,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708060,73,29.05,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708061,73,28.37,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708062,73,27.57,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708063,73,26.47,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708064,73,25.45,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708065,73,24.6,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708066,73,23.75,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708067,73,23.02,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708068,73,22.42,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708069,73,21.85,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708070,73,21.3,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708071,73,20.9,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708072,73,20.5,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708073,73,20.05,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708074,73,19.7,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708075,73,19.9,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708076,73,20.7,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708077,73,21.93,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708078,73,23.43,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708079,73,24.8,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708080,73,26.5,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708081,78,82.1,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708082,78,84,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708083,78,84.8,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708084,78,84.3,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708085,78,83.1,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708086,78,81.6,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708087,78,79.64,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708088,78,77.82,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708089,78,76.25,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708090,78,74.8,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708091,78,73.42,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708092,78,72.35,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708093,78,71.4,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708094,78,70.32,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708095,78,69.6,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708096,78,68.87,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708097,78,68.1,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708098,78,67.5,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708099,78,67.83,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708100,78,69.26,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708101,78,71.51,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708102,78,74.18,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708103,78,76.61,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708104,78,79.68,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708105,64,0.026,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708106,64,0.026,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708107,64,0.026,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708108,64,0.025,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708109,64,0.025,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708110,64,0.024,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708111,64,0.024,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708112,64,0.023,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708113,64,0.023,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708114,64,0.023,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708115,64,0.022,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708116,64,0.022,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708117,64,0.022,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708118,64,0.022,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708119,64,0.021,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708120,64,0.021,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708121,64,0.021,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708122,64,0.021,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708123,64,0.021,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708124,64,0.021,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708125,64,0.022,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708126,64,0.022,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708127,64,0.023,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708128,64,0.024,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708129,84,12.26,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708130,84,12.34,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708131,84,12.4,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708132,84,12.37,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708133,84,12.11,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708134,84,11.96,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708135,84,11.82,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708136,84,11.69,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708137,84,11.49,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708138,84,11.42,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708139,84,11.31,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708140,84,11.24,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708141,84,11.08,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708142,84,11.01,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708143,84,11.05,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708144,84,10.96,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708145,84,11.01,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708146,84,10.83,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708147,84,10.95,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708148,84,10.96,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708149,84,11.04,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708150,84,11.25,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708151,84,11.44,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708152,84,11.54,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708153,94,9.31,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708154,94,9.31,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708155,94,9.31,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708156,94,9.14,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708157,94,9.02,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708158,94,8.8,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708159,94,8.6,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708160,94,8.42,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708161,94,8.29,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708162,94,8.16,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708163,94,8.05,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708164,94,7.914,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708165,94,7.881,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708166,94,7.802,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708167,94,7.682,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708168,94,7.646,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708169,94,7.53,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708170,94,7.573,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708171,94,7.52,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708172,94,7.706,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708173,94,7.893,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708174,94,8.05,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708175,94,8.23,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708176,94,8.44,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708177,83,12.63,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708178,83,12.74,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708179,83,12.81,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708180,83,12.77,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708181,83,12.48,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708182,83,12.3,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708183,83,12.12,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708184,83,11.96,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708185,83,11.74,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708186,83,11.64,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708187,83,11.51,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708188,83,11.42,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708189,83,11.25,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708190,83,11.16,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708191,83,11.19,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708192,83,11.09,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708193,83,11.13,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708194,83,10.94,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708195,83,11.06,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708196,83,11.1,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708197,83,11.21,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708198,83,11.46,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708199,83,11.69,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708200,83,11.84,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708201,93,8.92,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708202,93,8.81,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708203,93,8.76,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708204,93,8.62,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708205,93,8.59,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708206,93,8.5,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708207,93,8.44,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708208,93,8.38,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708209,93,8.36,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708210,93,8.33,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708211,93,8.3,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708212,93,8.24,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708213,93,8.28,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708214,93,8.26,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708215,93,8.19,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708216,93,8.2,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708217,93,8.13,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708218,93,8.21,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708219,93,8.12,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708220,93,8.21,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708221,93,8.25,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708222,93,8.24,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708223,93,8.25,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708224,93,8.24,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708225,59,0.298,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708226,59,0.298,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708227,59,0.299,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708228,59,0.299,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708229,59,0.3,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708230,59,0.3,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708231,59,0.297,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708232,59,0.299,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708233,59,0.297,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708234,59,0.293,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708235,59,0.293,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708236,59,0.293,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708237,59,0.292,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708238,59,0.29,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708239,59,0.288,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708240,59,0.286,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708241,59,0.284,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708242,59,0.285,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708243,59,0.284,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708244,59,0.284,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708245,59,0.284,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708246,59,0.285,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708247,59,0.287,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708248,59,0.29,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708249,65,0.043,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708250,65,0.043,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708251,65,0.044,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708252,65,0.043,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708253,65,0.043,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708254,65,0.043,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708255,65,0.043,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708256,65,0.042,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708257,65,0.043,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708258,65,0.043,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708259,65,0.042,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708260,65,0.042,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708261,65,0.042,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708262,65,0.042,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708263,65,0.042,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708264,65,0.042,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708265,65,0.041,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708266,65,0.041,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708267,65,0.041,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708268,65,0.041,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708269,65,0.041,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708270,65,0.041,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708271,65,0.041,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708272,65,0.041,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708273,74,26.08,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708274,74,27,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708275,74,27.58,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708276,74,27.8,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708277,74,27.57,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708278,74,27.42,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708279,74,26.92,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708280,74,26.3,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708281,74,25.62,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708282,74,25.07,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708283,74,24.5,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708284,74,23.87,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708285,74,23.45,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708286,74,22.9,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708287,74,22.45,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708288,74,22,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708289,74,21.65,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708290,74,21.3,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708291,74,21.1,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708292,74,21.1,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708293,74,21.45,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708294,74,22.13,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708295,74,23.2,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708296,74,24.43,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708297,79,78.95,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708298,79,80.6,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708299,79,81.6,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708300,79,82,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708301,79,81.6,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708302,79,81.4,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708303,79,80.5,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708304,79,79.3,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708305,79,78.17,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708306,79,77.15,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708307,79,76.05,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708308,79,75,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708309,79,74.2,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708310,79,73.2,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708311,79,72.37,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708312,79,71.7,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708313,79,71,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708314,79,70.32,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708315,79,70,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708316,79,70,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708317,79,70.6,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708318,79,71.88,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708319,79,73.76,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708320,79,75.96,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708321,66,0.043,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708322,66,0.044,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708323,66,0.045,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708324,66,0.045,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708325,66,0.045,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708326,66,0.044,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708327,66,0.044,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708328,66,0.043,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708329,66,0.043,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708330,66,0.043,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708331,66,0.042,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708332,66,0.041,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708333,66,0.041,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708334,66,0.04,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708335,66,0.04,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708336,66,0.04,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708337,66,0.04,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708338,66,0.039,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708339,66,0.039,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708340,66,0.039,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708341,66,0.039,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708342,66,0.04,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708343,66,0.04,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708344,66,0.041,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708345,86,19.15,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708346,86,19.17,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708347,86,19.23,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708348,86,19.27,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708349,86,19.3,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708350,86,19.31,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708351,86,19.09,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708352,86,19.26,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708353,86,19.05,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708354,86,18.7,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708355,86,18.78,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708356,86,18.8,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708357,86,18.66,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708358,86,18.55,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708359,86,18.39,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708360,86,18.17,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708361,86,18.03,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708362,86,18.1,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708363,86,18.03,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708364,86,18.03,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708365,86,18.01,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708366,86,18.12,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708367,86,18.29,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708368,86,18.51,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708369,96,15.56,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708370,96,15.91,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708371,96,16.14,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708372,96,16.07,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708373,96,16.1,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708374,96,15.94,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708375,96,15.92,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708376,96,15.56,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708377,96,15.47,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708378,96,15.42,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708379,96,15.08,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708380,96,14.86,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708381,96,14.75,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708382,96,14.5,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708383,96,14.45,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708384,96,14.41,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708385,96,14.28,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708386,96,14.14,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708387,96,14,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708388,96,14,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708389,96,14.06,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708390,96,14.22,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708391,96,14.35,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708392,96,14.7,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708393,85,19.61,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708394,85,19.69,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708395,85,19.77,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708396,85,19.83,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708397,85,19.85,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708398,85,19.85,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708399,85,19.61,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708400,85,19.76,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708401,85,19.52,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708402,85,19.14,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708403,85,19.2,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708404,85,19.19,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708405,85,19.02,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708406,85,18.9,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708407,85,18.71,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708408,85,18.47,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708409,85,18.31,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708410,85,18.37,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708411,85,18.29,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708412,85,18.29,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708413,85,18.28,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708414,85,18.41,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708415,85,18.63,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708416,85,18.9,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708417,95,15.37,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708418,95,15.5,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708419,95,15.6,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708420,95,15.49,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708421,95,15.52,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708422,95,15.42,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708423,95,15.48,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708424,95,15.23,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708425,95,15.27,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708426,95,15.34,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708427,95,15.13,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708428,95,15.02,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708429,95,15.02,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708430,95,14.87,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708431,95,14.92,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708432,95,14.96,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708433,95,14.91,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708434,95,14.83,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708435,95,14.75,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708436,95,14.75,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708437,95,14.76,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708438,95,14.79,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708439,95,14.73,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708440,95,14.83,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708441,60,0.371,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708442,60,0.368,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708443,60,0.367,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708444,60,0.363,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708445,60,0.375,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708446,60,0.373,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708447,60,0.373,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708448,60,0.372,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708449,60,0.372,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708450,60,0.376,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708451,60,0.376,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708452,60,0.375,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708453,60,0.374,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708454,60,0.376,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708455,60,0.372,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708456,60,0.372,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708457,60,0.373,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708458,60,0.372,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708459,60,0.369,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708460,60,0.372,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708461,60,0.368,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708462,60,0.371,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708463,60,0.368,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708464,60,0.368,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708465,67,0.084,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708466,67,0.085,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708467,67,0.085,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708468,67,0.086,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708469,67,0.084,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708470,67,0.085,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708471,67,0.085,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708472,67,0.085,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708473,67,0.085,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708474,67,0.084,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708475,67,0.084,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708476,67,0.085,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708477,67,0.085,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708478,67,0.084,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708479,67,0.085,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708480,67,0.085,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708481,67,0.085,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708482,67,0.084,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708483,67,0.085,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708484,67,0.084,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708485,67,0.084,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708486,67,0.084,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708487,67,0.084,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708488,67,0.084,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708489,75,23.23,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708490,75,23.45,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708491,75,23.55,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708492,75,23.85,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708493,75,24.05,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708494,75,24.3,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708495,75,24.63,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708496,75,24.7,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708497,75,24.7,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708498,75,24.85,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708499,75,24.75,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708500,75,24.7,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708501,75,24.62,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708502,75,24.47,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708503,75,24.35,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708504,75,24.2,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708505,75,24.05,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708506,75,23.85,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708507,75,23.65,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708508,75,23.5,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708509,75,23.45,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708510,75,23.3,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708511,75,23.3,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708512,75,23.3,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708513,80,73.78,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708514,80,74.2,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708515,80,74.4,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708516,80,75,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708517,80,75.3,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708518,80,75.7,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708519,80,76.28,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708520,80,76.4,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708521,80,76.4,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708522,80,76.7,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708523,80,76.5,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708524,80,76.4,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708525,80,76.27,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708526,80,76.03,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708527,80,75.8,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708528,80,75.5,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708529,80,75.3,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708530,80,75,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708531,80,74.6,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708532,80,74.3,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708533,80,74.2,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708534,80,73.9,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708535,80,73.9,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708536,80,73.9,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708537,68,0.082,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708538,68,0.082,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708539,68,0.083,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708540,68,0.085,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708541,68,0.083,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708542,68,0.084,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708543,68,0.085,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708544,68,0.085,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708545,68,0.085,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708546,68,0.084,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708547,68,0.084,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708548,68,0.084,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708549,68,0.085,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708550,68,0.084,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708551,68,0.084,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708552,68,0.084,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708553,68,0.084,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708554,68,0.083,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708555,68,0.083,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708556,68,0.082,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708557,68,0.082,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708558,68,0.082,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708559,68,0.082,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708560,68,0.082,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708561,88,25.46,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708562,88,25.21,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708563,88,25.08,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708564,88,24.67,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708565,88,25.81,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708566,88,25.62,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708567,88,25.64,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708568,88,25.52,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708569,88,25.6,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708570,88,25.93,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708571,88,25.9,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708572,88,25.8,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708573,88,25.76,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708574,88,25.88,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708575,88,25.56,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708576,88,25.58,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708577,88,25.58,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708578,88,25.56,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708579,88,25.23,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708580,88,25.57,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708581,88,25.16,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708582,88,25.53,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708583,88,25.16,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708584,88,25.22,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708585,98,29.57,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708586,98,29.68,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708587,98,29.96,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708588,98,30.59,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708589,98,29.93,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708590,98,30.15,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708591,98,30.39,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708592,98,30.44,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708593,98,30.54,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708594,98,30.27,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708595,98,30.24,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708596,98,30.33,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708597,98,30.29,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708598,98,30.22,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708599,98,30.28,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708600,98,30.11,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708601,98,30.1,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708602,98,29.86,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708603,98,29.93,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708604,98,29.47,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708605,98,29.65,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708606,98,29.23,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708607,98,29.42,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708608,98,29.3,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708609,87,25.93,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708610,87,25.69,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708611,87,25.56,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708612,87,25.16,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708613,87,26.33,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708614,87,26.16,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708615,87,26.19,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708616,87,26.08,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708617,87,26.16,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708618,87,26.5,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708619,87,26.47,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708620,87,26.37,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708621,87,26.32,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708622,87,26.43,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708623,87,26.1,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708624,87,26.11,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708625,87,26.1,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708626,87,26.07,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708627,87,25.72,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708628,87,26.06,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708629,87,25.63,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708630,87,26,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708631,87,25.62,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708632,87,25.68,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708633,97,30.32,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708634,97,30.37,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708635,97,30.55,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708636,97,31.09,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708637,97,30.32,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708638,97,30.44,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708639,97,30.59,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708640,97,30.58,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708641,97,30.64,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708642,97,30.36,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708643,97,30.34,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708644,97,30.45,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708645,97,30.47,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708646,97,30.44,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708647,97,30.56,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708648,97,30.46,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708649,97,30.49,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708650,97,30.34,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708651,97,30.48,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708652,97,30.09,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708653,97,30.34,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708654,97,29.97,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708655,97,30.2,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708656,97,30.08,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708657,61,0.266,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708658,61,0.264,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708659,61,0.264,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708660,61,0.261,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708661,61,0.263,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708662,61,0.263,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708663,61,0.267,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708664,61,0.265,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708665,61,0.265,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708666,61,0.264,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708667,61,0.264,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708668,61,0.263,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708669,61,0.263,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708670,61,0.263,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708671,61,0.261,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708672,61,0.261,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708673,61,0.262,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708674,61,0.263,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708675,61,0.263,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708676,61,0.264,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708677,61,0.265,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708678,61,0.265,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708679,61,0.266,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708680,61,0.264,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708681,69,0.045,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708682,69,0.045,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708683,69,0.046,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708684,69,0.046,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708685,69,0.046,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708686,69,0.046,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708687,69,0.045,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708688,69,0.045,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708689,69,0.045,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708690,69,0.045,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708691,69,0.045,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708692,69,0.046,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708693,69,0.046,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708694,69,0.046,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708695,69,0.046,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708696,69,0.046,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708697,69,0.046,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708698,69,0.046,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708699,69,0.046,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708700,69,0.045,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708701,69,0.045,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708702,69,0.045,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708703,69,0.045,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708704,69,0.045,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708705,76,23.3,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708706,76,23.3,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708707,76,23.22,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708708,76,23.07,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708709,76,23,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708710,76,23,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708711,76,23,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708712,76,23.15,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708713,76,23.15,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708714,76,23.15,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708715,76,23.3,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708716,76,23.3,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708717,76,23.3,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708718,76,23.3,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708719,76,23.45,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708720,76,23.45,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708721,76,23.4,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708722,76,23.4,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708723,76,23.4,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708724,76,23.4,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708725,76,23.35,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708726,76,23.3,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708727,76,23.3,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708728,76,23.3,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708729,81,73.9,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708730,81,73.9,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708731,81,73.77,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708732,81,73.53,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708733,81,73.4,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708734,81,73.4,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708735,81,73.4,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708736,81,73.65,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708737,81,73.65,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708738,81,73.65,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708739,81,73.9,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708740,81,73.9,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708741,81,73.9,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708742,81,73.9,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708743,81,74.2,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708744,81,74.2,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708745,81,74.1,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708746,81,74.1,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708747,81,74.1,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708748,81,74.1,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708749,81,74,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708750,81,73.9,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708751,81,73.9,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708752,81,73.9,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708753,70,0.044,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708754,70,0.044,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708755,70,0.044,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708756,70,0.044,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708757,70,0.044,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708758,70,0.044,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708759,70,0.044,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708760,70,0.044,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708761,70,0.044,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708762,70,0.044,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708763,70,0.044,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708764,70,0.045,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708765,70,0.045,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708766,70,0.045,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708767,70,0.045,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708768,70,0.045,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708769,70,0.045,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708770,70,0.045,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708771,70,0.045,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708772,70,0.044,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708773,70,0.044,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708774,70,0.044,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708775,70,0.044,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708776,70,0.044,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708777,90,16.65,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708778,90,16.54,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708779,90,16.54,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708780,90,16.31,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708781,90,16.42,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708782,90,16.43,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708783,90,16.76,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708784,90,16.61,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708785,90,16.61,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708786,90,16.55,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708787,90,16.55,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708788,90,16.49,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708789,90,16.45,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708790,90,16.45,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708791,90,16.33,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708792,90,16.29,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708793,90,16.39,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708794,90,16.43,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708795,90,16.43,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708796,90,16.5,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708797,90,16.62,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708798,90,16.62,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708799,90,16.65,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708800,90,16.54,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708801,100,15.87,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708802,100,15.85,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708803,100,15.84,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708804,100,16,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708805,100,15.92,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708806,100,15.92,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708807,100,15.69,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708808,100,15.92,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708809,100,15.92,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708810,100,15.95,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708811,100,15.95,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708812,100,15.98,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708813,100,16.04,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708814,100,16.04,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708815,100,16.1,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708816,100,16.16,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708817,100,16.07,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708818,100,16.01,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708819,100,16.01,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708820,100,15.98,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708821,100,15.93,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708822,100,15.93,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708823,100,15.87,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708824,100,15.85,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708825,89,16.97,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708826,89,16.85,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708827,89,16.85,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708828,89,16.62,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708829,89,16.73,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708830,89,16.73,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708831,89,17.07,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708832,89,16.92,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708833,89,16.92,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708834,89,16.86,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708835,89,16.86,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708836,89,16.8,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708837,89,16.76,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708838,89,16.76,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708839,89,16.64,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708840,89,16.6,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708841,89,16.71,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708842,89,16.75,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708843,89,16.75,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708844,89,16.81,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708845,89,16.94,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708846,89,16.93,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708847,89,16.97,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708848,89,16.86,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708849,99,16.23,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708850,99,16.22,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708851,99,16.23,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708852,99,16.38,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708853,99,16.31,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708854,99,16.32,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708855,99,16.08,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708856,99,16.31,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708857,99,16.31,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708858,99,16.33,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708859,99,16.32,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708860,99,16.35,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708861,99,16.4,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708862,99,16.39,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708863,99,16.44,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708864,99,16.49,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708865,99,16.4,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708866,99,16.35,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708867,99,16.34,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708868,99,16.31,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708869,99,16.25,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708870,99,16.26,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708871,99,16.21,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708872,99,16.2,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708873,62,0.387,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708874,62,0.387,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708875,62,0.387,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708876,62,0.387,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708877,62,0.387,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708878,62,0.387,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708879,62,0.387,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708880,62,0.387,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708881,62,0.387,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708882,62,0.387,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708883,62,0.387,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708884,62,0.387,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708885,62,0.387,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708886,62,0.387,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708887,62,0.387,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708888,62,0.384,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708889,62,0.383,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708890,62,0.38,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708891,62,0.382,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708892,62,0.381,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708893,62,0.383,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708894,62,0.386,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708895,62,0.387,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708896,62,0.387,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708897,71,0.104,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708898,71,0.104,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708899,71,0.104,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708900,71,0.104,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708901,71,0.104,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708902,71,0.104,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708903,71,0.104,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708904,71,0.104,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708905,71,0.104,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708906,71,0.104,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708907,71,0.104,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708908,71,0.104,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708909,71,0.104,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708910,71,0.104,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708911,71,0.104,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708912,71,0.105,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708913,71,0.105,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708914,71,0.106,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708915,71,0.106,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708916,71,0.105,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708917,71,0.105,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708918,71,0.104,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708919,71,0.104,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708920,71,0.104,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708921,77,20.7,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708922,77,20.85,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708923,77,20.7,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708924,77,20.7,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708925,77,20.7,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708926,77,20.7,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708927,77,20.7,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708928,77,20.75,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708929,77,20.75,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708930,77,20.85,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708931,77,20.8,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708932,77,20.8,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708933,77,20.85,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708934,77,20.85,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708935,77,20.8,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708936,77,20.85,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708937,77,20.75,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708938,77,20.8,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708939,77,20.9,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708940,77,20.75,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708941,77,20.9,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708942,77,20.85,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708943,77,20.85,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708944,77,20.8,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708945,82,69.2,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708946,82,69.5,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708947,82,69.2,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708948,82,69.2,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708949,82,69.2,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708950,82,69.2,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708951,82,69.2,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708952,82,69.3,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708953,82,69.3,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708954,82,69.5,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708955,82,69.4,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708956,82,69.4,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708957,82,69.5,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708958,82,69.5,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708959,82,69.4,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708960,82,69.5,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708961,82,69.3,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708962,82,69.4,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708963,82,69.6,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708964,82,69.33,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708965,82,69.6,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708966,82,69.5,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708967,82,69.5,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708968,82,69.4,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708969,72,0.098,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708970,72,0.098,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708971,72,0.098,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708972,72,0.098,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708973,72,0.098,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708974,72,0.098,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708975,72,0.098,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13708976,72,0.098,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13708977,72,0.098,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13708978,72,0.098,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13708979,72,0.098,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13708980,72,0.098,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13708981,72,0.098,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13708982,72,0.098,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13708983,72,0.098,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13708984,72,0.099,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13708985,72,0.099,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13708986,72,0.1,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13708987,72,0.1,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13708988,72,0.099,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13708989,72,0.099,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13708990,72,0.098,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13708991,72,0.098,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13708992,72,0.098,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13708993,92,26.95,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13708994,92,26.95,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13708995,92,26.95,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13708996,92,26.95,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13708997,92,26.95,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13708998,92,26.95,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13708999,92,26.95,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13709000,92,26.95,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13709001,92,26.95,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13709002,92,26.95,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13709003,92,26.95,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13709004,92,26.95,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13709005,92,26.95,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13709006,92,26.95,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13709007,92,26.95,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13709008,92,26.74,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13709009,92,26.58,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13709010,92,26.36,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13709011,92,26.53,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13709012,92,26.42,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13709013,92,26.58,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13709014,92,26.85,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13709015,92,26.95,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13709016,92,26.95,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13709017,102,35.29,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13709018,102,35.29,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13709019,102,35.29,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13709020,102,35.29,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13709021,102,35.29,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13709022,102,35.29,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13709023,102,35.29,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13709024,102,35.29,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13709025,102,35.29,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13709026,102,35.29,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13709027,102,35.29,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13709028,102,35.29,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13709029,102,35.29,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13709030,102,35.29,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13709031,102,35.29,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13709032,102,35.62,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13709033,102,35.71,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13709034,102,36.03,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13709035,102,35.94,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13709036,102,35.79,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13709037,102,35.71,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13709038,102,35.46,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13709039,102,35.29,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13709040,102,35.29,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13709041,91,27.29,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13709042,91,27.29,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13709043,91,27.3,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13709044,91,27.3,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13709045,91,27.3,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13709046,91,27.3,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13709047,91,27.3,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13709048,91,27.3,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13709049,91,27.3,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13709050,91,27.3,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13709051,91,27.3,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13709052,91,27.3,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13709053,91,27.3,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13709054,91,27.3,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13709055,91,27.3,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13709056,91,27.08,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13709057,91,26.92,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13709058,91,26.7,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13709059,91,26.87,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13709060,91,26.76,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13709061,91,26.92,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13709062,91,27.19,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13709063,91,27.3,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13709064,91,27.3,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13709065,101,37.56,'2011-08-12 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13709066,101,37.56,'2011-08-12 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13709067,101,37.56,'2011-08-12 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13709068,101,37.56,'2011-08-12 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13709069,101,37.56,'2011-08-12 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13709070,101,37.55,'2011-08-12 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13709071,101,37.55,'2011-08-12 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13709072,101,37.55,'2011-08-12 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13709073,101,37.55,'2011-08-12 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13709074,101,37.55,'2011-08-12 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13709075,101,37.55,'2011-08-13 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13709076,101,37.55,'2011-08-13 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13709077,101,37.55,'2011-08-13 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13709078,101,37.55,'2011-08-13 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13709079,101,37.55,'2011-08-13 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13709080,101,37.89,'2011-08-13 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13709081,101,37.99,'2011-08-13 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13709082,101,38.33,'2011-08-13 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13709083,101,38.24,'2011-08-13 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13709084,101,38.08,'2011-08-13 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13709085,101,37.99,'2011-08-13 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13709086,101,37.72,'2011-08-13 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13709087,101,37.55,'2011-08-13 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13709088,101,37.55,'2011-08-13 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713158,31,13.18,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713159,31,13.16,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713160,31,13.15,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713161,31,13.14,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713162,31,13.15,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713163,31,12.89,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713164,31,12.79,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713165,31,12.75,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713166,31,12.73,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713167,31,12.71,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713168,31,12.69,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713169,31,12.68,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713170,31,12.66,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713171,31,12.63,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713172,31,12.6,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713173,31,12.57,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713174,31,12.56,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713175,31,12.57,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713176,31,12.83,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713177,31,13.29,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713178,31,13.26,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713179,31,13.23,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713180,31,13.22,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713181,31,13.2,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713182,32,3.972,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713183,32,3.185,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713184,32,2.95,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713185,32,3.054,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713186,32,2.405,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713187,32,2.258,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713188,32,1.863,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713189,32,2.992,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713190,32,1.996,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713191,32,2.416,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713192,32,5.523,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713193,32,3.656,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713194,32,4.571,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713195,32,3.349,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713196,32,2.268,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713197,32,2.111,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713198,32,2.74,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713199,32,2.415,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713200,32,2.761,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713201,32,3.343,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713202,32,2.801,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713203,32,2.623,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713204,32,2.081,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713205,32,2.193,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713206,33,196.6,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713207,33,197.9,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713208,33,204.1,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713209,33,227.5,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713210,33,270.1,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713211,33,252.5,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713212,33,207.2,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713213,33,203,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713214,33,212.8,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713215,33,212.4,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713216,33,202.2,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713217,33,186.8,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713218,33,176.2,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713219,33,152.1,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713220,33,144.6,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713221,33,169.8,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713222,33,159.3,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713223,33,142.3,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713224,33,137.6,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713225,33,180.2,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713226,33,180.5,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713227,33,169.5,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713228,33,161.3,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713229,33,203.3,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713230,34,17.45,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713231,34,24.37,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713232,34,24.13,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713233,34,19.98,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713234,34,12.33,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713235,34,20.5,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713236,34,31.47,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713237,34,32.07,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713238,34,51.73,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713239,34,31.93,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713240,34,16.62,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713241,34,20.03,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713242,34,28.78,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713243,34,15.23,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713244,34,71.09,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713245,34,37.18,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713246,34,34.96,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713247,34,35.67,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713248,34,26.56,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713249,34,21.42,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713250,34,20.51,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713251,34,27.42,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713252,34,36.2,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713253,34,60.54,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713254,35,630.1,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13713255,35,629.8,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13713256,35,629.3,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13713257,35,629.1,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13713258,35,628.9,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13713259,35,629.1,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13713260,35,629.1,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13713261,35,629.3,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13713262,35,629.5,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13713263,35,629.8,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13713264,35,630.4,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13713265,35,631.2,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13713266,35,631.1,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13713267,35,631.1,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13713268,35,631.1,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13713269,35,631.1,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13713270,35,631.2,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13713271,35,631.2,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13713272,35,631.3,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13713273,35,631.3,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13713274,35,631.5,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13713275,35,631.1,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13713276,35,630.7,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13713277,35,630.2,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13713278,30,0,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713279,30,0,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713280,30,0,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713281,30,0,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713282,30,0,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713283,30,0,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713284,30,0,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713285,30,0,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713286,30,0,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713287,30,0,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713288,30,0,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713289,30,0,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713290,30,0,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713291,30,0,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713292,30,0,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713293,30,0,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713294,30,0,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713295,30,0,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713296,30,0,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713297,30,0,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713298,30,0,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713299,30,0,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713300,30,0,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713301,30,0,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713302,28,31.08,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713303,28,32.03,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713304,28,31.96,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713305,28,31.74,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713306,28,30.39,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713307,28,26.54,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713308,28,22.57,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713309,28,24.05,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713310,28,23.15,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713311,28,23.81,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713312,28,26.53,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713313,28,25.51,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713314,28,24.42,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713315,28,22.98,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713316,28,21.68,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713317,28,21.07,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713318,28,20.13,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713319,28,20.67,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713320,28,22.06,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713321,28,22.97,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713322,28,25.36,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713323,28,26.66,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713324,28,27.8,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713325,28,28.74,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713326,29,15.48,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713327,29,14.23,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713328,29,15.54,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713329,29,16.44,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713330,29,24.67,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713331,29,34.06,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713332,29,38.19,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713333,29,29.72,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713334,29,28.62,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713335,29,25.39,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713336,29,25.48,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713337,29,24.75,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713338,29,33.02,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713339,29,36.37,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713340,29,39.02,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713341,29,45.09,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713342,29,42.1,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713343,29,43.65,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713344,29,42.66,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713345,29,40.75,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713346,29,34.76,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713347,29,31.66,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713348,29,31.16,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713349,29,26.28,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713350,36,915,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713351,36,916,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713352,36,778.8,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713353,36,578.3,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713354,36,331.8,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713355,36,111.4,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713356,36,6.072,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713357,36,0,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713358,36,0,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713359,36,0,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713360,36,0,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713361,36,0,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713362,36,0,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713363,36,0,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713364,36,0,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713365,36,0,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713366,36,4.121,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713367,36,135.3,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713368,36,365.5,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713369,36,590.2,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713370,36,796.1,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713371,36,950,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713372,36,1054,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713373,36,1097,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713374,46,1.425,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713375,46,1.644,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713376,46,1.639,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713377,46,1.473,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713378,46,1.236,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713379,46,1.395,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713380,46,1.422,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713381,46,1.634,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713382,46,1.652,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713383,46,1.715,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713384,46,1.209,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713385,46,1.274,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713386,46,1.358,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713387,46,1.631,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713388,46,1.422,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713389,46,1.648,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713390,46,1.309,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713391,46,1.386,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713392,46,1.494,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713393,46,1.465,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713394,46,1.429,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713395,46,1.669,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713396,46,1.402,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713397,46,1.461,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713398,47,1.504,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713399,47,1.738,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713400,47,1.732,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713401,47,1.556,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713402,47,1.303,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713403,47,1.461,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713404,47,1.48,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713405,47,1.705,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713406,47,1.72,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713407,47,1.788,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713408,47,1.267,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713409,47,1.332,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713410,47,1.417,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713411,47,1.699,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713412,47,1.477,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713413,47,1.71,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713414,47,1.357,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713415,47,1.437,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713416,47,1.553,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713417,47,1.525,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713418,47,1.494,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713419,47,1.748,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713420,47,1.471,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713421,47,1.536,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713422,48,0.266,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13713423,48,0.032,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13713424,48,0.038,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13713425,48,0.214,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13713426,48,0.467,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13713427,48,0.309,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13713428,48,0.29,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13713429,48,0.065,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13713430,48,0.05,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13713431,48,-0.018,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13713432,48,0.503,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13713433,48,0.438,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13713434,48,0.353,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13713435,48,0.071,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13713436,48,0.293,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13713437,48,0.06,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13713438,48,0.413,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13713439,48,0.333,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13713440,48,0.217,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13713441,48,0.245,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13713442,48,0.276,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13713443,48,0.022,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13713444,48,0.299,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13713445,48,0.234,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13713446,41,22.68,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713447,40,32.57,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713448,39,10.91,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713449,37,12.47,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713450,43,630.4,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713451,44,0,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713452,42,30.95,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713453,45,30.49977,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713454,38,2.87,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713455,51,0,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713456,53,1.86,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713457,49,1.468,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713458,52,0,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713459,54,1.938,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713460,50,1.528,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713461,56,-0.168,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713462,57,1.77,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13713463,55,0.242,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13715624,58,0.193,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715625,58,0.194,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715626,58,0.194,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715627,58,0.194,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715628,58,0.192,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715629,58,0.19,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715630,58,0.187,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715631,58,0.185,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715632,58,0.183,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715633,58,0.183,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715634,58,0.181,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715635,58,0.178,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715636,58,0.179,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715637,58,0.179,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715638,58,0.179,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715639,58,0.175,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715640,58,0.176,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715641,58,0.174,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715642,58,0.175,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715643,58,0.176,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715644,58,0.179,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715645,58,0.18,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715646,58,0.182,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715647,58,0.184,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715648,63,0.023,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715649,63,0.023,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715650,63,0.023,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715651,63,0.022,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715652,63,0.022,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715653,63,0.022,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715654,63,0.022,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715655,63,0.021,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715656,63,0.021,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715657,63,0.021,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715658,63,0.021,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715659,63,0.021,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715660,63,0.021,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715661,63,0.021,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715662,63,0.021,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715663,63,0.021,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715664,63,0.021,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715665,63,0.021,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715666,63,0.021,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715667,63,0.021,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715668,63,0.021,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715669,63,0.021,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715670,63,0.021,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715671,63,0.021,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715672,73,28.1,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715673,73,28.98,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715674,73,29.65,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715675,73,29.72,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715676,73,29.12,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715677,73,28.22,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715678,73,27.27,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715679,73,26.47,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715680,73,25.9,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715681,73,25.32,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715682,73,24.9,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715683,73,24.75,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715684,73,24.47,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715685,73,24.3,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715686,73,23.97,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715687,73,23.65,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715688,73,23.4,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715689,73,23,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715690,73,23.08,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715691,73,23.7,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715692,73,24.65,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715693,73,25.83,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715694,73,27.23,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715695,73,28.76,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715696,78,82.6,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715697,78,84.2,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715698,78,85.4,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715699,78,85.5,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715700,78,84.4,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715701,78,82.9,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715702,78,81.1,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715703,78,79.62,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715704,78,78.62,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715705,78,77.6,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715706,78,76.8,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715707,78,76.5,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715708,78,76.02,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715709,78,75.7,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715710,78,75.2,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715711,78,74.6,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715712,78,74.1,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715713,78,73.4,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715714,78,73.53,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715715,78,74.7,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715716,78,76.38,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715717,78,78.51,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715718,78,81,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715719,78,83.8,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715720,64,0.024,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715721,64,0.024,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715722,64,0.024,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715723,64,0.024,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715724,64,0.023,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715725,64,0.023,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715726,64,0.022,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715727,64,0.022,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715728,64,0.022,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715729,64,0.021,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715730,64,0.021,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715731,64,0.021,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715732,64,0.021,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715733,64,0.021,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715734,64,0.021,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715735,64,0.021,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715736,64,0.021,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715737,64,0.02,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715738,64,0.02,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715739,64,0.021,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715740,64,0.021,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715741,64,0.021,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715742,64,0.022,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715743,64,0.022,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715744,84,11.67,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715745,84,11.72,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715746,84,11.7,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715747,84,11.72,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715748,84,11.57,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715749,84,11.45,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715750,84,11.29,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715751,84,11.18,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715752,84,11.04,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715753,84,11.03,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715754,84,10.93,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715755,84,10.74,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715756,84,10.8,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715757,84,10.76,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715758,84,10.76,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715759,84,10.55,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715760,84,10.57,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715761,84,10.51,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715762,84,10.51,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715763,84,10.58,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715764,84,10.76,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715765,84,10.88,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715766,84,11.01,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715767,84,11.06,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715768,94,8.55,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715769,94,8.61,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715770,94,8.65,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715771,94,8.54,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715772,94,8.39,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715773,94,8.22,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715774,94,8.06,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715775,94,7.889,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715776,94,7.814,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715777,94,7.685,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715778,94,7.644,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715779,94,7.683,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715780,94,7.576,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715781,94,7.527,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715782,94,7.411,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715783,94,7.498,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715784,94,7.401,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715785,94,7.332,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715786,94,7.334,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715787,94,7.406,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715788,94,7.473,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715789,94,7.64,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715790,94,7.773,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715791,94,7.985,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715792,83,12.02,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715793,83,12.1,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715794,83,12.1,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715795,83,12.12,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715796,83,11.94,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715797,83,11.8,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715798,83,11.6,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715799,83,11.47,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715800,83,11.31,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715801,83,11.28,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715802,83,11.17,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715803,83,10.97,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715804,83,11.03,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715805,83,10.98,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715806,83,10.98,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715807,83,10.75,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715808,83,10.77,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715809,83,10.69,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715810,83,10.7,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715811,83,10.78,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715812,83,11,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715813,83,11.15,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715814,83,11.32,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715815,83,11.41,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715816,93,8.17,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715817,93,8.13,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715818,93,8.11,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715819,93,7.999,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715820,93,7.911,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715821,93,7.859,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715822,93,7.804,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715823,93,7.73,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715824,93,7.734,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715825,93,7.661,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715826,93,7.662,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715827,93,7.728,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715828,93,7.643,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715829,93,7.619,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715830,93,7.526,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715831,93,7.651,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715832,93,7.596,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715833,93,7.567,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715834,93,7.55,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715835,93,7.552,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715836,93,7.506,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715837,93,7.535,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715838,93,7.52,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715839,93,7.555,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715840,59,0.291,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715841,59,0.295,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715842,59,0.295,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715843,59,0.297,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715844,59,0.298,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715845,59,0.294,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715846,59,0.296,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715847,59,0.293,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715848,59,0.294,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715849,59,0.292,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715850,59,0.292,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715851,59,0.29,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715852,59,0.29,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715853,59,0.29,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715854,59,0.289,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715855,59,0.29,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715856,59,0.287,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715857,59,0.285,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715858,59,0.285,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715859,59,0.285,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715860,59,0.284,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715861,59,0.287,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715862,59,0.29,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715863,59,0.291,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715864,65,0.041,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715865,65,0.042,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715866,65,0.042,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715867,65,0.042,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715868,65,0.042,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715869,65,0.042,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715870,65,0.041,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715871,65,0.042,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715872,65,0.041,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715873,65,0.041,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715874,65,0.041,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715875,65,0.041,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715876,65,0.041,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715877,65,0.041,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715878,65,0.04,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715879,65,0.04,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715880,65,0.041,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715881,65,0.041,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715882,65,0.041,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715883,65,0.041,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715884,65,0.041,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715885,65,0.04,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715886,65,0.04,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715887,65,0.041,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715888,74,25.85,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715889,74,26.73,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715890,74,27.43,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715891,74,27.73,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715892,74,27.8,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715893,74,27.57,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715894,74,27.27,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715895,74,26.75,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715896,74,26.3,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715897,74,25.9,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715898,74,25.5,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715899,74,25.05,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715900,74,24.85,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715901,74,24.62,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715902,74,24.3,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715903,74,23.97,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715904,74,23.9,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715905,74,23.6,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715906,74,23.3,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715907,74,23.3,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715908,74,23.6,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715909,74,24.3,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715910,74,25.33,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715911,74,26.55,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715912,79,78.51,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715913,79,80.1,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715914,79,81.4,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715915,79,81.9,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715916,79,82,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715917,79,81.6,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715918,79,81.1,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715919,79,80.1,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715920,79,79.3,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715921,79,78.62,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715922,79,77.95,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715923,79,77.17,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715924,79,76.7,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715925,79,76.27,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715926,79,75.7,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715927,79,75.2,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715928,79,75.1,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715929,79,74.5,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715930,79,73.9,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715931,79,73.9,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715932,79,74.5,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715933,79,75.73,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715934,79,77.61,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715935,79,79.78,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715936,66,0.042,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715937,66,0.043,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715938,66,0.043,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715939,66,0.043,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715940,66,0.043,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715941,66,0.043,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715942,66,0.043,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715943,66,0.043,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715944,66,0.042,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715945,66,0.042,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715946,66,0.041,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715947,66,0.042,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715948,66,0.041,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715949,66,0.041,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715950,66,0.04,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715951,66,0.04,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715952,66,0.04,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715953,66,0.04,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715954,66,0.04,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715955,66,0.04,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715956,66,0.04,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715957,66,0.04,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715958,66,0.041,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715959,66,0.042,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715960,86,18.61,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715961,86,18.89,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715962,86,18.89,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715963,86,19.09,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715964,86,19.2,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715965,86,18.84,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715966,86,18.96,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715967,86,18.74,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715968,86,18.88,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715969,86,18.71,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715970,86,18.71,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715971,86,18.51,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715972,86,18.59,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715973,86,18.5,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715974,86,18.45,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715975,86,18.55,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13715976,86,18.3,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13715977,86,18.18,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13715978,86,18.1,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13715979,86,18.1,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13715980,86,18.04,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13715981,86,18.28,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13715982,86,18.53,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13715983,86,18.6,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13715984,96,15.09,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13715985,96,15.24,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13715986,96,15.49,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13715987,96,15.5,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13715988,96,15.42,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13715989,96,15.62,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13715990,96,15.37,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13715991,96,15.36,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13715992,96,15.07,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13715993,96,15.09,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13715994,96,14.94,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13715995,96,14.92,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13715996,96,14.76,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13715997,96,14.68,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13715998,96,14.56,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13715999,96,14.41,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716000,96,14.52,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716001,96,14.4,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716002,96,14.33,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716003,96,14.33,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716004,96,14.44,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716005,96,14.49,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716006,96,14.63,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716007,96,15,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716008,85,19.06,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716009,85,19.39,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716010,85,19.41,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716011,85,19.64,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716012,85,19.75,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716013,85,19.38,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716014,85,19.49,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716015,85,19.25,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716016,85,19.37,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716017,85,19.18,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716018,85,19.16,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716019,85,18.94,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716020,85,19.01,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716021,85,18.91,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716022,85,18.85,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716023,85,18.93,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716024,85,18.68,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716025,85,18.54,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716026,85,18.44,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716027,85,18.44,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716028,85,18.4,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716029,85,18.66,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716030,85,18.97,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716031,85,19.08,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716032,95,14.95,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716033,95,14.89,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716034,95,15.01,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716035,95,14.94,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716036,95,14.84,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716037,95,15.06,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716038,95,14.87,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716039,95,14.94,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716040,95,14.75,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716041,95,14.85,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716042,95,14.79,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716043,95,14.83,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716044,95,14.73,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716045,95,14.71,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716046,95,14.65,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716047,95,14.55,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716048,95,14.7,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716049,95,14.65,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716050,95,14.62,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716051,95,14.62,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716052,95,14.69,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716053,95,14.62,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716054,95,14.56,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716055,95,14.69,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716056,60,0.371,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716057,60,0.374,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716058,60,0.371,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716059,60,0.373,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716060,60,0.369,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716061,60,0.371,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716062,60,0.375,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716063,60,0.374,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716064,60,0.372,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716065,60,0.373,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716066,60,0.376,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716067,60,0.373,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716068,60,0.378,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716069,60,0.378,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716070,60,0.377,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716071,60,0.37,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716072,60,0.375,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716073,60,0.371,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716074,60,0.37,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716075,60,0.37,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716076,60,0.37,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716077,60,0.37,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716078,60,0.367,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716079,60,0.369,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716080,67,0.084,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716081,67,0.083,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716082,67,0.084,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716083,67,0.083,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716084,67,0.085,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716085,67,0.085,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716086,67,0.084,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716087,67,0.085,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716088,67,0.085,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716089,67,0.085,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716090,67,0.084,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716091,67,0.085,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716092,67,0.084,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716093,67,0.084,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716094,67,0.084,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716095,67,0.085,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716096,67,0.084,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716097,67,0.085,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716098,67,0.085,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716099,67,0.085,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716100,67,0.084,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716101,67,0.084,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716102,67,0.084,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716103,67,0.084,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716104,75,23.3,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716105,75,23.45,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716106,75,23.6,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716107,75,23.85,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716108,75,24.13,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716109,75,24.35,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716110,75,24.55,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716111,75,24.7,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716112,75,24.8,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716113,75,24.9,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716114,75,24.9,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716115,75,24.9,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716116,75,24.9,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716117,75,24.7,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716118,75,24.63,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716119,75,24.7,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716120,75,24.47,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716121,75,24.4,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716122,75,24.4,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716123,75,24.2,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716124,75,24.2,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716125,75,24.05,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716126,75,23.9,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716127,75,24.05,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716128,80,73.9,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716129,80,74.2,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716130,80,74.5,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716131,80,75,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716132,80,75.4,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716133,80,75.8,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716134,80,76.15,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716135,80,76.4,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716136,80,76.6,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716137,80,76.8,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716138,80,76.8,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716139,80,76.8,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716140,80,76.8,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716141,80,76.4,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716142,80,76.28,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716143,80,76.4,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716144,80,76.03,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716145,80,75.9,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716146,80,75.9,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716147,80,75.5,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716148,80,75.5,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716149,80,75.3,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716150,80,75.1,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716151,80,75.3,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716152,68,0.081,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716153,68,0.081,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716154,68,0.082,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716155,68,0.082,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716156,68,0.084,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716157,68,0.084,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716158,68,0.083,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716159,68,0.084,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716160,68,0.085,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716161,68,0.085,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716162,68,0.084,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716163,68,0.085,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716164,68,0.084,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716165,68,0.083,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716166,68,0.083,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716167,68,0.084,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716168,68,0.083,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716169,68,0.084,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716170,68,0.084,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716171,68,0.084,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716172,68,0.083,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716173,68,0.083,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716174,68,0.083,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716175,68,0.083,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716176,88,25.5,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716177,88,25.77,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716178,88,25.45,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716179,88,25.7,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716180,88,25.32,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716181,88,25.45,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716182,88,25.84,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716183,88,25.73,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716184,88,25.55,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716185,88,25.67,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716186,88,25.91,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716187,88,25.66,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716188,88,26.1,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716189,88,26.17,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716190,88,26.01,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716191,88,25.39,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716192,88,25.84,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716193,88,25.46,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716194,88,25.42,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716195,88,25.43,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716196,88,25.4,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716197,88,25.42,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716198,88,25.05,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716199,88,25.31,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716200,98,29.2,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716201,98,29.08,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716202,98,29.54,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716203,98,29.39,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716204,98,30.02,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716205,98,30.16,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716206,98,29.97,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716207,98,30.27,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716208,98,30.48,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716209,98,30.42,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716210,98,30.25,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716211,98,30.38,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716212,98,30.04,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716213,98,29.91,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716214,98,29.94,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716215,98,30.3,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716216,98,29.97,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716217,98,30.16,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716218,98,30.17,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716219,98,29.93,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716220,98,29.89,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716221,98,29.7,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716222,98,29.9,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716223,98,29.8,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716224,87,25.97,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716225,87,26.25,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716226,87,25.94,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716227,87,26.21,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716228,87,25.84,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716229,87,25.98,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716230,87,26.39,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716231,87,26.29,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716232,87,26.11,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716233,87,26.24,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716234,87,26.48,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716235,87,26.23,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716236,87,26.67,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716237,87,26.74,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716238,87,26.57,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716239,87,25.94,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716240,87,26.39,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716241,87,26,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716242,87,25.96,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716243,87,25.96,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716244,87,25.92,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716245,87,25.93,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716246,87,25.55,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716247,87,25.82,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716248,97,29.94,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716249,97,29.74,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716250,97,30.12,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716251,97,29.88,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716252,97,30.39,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716253,97,30.44,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716254,97,30.18,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716255,97,30.41,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716256,97,30.56,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716257,97,30.48,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716258,97,30.31,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716259,97,30.44,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716260,97,30.13,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716261,97,30.02,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716262,97,30.09,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716263,97,30.49,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716264,97,30.18,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716265,97,30.41,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716266,97,30.45,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716267,97,30.27,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716268,97,30.26,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716269,97,30.11,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716270,97,30.31,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716271,97,30.2,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716272,61,0.261,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716273,61,0.261,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716274,61,0.261,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716275,61,0.261,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716276,61,0.261,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716277,61,0.261,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716278,61,0.261,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716279,61,0.261,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716280,61,0.261,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716281,61,0.263,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716282,61,0.267,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716283,61,0.265,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716284,61,0.265,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716285,61,0.265,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716286,61,0.265,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716287,61,0.265,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716288,61,0.265,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716289,61,0.265,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716290,61,0.265,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716291,61,0.265,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716292,61,0.262,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716293,61,0.263,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716294,61,0.261,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716295,61,0.261,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716296,69,0.045,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716297,69,0.045,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716298,69,0.046,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716299,69,0.046,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716300,69,0.046,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716301,69,0.046,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716302,69,0.046,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716303,69,0.046,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716304,69,0.046,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716305,69,0.045,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716306,69,0.045,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716307,69,0.045,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716308,69,0.045,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716309,69,0.045,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716310,69,0.045,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716311,69,0.045,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716312,69,0.045,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716313,69,0.045,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716314,69,0.045,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716315,69,0.045,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716316,69,0.045,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716317,69,0.045,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716318,69,0.045,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716319,69,0.045,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716320,76,23.3,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716321,76,23.23,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716322,76,23.22,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716323,76,23.15,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716324,76,23.07,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716325,76,23.22,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716326,76,23.22,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716327,76,23.23,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716328,76,23.3,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716329,76,23.3,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716330,76,23.3,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716331,76,23.3,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716332,76,23.3,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716333,76,23.4,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716334,76,23.45,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716335,76,23.45,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716336,76,23.5,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716337,76,23.45,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716338,76,23.45,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716339,76,23.5,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716340,76,23.5,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716341,76,23.5,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716342,76,23.5,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716343,76,23.5,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716344,81,73.9,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716345,81,73.78,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716346,81,73.78,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716347,81,73.65,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716348,81,73.53,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716349,81,73.78,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716350,81,73.77,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716351,81,73.78,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716352,81,73.9,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716353,81,73.9,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716354,81,73.9,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716355,81,73.9,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716356,81,73.9,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716357,81,74.1,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716358,81,74.2,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716359,81,74.2,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716360,81,74.3,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716361,81,74.2,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716362,81,74.2,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716363,81,74.3,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716364,81,74.3,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716365,81,74.3,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716366,81,74.3,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716367,81,74.3,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716368,70,0.044,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716369,70,0.044,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716370,70,0.044,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716371,70,0.044,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716372,70,0.044,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716373,70,0.044,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716374,70,0.044,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716375,70,0.044,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716376,70,0.044,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716377,70,0.044,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716378,70,0.044,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716379,70,0.044,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716380,70,0.044,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716381,70,0.044,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716382,70,0.044,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716383,70,0.044,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716384,70,0.044,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716385,70,0.044,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716386,70,0.044,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716387,70,0.044,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716388,70,0.044,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716389,70,0.044,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716390,70,0.044,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716391,70,0.044,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716392,90,16.32,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716393,90,16.32,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716394,90,16.31,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716395,90,16.31,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716396,90,16.31,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716397,90,16.31,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716398,90,16.31,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716399,90,16.31,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716400,90,16.31,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716401,90,16.43,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716402,90,16.77,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716403,90,16.66,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716404,90,16.65,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716405,90,16.62,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716406,90,16.62,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716407,90,16.62,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716408,90,16.62,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716409,90,16.62,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716410,90,16.62,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716411,90,16.62,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716412,90,16.44,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716413,90,16.44,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716414,90,16.32,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716415,90,16.32,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716416,100,16,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716417,100,16,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716418,100,16,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716419,100,16,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716420,100,16,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716421,100,16,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716422,100,16,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716423,100,16,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716424,100,16,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716425,100,15.92,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716426,100,15.69,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716427,100,15.77,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716428,100,15.87,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716429,100,15.93,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716430,100,15.93,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716431,100,15.93,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716432,100,15.93,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716433,100,15.93,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716434,100,15.93,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716435,100,15.93,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716436,100,15.93,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716437,100,15.93,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716438,100,16.01,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716439,100,16.01,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716440,89,16.62,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716441,89,16.62,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716442,89,16.62,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716443,89,16.62,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716444,89,16.62,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716445,89,16.62,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716446,89,16.62,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716447,89,16.62,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716448,89,16.62,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716449,89,16.74,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716450,89,17.08,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716451,89,16.97,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716452,89,16.97,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716453,89,16.94,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716454,89,16.94,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716455,89,16.94,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716456,89,16.94,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716457,89,16.94,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716458,89,16.94,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716459,89,16.94,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716460,89,16.75,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716461,89,16.76,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716462,89,16.64,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716463,89,16.64,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716464,99,16.36,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716465,99,16.36,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716466,99,16.37,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716467,99,16.38,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716468,99,16.38,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716469,99,16.38,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716470,99,16.38,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716471,99,16.38,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716472,99,16.38,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716473,99,16.29,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716474,99,16.05,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716475,99,16.12,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716476,99,16.21,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716477,99,16.26,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716478,99,16.25,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716479,99,16.25,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716480,99,16.25,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716481,99,16.25,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716482,99,16.25,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716483,99,16.24,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716484,99,16.24,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716485,99,16.24,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716486,99,16.31,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716487,99,16.32,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716488,62,0.387,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716489,62,0.387,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716490,62,0.377,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716491,62,0.374,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716492,62,0.374,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716493,62,0.375,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716494,62,0.374,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716495,62,0.374,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716496,62,0.377,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716497,62,0.384,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716498,62,0.381,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716499,62,0.387,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716500,62,0.387,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716501,62,0.387,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716502,62,0.387,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716503,62,0.387,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716504,62,0.387,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716505,62,0.387,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716506,62,0.387,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716507,62,0.387,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716508,62,0.387,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716509,62,0.387,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716510,62,0.387,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716511,62,0.377,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716512,71,0.104,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716513,71,0.104,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716514,71,0.106,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716515,71,0.107,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716516,71,0.107,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716517,71,0.106,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716518,71,0.107,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716519,71,0.107,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716520,71,0.106,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716521,71,0.105,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716522,71,0.105,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716523,71,0.104,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716524,71,0.104,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716525,71,0.104,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716526,71,0.104,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716527,71,0.104,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716528,71,0.104,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716529,71,0.104,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716530,71,0.104,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716531,71,0.104,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716532,71,0.104,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716533,71,0.104,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716534,71,0.104,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716535,71,0.106,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716536,77,20.85,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716537,77,20.85,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716538,77,20.85,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716539,77,20.85,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716540,77,20.9,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716541,77,20.85,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716542,77,20.9,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716543,77,20.9,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716544,77,20.8,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716545,77,20.85,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716546,77,20.85,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716547,77,20.8,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716548,77,20.85,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716549,77,20.9,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716550,77,20.9,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716551,77,20.85,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716552,77,20.9,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716553,77,20.8,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716554,77,20.8,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716555,77,20.85,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716556,77,20.8,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716557,77,20.85,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716558,77,20.85,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716559,77,20.85,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716560,82,69.5,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716561,82,69.5,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716562,82,69.5,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716563,82,69.5,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716564,82,69.6,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716565,82,69.5,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716566,82,69.6,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716567,82,69.6,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716568,82,69.4,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716569,82,69.5,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716570,82,69.5,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716571,82,69.4,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716572,82,69.5,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716573,82,69.6,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716574,82,69.6,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716575,82,69.5,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716576,82,69.6,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716577,82,69.4,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716578,82,69.4,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716579,82,69.5,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716580,82,69.4,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716581,82,69.5,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716582,82,69.5,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716583,82,69.5,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716584,72,0.098,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716585,72,0.098,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716586,72,0.1,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716587,72,0.1,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716588,72,0.1,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716589,72,0.1,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716590,72,0.1,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716591,72,0.1,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716592,72,0.099,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716593,72,0.098,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716594,72,0.099,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716595,72,0.098,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716596,72,0.098,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716597,72,0.098,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716598,72,0.098,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716599,72,0.098,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716600,72,0.098,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716601,72,0.098,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716602,72,0.098,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716603,72,0.098,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716604,72,0.098,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716605,72,0.098,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716606,72,0.098,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716607,72,0.1,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716608,92,26.95,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716609,92,26.95,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716610,92,26.04,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716611,92,25.74,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716612,92,25.74,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716613,92,25.85,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716614,92,25.74,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716615,92,25.74,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716616,92,26.04,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716617,92,26.65,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716618,92,26.35,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716619,92,26.95,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716620,92,26.96,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716621,92,26.96,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716622,92,26.96,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716623,92,26.96,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716624,92,26.96,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716625,92,26.96,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716626,92,26.96,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716627,92,26.96,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716628,92,26.96,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716629,92,26.96,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716630,92,26.96,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716631,92,26.05,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716632,102,35.29,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716633,102,35.29,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716634,102,35.92,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716635,102,36.12,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716636,102,36.12,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716637,102,35.96,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716638,102,36.12,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716639,102,36.12,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716640,102,35.92,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716641,102,35.5,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716642,102,35.71,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716643,102,35.29,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716644,102,35.3,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716645,102,35.3,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716646,102,35.3,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716647,102,35.3,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716648,102,35.3,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716649,102,35.3,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716650,102,35.3,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716651,102,35.3,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716652,102,35.3,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716653,102,35.3,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716654,102,35.3,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716655,102,35.93,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716656,91,27.3,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716657,91,27.3,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716658,91,26.37,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716659,91,26.07,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716660,91,26.07,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716661,91,26.18,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716662,91,26.07,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716663,91,26.07,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716664,91,26.38,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716665,91,26.99,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716666,91,26.69,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716667,91,27.3,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716668,91,27.3,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716669,91,27.31,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716670,91,27.31,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716671,91,27.31,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716672,91,27.31,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716673,91,27.31,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716674,91,27.31,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716675,91,27.31,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716676,91,27.31,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716677,91,27.31,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716678,91,27.31,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716679,91,26.39,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13716680,101,37.55,'2011-08-13 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13716681,101,37.55,'2011-08-13 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13716682,101,38.21,'2011-08-13 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13716683,101,38.43,'2011-08-13 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13716684,101,38.43,'2011-08-13 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13716685,101,38.25,'2011-08-13 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13716686,101,38.43,'2011-08-13 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13716687,101,38.43,'2011-08-13 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13716688,101,38.21,'2011-08-13 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13716689,101,37.77,'2011-08-13 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13716690,101,37.99,'2011-08-14 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13716691,101,37.55,'2011-08-14 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13716692,101,37.54,'2011-08-14 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13716693,101,37.53,'2011-08-14 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13716694,101,37.51,'2011-08-14 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13716695,101,37.51,'2011-08-14 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13716696,101,37.51,'2011-08-14 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13716697,101,37.51,'2011-08-14 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13716698,101,37.51,'2011-08-14 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13716699,101,37.52,'2011-08-14 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13716700,101,37.53,'2011-08-14 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13716701,101,37.52,'2011-08-14 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13716702,101,37.51,'2011-08-14 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13716703,101,38.18,'2011-08-14 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720773,31,13.17,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720774,31,13.16,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720775,31,13.16,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720776,31,13.16,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720777,31,13.17,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720778,31,12.82,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720779,31,12.76,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720780,31,12.7,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720781,31,12.69,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720782,31,12.66,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720783,31,12.65,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720784,31,12.59,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720785,31,12.57,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720786,31,12.55,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720787,31,12.54,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720788,31,12.52,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720789,31,12.51,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720790,31,12.52,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720791,31,12.82,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720792,31,13.35,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720793,31,13.3,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720794,31,13.27,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720795,31,13.13,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720796,31,13.22,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720797,32,1.655,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720798,32,2.161,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720799,32,2.351,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720800,32,2.232,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720801,32,2.495,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720802,32,2.343,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720803,32,1.475,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720804,32,1.341,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720805,32,2.169,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720806,32,4.115,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720807,32,1.831,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720808,32,5.046,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720809,32,3.38,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720810,32,4.296,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720811,32,5.408,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720812,32,5.224,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720813,32,4.184,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720814,32,3.573,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720815,32,3.164,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720816,32,3.099,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720817,32,2.484,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720818,32,2.268,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720819,32,2.029,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720820,32,3.133,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720821,33,82.6,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720822,33,184.7,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720823,33,204.3,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720824,33,192.6,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720825,33,208.5,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720826,33,225.3,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720827,33,196.8,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720828,33,240.6,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720829,33,230.7,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720830,33,285.3,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720831,33,215,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720832,33,149.3,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720833,33,178,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720834,33,183.4,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720835,33,177.5,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720836,33,183.6,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720837,33,173.3,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720838,33,171,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720839,33,181.6,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720840,33,179.8,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720841,33,158.4,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720842,33,328.5,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720843,33,127.2,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720844,33,196.8,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720845,34,94.7,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720846,34,61.06,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720847,34,42.17,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720848,34,19.79,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720849,34,16.33,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720850,34,24.46,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720851,34,70.44,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720852,34,26.05,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720853,34,61.18,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720854,34,46.87,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720855,34,62.95,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720856,34,25.92,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720857,34,51.03,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720858,34,20.82,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720859,34,18.45,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720860,34,17.47,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720861,34,19.29,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720862,34,22.36,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720863,34,30.82,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720864,34,27.67,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720865,34,40.77,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720866,34,37.85,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720867,34,72.67,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720868,34,39.55,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720869,35,629.7,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13720870,35,629.2,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13720871,35,628.9,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13720872,35,628.6,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13720873,35,628.3,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13720874,35,628,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13720875,35,628.1,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13720876,35,628.3,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13720877,35,629,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13720878,35,630.6,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13720879,35,632.2,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13720880,35,630.4,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13720881,35,630,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13720882,35,629.6,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13720883,35,629.2,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13720884,35,629.3,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13720885,35,629.3,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13720886,35,629.4,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13720887,35,629.6,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13720888,35,629.3,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13720889,35,629.2,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13720890,35,629.1,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13720891,35,628.9,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13720892,35,628.8,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13720893,30,0,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720894,30,0,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720895,30,0,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720896,30,0,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720897,30,0,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720898,30,0,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720899,30,0,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720900,30,0,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720901,30,0,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720902,30,0,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720903,30,1.016,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720904,30,1.27,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720905,30,0,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720906,30,0,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720907,30,0,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720908,30,0,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720909,30,0,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720910,30,0,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720911,30,0,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720912,30,0,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720913,30,0,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720914,30,0,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720915,30,0,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720916,30,0,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720917,28,29.36,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720918,28,29.79,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720919,28,29.89,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720920,28,29.79,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720921,28,28.79,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720922,28,25.2,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720923,28,21.01,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720924,28,18.84,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720925,28,20.75,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720926,28,21.8,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720927,28,17.79,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720928,28,15.74,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720929,28,16.99,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720930,28,15.88,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720931,28,16.02,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720932,28,15.83,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720933,28,16.1,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720934,28,17.09,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720935,28,18.33,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720936,28,20.55,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720937,28,24.1,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720938,28,24.84,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720939,28,26.11,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720940,28,26.92,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720941,29,28.06,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720942,29,24,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720943,29,18.35,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720944,29,17.54,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720945,29,22.52,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720946,29,36.45,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720947,29,40.37,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720948,29,40.42,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720949,29,30.63,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720950,29,65.1,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720951,29,71.95,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720952,29,68.43,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720953,29,73.2,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720954,29,68.05,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720955,29,72.16,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720956,29,70.88,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720957,29,66.13,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720958,29,65.53,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720959,29,59.73,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720960,29,49.94,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720961,29,43.5,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720962,29,41.38,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720963,29,37.96,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720964,29,40.61,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720965,36,1015,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720966,36,950,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720967,36,791.7,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720968,36,584.4,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720969,36,344.2,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720970,36,85.9,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720971,36,4.063,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720972,36,0,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720973,36,0,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720974,36,0,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720975,36,0,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13720976,36,0,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13720977,36,0,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13720978,36,0,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13720979,36,0,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13720980,36,0,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13720981,36,4.137,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13720982,36,107.4,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13720983,36,267.6,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13720984,36,453.2,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13720985,36,682.6,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13720986,36,888,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13720987,36,1058,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13720988,36,1075,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13720989,46,1.175,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13720990,46,1.26,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13720991,46,1.502,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13720992,46,1.439,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13720993,46,1.606,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13720994,46,1.562,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13720995,46,1.561,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13720996,46,1.539,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13720997,46,1.526,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13720998,46,1.467,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13720999,46,1.607,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13721000,46,1.467,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13721001,46,1.348,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13721002,46,1.519,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13721003,46,1.679,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13721004,46,1.542,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13721005,46,1.483,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13721006,46,1.531,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13721007,46,1.393,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13721008,46,1.362,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13721009,46,1.396,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13721010,46,1.372,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13721011,46,1.265,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13721012,46,1.321,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13721013,47,1.236,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13721014,47,1.327,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13721015,47,1.582,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13721016,47,1.515,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13721017,47,1.689,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13721018,47,1.633,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13721019,47,1.62,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13721020,47,1.591,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13721021,47,1.583,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13721022,47,1.526,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13721023,47,1.659,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13721024,47,1.509,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13721025,47,1.39,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13721026,47,1.562,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13721027,47,1.728,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13721028,47,1.586,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13721029,47,1.526,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13721030,47,1.578,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13721031,47,1.439,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13721032,47,1.412,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13721033,47,1.456,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13721034,47,1.433,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13721035,47,1.324,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13721036,47,1.385,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13721037,48,0.534,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13721038,48,0.443,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13721039,48,0.188,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13721040,48,0.255,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13721041,48,0.081,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13721042,48,0.137,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13721043,48,0.15,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13721044,48,0.179,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13721045,48,0.187,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13721046,48,0.244,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13721047,48,0.111,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13721048,48,0.261,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13721049,48,0.38,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13721050,48,0.208,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13721051,48,0.042,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13721052,48,0.184,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13721053,48,0.244,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13721054,48,0.192,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13721055,48,0.331,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13721056,48,0.358,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13721057,48,0.314,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13721058,48,0.337,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13721059,48,0.446,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13721060,48,0.385,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13721061,41,24.29,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721062,40,30.68,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721063,39,16.78,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721064,37,12.56,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721065,43,630.1,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721066,44,1.016,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721067,42,34.79,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721068,45,31.21149,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721069,38,2.545,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721070,51,0,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721071,53,2.209,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721072,49,1.466,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721073,52,0,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721074,54,2.277,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721075,50,1.53,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721076,56,-0.507,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721077,57,1.77,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13721078,55,0.24,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13723239,58,0.187,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723240,58,0.187,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723241,58,0.186,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723242,58,0.186,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723243,58,0.183,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723244,58,0.179,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723245,58,0.176,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723246,58,0.176,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723247,58,0.173,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723248,58,0.172,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723249,58,0.17,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723250,58,0.169,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723251,58,0.168,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723252,58,0.165,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723253,58,0.166,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723254,58,0.163,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723255,58,0.164,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723256,58,0.164,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723257,58,0.163,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723258,58,0.164,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723259,58,0.166,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723260,58,0.168,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723261,58,0.171,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723262,58,0.175,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723263,63,0.021,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723264,63,0.021,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723265,63,0.021,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723266,63,0.02,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723267,63,0.02,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723268,63,0.02,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723269,63,0.02,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723270,63,0.02,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723271,63,0.02,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723272,63,0.019,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723273,63,0.019,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723274,63,0.019,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723275,63,0.019,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723276,63,0.019,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723277,63,0.019,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723278,63,0.019,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723279,63,0.019,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723280,63,0.019,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723281,63,0.019,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723282,63,0.02,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723283,63,0.02,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723284,63,0.02,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723285,63,0.02,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723286,63,0.02,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723287,73,30.5,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723288,73,31.25,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723289,73,31.7,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723290,73,31.4,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723291,73,30.72,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723292,73,29.65,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723293,73,28.52,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723294,73,27.42,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723295,73,26.55,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723296,73,25.9,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723297,73,25.37,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723298,73,24.8,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723299,73,24.05,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723300,73,23.45,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723301,73,22.9,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723302,73,22.37,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723303,73,21.9,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723304,73,21.6,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723305,73,21.6,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723306,73,21.9,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723307,73,22.83,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723308,73,24,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723309,73,25.25,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723310,73,26.68,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723311,78,86.9,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723312,78,88.2,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723313,78,89.1,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723314,78,88.5,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723315,78,87.3,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723316,78,85.4,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723317,78,83.4,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723318,78,81.4,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723319,78,79.75,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723320,78,78.62,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723321,78,77.72,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723322,78,76.6,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723323,78,75.3,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723324,78,74.2,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723325,78,73.2,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723326,78,72.27,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723327,78,71.5,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723328,78,70.9,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723329,78,70.9,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723330,78,71.5,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723331,78,73.06,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723332,78,75.21,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723333,78,77.51,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723334,78,80,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723335,64,0.023,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723336,64,0.023,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723337,64,0.023,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723338,64,0.022,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723339,64,0.022,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723340,64,0.021,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723341,64,0.021,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723342,64,0.02,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723343,64,0.02,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723344,64,0.02,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723345,64,0.02,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723346,64,0.019,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723347,64,0.019,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723348,64,0.019,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723349,64,0.019,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723350,64,0.019,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723351,64,0.018,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723352,64,0.018,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723353,64,0.018,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723354,64,0.019,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723355,64,0.019,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723356,64,0.019,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723357,64,0.02,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723358,64,0.02,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723359,84,11.27,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723360,84,11.26,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723361,84,11.22,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723362,84,11.19,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723363,84,11.04,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723364,84,10.83,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723365,84,10.65,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723366,84,10.64,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723367,84,10.42,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723368,84,10.38,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723369,84,10.26,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723370,84,10.21,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723371,84,10.12,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723372,84,9.98,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723373,84,10.01,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723374,84,9.86,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723375,84,9.92,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723376,84,9.89,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723377,84,9.84,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723378,84,9.91,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723379,84,10.03,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723380,84,10.16,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723381,84,10.31,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723382,84,10.57,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723383,94,8.08,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723384,94,8.18,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723385,94,8.14,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723386,94,7.985,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723387,94,7.827,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723388,94,7.676,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723389,94,7.497,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723390,94,7.268,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723391,94,7.217,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723392,94,7.113,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723393,94,7.048,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723394,94,6.942,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723395,94,6.861,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723396,94,6.815,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723397,94,6.691,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723398,94,6.696,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723399,94,6.593,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723400,94,6.569,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723401,94,6.63,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723402,94,6.701,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723403,94,6.821,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723404,94,6.949,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723405,94,7.096,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723406,94,7.195,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723407,83,11.68,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723408,83,11.69,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723409,83,11.65,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723410,83,11.62,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723411,83,11.43,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723412,83,11.19,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723413,83,10.98,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723414,83,10.94,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723415,83,10.69,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723416,83,10.63,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723417,83,10.49,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723418,83,10.43,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723419,83,10.32,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723420,83,10.16,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723421,83,10.19,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723422,83,10.02,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723423,83,10.06,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723424,83,10.03,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723425,83,9.98,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723426,83,10.06,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723427,83,10.2,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723428,83,10.36,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723429,83,10.54,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723430,83,10.85,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723431,93,7.472,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723432,93,7.487,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723433,93,7.417,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723434,93,7.302,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723435,93,7.231,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723436,93,7.192,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723437,93,7.144,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723438,93,7.036,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723439,93,7.08,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723440,93,7.034,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723441,93,7.034,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723442,93,6.982,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723443,93,6.973,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723444,93,6.985,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723445,93,6.915,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723446,93,6.975,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723447,93,6.914,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723448,93,6.921,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723449,93,6.983,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723450,93,7.011,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723451,93,7.044,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723452,93,7.046,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723453,93,7.067,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723454,93,7.02,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723455,59,0.292,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723456,59,0.296,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723457,59,0.296,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723458,59,0.295,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723459,59,0.297,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723460,59,0.296,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723461,59,0.294,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723462,59,0.294,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723463,59,0.294,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723464,59,0.29,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723465,59,0.29,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723466,59,0.285,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723467,59,0.285,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723468,59,0.286,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723469,59,0.287,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723470,59,0.285,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723471,59,0.281,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723472,59,0.282,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723473,59,0.28,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723474,59,0.282,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723475,59,0.282,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723476,59,0.282,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723477,59,0.281,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723478,59,0.285,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723479,65,0.041,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723480,65,0.041,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723481,65,0.041,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723482,65,0.041,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723483,65,0.041,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723484,65,0.041,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723485,65,0.041,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723486,65,0.04,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723487,65,0.04,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723488,65,0.041,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723489,65,0.04,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723490,65,0.04,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723491,65,0.04,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723492,65,0.04,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723493,65,0.04,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723494,65,0.039,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723495,65,0.04,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723496,65,0.039,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723497,65,0.039,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723498,65,0.039,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723499,65,0.039,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723500,65,0.039,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723501,65,0.039,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723502,65,0.039,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723503,74,27.9,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723504,74,28.9,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723505,74,29.43,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723506,74,29.5,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723507,74,29.35,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723508,74,28.97,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723509,74,28.45,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723510,74,27.9,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723511,74,27.2,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723512,74,26.62,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723513,74,26.22,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723514,74,25.75,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723515,74,25.2,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723516,74,24.6,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723517,74,23.92,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723518,74,23.5,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723519,74,22.97,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723520,74,22.6,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723521,74,22.25,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723522,74,22.1,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723523,74,22.25,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723524,74,22.98,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723525,74,23.6,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723526,74,24.6,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723527,79,82.3,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723528,79,84,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723529,79,85,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723530,79,85.1,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723531,79,84.8,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723532,79,84.1,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723533,79,83.2,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723534,79,82.2,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723535,79,81,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723536,79,79.87,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723537,79,79.17,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723538,79,78.4,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723539,79,77.37,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723540,79,76.25,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723541,79,75.1,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723542,79,74.3,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723543,79,73.32,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723544,79,72.62,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723545,79,72.1,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723546,79,71.9,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723547,79,72.1,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723548,79,73.33,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723549,79,74.5,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723550,79,76.28,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723551,66,0.043,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723552,66,0.043,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723553,66,0.044,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723554,66,0.044,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723555,66,0.044,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723556,66,0.044,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723557,66,0.043,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723558,66,0.042,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723559,66,0.042,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723560,66,0.042,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723561,66,0.041,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723562,66,0.041,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723563,66,0.041,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723564,66,0.04,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723565,66,0.039,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723566,66,0.038,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723567,66,0.039,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723568,66,0.038,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723569,66,0.038,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723570,66,0.037,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723571,66,0.037,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723572,66,0.038,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723573,66,0.039,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723574,66,0.039,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723575,86,18.65,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723576,86,18.99,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723577,86,18.96,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723578,86,18.94,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723579,86,19.03,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723580,86,19.04,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723581,86,18.86,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723582,86,18.86,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723583,86,18.79,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723584,86,18.5,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723585,86,18.53,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723586,86,18.19,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723587,86,18.14,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723588,86,18.16,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723589,86,18.27,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723590,86,18.11,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723591,86,17.84,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723592,86,17.92,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723593,86,17.71,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723594,86,17.85,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723595,86,17.9,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723596,86,17.89,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723597,86,17.84,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723598,86,18.16,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723599,96,15.45,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723600,96,15.57,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723601,96,15.7,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723602,96,15.76,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723603,96,15.67,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723604,96,15.52,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723605,96,15.45,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723606,96,15.19,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723607,96,14.99,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723608,96,14.98,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723609,96,14.77,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723610,96,14.72,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723611,96,14.52,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723612,96,14.29,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723613,96,14.02,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723614,96,13.89,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723615,96,13.89,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723616,96,13.67,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723617,96,13.64,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723618,96,13.45,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723619,96,13.43,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723620,96,13.64,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723621,96,13.89,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723622,96,14.01,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723623,85,19.19,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723624,85,19.58,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723625,85,19.58,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723626,85,19.56,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723627,85,19.65,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723628,85,19.65,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723629,85,19.45,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723630,85,19.42,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723631,85,19.32,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723632,85,18.99,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723633,85,19.01,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723634,85,18.64,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723635,85,18.57,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723636,85,18.56,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723637,85,18.65,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723638,85,18.47,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723639,85,18.17,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723640,85,18.24,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723641,85,18.01,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723642,85,18.14,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723643,85,18.2,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723644,85,18.21,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723645,85,18.19,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723646,85,18.56,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723647,95,14.87,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723648,95,14.79,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723649,95,14.81,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723650,95,14.83,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723651,95,14.75,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723652,95,14.66,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723653,95,14.69,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723654,95,14.55,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723655,95,14.48,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723656,95,14.58,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723657,95,14.47,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723658,95,14.51,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723659,95,14.41,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723660,95,14.31,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723661,95,14.15,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723662,95,14.13,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723663,95,14.22,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723664,95,14.09,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723665,95,14.12,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723666,95,13.95,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723667,95,13.9,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723668,95,14.03,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723669,95,14.15,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723670,95,14.08,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723671,60,0.372,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723672,60,0.373,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723673,60,0.376,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723674,60,0.372,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723675,60,0.373,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723676,60,0.373,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723677,60,0.371,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723678,60,0.379,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723679,60,0.376,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723680,60,0.369,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723681,60,0.376,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723682,60,0.376,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723683,60,0.372,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723684,60,0.371,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723685,60,0.372,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723686,60,0.371,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723687,60,0.372,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723688,60,0.373,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723689,60,0.374,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723690,60,0.371,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723691,60,0.367,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723692,60,0.369,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723693,60,0.369,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723694,60,0.37,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723695,67,0.084,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723696,67,0.084,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723697,67,0.084,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723698,67,0.085,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723699,67,0.085,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723700,67,0.085,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723701,67,0.086,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723702,67,0.084,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723703,67,0.085,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723704,67,0.086,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723705,67,0.084,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723706,67,0.085,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723707,67,0.085,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723708,67,0.086,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723709,67,0.085,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723710,67,0.085,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723711,67,0.085,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723712,67,0.084,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723713,67,0.084,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723714,67,0.084,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723715,67,0.084,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723716,67,0.084,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723717,67,0.084,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723718,67,0.083,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723719,75,24.13,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723720,75,24.35,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723721,75,24.48,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723722,75,24.85,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723723,75,25,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723724,75,25.33,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723725,75,25.45,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723726,75,25.45,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723727,75,25.45,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723728,75,25.55,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723729,75,25.45,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723730,75,25.5,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723731,75,25.4,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723732,75,25.4,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723733,75,25.4,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723734,75,25.1,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723735,75,25,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723736,75,24.9,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723737,75,24.7,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723738,75,24.55,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723739,75,24.4,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723740,75,24.2,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723741,75,24.2,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723742,75,24.05,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723743,80,75.4,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723744,80,75.8,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723745,80,76.03,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723746,80,76.7,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723747,80,77.05,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723748,80,77.6,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723749,80,77.82,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723750,80,77.82,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723751,80,77.83,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723752,80,78.07,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723753,80,77.82,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723754,80,77.95,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723755,80,77.7,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723756,80,77.7,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723757,80,77.7,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723758,80,77.3,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723759,80,77.05,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723760,80,76.8,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723761,80,76.4,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723762,80,76.15,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723763,80,75.9,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723764,80,75.5,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723765,80,75.5,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723766,80,75.3,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723767,68,0.083,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723768,68,0.083,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723769,68,0.083,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723770,68,0.084,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723771,68,0.085,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723772,68,0.085,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723773,68,0.086,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723774,68,0.084,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723775,68,0.086,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723776,68,0.087,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723777,68,0.085,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723778,68,0.085,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723779,68,0.085,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723780,68,0.086,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723781,68,0.085,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723782,68,0.085,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723783,68,0.085,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723784,68,0.084,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723785,68,0.083,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723786,68,0.084,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723787,68,0.084,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723788,68,0.082,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723789,68,0.083,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723790,68,0.082,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723791,88,25.58,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723792,88,25.68,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723793,88,25.92,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723794,88,25.56,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723795,88,25.68,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723796,88,25.62,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723797,88,25.42,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723798,88,26.23,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723799,88,25.87,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723800,88,25.3,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723801,88,25.92,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723802,88,25.99,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723803,88,25.51,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723804,88,25.5,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723805,88,25.54,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723806,88,25.46,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723807,88,25.53,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723808,88,25.64,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723809,88,25.71,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723810,88,25.46,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723811,88,25.06,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723812,88,25.3,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723813,88,25.29,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723814,88,25.38,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723815,98,29.67,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723816,98,29.77,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723817,98,29.85,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723818,98,30.29,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723819,98,30.41,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723820,98,30.78,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723821,98,31,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723822,98,30.37,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723823,98,30.84,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723824,98,31.33,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723825,98,30.67,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723826,98,30.54,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723827,98,30.87,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723828,98,30.87,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723829,98,30.69,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723830,98,30.58,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723831,98,30.47,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723832,98,30.17,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723833,98,30.02,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723834,98,29.95,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723835,98,30.14,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723836,98,29.78,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723837,98,29.77,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723838,98,29.67,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723839,87,26.11,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723840,87,26.22,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723841,87,26.48,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723842,87,26.13,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723843,87,26.26,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723844,87,26.21,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723845,87,26.02,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723846,87,26.86,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723847,87,26.5,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723848,87,25.92,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723849,87,26.54,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723850,87,26.61,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723851,87,26.12,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723852,87,26.1,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723853,87,26.14,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723854,87,26.04,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723855,87,26.11,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723856,87,26.22,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723857,87,26.27,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723858,87,26,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723859,87,25.59,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723860,87,25.82,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723861,87,25.81,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723862,87,25.89,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723863,97,30.03,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723864,97,30.05,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723865,97,30.03,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723866,97,30.36,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723867,97,30.37,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723868,97,30.64,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723869,97,30.78,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723870,97,30.09,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723871,97,30.53,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723872,97,31,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723873,97,30.38,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723874,97,30.26,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723875,97,30.62,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723876,97,30.66,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723877,97,30.54,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723878,97,30.49,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723879,97,30.46,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723880,97,30.21,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723881,97,30.15,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723882,97,30.16,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723883,97,30.41,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723884,97,30.12,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723885,97,30.14,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723886,97,30.06,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723887,61,0.262,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723888,61,0.264,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723889,61,0.263,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723890,61,0.264,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723891,61,0.263,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723892,61,0.265,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723893,61,0.263,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723894,61,0.261,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723895,61,0.261,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723896,61,0.261,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723897,61,0.261,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723898,61,0.263,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723899,61,0.265,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723900,61,0.268,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723901,61,0.267,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723902,61,0.266,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723903,61,0.265,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723904,61,0.263,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723905,61,0.262,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723906,61,0.262,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723907,61,0.262,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723908,61,0.262,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723909,61,0.262,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723910,61,0.263,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723911,69,0.045,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723912,69,0.045,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723913,69,0.045,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723914,69,0.045,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723915,69,0.045,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723916,69,0.045,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723917,69,0.045,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723918,69,0.045,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723919,69,0.045,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723920,69,0.045,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723921,69,0.045,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723922,69,0.045,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723923,69,0.044,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723924,69,0.044,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723925,69,0.044,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723926,69,0.044,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723927,69,0.045,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723928,69,0.045,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723929,69,0.045,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723930,69,0.045,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723931,69,0.045,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723932,69,0.045,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723933,69,0.045,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723934,69,0.045,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723935,76,23.5,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723936,76,23.5,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723937,76,23.5,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723938,76,23.5,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723939,76,23.45,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723940,76,23.5,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723941,76,23.5,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723942,76,23.5,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723943,76,23.55,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723944,76,23.7,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723945,76,23.7,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723946,76,23.7,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723947,76,23.7,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723948,76,23.7,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723949,76,23.75,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723950,76,23.9,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723951,76,23.9,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723952,76,23.9,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723953,76,23.9,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723954,76,23.85,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723955,76,23.9,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723956,76,23.9,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723957,76,23.9,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723958,76,23.85,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723959,81,74.3,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723960,81,74.3,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723961,81,74.3,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723962,81,74.3,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723963,81,74.2,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723964,81,74.3,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723965,81,74.3,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723966,81,74.3,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723967,81,74.4,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723968,81,74.7,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723969,81,74.7,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723970,81,74.7,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723971,81,74.7,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723972,81,74.7,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723973,81,74.8,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723974,81,75.1,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723975,81,75.1,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13723976,81,75.1,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13723977,81,75.1,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13723978,81,75,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13723979,81,75.1,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13723980,81,75.1,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13723981,81,75.1,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13723982,81,75,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13723983,70,0.044,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13723984,70,0.044,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13723985,70,0.044,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13723986,70,0.044,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13723987,70,0.044,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13723988,70,0.044,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13723989,70,0.044,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13723990,70,0.044,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13723991,70,0.045,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13723992,70,0.045,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13723993,70,0.045,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13723994,70,0.045,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13723995,70,0.044,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13723996,70,0.044,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13723997,70,0.044,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13723998,70,0.044,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13723999,70,0.045,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724000,70,0.045,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724001,70,0.045,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724002,70,0.045,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724003,70,0.045,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724004,70,0.045,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724005,70,0.045,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724006,70,0.045,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724007,90,16.4,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724008,90,16.48,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724009,90,16.48,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724010,90,16.54,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724011,90,16.48,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724012,90,16.54,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724013,90,16.44,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724014,90,16.32,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724015,90,16.33,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724016,90,16.33,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724017,90,16.33,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724018,90,16.44,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724019,90,16.56,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724020,90,16.78,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724021,90,16.67,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724022,90,16.67,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724023,90,16.56,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724024,90,16.45,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724025,90,16.34,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724026,90,16.34,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724027,90,16.34,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724028,90,16.34,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724029,90,16.34,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724030,90,16.37,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724031,100,15.89,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724032,100,15.78,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724033,100,15.77,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724034,100,15.75,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724035,100,15.77,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724036,100,15.75,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724037,100,15.83,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724038,100,16.01,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724039,100,16.01,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724040,100,16.01,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724041,100,16.01,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724042,100,15.93,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724043,100,15.86,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724044,100,15.71,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724045,100,15.78,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724046,100,15.79,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724047,100,15.86,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724048,100,15.94,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724049,100,16.02,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724050,100,16.02,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724051,100,16.02,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724052,100,16.02,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724053,100,16.02,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724054,100,15.96,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724055,89,16.72,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724056,89,16.8,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724057,89,16.8,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724058,89,16.86,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724059,89,16.8,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724060,89,16.86,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724061,89,16.76,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724062,89,16.64,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724063,89,16.65,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724064,89,16.65,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724065,89,16.65,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724066,89,16.77,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724067,89,16.89,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724068,89,17.12,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724069,89,17.01,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724070,89,17.01,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724071,89,16.9,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724072,89,16.79,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724073,89,16.67,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724074,89,16.67,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724075,89,16.67,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724076,89,16.67,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724077,89,16.67,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724078,89,16.71,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724079,99,16.2,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724080,99,16.08,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724081,99,16.1,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724082,99,16.07,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724083,99,16.09,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724084,99,16.05,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724085,99,16.14,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724086,99,16.31,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724087,99,16.3,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724088,99,16.3,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724089,99,16.28,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724090,99,16.2,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724091,99,16.11,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724092,99,15.95,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724093,99,16.01,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724094,99,16.01,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724095,99,16.08,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724096,99,16.15,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724097,99,16.23,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724098,99,16.23,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724099,99,16.23,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724100,99,16.23,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724101,99,16.23,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724102,99,16.19,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724103,62,0.374,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724104,62,0.377,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724105,62,0.379,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724106,62,0.379,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724107,62,0.379,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724108,62,0.379,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724109,62,0.379,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724110,62,0.379,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724111,62,0.379,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724112,62,0.378,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724113,62,0.382,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724114,62,0.384,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724115,62,0.384,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724116,62,0.381,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724117,62,0.387,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724118,62,0.387,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724119,62,0.387,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724120,62,0.387,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724121,62,0.387,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724122,62,0.387,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724123,62,0.387,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724124,62,0.387,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724125,62,0.387,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724126,62,0.377,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724127,71,0.107,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724128,71,0.106,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724129,71,0.105,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724130,71,0.105,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724131,71,0.105,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724132,71,0.105,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724133,71,0.105,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724134,71,0.105,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724135,71,0.105,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724136,71,0.106,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724137,71,0.105,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724138,71,0.105,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724139,71,0.105,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724140,71,0.106,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724141,71,0.104,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724142,71,0.104,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724143,71,0.104,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724144,71,0.104,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724145,71,0.104,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724146,71,0.104,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724147,71,0.104,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724148,71,0.104,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724149,71,0.104,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724150,71,0.106,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724151,77,20.85,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724152,77,20.85,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724153,77,20.9,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724154,77,20.85,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724155,77,20.9,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724156,77,20.9,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724157,77,20.9,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724158,77,20.85,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724159,77,20.9,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724160,77,20.85,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724161,77,20.85,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724162,77,20.9,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724163,77,20.9,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724164,77,20.9,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724165,77,20.85,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724166,77,20.9,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724167,77,20.9,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724168,77,20.9,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724169,77,20.85,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724170,77,20.8,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724171,77,20.95,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724172,77,20.85,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724173,77,20.95,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724174,77,21.05,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724175,82,69.5,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724176,82,69.5,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724177,82,69.6,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724178,82,69.5,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724179,82,69.6,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724180,82,69.6,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724181,82,69.6,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724182,82,69.5,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724183,82,69.6,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724184,82,69.5,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724185,82,69.5,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724186,82,69.6,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724187,82,69.6,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724188,82,69.6,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724189,82,69.5,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724190,82,69.6,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724191,82,69.6,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724192,82,69.6,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724193,82,69.5,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724194,82,69.4,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724195,82,69.7,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724196,82,69.5,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724197,82,69.7,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724198,82,69.9,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724199,72,0.1,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724200,72,0.099,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724201,72,0.099,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724202,72,0.099,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724203,72,0.099,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724204,72,0.099,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724205,72,0.099,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724206,72,0.099,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724207,72,0.099,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724208,72,0.099,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724209,72,0.099,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724210,72,0.098,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724211,72,0.098,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724212,72,0.099,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724213,72,0.098,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724214,72,0.098,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724215,72,0.098,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724216,72,0.098,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724217,72,0.098,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724218,72,0.098,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724219,72,0.098,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724220,72,0.098,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724221,72,0.098,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724222,72,0.099,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724223,92,25.75,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724224,92,25.97,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724225,92,26.2,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724226,92,26.2,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724227,92,26.2,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724228,92,26.2,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724229,92,26.2,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724230,92,26.2,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724231,92,26.2,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724232,92,26.09,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724233,92,26.47,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724234,92,26.66,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724235,92,26.66,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724236,92,26.35,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724237,92,26.96,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724238,92,26.97,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724239,92,26.97,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724240,92,26.97,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724241,92,26.97,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724242,92,26.97,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724243,92,26.97,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724244,92,26.97,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724245,92,26.97,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724246,92,26.06,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724247,102,36.13,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724248,102,35.8,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724249,102,35.48,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724250,102,35.48,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724251,102,35.48,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724252,102,35.48,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724253,102,35.48,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724254,102,35.48,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724255,102,35.48,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724256,102,35.64,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724257,102,35.56,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724258,102,35.51,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724259,102,35.51,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724260,102,35.72,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724261,102,35.3,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724262,102,35.31,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724263,102,35.31,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724264,102,35.31,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724265,102,35.31,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724266,102,35.31,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724267,102,35.31,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724268,102,35.31,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724269,102,35.31,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724270,102,35.93,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724271,91,26.08,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724272,91,26.31,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724273,91,26.54,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724274,91,26.53,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724275,91,26.54,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724276,91,26.54,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724277,91,26.54,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724278,91,26.54,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724279,91,26.54,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724280,91,26.42,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724281,91,26.81,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724282,91,27,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724283,91,27.01,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724284,91,26.7,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724285,91,27.31,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724286,91,27.32,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724287,91,27.32,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724288,91,27.32,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724289,91,27.32,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724290,91,27.32,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724291,91,27.32,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724292,91,27.32,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724293,91,27.32,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724294,91,26.4,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13724295,101,38.39,'2011-08-14 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13724296,101,38.05,'2011-08-14 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13724297,101,37.7,'2011-08-14 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13724298,101,37.71,'2011-08-14 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13724299,101,37.7,'2011-08-14 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13724300,101,37.7,'2011-08-14 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13724301,101,37.7,'2011-08-14 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13724302,101,37.7,'2011-08-14 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13724303,101,37.7,'2011-08-14 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13724304,101,37.87,'2011-08-14 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13724305,101,37.78,'2011-08-15 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13724306,101,37.73,'2011-08-15 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13724307,101,37.73,'2011-08-15 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13724308,101,37.95,'2011-08-15 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13724309,101,37.51,'2011-08-15 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13724310,101,37.5,'2011-08-15 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13724311,101,37.5,'2011-08-15 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13724312,101,37.49,'2011-08-15 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13724313,101,37.48,'2011-08-15 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13724314,101,37.48,'2011-08-15 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13724315,101,37.48,'2011-08-15 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13724316,101,37.48,'2011-08-15 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13724317,101,37.48,'2011-08-15 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13724318,101,38.14,'2011-08-15 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728388,31,13.22,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728389,31,13.23,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728390,31,13.22,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728391,31,13.21,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728392,31,13.24,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728393,31,12.91,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728394,31,12.77,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728395,31,12.72,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728396,31,12.68,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728397,31,12.65,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728398,31,12.61,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728399,31,12.59,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728400,31,12.56,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728401,31,12.53,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728402,31,12.51,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728403,31,12.47,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728404,31,12.46,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728405,31,12.49,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728406,31,12.94,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728407,31,13.41,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728408,31,13.37,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728409,31,13.34,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728410,31,13.32,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728411,31,13.28,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728412,32,3.66,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728413,32,4.16,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728414,32,3.28,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728415,32,2.496,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728416,32,1.314,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728417,32,2.263,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728418,32,1.842,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728419,32,1.615,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728420,32,1.348,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728421,32,1.396,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728422,32,1.31,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728423,32,1.58,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728424,32,1.853,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728425,32,1.827,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728426,32,1.78,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728427,32,1.894,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728428,32,1.128,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728429,32,0.739,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728430,32,0.736,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728431,32,2.521,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728432,32,3.039,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728433,32,2.848,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728434,32,3.071,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728435,32,3.202,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728436,33,284,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728437,33,271.9,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728438,33,252.2,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728439,33,255.1,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728440,33,222.1,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728441,33,286.9,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728442,33,312.1,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728443,33,221.9,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728444,33,221.2,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728445,33,222.7,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728446,33,221.8,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728447,33,224.1,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728448,33,214.5,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728449,33,214.5,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728450,33,214,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728451,33,228,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728452,33,218.2,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728453,33,172.4,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728454,33,102.3,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728455,33,43.6,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728456,33,46.66,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728457,33,49.91,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728458,33,51.94,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728459,33,44.2,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728460,34,15.27,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728461,34,34.63,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728462,34,27.91,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728463,34,19.59,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728464,34,22.01,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728465,34,61.72,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728466,34,30.97,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728467,34,45.71,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728468,34,53.21,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728469,34,41.4,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728470,34,48.84,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728471,34,28.51,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728472,34,16.91,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728473,34,22.75,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728474,34,15.83,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728475,34,20.92,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728476,34,37.24,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728477,34,46.31,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728478,34,39.52,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728479,34,23.49,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728480,34,16.44,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728481,34,15.44,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728482,34,14.64,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728483,34,16.15,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728484,35,628.7,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13728485,35,628.7,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13728486,35,628.5,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13728487,35,628.4,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13728488,35,628.4,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13728489,35,628.8,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13728490,35,629.2,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13728491,35,629.9,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13728492,35,630.3,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13728493,35,630.8,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13728494,35,631.3,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13728495,35,631.5,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13728496,35,631.7,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13728497,35,631.9,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13728498,35,632,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13728499,35,632.1,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13728500,35,632.1,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13728501,35,632.2,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13728502,35,632.3,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13728503,35,632.5,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13728504,35,632.6,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13728505,35,632.6,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13728506,35,632.5,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13728507,35,632.4,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13728508,30,0,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728509,30,0,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728510,30,0,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728511,30,0,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728512,30,0,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728513,30,0,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728514,30,0,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728515,30,0,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728516,30,0,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728517,30,0,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728518,30,0,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728519,30,0,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728520,30,0,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728521,30,0,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728522,30,0,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728523,30,0,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728524,30,0,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728525,30,0,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728526,30,0,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728527,30,0,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728528,30,0,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728529,30,0,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728530,30,0,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728531,30,0,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728532,28,24.96,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728533,28,26.86,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728534,28,26.91,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728535,28,25.97,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728536,28,24.49,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728537,28,22.92,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728538,28,20.72,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728539,28,15.83,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728540,28,14.12,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728541,28,12.79,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728542,28,11.37,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728543,28,11.47,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728544,28,11.14,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728545,28,10.7,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728546,28,10.83,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728547,28,10.34,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728548,28,9.77,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728549,28,11.75,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728550,28,16.42,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728551,28,18.94,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728552,28,18.69,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728553,28,20.2,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728554,28,22.07,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728555,28,23.8,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728556,29,43.7,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728557,29,38.13,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728558,29,36.49,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728559,29,40.73,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728560,29,48.21,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728561,29,37.46,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728562,29,47.81,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728563,29,60.07,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728564,29,64.39,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728565,29,68.14,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728566,29,69.46,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728567,29,64.62,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728568,29,70.88,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728569,29,67.64,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728570,29,70.94,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728571,29,72.22,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728572,29,73.89,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728573,29,65.25,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728574,29,51.99,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728575,29,51.06,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728576,29,43.02,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728577,29,39.78,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728578,29,33.57,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728579,29,25.57,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728580,36,367.5,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728581,36,924,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728582,36,787.4,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728583,36,334.8,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728584,36,115.6,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728585,36,93,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728586,36,6.682,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728587,36,0,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728588,36,0,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728589,36,0,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728590,36,0,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728591,36,0,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728592,36,0,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728593,36,0,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728594,36,0,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728595,36,0,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728596,36,6.072,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728597,36,121.7,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728598,36,347.7,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728599,36,580,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728600,36,785.4,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728601,36,942,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728602,36,1040,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728603,36,1073,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728604,46,1.519,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728605,46,1.332,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728606,46,1.53,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728607,46,1.26,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728608,46,1.477,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728609,46,1.459,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728610,46,1.58,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728611,46,1.157,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728612,46,1.578,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728613,46,1.498,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728614,46,1.469,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728615,46,1.433,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728616,46,1.413,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728617,46,1.434,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728618,46,1.456,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728619,46,1.458,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728620,46,1.455,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728621,46,1.454,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728622,46,1.476,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728623,46,1.463,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728624,46,1.734,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728625,46,1.509,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728626,46,1.513,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728627,46,1.494,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728628,47,1.587,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728629,47,1.396,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728630,47,1.604,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728631,47,1.318,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728632,47,1.542,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728633,47,1.52,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728634,47,1.639,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728635,47,1.19,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728636,47,1.618,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728637,47,1.533,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728638,47,1.499,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728639,47,1.463,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728640,47,1.442,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728641,47,1.462,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728642,47,1.484,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728643,47,1.485,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728644,47,1.48,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728645,47,1.485,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728646,47,1.519,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728647,47,1.513,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728648,47,1.792,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728649,47,1.563,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728650,47,1.573,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728651,47,1.557,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728652,48,0.183,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13728653,48,0.374,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13728654,48,0.166,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13728655,48,0.452,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13728656,48,0.228,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13728657,48,0.25,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13728658,48,0.131,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13728659,48,0.58,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13728660,48,0.152,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13728661,48,0.237,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13728662,48,0.271,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13728663,48,0.307,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13728664,48,0.328,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13728665,48,0.308,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13728666,48,0.286,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13728667,48,0.285,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13728668,48,0.29,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13728669,48,0.285,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13728670,48,0.251,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13728671,48,0.257,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13728672,48,-0.022,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13728673,48,0.207,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13728674,48,0.197,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13728675,48,0.213,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13728676,41,20.06,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728677,40,27.77,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728678,39,10.81,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728679,37,12.51,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728680,43,629.4,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728681,44,1.27,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728682,42,54.08,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728683,45,25.50482,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728684,38,2.999,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728685,51,0,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728686,53,2.071,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728687,49,1.439,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728688,52,0,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728689,54,2.127,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728690,50,1.491,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728691,56,-0.357,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728692,57,1.77,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13728693,55,0.279,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13730854,58,0.175,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730855,58,0.175,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13730856,58,0.176,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13730857,58,0.177,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13730858,58,0.175,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13730859,58,0.175,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13730860,58,0.172,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13730861,58,0.17,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13730862,58,0.168,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13730863,58,0.168,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13730864,58,0.167,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13730865,58,0.165,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13730866,58,0.164,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13730867,58,0.164,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13730868,58,0.163,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13730869,58,0.164,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13730870,58,0.162,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13730871,58,0.162,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13730872,58,0.162,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13730873,58,0.166,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13730874,58,0.166,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13730875,58,0.171,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13730876,58,0.171,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13730877,58,0.176,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13730878,63,0.02,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730879,63,0.02,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13730880,63,0.02,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13730881,63,0.019,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13730882,63,0.019,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13730883,63,0.019,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13730884,63,0.019,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13730885,63,0.019,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13730886,63,0.019,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13730887,63,0.02,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13730888,63,0.019,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13730889,63,0.02,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13730890,63,0.02,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13730891,63,0.019,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13730892,63,0.02,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13730893,63,0.019,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13730894,63,0.02,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13730895,63,0.02,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13730896,63,0.02,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13730897,63,0.02,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13730898,63,0.02,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13730899,63,0.02,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13730900,63,0.02,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13730901,63,0.02,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13730902,73,27.72,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730903,73,27.5,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13730904,73,27.9,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13730905,73,27.95,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13730906,73,27.27,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13730907,73,26.6,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13730908,73,25.77,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13730909,73,24.77,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13730910,73,23.92,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13730911,73,23.2,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13730912,73,22.55,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13730913,73,21.9,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13730914,73,21.4,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13730915,73,20.9,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13730916,73,20.5,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13730917,73,20.1,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13730918,73,19.8,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13730919,73,19.45,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13730920,73,19.55,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13730921,73,20.35,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13730922,73,21.5,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13730923,73,22.75,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13730924,73,24.13,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13730925,73,25.58,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13730926,78,81.9,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730927,78,81.5,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13730928,78,82.3,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13730929,78,82.4,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13730930,78,81.1,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13730931,78,79.87,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13730932,78,78.39,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13730933,78,76.59,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13730934,78,75.1,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13730935,78,73.75,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13730936,78,72.55,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13730937,78,71.5,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13730938,78,70.5,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13730939,78,69.6,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13730940,78,68.87,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13730941,78,68.17,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13730942,78,67.65,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13730943,78,67.02,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13730944,78,67.23,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13730945,78,68.63,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13730946,78,70.73,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13730947,78,72.96,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13730948,78,75.43,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13730949,78,78.08,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13730950,64,0.02,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730951,64,0.02,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13730952,64,0.02,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13730953,64,0.02,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13730954,64,0.02,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13730955,64,0.02,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13730956,64,0.02,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13730957,64,0.019,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13730958,64,0.019,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13730959,64,0.019,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13730960,64,0.019,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13730961,64,0.019,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13730962,64,0.019,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13730963,64,0.018,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13730964,64,0.018,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13730965,64,0.018,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13730966,64,0.018,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13730967,64,0.018,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13730968,64,0.018,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13730969,64,0.018,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13730970,64,0.019,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13730971,64,0.019,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13730972,64,0.02,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13730973,64,0.02,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13730974,84,10.54,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730975,84,10.58,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13730976,84,10.58,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13730977,84,10.66,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13730978,84,10.56,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13730979,84,10.52,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13730980,84,10.41,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13730981,84,10.26,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13730982,84,10.16,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13730983,84,10.13,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13730984,84,10.09,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13730985,84,9.93,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13730986,84,9.91,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13730987,84,9.89,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13730988,84,9.83,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13730989,84,9.92,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13730990,84,9.76,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13730991,84,9.78,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13730992,84,9.82,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13730993,84,10.02,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13730994,84,10.04,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13730995,84,10.3,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13730996,84,10.32,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13730997,84,10.59,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13730998,94,7.386,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13730999,94,7.256,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731000,94,7.376,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731001,94,7.28,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731002,94,7.234,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731003,94,7.145,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731004,94,7.028,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731005,94,6.937,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731006,94,6.892,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731007,94,6.821,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731008,94,6.722,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731009,94,6.724,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731010,94,6.648,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731011,94,6.621,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731012,94,6.621,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731013,94,6.498,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731014,94,6.555,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731015,94,6.519,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731016,94,6.562,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731017,94,6.607,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731018,94,6.836,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731019,94,6.933,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731020,94,7.188,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731021,94,7.287,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731022,83,10.85,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731023,83,10.87,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731024,83,10.9,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731025,83,10.98,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731026,83,10.85,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731027,83,10.8,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731028,83,10.66,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731029,83,10.48,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731030,83,10.36,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731031,83,10.31,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731032,83,10.26,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731033,83,10.08,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731034,83,10.05,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731035,83,10.01,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731036,83,9.94,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731037,83,10.03,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731038,83,9.86,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731039,83,9.87,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731040,83,9.91,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731041,83,10.14,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731042,83,10.18,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731043,83,10.47,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731044,83,10.54,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731045,83,10.85,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731046,93,7.1,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731047,93,7.016,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731048,93,7.079,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731049,93,6.979,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731050,93,7.002,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731051,93,6.983,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731052,93,6.969,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731053,93,6.977,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731054,93,7.016,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731055,93,7.02,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731056,93,6.988,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731057,93,7.055,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731058,93,7.03,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731059,93,7.052,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731060,93,7.093,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731061,93,6.998,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731062,93,7.1,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731063,93,7.1,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731064,93,7.129,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731065,93,7.081,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731066,93,7.198,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731067,93,7.158,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731068,93,7.277,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731069,93,7.211,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731070,59,0.286,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731071,59,0.288,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731072,59,0.288,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731073,59,0.287,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731074,59,0.288,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731075,59,0.288,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731076,59,0.286,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731077,59,0.285,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731078,59,0.285,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731079,59,0.285,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731080,59,0.285,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731081,59,0.282,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731082,59,0.279,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731083,59,0.278,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731084,59,0.279,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731085,59,0.278,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731086,59,0.277,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731087,59,0.276,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731088,59,0.275,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731089,59,0.276,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731090,59,0.276,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731091,59,0.276,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731092,59,0.278,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731093,59,0.281,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731094,65,0.04,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731095,65,0.04,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731096,65,0.04,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731097,65,0.04,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731098,65,0.039,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731099,65,0.04,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731100,65,0.04,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731101,65,0.039,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731102,65,0.039,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731103,65,0.039,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731104,65,0.039,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731105,65,0.039,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731106,65,0.039,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731107,65,0.039,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731108,65,0.038,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731109,65,0.038,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731110,65,0.038,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731111,65,0.038,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731112,65,0.038,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731113,65,0.038,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731114,65,0.038,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731115,65,0.038,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731116,65,0.039,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731117,65,0.038,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731118,74,25.78,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731119,74,26.35,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731120,74,26.4,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731121,74,26.63,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731122,74,26.7,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731123,74,26.35,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731124,74,26.05,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731125,74,25.55,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731126,74,25.05,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731127,74,24.5,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731128,74,24,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731129,74,23.45,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731130,74,22.9,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731131,74,22.5,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731132,74,22,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731133,74,21.7,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731134,74,21.3,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731135,74,21,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731136,74,20.7,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731137,74,20.75,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731138,74,21.05,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731139,74,21.65,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731140,74,22.63,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731141,74,24,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731142,79,78.4,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731143,79,79.4,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731144,79,79.5,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731145,79,79.88,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731146,79,80,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731147,79,79.4,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731148,79,78.85,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731149,79,78.07,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731150,79,77.17,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731151,79,76.05,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731152,79,75.2,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731153,79,74.2,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731154,79,73.2,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731155,79,72.45,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731156,79,71.7,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731157,79,71.1,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731158,79,70.32,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731159,79,69.8,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731160,79,69.2,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731161,79,69.3,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731162,79,69.88,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731163,79,71,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731164,79,72.73,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731165,79,75.21,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731166,66,0.04,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731167,66,0.04,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731168,66,0.04,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731169,66,0.04,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731170,66,0.04,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731171,66,0.04,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731172,66,0.04,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731173,66,0.04,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731174,66,0.039,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731175,66,0.039,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731176,66,0.038,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731177,66,0.038,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731178,66,0.038,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731179,66,0.037,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731180,66,0.037,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731181,66,0.037,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731182,66,0.036,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731183,66,0.036,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731184,66,0.036,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731185,66,0.036,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731186,66,0.036,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731187,66,0.037,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731188,66,0.037,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731189,66,0.038,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731190,86,18.2,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731191,86,18.38,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731192,86,18.35,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731193,86,18.33,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731194,86,18.4,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731195,86,18.32,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731196,86,18.27,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731197,86,18.14,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731198,86,18.14,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731199,86,18.13,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731200,86,18.1,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731201,86,17.9,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731202,86,17.67,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731203,86,17.63,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731204,86,17.69,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731205,86,17.58,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731206,86,17.5,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731207,86,17.43,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731208,86,17.38,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731209,86,17.41,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731210,86,17.43,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731211,86,17.41,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731212,86,17.58,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731213,86,17.84,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731214,96,14.4,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731215,96,14.48,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731216,96,14.54,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731217,96,14.6,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731218,96,14.58,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731219,96,14.59,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731220,96,14.46,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731221,96,14.34,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731222,96,14.21,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731223,96,13.98,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731224,96,13.8,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731225,96,13.72,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731226,96,13.67,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731227,96,13.49,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731228,96,13.26,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731229,96,13.17,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731230,96,13.11,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731231,96,12.98,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731232,96,12.87,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731233,96,12.82,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731234,96,12.91,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731235,96,13.18,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731236,96,13.38,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731237,96,13.59,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731238,85,18.64,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731239,85,18.85,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731240,85,18.83,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731241,85,18.81,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731242,85,18.89,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731243,85,18.8,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731244,85,18.73,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731245,85,18.58,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731246,85,18.56,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731247,85,18.53,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731248,85,18.47,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731249,85,18.25,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731250,85,18,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731251,85,17.93,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731252,85,17.98,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731253,85,17.86,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731254,85,17.76,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731255,85,17.68,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731256,85,17.62,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731257,85,17.64,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731258,85,17.68,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731259,85,17.68,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731260,85,17.88,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731261,85,18.19,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731262,95,14.25,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731263,95,14.21,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731264,95,14.24,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731265,95,14.27,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731266,95,14.24,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731267,95,14.28,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731268,95,14.21,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731269,95,14.17,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731270,95,14.14,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731271,95,14.01,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731272,95,13.94,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731273,95,13.96,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731274,95,14.01,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731275,95,13.92,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731276,95,13.76,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731277,95,13.74,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731278,95,13.74,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731279,95,13.69,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731280,95,13.63,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731281,95,13.58,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731282,95,13.63,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731283,95,13.79,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731284,95,13.82,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731285,95,13.8,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731286,60,0.37,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731287,60,0.368,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731288,60,0.371,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731289,60,0.371,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731290,60,0.367,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731291,60,0.373,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731292,60,0.373,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731293,60,0.37,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731294,60,0.375,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731295,60,0.375,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731296,60,0.373,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731297,60,0.372,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731298,60,0.364,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731299,60,0.372,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731300,60,0.367,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731301,60,0.368,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731302,60,0.368,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731303,60,0.367,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731304,60,0.367,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731305,60,0.367,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731306,60,0.369,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731307,60,0.371,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731308,60,0.368,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731309,60,0.366,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731310,67,0.083,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731311,67,0.084,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731312,67,0.083,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731313,67,0.083,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731314,67,0.084,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731315,67,0.084,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731316,67,0.084,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731317,67,0.084,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731318,67,0.083,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731319,67,0.084,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731320,67,0.084,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731321,67,0.085,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731322,67,0.085,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731323,67,0.083,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731324,67,0.084,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731325,67,0.084,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731326,67,0.084,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731327,67,0.084,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731328,67,0.083,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731329,67,0.083,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731330,67,0.083,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731331,67,0.082,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731332,67,0.082,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731333,67,0.083,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731334,75,24.13,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731335,75,24.2,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731336,75,24.3,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731337,75,24.4,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731338,75,24.63,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731339,75,24.7,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731340,75,24.8,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731341,75,24.9,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731342,75,24.9,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731343,75,24.9,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731344,75,24.85,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731345,75,24.8,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731346,75,24.7,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731347,75,24.55,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731348,75,24.4,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731349,75,24.2,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731350,75,24.12,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731351,75,23.9,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731352,75,23.65,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731353,75,23.6,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731354,75,23.4,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731355,75,23.22,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731356,75,23.22,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731357,75,23.22,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731358,80,75.4,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731359,80,75.5,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731360,80,75.7,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731361,80,75.9,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731362,80,76.28,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731363,80,76.4,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731364,80,76.6,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731365,80,76.8,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731366,80,76.8,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731367,80,76.8,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731368,80,76.7,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731369,80,76.6,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731370,80,76.4,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731371,80,76.15,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731372,80,75.9,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731373,80,75.5,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731374,80,75.4,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731375,80,75.1,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731376,80,74.6,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731377,80,74.5,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731378,80,74.1,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731379,80,73.78,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731380,80,73.78,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731381,80,73.78,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731382,68,0.082,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731383,68,0.083,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731384,68,0.082,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731385,68,0.082,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731386,68,0.084,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731387,68,0.083,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731388,68,0.083,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731389,68,0.084,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731390,68,0.083,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731391,68,0.083,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731392,68,0.083,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731393,68,0.084,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731394,68,0.085,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731395,68,0.083,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731396,68,0.083,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731397,68,0.083,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731398,68,0.083,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731399,68,0.083,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731400,68,0.082,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731401,68,0.081,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731402,68,0.081,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731403,68,0.08,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731404,68,0.081,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731405,68,0.081,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731406,88,25.37,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731407,88,25.17,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731408,88,25.41,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731409,88,25.42,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731410,88,25.12,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731411,88,25.63,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731412,88,25.71,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731413,88,25.41,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731414,88,25.87,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731415,88,25.87,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731416,88,25.64,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731417,88,25.63,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731418,88,24.84,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731419,88,25.58,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731420,88,25.07,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731421,88,25.18,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731422,88,25.18,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731423,88,25.13,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731424,88,25.05,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731425,88,25.08,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731426,88,25.22,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731427,88,25.5,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731428,88,25.25,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731429,88,25.04,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731430,98,29.67,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731431,98,29.84,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731432,98,29.68,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731433,98,29.7,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731434,98,30.22,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731435,98,29.93,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731436,98,30.03,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731437,98,30.33,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731438,98,30,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731439,98,30,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731440,98,30.16,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731441,98,30.16,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731442,98,30.56,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731443,98,29.88,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731444,98,29.92,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731445,98,29.84,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731446,98,29.86,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731447,98,29.6,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731448,98,29.5,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731449,98,29.33,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731450,98,29.07,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731451,98,28.81,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731452,98,28.93,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731453,98,29.09,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731454,87,25.89,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731455,87,25.69,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731456,87,25.94,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731457,87,25.96,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731458,87,25.66,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731459,87,26.19,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731460,87,26.28,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731461,87,25.98,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731462,87,26.45,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731463,87,26.44,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731464,87,26.21,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731465,87,26.19,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731466,87,25.38,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731467,87,26.13,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731468,87,25.6,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731469,87,25.7,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731470,87,25.69,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731471,87,25.63,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731472,87,25.54,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731473,87,25.56,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731474,87,25.69,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731475,87,25.97,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731476,87,25.71,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731477,87,25.49,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731478,97,30.06,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731479,97,30.2,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731480,97,29.98,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731481,97,29.94,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731482,97,30.41,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731483,97,30.05,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731484,97,30.12,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731485,97,30.39,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731486,97,30.05,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731487,97,30.06,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731488,97,30.23,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731489,97,30.26,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731490,97,30.7,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731491,97,30.09,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731492,97,30.19,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731493,97,30.18,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731494,97,30.26,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731495,97,30.08,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731496,97,30.04,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731497,97,29.95,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731498,97,29.75,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731499,97,29.55,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731500,97,29.71,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731501,97,29.87,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731502,61,0.264,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731503,61,0.264,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731504,61,0.265,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731505,61,0.265,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731506,61,0.265,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731507,61,0.265,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731508,61,0.265,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731509,61,0.264,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731510,61,0.263,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731511,61,0.262,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731512,61,0.262,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731513,61,0.262,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731514,61,0.262,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731515,61,0.262,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731516,61,0.262,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731517,61,0.262,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731518,61,0.263,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731519,61,0.262,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731520,61,0.262,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731521,61,0.262,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731522,61,0.262,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731523,61,0.261,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731524,61,0.263,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731525,61,0.265,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731526,69,0.045,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731527,69,0.045,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731528,69,0.045,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731529,69,0.045,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731530,69,0.045,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731531,69,0.045,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731532,69,0.045,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731533,69,0.045,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731534,69,0.045,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731535,69,0.045,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731536,69,0.045,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731537,69,0.045,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731538,69,0.045,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731539,69,0.045,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731540,69,0.045,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731541,69,0.045,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731542,69,0.045,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731543,69,0.045,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731544,69,0.045,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731545,69,0.045,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731546,69,0.045,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731547,69,0.045,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731548,69,0.045,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731549,69,0.045,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731550,76,23.75,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731551,76,23.7,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731552,76,23.7,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731553,76,23.7,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731554,76,23.7,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731555,76,23.7,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731556,76,23.7,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731557,76,23.65,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731558,76,23.7,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731559,76,23.7,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731560,76,23.7,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731561,76,23.7,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731562,76,23.7,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731563,76,23.7,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731564,76,23.7,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731565,76,23.7,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731566,76,23.7,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731567,76,23.7,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731568,76,23.7,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731569,76,23.7,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731570,76,23.7,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731571,76,23.7,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731572,76,23.7,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731573,76,23.7,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731574,81,74.8,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731575,81,74.7,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731576,81,74.7,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731577,81,74.7,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731578,81,74.7,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731579,81,74.7,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731580,81,74.7,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731581,81,74.6,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731582,81,74.7,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731583,81,74.7,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731584,81,74.7,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731585,81,74.7,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731586,81,74.7,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731587,81,74.7,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731588,81,74.7,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731589,81,74.7,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731590,81,74.7,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731591,81,74.7,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731592,81,74.7,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731593,81,74.7,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731594,81,74.7,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731595,81,74.7,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731596,81,74.7,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731597,81,74.7,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731598,70,0.044,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731599,70,0.044,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731600,70,0.044,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731601,70,0.044,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731602,70,0.044,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731603,70,0.044,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731604,70,0.044,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731605,70,0.044,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731606,70,0.044,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731607,70,0.045,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731608,70,0.045,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731609,70,0.045,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731610,70,0.045,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731611,70,0.045,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731612,70,0.045,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731613,70,0.045,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731614,70,0.045,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731615,70,0.045,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731616,70,0.045,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731617,70,0.045,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731618,70,0.045,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731619,70,0.045,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731620,70,0.044,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731621,70,0.044,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731622,90,16.49,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731623,90,16.49,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731624,90,16.55,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731625,90,16.55,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731626,90,16.55,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731627,90,16.55,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731628,90,16.55,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731629,90,16.49,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731630,90,16.45,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731631,90,16.33,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731632,90,16.33,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731633,90,16.33,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731634,90,16.33,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731635,90,16.33,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731636,90,16.33,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731637,90,16.33,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731638,90,16.44,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731639,90,16.33,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731640,90,16.33,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731641,90,16.33,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731642,90,16.33,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731643,90,16.33,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731644,90,16.45,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731645,90,16.61,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731646,100,15.78,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731647,100,15.78,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731648,100,15.75,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731649,100,15.75,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731650,100,15.75,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731651,100,15.75,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731652,100,15.75,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731653,100,15.78,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731654,100,15.84,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731655,100,16.01,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731656,100,16.01,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731657,100,16.01,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731658,100,16.01,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731659,100,16.01,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731660,100,16.01,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731661,100,16.01,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731662,100,15.94,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731663,100,16.01,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731664,100,16.01,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731665,100,16.01,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731666,100,16.01,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731667,100,16.01,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731668,100,15.84,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731669,100,15.72,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731670,89,16.83,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731671,89,16.83,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731672,89,16.88,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731673,89,16.88,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731674,89,16.88,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731675,89,16.88,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731676,89,16.88,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731677,89,16.82,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731678,89,16.78,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731679,89,16.66,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731680,89,16.66,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731681,89,16.66,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731682,89,16.66,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731683,89,16.66,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731684,89,16.66,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731685,89,16.66,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731686,89,16.77,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731687,89,16.66,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731688,89,16.66,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731689,89,16.66,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731690,89,16.66,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731691,89,16.65,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731692,89,16.77,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731693,89,16.93,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731694,99,16.01,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731695,99,16.02,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731696,99,16,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731697,99,16,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731698,99,16,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731699,99,16,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731700,99,16,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731701,99,16.03,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731702,99,16.09,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731703,99,16.26,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731704,99,16.26,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731705,99,16.26,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731706,99,16.26,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731707,99,16.26,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731708,99,16.26,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731709,99,16.26,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731710,99,16.18,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731711,99,16.26,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731712,99,16.26,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731713,99,16.26,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731714,99,16.27,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731715,99,16.28,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731716,99,16.11,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731717,99,16,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731718,62,0.377,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731719,62,0.375,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731720,62,0.377,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731721,62,0.379,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731722,62,0.379,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731723,62,0.379,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731724,62,0.378,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731725,62,0.375,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731726,62,0.375,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731727,62,0.377,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731728,62,0.377,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731729,62,0.387,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731730,62,0.387,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731731,62,0.387,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731732,62,0.387,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731733,62,0.387,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731734,62,0.387,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731735,62,0.387,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731736,62,0.387,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731737,62,0.387,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731738,62,0.387,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731739,62,0.387,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731740,62,0.387,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731741,62,0.387,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731742,71,0.106,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731743,71,0.106,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731744,71,0.106,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731745,71,0.105,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731746,71,0.105,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731747,71,0.105,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731748,71,0.106,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731749,71,0.106,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731750,71,0.106,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731751,71,0.106,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731752,71,0.106,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731753,71,0.104,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731754,71,0.104,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731755,71,0.104,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731756,71,0.104,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731757,71,0.104,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731758,71,0.104,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731759,71,0.104,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731760,71,0.104,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731761,71,0.104,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731762,71,0.104,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731763,71,0.104,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731764,71,0.104,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731765,71,0.104,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731766,77,20.9,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731767,77,20.9,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731768,77,21.1,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731769,77,20.9,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731770,77,21,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731771,77,21.05,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731772,77,21.1,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731773,77,21.05,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731774,77,21,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731775,77,21,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731776,77,21.1,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731777,77,21.1,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731778,77,21.05,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731779,77,21.1,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731780,77,21.1,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731781,77,21.05,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731782,77,21.1,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731783,77,21.1,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731784,77,21.1,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731785,77,21.05,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731786,77,21.05,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731787,77,21.05,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731788,77,21.05,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731789,77,20.95,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731790,82,69.6,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731791,82,69.6,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731792,82,70,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731793,82,69.6,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731794,82,69.8,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731795,82,69.9,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731796,82,70,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731797,82,69.9,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731798,82,69.8,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731799,82,69.8,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731800,82,70,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731801,82,70,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731802,82,69.9,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731803,82,70,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731804,82,70,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731805,82,69.9,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731806,82,70,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731807,82,70,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731808,82,70,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731809,82,69.9,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731810,82,69.9,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731811,82,69.9,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731812,82,69.9,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731813,82,69.7,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731814,72,0.099,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731815,72,0.1,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731816,72,0.099,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731817,72,0.099,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731818,72,0.099,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731819,72,0.099,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731820,72,0.099,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731821,72,0.1,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731822,72,0.1,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731823,72,0.1,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731824,72,0.099,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731825,72,0.098,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731826,72,0.098,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731827,72,0.098,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731828,72,0.098,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731829,72,0.098,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731830,72,0.098,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731831,72,0.098,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731832,72,0.098,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731833,72,0.098,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731834,72,0.098,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731835,72,0.098,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731836,72,0.098,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731837,72,0.098,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731838,92,26.06,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731839,92,25.87,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731840,92,25.98,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731841,92,26.21,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731842,92,26.21,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731843,92,26.2,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731844,92,26.09,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731845,92,25.87,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731846,92,25.87,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731847,92,26.06,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731848,92,26.07,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731849,92,26.98,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731850,92,26.98,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731851,92,26.98,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731852,92,26.98,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731853,92,26.98,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731854,92,26.98,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731855,92,26.98,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731856,92,26.98,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731857,92,26.98,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731858,92,26.98,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731859,92,26.98,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731860,92,26.98,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731861,92,26.99,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731862,102,35.93,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731863,102,35.98,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731864,102,35.81,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731865,102,35.49,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731866,102,35.49,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731867,102,35.49,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731868,102,35.65,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731869,102,35.98,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731870,102,35.98,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731871,102,35.94,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731872,102,35.94,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731873,102,35.32,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731874,102,35.32,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731875,102,35.32,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731876,102,35.32,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731877,102,35.32,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731878,102,35.32,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731879,102,35.32,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731880,102,35.32,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731881,102,35.32,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731882,102,35.33,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731883,102,35.33,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731884,102,35.33,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731885,102,35.33,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731886,91,26.4,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731887,91,26.21,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731888,91,26.32,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731889,91,26.55,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731890,91,26.55,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731891,91,26.55,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731892,91,26.44,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731893,91,26.21,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731894,91,26.22,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731895,91,26.41,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731896,91,26.42,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731897,91,27.34,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731898,91,27.34,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731899,91,27.34,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731900,91,27.34,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731901,91,27.34,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731902,91,27.34,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731903,91,27.34,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731904,91,27.34,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731905,91,27.34,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731906,91,27.34,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731907,91,27.34,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731908,91,27.34,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731909,91,27.35,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13731910,101,38.14,'2011-08-15 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13731911,101,38.19,'2011-08-15 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13731912,101,38.01,'2011-08-15 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13731913,101,37.67,'2011-08-15 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13731914,101,37.67,'2011-08-15 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13731915,101,37.67,'2011-08-15 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13731916,101,37.84,'2011-08-15 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13731917,101,38.19,'2011-08-15 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13731918,101,38.17,'2011-08-15 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13731919,101,38.12,'2011-08-15 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13731920,101,38.1,'2011-08-16 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13731921,101,37.45,'2011-08-16 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13731922,101,37.45,'2011-08-16 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13731923,101,37.45,'2011-08-16 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13731924,101,37.45,'2011-08-16 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13731925,101,37.45,'2011-08-16 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13731926,101,37.45,'2011-08-16 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13731927,101,37.45,'2011-08-16 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13731928,101,37.44,'2011-08-16 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13731929,101,37.43,'2011-08-16 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13731930,101,37.42,'2011-08-16 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13731931,101,37.42,'2011-08-16 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13731932,101,37.42,'2011-08-16 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13731933,101,37.41,'2011-08-16 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751273,31,13.25,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751274,31,13.23,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751275,31,13.18,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751276,31,13.2,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751277,31,13.2,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751278,31,12.87,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751279,31,12.77,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751280,31,12.73,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751281,31,12.7,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751282,31,12.66,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751283,31,12.64,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751284,31,12.6,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751285,31,12.56,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751286,31,12.48,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751287,31,12.44,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751288,31,12.47,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751289,31,12.48,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751290,31,12.51,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751291,31,12.83,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751292,31,13.35,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751293,31,13.3,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751294,31,13.25,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751295,31,13.22,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751296,31,13.2,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751297,32,3.414,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751298,32,3.22,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751299,32,2.475,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751300,32,1.9,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751301,32,1.737,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751302,32,2.296,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751303,32,1.834,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751304,32,2.276,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751305,32,2.304,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751306,32,1.726,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751307,32,1.59,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751308,32,1.319,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751309,32,1.147,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751310,32,0.737,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751311,32,1.343,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751312,32,1.369,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751313,32,1.321,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751314,32,1.562,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751315,32,1.477,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751316,32,1.98,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751317,32,2.504,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751318,32,3.041,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751319,32,3.377,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751320,32,4.64,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751321,33,37.33,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751322,33,35.18,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751323,33,26.36,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751324,33,30.09,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751325,33,338.8,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751326,33,263.8,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751327,33,229.8,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751328,33,214.6,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751329,33,215.2,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751330,33,213.5,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751331,33,227.1,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751332,33,283.5,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751333,33,262.3,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751334,33,256.5,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751335,33,317.4,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751336,33,294.4,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751337,33,346,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751338,33,343.7,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751339,33,38.45,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751340,33,130.9,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751341,33,25.51,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751342,33,135.4,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751343,33,179.1,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751344,33,201.5,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751345,34,16.15,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751346,34,16.66,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751347,34,27.27,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751348,34,27.2,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751349,34,26.69,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751350,34,31.3,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751351,34,18.7,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751352,34,18.96,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751353,34,26.67,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751354,34,20.13,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751355,34,23.46,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751356,34,72.55,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751357,34,46.85,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751358,34,50.79,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751359,34,38.07,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751360,34,39.27,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751361,34,79.01,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751362,34,31.05,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751363,34,55.23,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751364,34,79.1,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751365,34,18.25,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751366,34,46.81,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751367,34,26.69,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751368,34,20.22,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751369,35,632.2,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13751370,35,632,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13751371,35,631.6,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13751372,35,631.5,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13751373,35,631.3,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13751374,35,631.3,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13751375,35,631.6,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13751376,35,631.8,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13751377,35,632.1,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13751378,35,632.1,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13751379,35,632,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13751380,35,632.1,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13751381,35,631.9,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13751382,35,632.1,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13751383,35,632.1,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13751384,35,632.1,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13751385,35,632.4,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13751386,35,632.5,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13751387,35,632.6,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13751388,35,632.8,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13751389,35,632.7,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13751390,35,632.5,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13751391,35,632.5,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13751392,35,632.3,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13751393,30,0,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751394,30,0,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751395,30,0,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751396,30,0,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751397,30,0,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751398,30,0,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751399,30,0,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751400,30,0,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751401,30,0,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751402,30,0,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751403,30,0,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751404,30,0,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751405,30,0,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751406,30,0,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751407,30,0,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751408,30,0,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751409,30,0,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751410,30,0,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751411,30,0,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751412,30,0,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751413,30,0,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751414,30,0,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751415,30,0,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751416,30,0,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751417,28,25.07,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751418,28,25.92,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751419,28,26.32,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751420,28,26.24,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751421,28,25.36,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751422,28,22.65,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751423,28,18.18,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751424,28,16.11,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751425,28,15.39,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751426,28,14.57,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751427,28,13.77,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751428,28,13.98,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751429,28,14.02,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751430,28,13.05,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751431,28,13.74,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751432,28,12.87,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751433,28,13.73,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751434,28,14.04,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751435,28,19.1,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751436,28,22.37,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751437,28,22.56,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751438,28,26.68,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751439,28,28.68,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751440,28,29.56,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751441,29,25.98,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751442,29,26.51,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751443,29,25.43,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751444,29,24.98,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751445,29,25.56,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751446,29,39.11,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751447,29,49.52,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751448,29,51.18,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751449,29,50.39,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751450,29,52.98,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751451,29,50.53,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751452,29,52.41,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751453,29,57.48,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751454,29,58,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751455,29,59.18,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751456,29,62.53,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751457,29,59.85,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751458,29,56.82,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751459,29,36.79,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751460,29,44.3,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751461,29,36.38,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751462,29,22.98,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751463,29,17.75,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751464,29,15.72,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751465,36,1029,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751466,36,933,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751467,36,771.4,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751468,36,563.1,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751469,36,329.4,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751470,36,83.7,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751471,36,5.755,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751472,36,0,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751473,36,0,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751474,36,0,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751475,36,0,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751476,36,0,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751477,36,0,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751478,36,0,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751479,36,0,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751480,36,0,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751481,36,5.86,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751482,36,122.4,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751483,36,353.5,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751484,36,586.7,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751485,36,795.1,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751486,36,957,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751487,36,1061,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751488,36,1098,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751489,46,1.546,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751490,46,1.472,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751491,46,1.373,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751492,46,1.401,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751493,46,1.367,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751494,46,1.525,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751495,46,1.622,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751496,46,1.335,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751497,46,1.465,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751498,46,1.382,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751499,46,1.383,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751500,46,1.386,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751501,46,1.385,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751502,46,1.386,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751503,46,1.399,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751504,46,1.411,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751505,46,1.467,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751506,46,1.5,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751507,46,1.477,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751508,46,1.346,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751509,46,0.981,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751510,46,1.284,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751511,46,1.394,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751512,46,1.48,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751513,47,1.615,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751514,47,1.54,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751515,47,1.438,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751516,47,1.467,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751517,47,1.43,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751518,47,1.586,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751519,47,1.675,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751520,47,1.374,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751521,47,1.506,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751522,47,1.419,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751523,47,1.418,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751524,47,1.421,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751525,47,1.42,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751526,47,1.419,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751527,47,1.434,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751528,47,1.444,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751529,47,1.504,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751530,47,1.538,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751531,47,1.527,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751532,47,1.4,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751533,47,1.02,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751534,47,1.345,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751535,47,1.465,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751536,47,1.558,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751537,48,0.155,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13751538,48,0.23,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13751539,48,0.332,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13751540,48,0.303,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13751541,48,0.34,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13751542,48,0.184,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13751543,48,0.095,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13751544,48,0.396,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13751545,48,0.264,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13751546,48,0.351,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13751547,48,0.352,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13751548,48,0.349,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13751549,48,0.35,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13751550,48,0.351,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13751551,48,0.336,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13751552,48,0.326,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13751553,48,0.266,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13751554,48,0.232,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13751555,48,0.243,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13751556,48,0.37,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13751557,48,0.75,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13751558,48,0.425,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13751559,48,0.305,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13751560,48,0.212,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13751561,41,17.74,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751562,40,26.74,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751563,39,9.42,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751564,37,12.46,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751565,43,631.9,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751566,44,0,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751567,42,48.19,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751568,45,30.65556,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751569,38,2.125,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751570,51,0,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751571,53,1.992,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751572,49,1.465,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751573,52,0,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751574,54,2.073,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751575,50,1.512,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751576,56,-0.303,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751577,57,1.77,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13751578,55,0.258,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13763414,58,0.179,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763415,58,0.178,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763416,58,0.178,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763417,58,0.18,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763418,58,0.177,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763419,58,0.175,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763420,58,0.174,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763421,58,0.17,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763422,58,0.17,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763423,58,0.171,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763424,58,0.168,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763425,58,0.168,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763426,58,0.165,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763427,58,0.165,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763428,58,0.166,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763429,58,0.163,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763430,58,0.163,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763431,58,0.165,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763432,58,0.162,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763433,58,0.164,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763434,58,0.169,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763435,58,0.171,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763436,58,0.174,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763437,58,0.177,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763438,63,0.02,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763439,63,0.02,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763440,63,0.02,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763441,63,0.02,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763442,63,0.02,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763443,63,0.02,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763444,63,0.02,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763445,63,0.02,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763446,63,0.02,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763447,63,0.02,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763448,63,0.02,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763449,63,0.019,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763450,63,0.02,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763451,63,0.019,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763452,63,0.019,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763453,63,0.02,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763454,63,0.02,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763455,63,0.019,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763456,63,0.02,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763457,63,0.02,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763458,63,0.02,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763459,63,0.02,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763460,63,0.02,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763461,63,0.02,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763462,73,27,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763463,73,27.78,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763464,73,28.07,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763465,73,27.95,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763466,73,27.42,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763467,73,26.55,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763468,73,25.5,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763469,73,24.65,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763470,73,23.75,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763471,73,23.2,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763472,73,22.55,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763473,73,21.9,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763474,73,21.4,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763475,73,21,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763476,73,20.6,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763477,73,20.25,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763478,73,19.9,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763479,73,19.7,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763480,73,19.8,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763481,73,20.7,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763482,73,21.98,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763483,73,23.48,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763484,73,24.96,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763485,73,26.76,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763486,78,80.6,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763487,78,82,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763488,78,82.6,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763489,78,82.4,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763490,78,81.4,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763491,78,79.77,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763492,78,77.94,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763493,78,76.35,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763494,78,74.8,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763495,78,73.75,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763496,78,72.52,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763497,78,71.5,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763498,78,70.5,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763499,78,69.8,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763500,78,69.05,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763501,78,68.45,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763502,78,67.82,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763503,78,67.5,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763504,78,67.65,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763505,78,69.26,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763506,78,71.58,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763507,78,74.28,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763508,78,76.93,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763509,78,80.2,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763510,64,0.021,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763511,64,0.021,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763512,64,0.021,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763513,64,0.021,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763514,64,0.02,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763515,64,0.02,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763516,64,0.02,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763517,64,0.02,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763518,64,0.019,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763519,64,0.019,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763520,64,0.019,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763521,64,0.018,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763522,64,0.019,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763523,64,0.018,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763524,64,0.018,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763525,64,0.018,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763526,64,0.018,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763527,64,0.018,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763528,64,0.018,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763529,64,0.019,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763530,64,0.019,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763531,64,0.02,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763532,64,0.02,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763533,64,0.02,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763534,84,10.77,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763535,84,10.76,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763536,84,10.73,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763537,84,10.82,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763538,84,10.7,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763539,84,10.54,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763540,84,10.46,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763541,84,10.24,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763542,84,10.24,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763543,84,10.27,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763544,84,10.11,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763545,84,10.13,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763546,84,9.99,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763547,84,9.96,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763548,84,9.99,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763549,84,9.86,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763550,84,9.83,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763551,84,9.95,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763552,84,9.82,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763553,84,9.89,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763554,84,10.19,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763555,84,10.3,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763556,84,10.48,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763557,84,10.66,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763558,94,7.395,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763559,94,7.498,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763560,94,7.588,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763561,94,7.447,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763562,94,7.38,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763563,94,7.283,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763564,94,7.146,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763565,94,7.098,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763566,94,6.927,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763567,94,6.796,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763568,94,6.795,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763569,94,6.654,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763570,94,6.677,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763571,94,6.585,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763572,94,6.513,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763573,94,6.539,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763574,94,6.512,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763575,94,6.425,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763576,94,6.562,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763577,94,6.691,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763578,94,6.776,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763579,94,6.99,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763580,94,7.11,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763581,94,7.289,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763582,83,11.07,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763583,83,11.08,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763584,83,11.05,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763585,83,11.15,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763586,83,11,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763587,83,10.82,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763588,83,10.71,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763589,83,10.46,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763590,83,10.44,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763591,83,10.45,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763592,83,10.27,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763593,83,10.28,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763594,83,10.13,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763595,83,10.09,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763596,83,10.11,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763597,83,9.97,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763598,83,9.93,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763599,83,10.04,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763600,83,9.92,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763601,83,10.02,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763602,83,10.35,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763603,83,10.5,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763604,83,10.72,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763605,83,10.95,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763606,93,7.168,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763607,93,7.189,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763608,93,7.253,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763609,93,7.133,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763610,93,7.132,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763611,93,7.131,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763612,93,7.1,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763613,93,7.15,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763614,93,7.06,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763615,93,7.002,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763616,93,7.062,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763617,93,6.975,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763618,93,7.051,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763619,93,6.997,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763620,93,6.968,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763621,93,7.035,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763622,93,7.04,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763623,93,6.974,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763624,93,7.101,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763625,93,7.134,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763626,93,7.069,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763627,93,7.137,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763628,93,7.096,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763629,93,7.091,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763630,59,0.283,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763631,59,0.285,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763632,59,0.285,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763633,59,0.283,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763634,59,0.283,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763635,59,0.286,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763636,59,0.285,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763637,59,0.284,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763638,59,0.284,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763639,59,0.282,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763640,59,0.28,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763641,59,0.281,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763642,59,0.28,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763643,59,0.277,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763644,59,0.277,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763645,59,0.275,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763646,59,0.276,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763647,59,0.273,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763648,59,0.273,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763649,59,0.272,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763650,59,0.274,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763651,59,0.276,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763652,59,0.278,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763653,59,0.28,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763654,65,0.039,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763655,65,0.039,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763656,65,0.039,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763657,65,0.039,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763658,65,0.039,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763659,65,0.039,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763660,65,0.039,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763661,65,0.038,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763662,65,0.039,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763663,65,0.039,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763664,65,0.038,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763665,65,0.038,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763666,65,0.038,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763667,65,0.038,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763668,65,0.038,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763669,65,0.038,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763670,65,0.038,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763671,65,0.038,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763672,65,0.037,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763673,65,0.037,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763674,65,0.038,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763675,65,0.038,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763676,65,0.038,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763677,65,0.038,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763678,74,25.2,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763679,74,26.05,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763680,74,26.55,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763681,74,26.7,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763682,74,26.75,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763683,74,26.35,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763684,74,26.1,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763685,74,25.5,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763686,74,24.9,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763687,74,24.37,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763688,74,23.8,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763689,74,23.4,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763690,74,22.9,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763691,74,22.5,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763692,74,22,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763693,74,21.7,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763694,74,21.4,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763695,74,21.1,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763696,74,20.9,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763697,74,20.95,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763698,74,21.3,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763699,74,22.03,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763700,74,23.25,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763701,74,24.53,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763702,79,77.41,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763703,79,78.85,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763704,79,79.75,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763705,79,80,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763706,79,80.1,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763707,79,79.4,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763708,79,78.95,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763709,79,77.95,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763710,79,76.82,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763711,79,75.82,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763712,79,74.9,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763713,79,74.1,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763714,79,73.2,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763715,79,72.45,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763716,79,71.7,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763717,79,71.1,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763718,79,70.5,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763719,79,70,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763720,79,69.6,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763721,79,69.7,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763722,79,70.33,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763723,79,71.71,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763724,79,73.86,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763725,79,76.18,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763726,66,0.039,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763727,66,0.039,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763728,66,0.04,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763729,66,0.04,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763730,66,0.04,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763731,66,0.039,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763732,66,0.039,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763733,66,0.039,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763734,66,0.039,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763735,66,0.038,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763736,66,0.038,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763737,66,0.037,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763738,66,0.037,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763739,66,0.037,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763740,66,0.036,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763741,66,0.036,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763742,66,0.036,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763743,66,0.036,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763744,66,0.035,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763745,66,0.035,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763746,66,0.036,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763747,66,0.036,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763748,66,0.037,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763749,66,0.038,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763750,86,17.99,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763751,86,18.1,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763752,86,18.18,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763753,86,17.93,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763754,86,17.91,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763755,86,18.21,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763756,86,18.13,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763757,86,18.05,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763758,86,18.03,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763759,86,17.85,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763760,86,17.79,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763761,86,17.76,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763762,86,17.72,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763763,86,17.53,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763764,86,17.55,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763765,86,17.41,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763766,86,17.38,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763767,86,17.23,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763768,86,17.19,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763769,86,17.1,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763770,86,17.24,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763771,86,17.39,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763772,86,17.61,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763773,86,17.74,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763774,96,13.94,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763775,96,14.17,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763776,96,14.31,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763777,96,14.48,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763778,96,14.53,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763779,96,14.25,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763780,96,14.19,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763781,96,14.04,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763782,96,13.89,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763783,96,13.82,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763784,96,13.62,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763785,96,13.44,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763786,96,13.27,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763787,96,13.26,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763788,96,13.07,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763789,96,13.02,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763790,96,12.93,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763791,96,12.88,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763792,96,12.76,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763793,96,12.83,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763794,96,12.88,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763795,96,13.01,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763796,96,13.25,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763797,96,13.57,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763798,85,18.39,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763799,85,18.55,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763800,85,18.65,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763801,85,18.41,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763802,85,18.38,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763803,85,18.68,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763804,85,18.59,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763805,85,18.48,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763806,85,18.45,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763807,85,18.24,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763808,85,18.16,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763809,85,18.1,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763810,85,18.04,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763811,85,17.83,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763812,85,17.84,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763813,85,17.68,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763814,85,17.64,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763815,85,17.48,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763816,85,17.42,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763817,85,17.34,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763818,85,17.49,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763819,85,17.67,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763820,85,17.93,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763821,85,18.12,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763822,95,13.93,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763823,95,13.98,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763824,95,14.01,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763825,95,14.14,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763826,95,14.19,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763827,95,13.95,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763828,95,13.96,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763829,95,13.9,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763830,95,13.85,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763831,95,13.88,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763832,95,13.78,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763833,95,13.7,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763834,95,13.61,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763835,95,13.68,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763836,95,13.57,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763837,95,13.59,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763838,95,13.56,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763839,95,13.57,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763840,95,13.49,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763841,95,13.56,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763842,95,13.55,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763843,95,13.54,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763844,95,13.59,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763845,95,13.68,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763846,60,0.368,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763847,60,0.369,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763848,60,0.369,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763849,60,0.364,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763850,60,0.368,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763851,60,0.37,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763852,60,0.369,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763853,60,0.371,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763854,60,0.368,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763855,60,0.366,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763856,60,0.369,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763857,60,0.372,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763858,60,0.37,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763859,60,0.372,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763860,60,0.368,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763861,60,0.371,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763862,60,0.37,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763863,60,0.366,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763864,60,0.366,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763865,60,0.366,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763866,60,0.368,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763867,60,0.367,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763868,60,0.367,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763869,60,0.367,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763870,67,0.082,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763871,67,0.082,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763872,67,0.083,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763873,67,0.084,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763874,67,0.083,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763875,67,0.083,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763876,67,0.083,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763877,67,0.083,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763878,67,0.084,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763879,67,0.084,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763880,67,0.084,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763881,67,0.083,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763882,67,0.083,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763883,67,0.083,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763884,67,0.083,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763885,67,0.082,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763886,67,0.083,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763887,67,0.084,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763888,67,0.083,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763889,67,0.083,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763890,67,0.082,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763891,67,0.082,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763892,67,0.082,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763893,67,0.082,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763894,75,23.3,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763895,75,23.35,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763896,75,23.5,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763897,75,23.65,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763898,75,23.85,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763899,75,23.9,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763900,75,24.2,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763901,75,24.35,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763902,75,24.4,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763903,75,24.4,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763904,75,24.4,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763905,75,24.4,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763906,75,24.25,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763907,75,24.2,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763908,75,23.97,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763909,75,23.9,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763910,75,23.7,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763911,75,23.6,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763912,75,23.5,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763913,75,23.35,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763914,75,23.3,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763915,75,23,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763916,75,23,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763917,75,23,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763918,80,73.9,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763919,80,74,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763920,80,74.3,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763921,80,74.6,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763922,80,75,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763923,80,75.1,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763924,80,75.5,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763925,80,75.8,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763926,80,75.9,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763927,80,75.9,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763928,80,75.9,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763929,80,75.9,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763930,80,75.6,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763931,80,75.5,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763932,80,75.2,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763933,80,75.1,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763934,80,74.7,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763935,80,74.5,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763936,80,74.3,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763937,80,74,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763938,80,73.9,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763939,80,73.4,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763940,80,73.4,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763941,80,73.4,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763942,68,0.081,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763943,68,0.08,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763944,68,0.081,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763945,68,0.082,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763946,68,0.082,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763947,68,0.082,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763948,68,0.082,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763949,68,0.082,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763950,68,0.083,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763951,68,0.083,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763952,68,0.082,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763953,68,0.082,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763954,68,0.082,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763955,68,0.082,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763956,68,0.082,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763957,68,0.081,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763958,68,0.081,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763959,68,0.081,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763960,68,0.081,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763961,68,0.081,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763962,68,0.08,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763963,68,0.08,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763964,68,0.08,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763965,68,0.08,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763966,88,25.25,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763967,88,25.26,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763968,88,25.25,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763969,88,24.85,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763970,88,25.25,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763971,88,25.37,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763972,88,25.31,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763973,88,25.43,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763974,88,25.19,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763975,88,24.97,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13763976,88,25.32,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13763977,88,25.56,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13763978,88,25.39,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13763979,88,25.52,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13763980,88,25.15,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13763981,88,25.51,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13763982,88,25.44,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13763983,88,24.96,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13763984,88,25.04,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13763985,88,24.98,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13763986,88,25.18,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13763987,88,25.1,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13763988,88,25.09,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13763989,88,25.09,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13763990,98,28.93,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13763991,98,28.94,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13763992,98,29.11,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13763993,98,29.5,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13763994,98,29.32,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13763995,98,29.45,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13763996,98,29.59,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13763997,98,29.72,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13763998,98,29.86,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13763999,98,30.02,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764000,98,29.79,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764001,98,29.66,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764002,98,29.69,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764003,98,29.43,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764004,98,29.61,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764005,98,29.19,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764006,98,29.12,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764007,98,29.4,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764008,98,29.3,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764009,98,29.23,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764010,98,28.85,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764011,98,28.76,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764012,98,28.75,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764013,98,28.75,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764014,87,25.71,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764015,87,25.73,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764016,87,25.73,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764017,87,25.33,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764018,87,25.75,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764019,87,25.89,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764020,87,25.83,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764021,87,25.96,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764022,87,25.73,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764023,87,25.49,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764024,87,25.85,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764025,87,26.09,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764026,87,25.92,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764027,87,26.05,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764028,87,25.66,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764029,87,26.02,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764030,87,25.93,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764031,87,25.44,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764032,87,25.52,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764033,87,25.44,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764034,87,25.64,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764035,87,25.55,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764036,87,25.54,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764037,87,25.54,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764038,97,29.71,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764039,97,29.66,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764040,97,29.76,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764041,97,30.08,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764042,97,29.81,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764043,97,29.86,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764044,97,29.93,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764045,97,30,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764046,97,30.12,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764047,97,30.27,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764048,97,30.04,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764049,97,29.93,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764050,97,29.99,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764051,97,29.79,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764052,97,30.03,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764053,97,29.66,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764054,97,29.65,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764055,97,30,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764056,97,29.95,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764057,97,29.93,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764058,97,29.61,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764059,97,29.56,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764060,97,29.58,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764061,97,29.58,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764062,61,0.265,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764063,61,0.265,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764064,61,0.261,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764065,61,0.262,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764066,61,0.262,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764067,61,0.261,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764068,61,0.26,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764069,61,0.266,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764070,61,0.265,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764071,61,0.264,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764072,61,0.263,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764073,61,0.263,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764074,61,0.264,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764075,61,0.263,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764076,61,0.263,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764077,61,0.262,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764078,61,0.261,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764079,61,0.262,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764080,61,0.263,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764081,61,0.264,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764082,61,0.263,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764083,61,0.264,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764084,61,0.262,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764085,61,0.263,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764086,69,0.045,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764087,69,0.044,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764088,69,0.045,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764089,69,0.045,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764090,69,0.045,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764091,69,0.045,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764092,69,0.045,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764093,69,0.044,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764094,69,0.045,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764095,69,0.045,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764096,69,0.045,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764097,69,0.045,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764098,69,0.045,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764099,69,0.045,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764100,69,0.045,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764101,69,0.045,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764102,69,0.045,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764103,69,0.045,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764104,69,0.045,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764105,69,0.045,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764106,69,0.045,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764107,69,0.045,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764108,69,0.045,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764109,69,0.045,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764110,76,23.55,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764111,76,23.5,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764112,76,23.45,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764113,76,23.5,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764114,76,23.5,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764115,76,23.5,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764116,76,23.35,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764117,76,23.5,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764118,76,23.5,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764119,76,23.5,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764120,76,23.45,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764121,76,23.45,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764122,76,23.45,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764123,76,23.5,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764124,76,23.5,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764125,76,23.5,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764126,76,23.5,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764127,76,23.5,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764128,76,23.5,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764129,76,23.5,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764130,76,23.5,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764131,76,23.5,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764132,76,23.4,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764133,76,23.35,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764134,81,74.4,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764135,81,74.3,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764136,81,74.2,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764137,81,74.3,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764138,81,74.3,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764139,81,74.3,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764140,81,74,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764141,81,74.3,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764142,81,74.3,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764143,81,74.3,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764144,81,74.2,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764145,81,74.2,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764146,81,74.2,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764147,81,74.3,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764148,81,74.3,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764149,81,74.3,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764150,81,74.3,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764151,81,74.3,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764152,81,74.3,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764153,81,74.3,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764154,81,74.3,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764155,81,74.3,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764156,81,74.1,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764157,81,74,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764158,70,0.044,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764159,70,0.044,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764160,70,0.044,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764161,70,0.044,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764162,70,0.044,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764163,70,0.044,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764164,70,0.044,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764165,70,0.044,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764166,70,0.044,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764167,70,0.044,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764168,70,0.044,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764169,70,0.044,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764170,70,0.044,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764171,70,0.044,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764172,70,0.044,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764173,70,0.044,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764174,70,0.044,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764175,70,0.044,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764176,70,0.044,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764177,70,0.044,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764178,70,0.044,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764179,70,0.044,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764180,70,0.044,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764181,70,0.044,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764182,90,16.55,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764183,90,16.61,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764184,90,16.29,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764185,90,16.31,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764186,90,16.31,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764187,90,16.31,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764188,90,16.21,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764189,90,16.66,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764190,90,16.6,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764191,90,16.54,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764192,90,16.48,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764193,90,16.48,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764194,90,16.48,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764195,90,16.44,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764196,90,16.4,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764197,90,16.36,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764198,90,16.32,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764199,90,16.36,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764200,90,16.44,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764201,90,16.48,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764202,90,16.48,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764203,90,16.55,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764204,90,16.31,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764205,90,16.43,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764206,100,15.75,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764207,100,15.74,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764208,100,15.88,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764209,100,15.91,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764210,100,15.91,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764211,100,15.91,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764212,100,15.99,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764213,100,15.69,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764214,100,15.72,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764215,100,15.75,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764216,100,15.77,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764217,100,15.77,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764218,100,15.78,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764219,100,15.83,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764220,100,15.89,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764221,100,15.95,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764222,100,16.01,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764223,100,15.95,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764224,100,15.83,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764225,100,15.78,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764226,100,15.77,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764227,100,15.77,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764228,100,15.91,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764229,100,15.74,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764230,89,16.87,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764231,89,16.94,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764232,89,16.61,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764233,89,16.63,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764234,89,16.63,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764235,89,16.62,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764236,89,16.52,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764237,89,16.98,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764238,89,16.92,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764239,89,16.86,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764240,89,16.8,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764241,89,16.8,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764242,89,16.8,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764243,89,16.76,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764244,89,16.72,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764245,89,16.68,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764246,89,16.64,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764247,89,16.68,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764248,89,16.76,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764249,89,16.8,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764250,89,16.8,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764251,89,16.87,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764252,89,16.63,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764253,89,16.74,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764254,99,16.03,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764255,99,16.04,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764256,99,16.19,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764257,99,16.23,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764258,99,16.23,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764259,99,16.23,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764260,99,16.32,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764261,99,16.01,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764262,99,16.04,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764263,99,16.07,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764264,99,16.1,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764265,99,16.1,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764266,99,16.09,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764267,99,16.14,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764268,99,16.2,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764269,99,16.26,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764270,99,16.31,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764271,99,16.26,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764272,99,16.14,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764273,99,16.08,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764274,99,16.09,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764275,99,16.09,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764276,99,16.23,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764277,99,16.07,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764278,62,0.384,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764279,62,0.374,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764280,62,0.374,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764281,62,0.375,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764282,62,0.379,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764283,62,0.378,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764284,62,0.375,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764285,62,0.376,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764286,62,0.374,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764287,62,0.374,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764288,62,0.377,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764289,62,0.381,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764290,62,0.387,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764291,62,0.384,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764292,62,0.387,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764293,62,0.387,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764294,62,0.387,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764295,62,0.387,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764296,62,0.387,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764297,62,0.387,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764298,62,0.387,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764299,62,0.384,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764300,62,0.376,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764301,62,0.379,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764302,71,0.105,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764303,71,0.106,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764304,71,0.106,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764305,71,0.106,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764306,71,0.105,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764307,71,0.105,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764308,71,0.106,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764309,71,0.106,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764310,71,0.106,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764311,71,0.106,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764312,71,0.106,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764313,71,0.105,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764314,71,0.104,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764315,71,0.104,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764316,71,0.104,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764317,71,0.104,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764318,71,0.104,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764319,71,0.104,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764320,71,0.104,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764321,71,0.104,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764322,71,0.104,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764323,71,0.105,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764324,71,0.106,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764325,71,0.105,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764326,77,21.05,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764327,77,21.1,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764328,77,21.1,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764329,77,21.1,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764330,77,21.05,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764331,77,21.05,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764332,77,21.1,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764333,77,21.1,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764334,77,21.1,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764335,77,21.1,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764336,77,21.05,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764337,77,21.1,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764338,77,21.1,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764339,77,21.1,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764340,77,21.05,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764341,77,21.05,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764342,77,21.1,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764343,77,21.1,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764344,77,21.1,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764345,77,21.05,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764346,77,21.1,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764347,77,21.05,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764348,77,21,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764349,77,21.1,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764350,82,69.9,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764351,82,70,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764352,82,70,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764353,82,70,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764354,82,69.9,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764355,82,69.9,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764356,82,70,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764357,82,70,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764358,82,70,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764359,82,70,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764360,82,69.9,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764361,82,70,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764362,82,70,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764363,82,70,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764364,82,69.9,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764365,82,69.9,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764366,82,70,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764367,82,70,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764368,82,70,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764369,82,69.9,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764370,82,70,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764371,82,69.9,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764372,82,69.8,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764373,82,70,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764374,72,0.099,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764375,72,0.101,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764376,72,0.101,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764377,72,0.1,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764378,72,0.099,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764379,72,0.099,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764380,72,0.101,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764381,72,0.1,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764382,72,0.101,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764383,72,0.101,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764384,72,0.1,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764385,72,0.099,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764386,72,0.098,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764387,72,0.099,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764388,72,0.098,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764389,72,0.098,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764390,72,0.098,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764391,72,0.098,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764392,72,0.098,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764393,72,0.098,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764394,72,0.098,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764395,72,0.099,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764396,72,0.1,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764397,72,0.099,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764398,92,26.68,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764399,92,25.77,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764400,92,25.77,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764401,92,25.88,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764402,92,26.22,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764403,92,26.11,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764404,92,25.88,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764405,92,25.99,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764406,92,25.77,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764407,92,25.77,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764408,92,26.07,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764409,92,26.38,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764410,92,26.99,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764411,92,26.68,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764412,92,26.99,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764413,92,26.99,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764414,92,26.99,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764415,92,26.99,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764416,92,26.99,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764417,92,26.99,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764418,92,26.99,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764419,92,26.68,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764420,92,25.99,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764421,92,26.22,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764422,102,35.54,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764423,102,36.16,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764424,102,36.16,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764425,102,35.99,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764426,102,35.5,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764427,102,35.67,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764428,102,35.99,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764429,102,35.83,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764430,102,36.16,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764431,102,36.16,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764432,102,35.95,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764433,102,35.74,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764434,102,35.33,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764435,102,35.54,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764436,102,35.33,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764437,102,35.33,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764438,102,35.33,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764439,102,35.33,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764440,102,35.33,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764441,102,35.33,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764442,102,35.33,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764443,102,35.54,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764444,102,35.83,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764445,102,35.5,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764446,91,27.04,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764447,91,26.11,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764448,91,26.11,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764449,91,26.23,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764450,91,26.57,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764451,91,26.46,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764452,91,26.23,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764453,91,26.34,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764454,91,26.11,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764455,91,26.11,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764456,91,26.42,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764457,91,26.73,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764458,91,27.35,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764459,91,27.04,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764460,91,27.35,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764461,91,27.35,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764462,91,27.35,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764463,91,27.35,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764464,91,27.35,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764465,91,27.35,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764466,91,27.35,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764467,91,27.04,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764468,91,26.34,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764469,91,26.57,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13764470,101,37.64,'2011-08-16 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13764471,101,38.29,'2011-08-16 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13764472,101,38.29,'2011-08-16 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13764473,101,38.12,'2011-08-16 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13764474,101,37.61,'2011-08-16 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13764475,101,37.77,'2011-08-16 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13764476,101,38.12,'2011-08-16 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13764477,101,37.95,'2011-08-16 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13764478,101,38.29,'2011-08-16 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13764479,101,38.29,'2011-08-16 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13764480,101,38.07,'2011-08-17 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13764481,101,37.85,'2011-08-17 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13764482,101,37.41,'2011-08-17 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13764483,101,37.63,'2011-08-17 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13764484,101,37.41,'2011-08-17 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13764485,101,37.41,'2011-08-17 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13764486,101,37.41,'2011-08-17 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13764487,101,37.41,'2011-08-17 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13764488,101,37.41,'2011-08-17 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13764489,101,37.41,'2011-08-17 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13764490,101,37.41,'2011-08-17 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13764491,101,37.63,'2011-08-17 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13764492,101,37.95,'2011-08-17 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13764493,101,37.6,'2011-08-17 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770273,31,13.18,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770274,31,13.17,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770275,31,13.16,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770276,31,13.16,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770277,31,13.17,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770278,31,12.85,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770279,31,12.77,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770280,31,12.73,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770281,31,12.68,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770282,31,12.56,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770283,31,12.62,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770284,31,12.52,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770285,31,12.58,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770286,31,12.55,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770287,31,12.53,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770288,31,12.53,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770289,31,12.51,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770290,31,12.5,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770291,31,12.83,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770292,31,13.35,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770293,31,13.29,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770294,31,13.26,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770295,31,13.24,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770296,31,13.21,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770297,32,3.769,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770298,32,3.311,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770299,32,2.804,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770300,32,3.094,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770301,32,2.123,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770302,32,2.293,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770303,32,2.017,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770304,32,0.901,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770305,32,1.001,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770306,32,1.757,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770307,32,0.827,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770308,32,1.601,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770309,32,1.117,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770310,32,0.871,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770311,32,1.659,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770312,32,1.223,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770313,32,1.212,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770314,32,0.9,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770315,32,1.959,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770316,32,3.309,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770317,32,2.929,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770318,32,2.627,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770319,32,3.076,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770320,32,3.533,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770321,33,186,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770322,33,192.3,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770323,33,213.5,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770324,33,235.2,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770325,33,252.3,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770326,33,238.8,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770327,33,205.7,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770328,33,230.6,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770329,33,220.2,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770330,33,242.3,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770331,33,275.4,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770332,33,192.1,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770333,33,198.5,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770334,33,257.3,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770335,33,219.8,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770336,33,225.9,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770337,33,272.2,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770338,33,217.9,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770339,33,184.6,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770340,33,193.7,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770341,33,39.53,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770342,33,48.83,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770343,33,36.56,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770344,33,40.64,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770345,34,21.81,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770346,34,27.82,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770347,34,26.73,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770348,34,23.12,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770349,34,16.66,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770350,34,13.66,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770351,34,31.59,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770352,34,63.42,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770353,34,28.75,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770354,34,20.19,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770355,34,81.3,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770356,34,42.09,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770357,34,72.44,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770358,34,49.27,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770359,34,24.1,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770360,34,49.25,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770361,34,47.97,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770362,34,70.68,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770363,34,27.17,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770364,34,17.18,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770365,34,51.58,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770366,34,15.01,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770367,34,15.43,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770368,34,13.42,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770369,35,632.1,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13770370,35,631.9,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13770371,35,631.5,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13770372,35,631.2,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13770373,35,630.9,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13770374,35,630.7,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13770375,35,630.7,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13770376,35,631,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13770377,35,630.9,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13770378,35,630.8,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13770379,35,630.8,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13770380,35,630.7,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13770381,35,630.7,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13770382,35,630.9,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13770383,35,631,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13770384,35,631.2,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13770385,35,631.5,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13770386,35,632,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13770387,35,632,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13770388,35,631.8,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13770389,35,632,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13770390,35,631.9,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13770391,35,631.6,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13770392,35,631.3,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13770393,30,0,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770394,30,0,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770395,30,0,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770396,30,0,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770397,30,0,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770398,30,0,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770399,30,0,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770400,30,0,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770401,30,0,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770402,30,0,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770403,30,0,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770404,30,0,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770405,30,0,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770406,30,0,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770407,30,0,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770408,30,0,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770409,30,0,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770410,30,0,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770411,30,0,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770412,30,0,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770413,30,0,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770414,30,0,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770415,30,0,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770416,30,0,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770417,28,29.95,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770418,28,30.24,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770419,28,30.64,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770420,28,30.3,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770421,28,28.68,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770422,28,24.12,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770423,28,20.18,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770424,28,17.98,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770425,28,16.88,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770426,28,19.06,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770427,28,18.76,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770428,28,19.01,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770429,28,18.47,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770430,28,17.5,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770431,28,16.99,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770432,28,15.99,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770433,28,14.95,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770434,28,16.12,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770435,28,19.55,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770436,28,22.6,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770437,28,23.43,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770438,28,24.82,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770439,28,27.46,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770440,28,28.79,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770441,29,17.08,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770442,29,15.18,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770443,29,11.68,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770444,29,11.65,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770445,29,16.54,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770446,29,29.68,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770447,29,30.72,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770448,29,34,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770449,29,30.97,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770450,29,29.88,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770451,29,30.68,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770452,29,26.22,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770453,29,27.86,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770454,29,32.11,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770455,29,33.44,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770456,29,34.53,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770457,29,36.01,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770458,29,33.39,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770459,29,27.64,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770460,29,26.75,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770461,29,31.66,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770462,29,25.51,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770463,29,19.11,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770464,29,18.33,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770465,36,1055,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770466,36,952,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770467,36,796.6,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770468,36,584.4,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770469,36,302.8,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770470,36,83.6,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770471,36,7.093,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770472,36,0,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770473,36,0,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770474,36,0,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770475,36,0,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770476,36,0,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770477,36,0,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770478,36,0,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770479,36,0,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770480,36,0,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770481,36,8.9,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770482,36,114.9,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770483,36,367.9,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770484,36,601.7,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770485,36,807,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770486,36,963,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770487,36,1060,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770488,36,1088,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770489,46,1.233,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770490,46,1.12,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770491,46,1.519,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770492,46,1.665,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770493,46,1.57,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770494,46,1.488,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770495,46,1.573,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770496,46,1.431,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770497,46,1.421,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770498,46,1.435,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770499,46,1.519,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770500,46,1.495,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770501,46,1.476,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770502,46,1.409,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770503,46,1.427,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770504,46,1.456,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770505,46,1.574,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770506,46,1.555,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770507,46,1.52,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770508,46,1.628,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770509,46,1.449,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770510,46,1.422,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770511,46,1.222,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770512,46,1.493,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770513,47,1.299,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770514,47,1.18,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770515,47,1.601,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770516,47,1.755,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770517,47,1.651,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770518,47,1.553,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770519,47,1.63,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770520,47,1.478,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770521,47,1.464,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770522,47,1.484,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770523,47,1.57,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770524,47,1.546,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770525,47,1.525,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770526,47,1.454,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770527,47,1.471,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770528,47,1.498,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770529,47,1.617,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770530,47,1.599,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770531,47,1.573,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770532,47,1.694,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770533,47,1.509,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770534,47,1.485,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770535,47,1.282,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770536,47,1.57,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770537,48,0.471,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13770538,48,0.59,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13770539,48,0.169,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13770540,48,0.015,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13770541,48,0.119,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13770542,48,0.217,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13770543,48,0.14,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13770544,48,0.292,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13770545,48,0.306,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13770546,48,0.286,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13770547,48,0.2,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13770548,48,0.224,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13770549,48,0.245,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13770550,48,0.316,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13770551,48,0.299,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13770552,48,0.272,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13770553,48,0.153,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13770554,48,0.171,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13770555,48,0.197,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13770556,48,0.076,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13770557,48,0.261,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13770558,48,0.285,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13770559,48,0.488,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13770560,48,0.2,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13770561,41,21.3,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770562,40,31.08,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770563,39,11.98,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770564,37,12.44,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770565,43,631.8,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770566,44,0,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770567,42,35.25,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770568,45,31.1904,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770569,38,2.071,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770570,51,0,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770571,53,2.17,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770572,49,1.411,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770573,52,0,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770574,54,2.241,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770575,50,1.465,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770576,56,-0.471,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770577,57,1.77,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13770578,55,0.305,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13773864,58,0.177,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13773865,58,0.182,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13773866,58,0.181,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13773867,58,0.178,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13773868,58,0.175,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13773869,58,0.174,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13773870,58,0.171,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13773871,58,0.17,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13773872,58,0.167,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13773873,58,0.167,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13773874,58,0.165,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13773875,58,0.163,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13773876,58,0.163,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13773877,58,0.161,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13773878,58,0.163,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13773879,58,0.161,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13773880,58,0.16,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13773881,58,0.16,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13773882,58,0.16,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13773883,58,0.161,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13773884,58,0.165,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13773885,58,0.166,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13773886,58,0.168,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13773887,58,0.17,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13773888,63,0.02,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13773889,63,0.019,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13773890,63,0.02,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13773891,63,0.019,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13773892,63,0.02,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13773893,63,0.019,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13773894,63,0.019,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13773895,63,0.019,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13773896,63,0.019,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13773897,63,0.019,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13773898,63,0.019,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13773899,63,0.019,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13773900,63,0.019,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13773901,63,0.019,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13773902,63,0.019,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13773903,63,0.018,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13773904,63,0.019,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13773905,63,0.018,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13773906,63,0.019,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13773907,63,0.019,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13773908,63,0.019,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13773909,63,0.019,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13773910,63,0.019,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13773911,63,0.019,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13773912,73,28.53,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13773913,73,29.43,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13773914,73,29.95,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13773915,73,29.8,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13773916,73,29.05,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13773917,73,28.1,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13773918,73,27.07,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13773919,73,25.9,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13773920,73,24.97,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13773921,73,24.1,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13773922,73,23.5,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13773923,73,22.9,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13773924,73,22.5,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13773925,73,21.95,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13773926,73,21.55,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13773927,73,21.25,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13773928,73,20.9,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13773929,73,20.45,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13773930,73,20.6,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13773931,73,21.4,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13773932,73,22.65,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13773933,73,24.08,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13773934,73,25.65,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13773935,73,27.15,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13773936,78,83.4,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13773937,78,85,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13773938,78,85.9,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13773939,78,85.6,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13773940,78,84.3,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13773941,78,82.6,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13773942,78,80.7,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13773943,78,78.62,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13773944,78,76.92,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13773945,78,75.4,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13773946,78,74.3,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13773947,78,73.2,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13773948,78,72.45,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13773949,78,71.6,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13773950,78,70.8,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13773951,78,70.22,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13773952,78,69.6,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13773953,78,68.8,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13773954,78,69.08,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13773955,78,70.53,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13773956,78,72.78,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13773957,78,75.33,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13773958,78,78.18,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13773959,78,80.9,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13773960,64,0.021,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13773961,64,0.021,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13773962,64,0.021,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13773963,64,0.021,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13773964,64,0.021,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13773965,64,0.02,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13773966,64,0.02,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13773967,64,0.019,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13773968,64,0.019,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13773969,64,0.019,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13773970,64,0.018,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13773971,64,0.018,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13773972,64,0.018,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13773973,64,0.018,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13773974,64,0.018,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13773975,64,0.018,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13773976,64,0.018,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13773977,64,0.017,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13773978,64,0.018,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13773979,64,0.018,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13773980,64,0.018,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13773981,64,0.019,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13773982,64,0.019,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13773983,64,0.02,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13773984,84,10.66,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13773985,84,10.97,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13773986,84,10.9,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13773987,84,10.72,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13773988,84,10.56,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13773989,84,10.5,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13773990,84,10.28,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13773991,84,10.25,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13773992,84,10.06,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13773993,84,10.07,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13773994,84,9.98,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13773995,84,9.82,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13773996,84,9.88,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13773997,84,9.7,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13773998,84,9.83,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13773999,84,9.73,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774000,84,9.66,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774001,84,9.7,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774002,84,9.67,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774003,84,9.71,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774004,84,9.95,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774005,84,10.03,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774006,84,10.13,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774007,84,10.24,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774008,94,7.557,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774009,94,7.467,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774010,94,7.57,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774011,94,7.557,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774012,94,7.458,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774013,94,7.228,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774014,94,7.12,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774015,94,6.918,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774016,94,6.836,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774017,94,6.686,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774018,94,6.598,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774019,94,6.599,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774020,94,6.496,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774021,94,6.531,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774022,94,6.342,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774023,94,6.342,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774024,94,6.324,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774025,94,6.21,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774026,94,6.289,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774027,94,6.441,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774028,94,6.513,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774029,94,6.703,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774030,94,6.91,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774031,94,7.074,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774032,83,10.99,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774033,83,11.34,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774034,83,11.27,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774035,83,11.08,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774036,83,10.9,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774037,83,10.81,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774038,83,10.56,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774039,83,10.5,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774040,83,10.28,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774041,83,10.27,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774042,83,10.17,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774043,83,9.99,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774044,83,10.04,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774045,83,9.85,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774046,83,9.97,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774047,83,9.86,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774048,83,9.78,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774049,83,9.81,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774050,83,9.79,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774051,83,9.85,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774052,83,10.12,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774053,83,10.24,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774054,83,10.37,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774055,83,10.53,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774056,93,7.17,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774057,93,6.997,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774058,93,7.056,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774059,93,7.058,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774060,93,7.041,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774061,93,6.922,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774062,93,6.936,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774063,93,6.84,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774064,93,6.857,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774065,93,6.788,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774066,93,6.757,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774067,93,6.82,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774068,93,6.755,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774069,93,6.84,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774070,93,6.686,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774071,93,6.719,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774072,93,6.741,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774073,93,6.661,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774074,93,6.726,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774075,93,6.798,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774076,93,6.736,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774077,93,6.786,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774078,93,6.843,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774079,93,6.848,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774080,59,0.283,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774081,59,0.285,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774082,59,0.286,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774083,59,0.284,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774084,59,0.284,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774085,59,0.284,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774086,59,0.286,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774087,59,0.285,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774088,59,0.284,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774089,59,0.284,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774090,59,0.28,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774091,59,0.28,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774092,59,0.279,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774093,59,0.278,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774094,59,0.277,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774095,59,0.276,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774096,59,0.275,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774097,59,0.274,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774098,59,0.272,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774099,59,0.272,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774100,59,0.274,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774101,59,0.275,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774102,59,0.277,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774103,59,0.281,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774104,65,0.038,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774105,65,0.038,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774106,65,0.039,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774107,65,0.039,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774108,65,0.039,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774109,65,0.039,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774110,65,0.038,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774111,65,0.038,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774112,65,0.038,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774113,65,0.038,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774114,65,0.038,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774115,65,0.038,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774116,65,0.038,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774117,65,0.038,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774118,65,0.038,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774119,65,0.037,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774120,65,0.037,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774121,65,0.037,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774122,65,0.037,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774123,65,0.037,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774124,65,0.037,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774125,65,0.037,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774126,65,0.037,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774127,65,0.037,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774128,74,25.83,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774129,74,26.88,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774130,74,27.65,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774131,74,27.8,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774132,74,27.8,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774133,74,27.42,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774134,74,26.92,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774135,74,26.5,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774136,74,25.82,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774137,74,25.12,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774138,74,24.67,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774139,74,24.05,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774140,74,23.7,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774141,74,23.32,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774142,74,22.85,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774143,74,22.5,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774144,74,22.12,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774145,74,21.8,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774146,74,21.5,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774147,74,21.5,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774148,74,21.9,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774149,74,22.7,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774150,74,23.68,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774151,74,25.08,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774152,79,78.51,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774153,79,80.4,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774154,79,81.8,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774155,79,82,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774156,79,82,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774157,79,81.4,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774158,79,80.5,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774159,79,79.65,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774160,79,78.52,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774161,79,77.27,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774162,79,76.37,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774163,79,75.3,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774164,79,74.7,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774165,79,73.97,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774166,79,73.1,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774167,79,72.45,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774168,79,71.9,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774169,79,71.3,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774170,79,70.7,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774171,79,70.7,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774172,79,71.5,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774173,79,72.83,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774174,79,74.61,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774175,79,77.18,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774176,66,0.039,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774177,66,0.039,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774178,66,0.04,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774179,66,0.04,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774180,66,0.04,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774181,66,0.04,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774182,66,0.039,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774183,66,0.039,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774184,66,0.039,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774185,66,0.038,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774186,66,0.038,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774187,66,0.037,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774188,66,0.037,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774189,66,0.037,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774190,66,0.037,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774191,66,0.036,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774192,66,0.036,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774193,66,0.035,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774194,66,0.036,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774195,66,0.036,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774196,66,0.035,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774197,66,0.037,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774198,66,0.037,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774199,66,0.038,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774200,86,18,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774201,86,18.13,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774202,86,18.18,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774203,86,18.01,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774204,86,18.04,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774205,86,18.05,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774206,86,18.21,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774207,86,18.12,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774208,86,18.09,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774209,86,18.03,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774210,86,17.75,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774211,86,17.72,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774212,86,17.64,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774213,86,17.55,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774214,86,17.55,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774215,86,17.43,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774216,86,17.38,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774217,86,17.31,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774218,86,17.15,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774219,86,17.08,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774220,86,17.25,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774221,86,17.34,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774222,86,17.5,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774223,86,17.79,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774224,96,13.86,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774225,96,14.19,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774226,96,14.3,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774227,96,14.54,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774228,96,14.48,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774229,96,14.41,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774230,96,14.17,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774231,96,14.1,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774232,96,13.86,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774233,96,13.66,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774234,96,13.65,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774235,96,13.48,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774236,96,13.34,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774237,96,13.27,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774238,96,13.14,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774239,96,13.03,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774240,96,12.92,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774241,96,12.8,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774242,96,12.79,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774243,96,12.8,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774244,96,12.81,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774245,96,13.04,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774246,96,13.23,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774247,96,13.47,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774248,85,18.44,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774249,85,18.61,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774250,85,18.69,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774251,85,18.53,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774252,85,18.56,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774253,85,18.57,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774254,85,18.71,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774255,85,18.59,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774256,85,18.55,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774257,85,18.46,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774258,85,18.15,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774259,85,18.1,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774260,85,18,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774261,85,17.89,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774262,85,17.87,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774263,85,17.74,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774264,85,17.67,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774265,85,17.59,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774266,85,17.41,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774267,85,17.34,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774268,85,17.52,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774269,85,17.64,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774270,85,17.84,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774271,85,18.19,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774272,95,13.72,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774273,95,13.84,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774274,95,13.83,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774275,95,13.99,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774276,95,13.94,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774277,95,13.91,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774278,95,13.74,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774279,95,13.77,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774280,95,13.65,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774281,95,13.56,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774282,95,13.66,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774283,95,13.59,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774284,95,13.53,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774285,95,13.55,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774286,95,13.48,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774287,95,13.44,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774288,95,13.4,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774289,95,13.33,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774290,95,13.38,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774291,95,13.4,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774292,95,13.36,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774293,95,13.46,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774294,95,13.47,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774295,95,13.47,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774296,60,0.369,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774297,60,0.37,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774298,60,0.368,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774299,60,0.369,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774300,60,0.37,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774301,60,0.369,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774302,60,0.369,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774303,60,0.366,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774304,60,0.367,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774305,60,0.369,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774306,60,0.367,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774307,60,0.369,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774308,60,0.367,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774309,60,0.372,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774310,60,0.368,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774311,60,0.368,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774312,60,0.363,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774313,60,0.366,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774314,60,0.368,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774315,60,0.369,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774316,60,0.368,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774317,60,0.367,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774318,60,0.365,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774319,60,0.368,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774320,67,0.082,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774321,67,0.082,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774322,67,0.082,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774323,67,0.083,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774324,67,0.083,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774325,67,0.083,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774326,67,0.083,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774327,67,0.084,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774328,67,0.084,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774329,67,0.084,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774330,67,0.084,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774331,67,0.084,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774332,67,0.084,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774333,67,0.083,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774334,67,0.084,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774335,67,0.083,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774336,67,0.083,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774337,67,0.084,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774338,67,0.082,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774339,67,0.083,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774340,67,0.082,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774341,67,0.082,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774342,67,0.082,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774343,67,0.082,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774344,75,23,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774345,75,23.3,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774346,75,23.5,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774347,75,23.7,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774348,75,23.9,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774349,75,24.25,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774350,75,24.4,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774351,75,24.7,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774352,75,24.7,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774353,75,24.7,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774354,75,24.7,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774355,75,24.55,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774356,75,24.55,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774357,75,24.4,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774358,75,24.3,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774359,75,24.2,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774360,75,23.97,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774361,75,23.9,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774362,75,23.7,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774363,75,23.6,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774364,75,23.5,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774365,75,23.4,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774366,75,23.3,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774367,75,23.23,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774368,80,73.4,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774369,80,73.9,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774370,80,74.3,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774371,80,74.7,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774372,80,75.1,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774373,80,75.6,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774374,80,75.9,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774375,80,76.4,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774376,80,76.4,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774377,80,76.4,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774378,80,76.4,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774379,80,76.15,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774380,80,76.15,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774381,80,75.9,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774382,80,75.7,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774383,80,75.5,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774384,80,75.2,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774385,80,75.1,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774386,80,74.7,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774387,80,74.5,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774388,80,74.3,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774389,80,74.1,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774390,80,73.9,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774391,80,73.78,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774392,68,0.08,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774393,68,0.08,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774394,68,0.081,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774395,68,0.081,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774396,68,0.081,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774397,68,0.082,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774398,68,0.082,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774399,68,0.083,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774400,68,0.083,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774401,68,0.083,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774402,68,0.083,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774403,68,0.082,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774404,68,0.083,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774405,68,0.082,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774406,68,0.082,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774407,68,0.082,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774408,68,0.082,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774409,68,0.081,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774410,68,0.081,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774411,68,0.081,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774412,68,0.081,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774413,68,0.08,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774414,68,0.081,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774415,68,0.08,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774416,88,25.32,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774417,88,25.32,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774418,88,25.14,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774419,88,25.28,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774420,88,25.37,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774421,88,25.31,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774422,88,25.32,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774423,88,24.98,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774424,88,25.09,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774425,88,25.34,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774426,88,25.11,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774427,88,25.31,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774428,88,25.09,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774429,88,25.62,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774430,88,25.17,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774431,88,25.23,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774432,88,24.7,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774433,88,24.98,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774434,88,25.14,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774435,88,25.29,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774436,88,25.2,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774437,88,25.05,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774438,88,24.89,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774439,88,25.11,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774440,98,28.6,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774441,98,28.61,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774442,98,29,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774443,98,29.16,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774444,98,29.23,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774445,98,29.38,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774446,98,29.61,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774447,98,30.07,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774448,98,29.94,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774449,98,29.82,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774450,98,29.98,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774451,98,29.78,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774452,98,29.96,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774453,98,29.32,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774454,98,29.64,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774455,98,29.5,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774456,98,29.73,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774457,98,29.42,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774458,98,29.2,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774459,98,28.97,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774460,98,28.87,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774461,98,28.9,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774462,98,28.93,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774463,98,28.77,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774464,87,25.77,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774465,87,25.79,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774466,87,25.62,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774467,87,25.77,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774468,87,25.88,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774469,87,25.84,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774470,87,25.86,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774471,87,25.52,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774472,87,25.63,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774473,87,25.89,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774474,87,25.65,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774475,87,25.86,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774476,87,25.63,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774477,87,26.17,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774478,87,25.7,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774479,87,25.75,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774480,87,25.2,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774481,87,25.48,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774482,87,25.64,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774483,87,25.78,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774484,87,25.68,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774485,87,25.51,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774486,87,25.35,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774487,87,25.58,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774488,97,29.41,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774489,97,29.34,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774490,97,29.62,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774491,97,29.7,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774492,97,29.66,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774493,97,29.7,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774494,97,29.86,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774495,97,30.26,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774496,97,30.11,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774497,97,29.95,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774498,97,30.12,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774499,97,29.96,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774500,97,30.18,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774501,97,29.57,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774502,97,29.93,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774503,97,29.86,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774504,97,30.13,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774505,97,29.9,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774506,97,29.71,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774507,97,29.55,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774508,97,29.52,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774509,97,29.59,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774510,97,29.66,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774511,97,29.5,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774512,61,0.263,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774513,61,0.265,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774514,61,0.265,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774515,61,0.263,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774516,61,0.262,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774517,61,0.265,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774518,61,0.264,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774519,61,0.263,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774520,61,0.263,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774521,61,0.263,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774522,61,0.263,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774523,61,0.261,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774524,61,0.26,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774525,61,0.261,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774526,61,0.264,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774527,61,0.265,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774528,61,0.265,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774529,61,0.265,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774530,61,0.263,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774531,61,0.262,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774532,61,0.263,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774533,61,0.263,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774534,61,0.263,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774535,61,0.263,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774536,69,0.045,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774537,69,0.044,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774538,69,0.044,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774539,69,0.044,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774540,69,0.044,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774541,69,0.044,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774542,69,0.045,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774543,69,0.045,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774544,69,0.045,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774545,69,0.045,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774546,69,0.045,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774547,69,0.045,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774548,69,0.045,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774549,69,0.045,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774550,69,0.045,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774551,69,0.045,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774552,69,0.044,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774553,69,0.045,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774554,69,0.045,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774555,69,0.045,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774556,69,0.045,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774557,69,0.045,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774558,69,0.045,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774559,69,0.044,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774560,76,23.3,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774561,76,23.22,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774562,76,23.3,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774563,76,23.3,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774564,76,23.3,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774565,76,23.23,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774566,76,23.3,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774567,76,23.22,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774568,76,23.3,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774569,76,23.3,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774570,76,23.3,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774571,76,23.35,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774572,76,23.3,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774573,76,23.45,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774574,76,23.5,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774575,76,23.5,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774576,76,23.5,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774577,76,23.5,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774578,76,23.5,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774579,76,23.5,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774580,76,23.5,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774581,76,23.5,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774582,76,23.45,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774583,76,23.4,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774584,81,73.9,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774585,81,73.78,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774586,81,73.9,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774587,81,73.9,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774588,81,73.9,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774589,81,73.78,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774590,81,73.9,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774591,81,73.78,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774592,81,73.9,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774593,81,73.9,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774594,81,73.9,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774595,81,74,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774596,81,73.9,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774597,81,74.2,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774598,81,74.3,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774599,81,74.3,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774600,81,74.3,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774601,81,74.3,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774602,81,74.3,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774603,81,74.3,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774604,81,74.3,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774605,81,74.3,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774606,81,74.2,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774607,81,74.1,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774608,70,0.044,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774609,70,0.043,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774610,70,0.043,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774611,70,0.043,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774612,70,0.043,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774613,70,0.043,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774614,70,0.044,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774615,70,0.044,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774616,70,0.044,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774617,70,0.044,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774618,70,0.044,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774619,70,0.044,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774620,70,0.044,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774621,70,0.044,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774622,70,0.044,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774623,70,0.044,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774624,70,0.044,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774625,70,0.044,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774626,70,0.044,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774627,70,0.044,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774628,70,0.044,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774629,70,0.044,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774630,70,0.044,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774631,70,0.043,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774632,90,16.43,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774633,90,16.54,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774634,90,16.58,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774635,90,16.46,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774636,90,16.36,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774637,90,16.58,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774638,90,16.5,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774639,90,16.42,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774640,90,16.42,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774641,90,16.43,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774642,90,16.43,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774643,90,16.31,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774644,90,16.25,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774645,90,16.27,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774646,90,16.5,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774647,90,16.55,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774648,90,16.55,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774649,90,16.55,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774650,90,16.44,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774651,90,16.31,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774652,90,16.43,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774653,90,16.43,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774654,90,16.43,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774655,90,16.47,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774656,100,15.73,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774657,100,15.56,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774658,100,15.51,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774659,100,15.58,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774660,100,15.66,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774661,100,15.51,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774662,100,15.62,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774663,100,15.73,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774664,100,15.73,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774665,100,15.73,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774666,100,15.73,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774667,100,15.91,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774668,100,15.94,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774669,100,15.97,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774670,100,15.81,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774671,100,15.77,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774672,100,15.77,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774673,100,15.77,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774674,100,15.84,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774675,100,15.91,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774676,100,15.74,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774677,100,15.74,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774678,100,15.74,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774679,100,15.59,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774680,89,16.74,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774681,89,16.85,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774682,89,16.89,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774683,89,16.77,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774684,89,16.66,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774685,89,16.89,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774686,89,16.81,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774687,89,16.74,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774688,89,16.74,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774689,89,16.74,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774690,89,16.74,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774691,89,16.62,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774692,89,16.56,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774693,89,16.58,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774694,89,16.82,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774695,89,16.87,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774696,89,16.87,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774697,89,16.87,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774698,89,16.76,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774699,89,16.63,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774700,89,16.75,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774701,89,16.75,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774702,89,16.75,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774703,89,16.79,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774704,99,16.07,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774705,99,15.91,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774706,99,15.86,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774707,99,15.94,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774708,99,16.01,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774709,99,15.86,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774710,99,15.98,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774711,99,16.09,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774712,99,16.09,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774713,99,16.09,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774714,99,16.08,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774715,99,16.25,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774716,99,16.26,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774717,99,16.29,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774718,99,16.14,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774719,99,16.08,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774720,99,16.07,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774721,99,16.07,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774722,99,16.15,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774723,99,16.22,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774724,99,16.04,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774725,99,16.05,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774726,99,16.06,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774727,99,15.9,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774728,62,0.379,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774729,62,0.379,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774730,62,0.379,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774731,62,0.379,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774732,62,0.379,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774733,62,0.379,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774734,62,0.379,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774735,62,0.379,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774736,62,0.379,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774737,62,0.379,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774738,62,0.379,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774739,62,0.379,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774740,62,0.379,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774741,62,0.379,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774742,62,0.379,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774743,62,0.376,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774744,62,0.375,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774745,62,0.375,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774746,62,0.375,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774747,62,0.378,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774748,62,0.379,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774749,62,0.379,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774750,62,0.379,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774751,62,0.379,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774752,71,0.105,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774753,71,0.105,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774754,71,0.105,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774755,71,0.105,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774756,71,0.105,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774757,71,0.105,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774758,71,0.105,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774759,71,0.105,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774760,71,0.105,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774761,71,0.105,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774762,71,0.105,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774763,71,0.105,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774764,71,0.105,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774765,71,0.105,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774766,71,0.105,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774767,71,0.106,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774768,71,0.106,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774769,71,0.106,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774770,71,0.106,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774771,71,0.105,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774772,71,0.105,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774773,71,0.105,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774774,71,0.105,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774775,71,0.105,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774776,77,21.1,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774777,77,21.1,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774778,77,21.1,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774779,77,21.05,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774780,77,21.1,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774781,77,21.1,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774782,77,21.05,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774783,77,21.1,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774784,77,21.1,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774785,77,21.1,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774786,77,21.05,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774787,77,21.1,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774788,77,21.1,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774789,77,21,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774790,77,21.1,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774791,77,21.1,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774792,77,21.1,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774793,77,21.05,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774794,77,21.05,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774795,77,21.1,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774796,77,21.1,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774797,77,21.05,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774798,77,21.1,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774799,77,21.05,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774800,82,70,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774801,82,70,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774802,82,70,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774803,82,69.9,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774804,82,70,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774805,82,70,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774806,82,69.9,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774807,82,70,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774808,82,70,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774809,82,70,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774810,82,69.9,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774811,82,70,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774812,82,70,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774813,82,69.8,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774814,82,70,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774815,82,70,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774816,82,70,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774817,82,69.9,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774818,82,69.9,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774819,82,70,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774820,82,70,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774821,82,69.9,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774822,82,70,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774823,82,69.9,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774824,72,0.099,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774825,72,0.099,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774826,72,0.099,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774827,72,0.099,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774828,72,0.099,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774829,72,0.099,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774830,72,0.099,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774831,72,0.099,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774832,72,0.099,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774833,72,0.099,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774834,72,0.099,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774835,72,0.099,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774836,72,0.099,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774837,72,0.099,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774838,72,0.099,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774839,72,0.1,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774840,72,0.101,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774841,72,0.1,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774842,72,0.101,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774843,72,0.099,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774844,72,0.099,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774845,72,0.099,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774846,72,0.099,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774847,72,0.099,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774848,92,26.22,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774849,92,26.22,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774850,92,26.22,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774851,92,26.22,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774852,92,26.22,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774853,92,26.22,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774854,92,26.22,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774855,92,26.22,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774856,92,26.22,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774857,92,26.22,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774858,92,26.22,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774859,92,26.22,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774860,92,26.22,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774861,92,26.22,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774862,92,26.22,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774863,92,25.99,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774864,92,25.88,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774865,92,25.88,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774866,92,25.88,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774867,92,26.11,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774868,92,26.22,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774869,92,26.22,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774870,92,26.22,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774871,92,26.22,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774872,102,35.5,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774873,102,35.5,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774874,102,35.5,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774875,102,35.5,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774876,102,35.5,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774877,102,35.5,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774878,102,35.5,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774879,102,35.5,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774880,102,35.5,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774881,102,35.5,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774882,102,35.5,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774883,102,35.5,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774884,102,35.5,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774885,102,35.5,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774886,102,35.5,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774887,102,35.83,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774888,102,35.99,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774889,102,35.99,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774890,102,35.99,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774891,102,35.67,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774892,102,35.5,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774893,102,35.5,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774894,102,35.5,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774895,102,35.5,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774896,91,26.57,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774897,91,26.57,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774898,91,26.57,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774899,91,26.57,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774900,91,26.57,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774901,91,26.57,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774902,91,26.57,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774903,91,26.57,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774904,91,26.57,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774905,91,26.57,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774906,91,26.57,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774907,91,26.57,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774908,91,26.57,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774909,91,26.57,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774910,91,26.57,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774911,91,26.34,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774912,91,26.23,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774913,91,26.23,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774914,91,26.23,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774915,91,26.46,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774916,91,26.57,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774917,91,26.57,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774918,91,26.57,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774919,91,26.57,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13774920,101,37.6,'2011-08-17 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13774921,101,37.6,'2011-08-17 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13774922,101,37.6,'2011-08-17 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13774923,101,37.6,'2011-08-17 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13774924,101,37.6,'2011-08-17 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13774925,101,37.6,'2011-08-17 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13774926,101,37.6,'2011-08-17 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13774927,101,37.6,'2011-08-17 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13774928,101,37.6,'2011-08-17 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13774929,101,37.6,'2011-08-17 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13774930,101,37.6,'2011-08-18 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13774931,101,37.6,'2011-08-18 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13774932,101,37.6,'2011-08-18 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13774933,101,37.6,'2011-08-18 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13774934,101,37.6,'2011-08-18 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13774935,101,37.95,'2011-08-18 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13774936,101,38.12,'2011-08-18 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13774937,101,38.12,'2011-08-18 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13774938,101,38.12,'2011-08-18 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13774939,101,37.77,'2011-08-18 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13774940,101,37.6,'2011-08-18 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13774941,101,37.6,'2011-08-18 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13774942,101,37.6,'2011-08-18 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13774943,101,37.6,'2011-08-18 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780711,31,13.18,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780712,31,13.07,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780713,31,13.16,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780714,31,13.16,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780715,31,12.99,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780716,31,12.81,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780717,31,12.76,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780718,31,12.72,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780719,31,12.67,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780720,31,12.65,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780721,31,12.63,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780722,31,12.51,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780723,31,12.51,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780724,31,12.54,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780725,31,12.52,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780726,31,12.5,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780727,31,12.49,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780728,31,12.5,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780729,31,12.92,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780730,31,13.25,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780731,31,13.36,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780732,31,13.17,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780733,31,13.29,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780734,31,13.28,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780735,32,3.059,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780736,32,2.236,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780737,32,2.589,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780738,32,2.219,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780739,32,2.138,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780740,32,1.489,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780741,32,1.643,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780742,32,1.569,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780743,32,2.147,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780744,32,1.608,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780745,32,2.11,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780746,32,2.247,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780747,32,2.199,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780748,32,1.667,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780749,32,1.245,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780750,32,0.94,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780751,32,1.022,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780752,32,0.892,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780753,32,0.748,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780754,32,0.915,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780755,32,2.825,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780756,32,1.999,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780757,32,3.152,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780758,32,2.483,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780759,33,39.84,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780760,33,10.25,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780761,33,276.8,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780762,33,223.4,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780763,33,211,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780764,33,251.1,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780765,33,221.9,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780766,33,219.9,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780767,33,206.3,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780768,33,221.8,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780769,33,221.3,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780770,33,204.8,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780771,33,219.4,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780772,33,209.7,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780773,33,209.1,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780774,33,204.4,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780775,33,202.2,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780776,33,248.3,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780777,33,133,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780778,33,44.25,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780779,33,24.49,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780780,33,89.1,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780781,33,0.375,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780782,33,26.88,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780783,34,20.89,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780784,34,49.51,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780785,34,20.42,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780786,34,31.23,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780787,34,18.05,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780788,34,42.04,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780789,34,20.17,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780790,34,21.57,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780791,34,21.09,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780792,34,24.17,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780793,34,25.34,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780794,34,13.48,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780795,34,17.42,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780796,34,26.01,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780797,34,25.86,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780798,34,28.89,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780799,34,37.81,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780800,34,71.3,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780801,34,79.5,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780802,34,56.21,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780803,34,35.83,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780804,34,61.32,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780805,34,44.63,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780806,34,23.6,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780807,35,630.8,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13780808,35,630.2,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13780809,35,629.7,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13780810,35,629.4,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13780811,35,629.2,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13780812,35,629,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13780813,35,629.2,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13780814,35,629.5,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13780815,35,629.6,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13780816,35,629.7,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13780817,35,629.8,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13780818,35,629.7,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13780819,35,629.5,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13780820,35,629.5,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13780821,35,629.4,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13780822,35,629.6,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13780823,35,629.6,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13780824,35,629.8,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13780825,35,630,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13780826,35,629.8,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13780827,35,630,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13780828,35,628.9,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13780829,35,629.8,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13780830,35,629.4,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13780831,30,0,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780832,30,0,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780833,30,0,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780834,30,0,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780835,30,0,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780836,30,0,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780837,30,0,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780838,30,0,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780839,30,0,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780840,30,0,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780841,30,0,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780842,30,0,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780843,30,0,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780844,30,0,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780845,30,0,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780846,30,0,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780847,30,0,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780848,30,0,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780849,30,0,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780850,30,0,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780851,30,0,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780852,30,0,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780853,30,0,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780854,30,0,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780855,28,29.96,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780856,28,30.39,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780857,28,30.03,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780858,28,30,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780859,28,27.45,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780860,28,23.32,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780861,28,19.71,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780862,28,17.26,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780863,28,16.16,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780864,28,16.23,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780865,28,15.84,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780866,28,14.64,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780867,28,14.06,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780868,28,13.66,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780869,28,13.52,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780870,28,13.92,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780871,28,14.16,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780872,28,14.32,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780873,28,16.61,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780874,28,17.76,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780875,28,20.16,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780876,28,21.36,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780877,28,23.29,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780878,28,24.45,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780879,29,16.45,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780880,29,11.71,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780881,29,14.37,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780882,29,16.77,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780883,29,25.14,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780884,29,32.48,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780885,29,33.32,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780886,29,34.07,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780887,29,32.22,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780888,29,31.08,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780889,29,39.55,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780890,29,42.85,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780891,29,45.35,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780892,29,46.37,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780893,29,45.16,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780894,29,44.56,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780895,29,49.11,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780896,29,54.44,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780897,29,45.05,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780898,29,45.19,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780899,29,36,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780900,29,39.74,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780901,29,37.96,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780902,29,30.12,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780903,36,1045,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780904,36,912,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780905,36,614.9,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780906,36,497.6,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780907,36,243.8,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780908,36,77.72,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780909,36,3.762,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780910,36,0,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780911,36,0,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780912,36,0,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780913,36,0,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780914,36,0,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780915,36,0,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780916,36,0,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780917,36,0,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780918,36,0,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780919,36,4.169,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780920,36,48.58,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780921,36,217.4,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780922,36,191.9,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780923,36,668.5,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780924,36,297.7,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780925,36,767.1,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780926,36,1026,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780927,46,1.436,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780928,46,1.557,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780929,46,1.567,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780930,46,1.683,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780931,46,1.477,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780932,46,1.487,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780933,46,1.444,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780934,46,1.466,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780935,46,1.529,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780936,46,1.533,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780937,46,1.591,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780938,46,1.531,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780939,46,1.47,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780940,46,1.438,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780941,46,1.565,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780942,46,1.44,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780943,46,1.317,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780944,46,1.711,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780945,46,1.539,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780946,46,1.449,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780947,46,1.305,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780948,46,1.303,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780949,46,1.435,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780950,46,1.479,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780951,47,1.512,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780952,47,1.642,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780953,47,1.651,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780954,47,1.773,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780955,47,1.55,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780956,47,1.549,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780957,47,1.495,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780958,47,1.512,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780959,47,1.573,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780960,47,1.578,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780961,47,1.637,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780962,47,1.571,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780963,47,1.507,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780964,47,1.474,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780965,47,1.603,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780966,47,1.476,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780967,47,1.35,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780968,47,1.755,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780969,47,1.584,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780970,47,1.496,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780971,47,1.352,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780972,47,1.353,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780973,47,1.495,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780974,47,1.543,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780975,48,0.258,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13780976,48,0.128,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13780977,48,0.119,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13780978,48,-0.003,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13780979,48,0.22,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13780980,48,0.221,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13780981,48,0.275,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13780982,48,0.258,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13780983,48,0.197,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13780984,48,0.192,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13780985,48,0.133,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13780986,48,0.199,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13780987,48,0.263,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13780988,48,0.296,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13780989,48,0.167,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13780990,48,0.294,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13780991,48,0.42,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13780992,48,0.015,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13780993,48,0.186,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13780994,48,0.274,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13780995,48,0.418,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13780996,48,0.417,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13780997,48,0.275,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13780998,48,0.227,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13780999,41,21.75,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781000,40,31.51,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781001,39,14.17,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781002,37,12.5,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781003,43,630.7,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781004,44,0,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781005,42,27.79,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781006,45,29.92615,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781007,38,2.034,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781008,51,0,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781009,53,1.867,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781010,49,1.496,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781011,52,0,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781012,54,1.969,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781013,50,1.554,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781014,56,-0.199,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781015,57,1.77,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13781016,55,0.216,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13784257,58,0.171,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784258,58,0.173,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784259,58,0.173,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784260,58,0.171,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784261,58,0.172,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784262,58,0.169,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784263,58,0.166,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784264,58,0.163,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784265,58,0.162,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784266,58,0.161,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784267,58,0.157,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784268,58,0.157,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784269,58,0.157,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784270,58,0.155,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784271,58,0.154,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784272,58,0.153,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784273,58,0.153,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784274,58,0.154,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784275,58,0.154,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784276,58,0.155,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784277,58,0.156,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784278,58,0.157,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784279,58,0.156,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784280,58,0.159,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784281,63,0.019,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784282,63,0.019,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784283,63,0.019,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784284,63,0.018,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784285,63,0.018,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784286,63,0.018,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784287,63,0.018,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784288,63,0.018,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784289,63,0.018,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784290,63,0.018,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784291,63,0.018,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784292,63,0.018,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784293,63,0.018,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784294,63,0.018,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784295,63,0.018,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784296,63,0.018,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784297,63,0.018,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784298,63,0.018,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784299,63,0.018,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784300,63,0.018,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784301,63,0.018,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784302,63,0.018,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784303,63,0.018,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784304,63,0.018,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784305,73,28.68,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784306,73,29.65,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784307,73,30.1,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784308,73,29.57,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784309,73,29.12,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784310,73,28.17,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784311,73,27.07,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784312,73,26.02,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784313,73,25.2,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784314,73,24.3,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784315,73,23.65,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784316,73,23.15,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784317,73,22.6,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784318,73,22.12,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784319,73,21.75,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784320,73,21.35,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784321,73,21.2,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784322,73,21.1,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784323,73,20.95,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784324,73,21.35,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784325,73,21.93,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784326,73,23.03,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784327,73,23.35,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784328,73,24.66,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784329,78,83.7,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784330,78,85.4,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784331,78,86.2,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784332,78,85.2,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784333,78,84.4,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784334,78,82.7,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784335,78,80.7,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784336,78,78.85,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784337,78,77.37,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784338,78,75.72,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784339,78,74.6,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784340,78,73.65,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784341,78,72.62,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784342,78,71.9,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784343,78,71.2,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784344,78,70.4,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784345,78,70.15,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784346,78,70,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784347,78,69.7,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784348,78,70.43,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784349,78,71.51,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784350,78,73.43,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784351,78,74,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784352,78,76.38,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784353,64,0.02,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784354,64,0.02,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784355,64,0.02,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784356,64,0.02,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784357,64,0.019,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784358,64,0.019,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784359,64,0.019,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784360,64,0.018,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784361,64,0.018,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784362,64,0.018,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784363,64,0.017,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784364,64,0.017,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784365,64,0.017,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784366,64,0.017,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784367,64,0.017,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784368,64,0.017,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784369,64,0.017,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784370,64,0.017,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784371,64,0.017,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784372,64,0.017,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784373,64,0.017,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784374,64,0.017,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784375,64,0.017,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784376,64,0.018,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784377,84,10.3,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784378,84,10.42,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784379,84,10.44,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784380,84,10.33,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784381,84,10.34,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784382,84,10.17,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784383,84,10.03,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784384,84,9.85,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784385,84,9.79,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784386,84,9.73,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784387,84,9.48,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784388,84,9.47,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784389,84,9.52,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784390,84,9.38,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784391,84,9.35,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784392,84,9.28,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784393,84,9.32,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784394,84,9.34,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784395,84,9.32,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784396,84,9.41,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784397,84,9.44,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784398,84,9.5,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784399,84,9.43,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784400,84,9.59,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784401,94,7.247,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784402,94,7.257,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784403,94,7.204,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784404,94,7.091,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784405,94,6.933,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784406,94,6.824,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784407,94,6.678,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784408,94,6.548,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784409,94,6.437,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784410,94,6.334,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784411,94,6.323,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784412,94,6.215,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784413,94,6.115,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784414,94,6.121,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784415,94,6.092,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784416,94,6.079,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784417,94,6.002,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784418,94,5.973,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784419,94,5.954,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784420,94,6.003,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784421,94,6.08,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784422,94,6.187,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784423,94,6.276,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784424,94,6.453,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784425,83,10.63,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784426,83,10.78,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784427,83,10.8,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784428,83,10.68,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784429,83,10.67,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784430,83,10.48,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784431,83,10.3,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784432,83,10.09,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784433,83,10.01,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784434,83,9.93,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784435,83,9.66,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784436,83,9.64,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784437,83,9.68,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784438,83,9.52,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784439,83,9.48,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784440,83,9.41,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784441,83,9.44,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784442,83,9.46,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784443,83,9.44,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784444,83,9.55,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784445,83,9.58,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784446,83,9.67,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784447,83,9.6,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784448,83,9.8,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784449,93,6.855,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784450,93,6.78,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784451,93,6.715,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784452,93,6.646,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784453,93,6.547,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784454,93,6.525,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784455,93,6.489,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784456,93,6.461,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784457,93,6.441,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784458,93,6.409,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784459,93,6.461,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784460,93,6.406,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784461,93,6.349,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784462,93,6.398,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784463,93,6.404,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784464,93,6.423,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784465,93,6.358,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784466,93,6.345,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784467,93,6.328,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784468,93,6.332,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784469,93,6.358,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784470,93,6.366,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784471,93,6.435,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784472,93,6.481,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784473,59,0.282,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784474,59,0.284,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784475,59,0.287,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784476,59,0.287,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784477,59,0.287,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784478,59,0.285,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784479,59,0.285,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784480,59,0.285,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784481,59,0.284,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784482,59,0.281,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784483,59,0.28,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784484,59,0.28,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784485,59,0.277,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784486,59,0.276,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784487,59,0.276,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784488,59,0.274,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784489,59,0.272,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784490,59,0.273,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784491,59,0.273,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784492,59,0.274,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784493,59,0.273,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784494,59,0.273,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784495,59,0.273,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784496,59,0.275,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784497,65,0.038,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784498,65,0.038,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784499,65,0.038,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784500,65,0.038,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784501,65,0.038,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784502,65,0.038,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784503,65,0.038,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784504,65,0.038,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784505,65,0.037,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784506,65,0.037,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784507,65,0.037,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784508,65,0.037,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784509,65,0.037,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784510,65,0.037,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784511,65,0.037,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784512,65,0.037,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784513,65,0.037,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784514,65,0.036,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784515,65,0.036,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784516,65,0.036,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784517,65,0.036,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784518,65,0.037,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784519,65,0.037,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784520,65,0.037,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784521,74,26.43,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784522,74,27.35,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784523,74,27.9,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784524,74,28.07,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784525,74,27.95,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784526,74,27.8,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784527,74,27.27,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784528,74,26.67,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784529,74,26.1,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784530,74,25.5,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784531,74,24.9,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784532,74,24.3,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784533,74,23.8,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784534,74,23.4,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784535,74,23.02,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784536,74,22.65,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784537,74,22.25,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784538,74,22,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784539,74,21.85,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784540,74,21.75,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784541,74,21.9,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784542,74,22.2,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784543,74,22.7,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784544,74,23.15,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784545,79,79.56,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784546,79,81.3,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784547,79,82.3,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784548,79,82.6,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784549,79,82.4,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784550,79,82,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784551,79,81.1,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784552,79,80,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784553,79,78.95,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784554,79,77.95,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784555,79,76.82,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784556,79,75.7,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784557,79,74.9,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784558,79,74.1,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784559,79,73.42,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784560,79,72.72,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784561,79,72.1,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784562,79,71.7,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784563,79,71.4,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784564,79,71.2,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784565,79,71.5,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784566,79,72,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784567,79,72.8,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784568,79,73.66,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784569,66,0.039,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784570,66,0.039,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784571,66,0.039,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784572,66,0.039,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784573,66,0.039,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784574,66,0.04,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784575,66,0.039,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784576,66,0.039,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784577,66,0.038,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784578,66,0.038,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784579,66,0.037,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784580,66,0.037,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784581,66,0.037,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784582,66,0.036,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784583,66,0.036,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784584,66,0.036,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784585,66,0.036,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784586,66,0.035,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784587,66,0.035,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784588,66,0.035,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784589,66,0.035,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784590,66,0.035,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784591,66,0.036,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784592,66,0.036,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784593,86,17.91,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784594,86,18.07,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784595,86,18.26,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784596,86,18.24,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784597,86,18.27,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784598,86,18.13,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784599,86,18.12,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784600,86,18.12,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784601,86,18.05,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784602,86,17.8,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784603,86,17.76,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784604,86,17.74,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784605,86,17.51,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784606,86,17.46,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784607,86,17.43,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784608,86,17.28,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784609,86,17.16,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784610,86,17.22,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784611,86,17.17,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784612,86,17.29,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784613,86,17.24,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784614,86,17.17,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784615,86,17.23,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784616,86,17.32,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784617,96,13.85,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784618,96,14.06,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784619,96,14.14,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784620,96,14.2,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784621,96,14.14,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784622,96,14.18,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784623,96,14.02,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784624,96,13.88,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784625,96,13.67,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784626,96,13.61,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784627,96,13.43,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784628,96,13.21,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784629,96,13.24,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784630,96,13.05,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784631,96,12.89,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784632,96,12.83,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784633,96,12.8,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784634,96,12.64,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784635,96,12.61,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784636,96,12.51,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784637,96,12.54,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784638,96,12.68,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784639,96,12.79,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784640,96,12.87,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784641,85,18.36,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784642,85,18.57,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784643,85,18.79,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784644,85,18.78,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784645,85,18.81,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784646,85,18.65,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784647,85,18.63,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784648,85,18.61,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784649,85,18.51,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784650,85,18.23,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784651,85,18.17,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784652,85,18.12,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784653,85,17.87,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784654,85,17.8,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784655,85,17.76,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784656,85,17.59,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784657,85,17.45,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784658,85,17.5,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784659,85,17.44,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784660,85,17.56,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784661,85,17.52,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784662,85,17.46,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784663,85,17.53,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784664,85,17.64,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784665,95,13.61,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784666,95,13.63,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784667,95,13.6,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784668,95,13.61,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784669,95,13.57,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784670,95,13.64,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784671,95,13.55,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784672,95,13.51,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784673,95,13.41,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784674,95,13.46,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784675,95,13.4,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784676,95,13.28,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784677,95,13.4,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784678,95,13.29,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784679,95,13.2,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784680,95,13.21,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784681,95,13.24,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784682,95,13.13,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784683,95,13.14,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784684,95,13.06,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784685,95,13.07,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784686,95,13.16,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784687,95,13.18,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784688,95,13.19,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784689,60,0.368,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784690,60,0.37,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784691,60,0.368,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784692,60,0.367,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784693,60,0.368,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784694,60,0.367,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784695,60,0.366,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784696,60,0.369,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784697,60,0.37,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784698,60,0.371,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784699,60,0.371,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784700,60,0.365,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784701,60,0.367,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784702,60,0.37,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784703,60,0.366,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784704,60,0.368,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784705,60,0.368,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784706,60,0.365,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784707,60,0.371,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784708,60,0.366,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784709,60,0.366,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784710,60,0.365,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784711,60,0.368,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784712,60,0.368,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784713,67,0.081,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784714,67,0.081,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784715,67,0.082,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784716,67,0.082,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784717,67,0.082,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784718,67,0.083,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784719,67,0.084,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784720,67,0.083,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784721,67,0.083,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784722,67,0.083,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784723,67,0.083,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784724,67,0.084,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784725,67,0.083,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784726,67,0.083,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784727,67,0.084,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784728,67,0.082,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784729,67,0.082,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784730,67,0.083,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784731,67,0.082,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784732,67,0.083,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784733,67,0.082,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784734,67,0.082,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784735,67,0.081,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784736,67,0.081,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784737,75,23.35,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784738,75,23.55,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784739,75,23.6,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784740,75,23.85,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784741,75,24.13,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784742,75,24.35,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784743,75,24.63,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784744,75,24.75,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784745,75,24.9,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784746,75,24.9,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784747,75,24.9,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784748,75,24.75,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784749,75,24.63,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784750,75,24.63,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784751,75,24.47,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784752,75,24.35,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784753,75,24.2,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784754,75,23.97,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784755,75,23.85,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784756,75,23.7,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784757,75,23.6,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784758,75,23.5,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784759,75,23.5,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784760,75,23.5,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784761,80,74,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784762,80,74.4,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784763,80,74.5,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784764,80,75,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784765,80,75.4,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784766,80,75.8,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784767,80,76.28,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784768,80,76.5,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784769,80,76.8,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784770,80,76.8,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784771,80,76.8,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784772,80,76.5,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784773,80,76.28,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784774,80,76.28,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784775,80,76.02,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784776,80,75.8,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784777,80,75.5,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784778,80,75.2,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784779,80,75,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784780,80,74.7,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784781,80,74.5,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784782,80,74.3,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784783,80,74.3,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784784,80,74.3,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784785,68,0.08,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784786,68,0.08,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784787,68,0.081,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784788,68,0.081,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784789,68,0.081,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784790,68,0.082,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784791,68,0.083,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784792,68,0.083,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784793,68,0.083,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784794,68,0.083,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784795,68,0.083,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784796,68,0.083,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784797,68,0.083,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784798,68,0.082,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784799,68,0.083,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784800,68,0.081,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784801,68,0.081,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784802,68,0.082,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784803,68,0.081,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784804,68,0.081,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784805,68,0.081,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784806,68,0.081,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784807,68,0.08,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784808,68,0.08,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784809,88,25.12,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784810,88,25.35,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784811,88,25.15,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784812,88,25.1,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784813,88,25.13,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784814,88,25.1,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784815,88,25.03,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784816,88,25.27,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784817,88,25.35,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784818,88,25.45,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784819,88,25.47,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784820,88,24.96,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784821,88,25.12,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784822,88,25.34,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784823,88,25,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784824,88,25.18,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784825,88,25.13,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784826,88,24.92,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784827,88,25.51,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784828,88,25.01,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784829,88,25,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784830,88,24.91,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784831,88,25.13,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784832,88,25.19,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784833,98,28.78,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784834,98,28.63,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784835,98,29.01,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784836,98,29.15,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784837,98,29.38,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784838,98,29.55,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784839,98,29.92,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784840,98,29.77,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784841,98,29.83,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784842,98,29.73,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784843,98,29.76,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784844,98,30.03,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784845,98,29.8,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784846,98,29.62,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784847,98,29.87,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784848,98,29.42,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784849,98,29.39,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784850,98,29.56,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784851,98,29.01,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784852,98,29.26,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784853,98,29.04,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784854,98,28.95,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784855,98,28.78,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784856,98,28.66,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784857,87,25.59,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784858,87,25.83,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784859,87,25.64,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784860,87,25.6,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784861,87,25.65,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784862,87,25.63,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784863,87,25.57,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784864,87,25.83,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784865,87,25.91,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784866,87,26.01,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784867,87,26.04,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784868,87,25.51,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784869,87,25.66,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784870,87,25.88,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784871,87,25.54,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784872,87,25.7,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784873,87,25.65,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784874,87,25.43,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784875,87,26.02,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784876,87,25.5,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784877,87,25.48,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784878,87,25.38,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784879,87,25.6,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784880,87,25.66,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784881,97,29.46,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784882,97,29.25,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784883,97,29.57,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784884,97,29.61,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784885,97,29.73,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784886,97,29.81,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784887,97,30.09,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784888,97,29.87,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784889,97,29.9,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784890,97,29.79,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784891,97,29.83,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784892,97,30.12,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784893,97,29.94,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784894,97,29.8,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784895,97,30.09,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784896,97,29.7,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784897,97,29.73,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784898,97,29.97,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784899,97,29.48,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784900,97,29.79,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784901,97,29.62,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784902,97,29.58,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784903,97,29.43,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784904,97,29.33,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784905,61,0.259,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784906,61,0.26,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784907,61,0.261,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784908,61,0.261,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784909,61,0.261,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784910,61,0.26,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784911,61,0.259,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784912,61,0.26,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784913,61,0.261,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784914,61,0.265,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784915,61,0.263,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784916,61,0.263,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784917,61,0.263,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784918,61,0.263,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784919,61,0.263,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784920,61,0.263,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784921,61,0.263,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784922,61,0.263,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784923,61,0.263,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784924,61,0.263,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784925,61,0.263,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784926,61,0.263,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784927,61,0.265,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784928,61,0.26,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784929,69,0.045,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784930,69,0.044,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784931,69,0.044,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784932,69,0.044,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784933,69,0.044,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784934,69,0.044,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784935,69,0.045,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784936,69,0.045,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103); +INSERT INTO `TimeSeriesResultValues` VALUES (13784937,69,0.045,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784938,69,0.044,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784939,69,0.045,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784940,69,0.045,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784941,69,0.045,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784942,69,0.045,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784943,69,0.045,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784944,69,0.045,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784945,69,0.045,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784946,69,0.045,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784947,69,0.045,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784948,69,0.045,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784949,69,0.045,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784950,69,0.045,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784951,69,0.044,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784952,69,0.045,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784953,76,23.35,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784954,76,23.35,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784955,76,23.22,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784956,76,23.3,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784957,76,23.22,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784958,76,23.3,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784959,76,23.3,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784960,76,23.3,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784961,76,23.3,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784962,76,23.45,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784963,76,23.45,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784964,76,23.5,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784965,76,23.5,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784966,76,23.5,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784967,76,23.5,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784968,76,23.5,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784969,76,23.55,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784970,76,23.6,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784971,76,23.6,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784972,76,23.55,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784973,76,23.55,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784974,76,23.55,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784975,76,23.5,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13784976,76,23.5,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13784977,81,74,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13784978,81,74,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13784979,81,73.78,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13784980,81,73.9,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13784981,81,73.78,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13784982,81,73.9,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13784983,81,73.9,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13784984,81,73.9,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13784985,81,73.9,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13784986,81,74.2,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13784987,81,74.2,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13784988,81,74.3,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13784989,81,74.3,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13784990,81,74.3,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13784991,81,74.3,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13784992,81,74.3,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13784993,81,74.4,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13784994,81,74.5,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13784995,81,74.5,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13784996,81,74.4,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13784997,81,74.4,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13784998,81,74.4,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13784999,81,74.3,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785000,81,74.3,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785001,70,0.044,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785002,70,0.043,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785003,70,0.043,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785004,70,0.043,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785005,70,0.043,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785006,70,0.043,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785007,70,0.044,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785008,70,0.044,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785009,70,0.044,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785010,70,0.043,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785011,70,0.044,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785012,70,0.044,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785013,70,0.044,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785014,70,0.044,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785015,70,0.044,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785016,70,0.044,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785017,70,0.044,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785018,70,0.044,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785019,70,0.044,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785020,70,0.044,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785021,70,0.044,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785022,70,0.044,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785023,70,0.043,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785024,70,0.044,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785025,90,16.14,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785026,90,16.21,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785027,90,16.29,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785028,90,16.29,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785029,90,16.29,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785030,90,16.25,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785031,90,16.13,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785032,90,16.25,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785033,90,16.25,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785034,90,16.58,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785035,90,16.47,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785036,90,16.43,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785037,90,16.43,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785038,90,16.43,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785039,90,16.43,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785040,90,16.44,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785041,90,16.44,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785042,90,16.44,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785043,90,16.44,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785044,90,16.44,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785045,90,16.44,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785046,90,16.44,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785047,90,16.55,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785048,90,16.25,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785049,100,15.81,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785050,100,15.69,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785051,100,15.58,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785052,100,15.58,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785053,100,15.58,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785054,100,15.64,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785055,100,15.81,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785056,100,15.73,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785057,100,15.73,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785058,100,15.51,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785059,100,15.68,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785060,100,15.74,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785061,100,15.74,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785062,100,15.74,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785063,100,15.74,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785064,100,15.74,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785065,100,15.74,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785066,100,15.74,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785067,100,15.74,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785068,100,15.74,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785069,100,15.74,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785070,100,15.74,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785071,100,15.57,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785072,100,15.74,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785073,89,16.45,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785074,89,16.52,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785075,89,16.6,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785076,89,16.6,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785077,89,16.6,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785078,89,16.56,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785079,89,16.44,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785080,89,16.55,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785081,89,16.56,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785082,89,16.9,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785083,89,16.78,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785084,89,16.75,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785085,89,16.75,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785086,89,16.75,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785087,89,16.75,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785088,89,16.76,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785089,89,16.76,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785090,89,16.76,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785091,89,16.76,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785092,89,16.76,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785093,89,16.76,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785094,89,16.76,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785095,89,16.87,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785096,89,16.57,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785097,99,16.13,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785098,99,16.03,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785099,99,15.92,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785100,99,15.92,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785101,99,15.93,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785102,99,15.99,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785103,99,16.16,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785104,99,16.07,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785105,99,16.07,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785106,99,15.83,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785107,99,16,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785108,99,16.06,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785109,99,16.04,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785110,99,16.04,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785111,99,16.04,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785112,99,16.02,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785113,99,16.02,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785114,99,16.02,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785115,99,16.02,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785116,99,16.02,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785117,99,16.02,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785118,99,16.02,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785119,99,15.87,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785120,99,16.04,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785121,62,0.379,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785122,62,0.379,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785123,62,0.379,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785124,62,0.379,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785125,62,0.38,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785126,62,0.381,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785127,62,0.38,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785128,62,0.38,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785129,62,0.379,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785130,62,0.379,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785131,62,0.379,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785132,62,0.379,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785133,62,0.38,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785134,62,0.379,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785135,62,0.379,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785136,62,0.38,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785137,62,0.379,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785138,62,0.379,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785139,62,0.379,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785140,62,0.379,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785141,62,0.379,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785142,62,0.379,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785143,62,0.379,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785144,62,0.379,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785145,71,0.105,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785146,71,0.105,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785147,71,0.105,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785148,71,0.105,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785149,71,0.104,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785150,71,0.104,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785151,71,0.104,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785152,71,0.105,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785153,71,0.105,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785154,71,0.105,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785155,71,0.105,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785156,71,0.105,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785157,71,0.104,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785158,71,0.105,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785159,71,0.105,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785160,71,0.104,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785161,71,0.105,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785162,71,0.105,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785163,71,0.105,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785164,71,0.105,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785165,71,0.105,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785166,71,0.105,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785167,71,0.105,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785168,71,0.105,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785169,77,21.1,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785170,77,21.1,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785171,77,21.1,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785172,77,21.1,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785173,77,21.1,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785174,77,21.05,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785175,77,21.05,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785176,77,21.05,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785177,77,21.1,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785178,77,21.05,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785179,77,21.1,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785180,77,21.1,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785181,77,21.05,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785182,77,21.1,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785183,77,21.05,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785184,77,21.05,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785185,77,21.1,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785186,77,21.1,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785187,77,21.1,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785188,77,21.1,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785189,77,21.05,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785190,77,21.1,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785191,77,21.05,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785192,77,21.1,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785193,82,70,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785194,82,70,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785195,82,70,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785196,82,70,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785197,82,70,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785198,82,69.9,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785199,82,69.9,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785200,82,69.9,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785201,82,70,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785202,82,69.9,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785203,82,70,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785204,82,70,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785205,82,69.9,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785206,82,70,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785207,82,69.9,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785208,82,69.9,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785209,82,70,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785210,82,70,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785211,82,70,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785212,82,70,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785213,82,69.9,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785214,82,70,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785215,82,69.9,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785216,82,70,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785217,72,0.099,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785218,72,0.099,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785219,72,0.099,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785220,72,0.099,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785221,72,0.098,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785222,72,0.098,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785223,72,0.098,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785224,72,0.099,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785225,72,0.099,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785226,72,0.099,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785227,72,0.099,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785228,72,0.099,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785229,72,0.098,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785230,72,0.099,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785231,72,0.099,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785232,72,0.098,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785233,72,0.099,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785234,72,0.099,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785235,72,0.099,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785236,72,0.099,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785237,72,0.099,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785238,72,0.099,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785239,72,0.099,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785240,72,0.099,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785241,92,26.22,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785242,92,26.22,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785243,92,26.22,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785244,92,26.22,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785245,92,26.33,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785246,92,26.43,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785247,92,26.33,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785248,92,26.32,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785249,92,26.22,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785250,92,26.22,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785251,92,26.22,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785252,92,26.22,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785253,92,26.33,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785254,92,26.22,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785255,92,26.22,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785256,92,26.32,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785257,92,26.22,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785258,92,26.22,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785259,92,26.22,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785260,92,26.22,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785261,92,26.22,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785262,92,26.22,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785263,92,26.22,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785264,92,26.22,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785265,102,35.5,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785266,102,35.5,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785267,102,35.5,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785268,102,35.5,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785269,102,35.34,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785270,102,35.18,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785271,102,35.34,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785272,102,35.35,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785273,102,35.5,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785274,102,35.5,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785275,102,35.5,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785276,102,35.5,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785277,102,35.34,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785278,102,35.5,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785279,102,35.5,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785280,102,35.34,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785281,102,35.5,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785282,102,35.5,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785283,102,35.5,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785284,102,35.5,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785285,102,35.5,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785286,102,35.5,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785287,102,35.5,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785288,102,35.5,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785289,91,26.57,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785290,91,26.57,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785291,91,26.57,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785292,91,26.57,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785293,91,26.68,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785294,91,26.79,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785295,91,26.68,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785296,91,26.68,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785297,91,26.57,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785298,91,26.57,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785299,91,26.57,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785300,91,26.57,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785301,91,26.68,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785302,91,26.57,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785303,91,26.57,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785304,91,26.68,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785305,91,26.57,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785306,91,26.57,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785307,91,26.57,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785308,91,26.57,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785309,91,26.57,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785310,91,26.57,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785311,91,26.57,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785312,91,26.57,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13785313,101,37.6,'2011-08-18 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13785314,101,37.6,'2011-08-18 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13785315,101,37.6,'2011-08-18 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13785316,101,37.6,'2011-08-18 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13785317,101,37.43,'2011-08-18 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13785318,101,37.26,'2011-08-18 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13785319,101,37.43,'2011-08-18 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13785320,101,37.43,'2011-08-18 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13785321,101,37.6,'2011-08-18 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13785322,101,37.6,'2011-08-18 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13785323,101,37.6,'2011-08-19 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13785324,101,37.6,'2011-08-19 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13785325,101,37.43,'2011-08-19 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13785326,101,37.6,'2011-08-19 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13785327,101,37.6,'2011-08-19 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13785328,101,37.44,'2011-08-19 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13785329,101,37.6,'2011-08-19 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13785330,101,37.6,'2011-08-19 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13785331,101,37.6,'2011-08-19 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13785332,101,37.6,'2011-08-19 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13785333,101,37.6,'2011-08-19 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13785334,101,37.6,'2011-08-19 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13785335,101,37.6,'2011-08-19 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13785336,101,37.6,'2011-08-19 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791104,31,13.22,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791105,31,13.19,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791106,31,13.18,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791107,31,13.17,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791108,31,13.16,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791109,31,12.86,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791110,31,12.78,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791111,31,12.74,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791112,31,12.71,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791113,31,12.67,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791114,31,12.65,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791115,31,12.63,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791116,31,12.54,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791117,31,12.57,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791118,31,12.55,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791119,31,12.53,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791120,31,12.51,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791121,31,12.54,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791122,31,12.81,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791123,31,13.35,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791124,31,13.28,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791125,31,13.22,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791126,31,13.2,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791127,31,13.18,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791128,32,3.217,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791129,32,2.817,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791130,32,2.833,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791131,32,2.236,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791132,32,1.725,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791133,32,2.18,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791134,32,1.981,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791135,32,1.821,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791136,32,1.831,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791137,32,1.978,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791138,32,1.78,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791139,32,0.579,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791140,32,1.326,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791141,32,1.252,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791142,32,1.717,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791143,32,1.029,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791144,32,1.118,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791145,32,1.047,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791146,32,1.057,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791147,32,1.272,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791148,32,2.971,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791149,32,2.756,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791150,32,2.48,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791151,32,2.423,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791152,33,44.63,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791153,33,42.31,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791154,33,24.24,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791155,33,29.51,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791156,33,348.4,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791157,33,283.3,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791158,33,226.3,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791159,33,230.3,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791160,33,205.5,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791161,33,214.1,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791162,33,217.1,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791163,33,287.8,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791164,33,289.6,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791165,33,290.4,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791166,33,199.2,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791167,33,323.3,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791168,33,281.6,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791169,33,222.1,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791170,33,219.5,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791171,33,136.6,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791172,33,70.38,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791173,33,132.2,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791174,33,168.2,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791175,33,165.2,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791176,34,17.99,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791177,34,21.69,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791178,34,22.6,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791179,34,24.42,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791180,34,36.26,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791181,34,28.1,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791182,34,21.04,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791183,34,16.91,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791184,34,20.25,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791185,34,21.01,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791186,34,22.8,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791187,34,61,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791188,34,82.2,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791189,34,52.3,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791190,34,78.19,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791191,34,40.34,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791192,34,58.21,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791193,34,60.43,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791194,34,46.36,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791195,34,60.25,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791196,34,23.51,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791197,34,46.95,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791198,34,33.03,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791199,34,47.95,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791200,35,629.1,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13791201,35,628.7,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13791202,35,628.4,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13791203,35,628.2,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13791204,35,628.1,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13791205,35,628.1,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13791206,35,628.3,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13791207,35,628.5,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13791208,35,628.6,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13791209,35,628.7,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13791210,35,628.8,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13791211,35,628.7,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13791212,35,628.7,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13791213,35,628.7,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13791214,35,628.6,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13791215,35,629,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13791216,35,629.8,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13791217,35,630.4,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13791218,35,630.6,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13791219,35,630.4,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13791220,35,630.5,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13791221,35,630.5,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13791222,35,630.2,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13791223,35,629.8,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13791224,30,0,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791225,30,0,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791226,30,0,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791227,30,0,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791228,30,0,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791229,30,0,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791230,30,0,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791231,30,0,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791232,30,0,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791233,30,0,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791234,30,0,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791235,30,0,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791236,30,0,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791237,30,0,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791238,30,0,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791239,30,0,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791240,30,0,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791241,30,0,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791242,30,0,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791243,30,0,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791244,30,0,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791245,30,0,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791246,30,0,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791247,30,0,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791248,28,27.5,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791249,28,28.62,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791250,28,29.04,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791251,28,28.71,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791252,28,27.72,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791253,28,24.95,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791254,28,20.76,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791255,28,18.51,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791256,28,17.63,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791257,28,17.46,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791258,28,16.82,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791259,28,16.31,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791260,28,17.92,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791261,28,17.24,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791262,28,17.95,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791263,28,17.06,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791264,28,15.24,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791265,28,14.79,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791266,28,16.1,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791267,28,22.67,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791268,28,26.72,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791269,28,28.15,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791270,28,28.97,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791271,28,30.1,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791272,29,26.47,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791273,29,27.18,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791274,29,27.81,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791275,29,31.17,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791276,29,34.41,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791277,29,43.46,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791278,29,54.77,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791279,29,56.58,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791280,29,55.53,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791281,29,54.89,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791282,29,59.38,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791283,29,60.75,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791284,29,52.28,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791285,29,60.96,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791286,29,55.22,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791287,29,59.29,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791288,29,66.79,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791289,29,68.19,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791290,29,62.99,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791291,29,31.84,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791292,29,27.7,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791293,29,28.96,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791294,29,26.35,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791295,29,26.58,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791296,36,1031,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791297,36,904,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791298,36,799.8,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791299,36,542.8,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791300,36,306.8,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791301,36,69.34,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791302,36,4.109,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791303,36,0,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791304,36,0,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791305,36,0,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791306,36,0,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791307,36,0,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791308,36,0,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791309,36,0,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791310,36,0,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791311,36,0,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791312,36,3.682,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791313,36,50.08,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791314,36,109.9,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791315,36,595.5,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791316,36,735.8,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791317,36,867,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791318,36,934,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791319,36,1014,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791320,46,0.873,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791321,46,1.342,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791322,46,1.423,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791323,46,1.419,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791324,46,1.429,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791325,46,1.462,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791326,46,1.428,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791327,46,1.423,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791328,46,1.421,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791329,46,1.421,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791330,46,1.444,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791331,46,1.476,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791332,46,1.532,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791333,46,1.298,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791334,46,1.676,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791335,46,1.709,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791336,46,1.499,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791337,46,1.635,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791338,46,1.862,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791339,46,1.398,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791340,46,1.471,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791341,46,1.241,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791342,46,1.429,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791343,46,1.51,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791344,47,0.916,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791345,47,1.41,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791346,47,1.497,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791347,47,1.491,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791348,47,1.5,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791349,47,1.528,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791350,47,1.481,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791351,47,1.471,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791352,47,1.466,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791353,47,1.466,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791354,47,1.488,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791355,47,1.52,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791356,47,1.581,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791357,47,1.338,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791358,47,1.729,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791359,47,1.761,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791360,47,1.54,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791361,47,1.679,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791362,47,1.915,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791363,47,1.454,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791364,47,1.541,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791365,47,1.303,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791366,47,1.503,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791367,47,1.591,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791368,48,0.854,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13791369,48,0.36,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13791370,48,0.273,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13791371,48,0.279,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13791372,48,0.27,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13791373,48,0.242,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13791374,48,0.289,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13791375,48,0.299,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13791376,48,0.304,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13791377,48,0.304,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13791378,48,0.282,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13791379,48,0.25,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13791380,48,0.189,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13791381,48,0.432,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13791382,48,0.041,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13791383,48,0.009,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13791384,48,0.23,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13791385,48,0.091,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13791386,48,-0.145,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13791387,48,0.316,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13791388,48,0.229,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13791389,48,0.467,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13791390,48,0.267,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13791391,48,0.179,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13791392,41,19.99,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791393,40,29.7,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791394,39,13.02,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791395,37,12.49,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791396,43,629.1,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791397,44,0,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791398,42,42.98,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791399,45,24.49059,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791400,38,1.947,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791401,51,0,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791402,53,1.807,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791403,49,1.419,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791404,52,0,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791405,54,1.875,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791406,50,1.47,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791407,56,-0.105,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791408,57,1.77,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13791409,55,0.3,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13794650,58,0.162,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794651,58,0.163,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794652,58,0.165,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794653,58,0.163,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794654,58,0.163,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794655,58,0.161,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794656,58,0.158,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794657,58,0.157,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794658,58,0.156,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794659,58,0.154,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794660,58,0.154,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794661,58,0.152,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794662,58,0.151,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794663,58,0.151,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794664,58,0.152,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794665,58,0.15,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794666,58,0.152,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794667,58,0.15,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794668,58,0.15,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794669,58,0.15,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794670,58,0.153,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794671,58,0.156,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794672,58,0.158,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794673,58,0.162,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794674,63,0.018,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794675,63,0.018,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794676,63,0.018,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794677,63,0.018,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794678,63,0.018,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794679,63,0.017,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794680,63,0.017,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794681,63,0.017,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794682,63,0.017,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794683,63,0.017,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794684,63,0.017,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794685,63,0.017,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794686,63,0.017,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794687,63,0.017,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794688,63,0.017,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794689,63,0.017,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794690,63,0.017,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794691,63,0.017,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794692,63,0.017,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794693,63,0.017,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794694,63,0.017,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794695,63,0.017,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794696,63,0.017,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794697,63,0.017,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794698,73,26.56,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794699,73,27.9,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794700,73,28.6,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794701,73,28.6,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794702,73,28.22,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794703,73,27.42,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794704,73,26.55,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794705,73,25.65,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794706,73,24.85,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794707,73,24.22,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794708,73,23.65,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794709,73,23.2,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794710,73,22.75,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794711,73,22.37,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794712,73,22.05,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794713,73,21.8,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794714,73,21.7,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794715,73,21.3,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794716,73,21.3,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794717,73,21.45,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794718,73,22.81,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794719,73,24.48,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794720,73,26.03,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794721,73,27.55,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794722,78,79.78,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794723,78,82.3,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794724,78,83.5,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794725,78,83.5,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794726,78,82.9,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794727,78,81.4,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794728,78,79.77,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794729,78,78.15,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794730,78,76.72,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794731,78,75.6,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794732,78,74.6,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794733,78,73.75,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794734,78,72.9,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794735,78,72.27,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794736,78,71.8,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794737,78,71.3,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794738,78,71.1,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794739,78,70.3,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794740,78,70.3,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794741,78,70.6,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794742,78,73.06,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794743,78,76.06,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794744,78,78.86,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794745,78,81.6,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794746,64,0.018,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794747,64,0.019,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794748,64,0.019,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794749,64,0.019,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794750,64,0.018,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794751,64,0.018,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794752,64,0.018,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794753,64,0.017,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794754,64,0.017,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794755,64,0.017,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794756,64,0.017,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794757,64,0.017,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794758,64,0.017,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794759,64,0.016,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794760,64,0.016,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794761,64,0.016,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794762,64,0.016,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794763,64,0.016,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794764,64,0.016,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794765,64,0.016,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794766,64,0.017,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794767,64,0.017,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794768,64,0.017,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794769,64,0.018,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794770,84,9.81,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794771,84,9.83,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794772,84,9.96,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794773,84,9.85,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794774,84,9.81,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794775,84,9.76,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794776,84,9.58,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794777,84,9.48,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794778,84,9.45,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794779,84,9.32,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794780,84,9.33,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794781,84,9.26,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794782,84,9.16,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794783,84,9.13,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794784,84,9.2,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794785,84,9.1,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794786,84,9.22,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794787,84,9.13,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794788,84,9.11,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794789,84,9.09,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794790,84,9.28,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794791,84,9.45,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794792,84,9.54,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794793,84,9.8,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794794,94,6.614,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794795,94,6.737,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794796,94,6.696,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794797,94,6.691,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794798,94,6.604,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794799,94,6.446,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794800,94,6.372,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794801,94,6.259,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794802,94,6.127,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794803,94,6.098,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794804,94,5.95,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794805,94,5.931,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794806,94,5.927,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794807,94,5.9,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794808,94,5.814,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794809,94,5.815,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794810,94,5.746,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794811,94,5.747,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794812,94,5.728,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794813,94,5.809,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794814,94,5.952,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794815,94,6.127,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794816,94,6.259,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794817,94,6.318,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794818,83,10.07,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794819,83,10.12,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794820,83,10.27,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794821,83,10.16,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794822,83,10.11,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794823,83,10.03,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794824,83,9.83,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794825,83,9.7,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794826,83,9.65,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794827,83,9.51,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794828,83,9.51,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794829,83,9.43,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794830,83,9.31,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794831,83,9.27,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794832,83,9.34,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794833,83,9.24,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794834,83,9.36,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794835,83,9.25,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794836,83,9.24,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794837,83,9.22,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794838,83,9.45,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794839,83,9.65,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794840,83,9.78,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794841,83,10.09,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794842,93,6.45,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794843,93,6.45,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794844,93,6.355,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794845,93,6.349,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794846,93,6.304,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794847,93,6.231,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794848,93,6.243,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794849,93,6.212,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794850,93,6.153,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794851,93,6.178,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794852,93,6.077,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794853,93,6.108,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794854,93,6.144,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794855,93,6.14,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794856,93,6.077,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794857,93,6.093,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794858,93,6.046,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794859,93,6.07,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794860,93,6.059,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794861,93,6.118,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794862,93,6.129,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794863,93,6.159,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794864,93,6.155,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794865,93,6.081,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794866,59,0.277,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794867,59,0.279,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794868,59,0.281,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794869,59,0.282,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794870,59,0.282,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794871,59,0.282,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794872,59,0.281,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794873,59,0.28,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794874,59,0.28,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794875,59,0.279,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794876,59,0.278,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794877,59,0.277,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794878,59,0.276,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794879,59,0.274,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794880,59,0.273,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794881,59,0.273,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794882,59,0.272,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794883,59,0.273,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794884,59,0.272,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794885,59,0.272,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794886,59,0.273,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794887,59,0.273,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794888,59,0.275,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794889,59,0.278,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794890,65,0.037,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794891,65,0.037,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794892,65,0.037,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794893,65,0.037,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794894,65,0.037,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794895,65,0.037,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794896,65,0.037,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794897,65,0.037,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794898,65,0.037,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794899,65,0.037,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794900,65,0.037,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794901,65,0.036,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794902,65,0.037,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794903,65,0.036,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794904,65,0.037,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794905,65,0.036,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794906,65,0.037,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794907,65,0.036,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794908,65,0.036,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794909,65,0.036,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794910,65,0.036,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794911,65,0.036,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794912,65,0.036,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794913,65,0.037,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794914,74,24.18,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794915,74,25.25,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794916,74,26.05,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794917,74,26.48,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794918,74,26.7,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794919,74,26.62,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794920,74,26.3,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794921,74,25.82,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794922,74,25.37,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794923,74,24.85,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794924,74,24.47,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794925,74,23.97,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794926,74,23.6,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794927,74,23.35,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794928,74,22.9,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794929,74,22.7,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794930,74,22.55,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794931,74,22.25,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794932,74,21.95,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794933,74,21.9,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794934,74,22.08,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794935,74,22.88,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794936,74,23.88,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794937,74,25.08,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794938,79,75.53,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794939,79,77.51,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794940,79,78.85,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794941,79,79.63,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794942,79,80,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794943,79,79.87,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794944,79,79.3,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794945,79,78.5,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794946,79,77.72,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794947,79,76.7,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794948,79,76.02,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794949,79,75.2,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794950,79,74.5,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794951,79,74,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794952,79,73.2,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794953,79,72.8,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794954,79,72.52,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794955,79,72.1,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794956,79,71.6,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794957,79,71.5,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794958,79,71.8,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794959,79,73.16,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794960,79,75.01,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794961,79,77.18,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794962,66,0.036,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794963,66,0.037,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794964,66,0.038,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794965,66,0.038,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794966,66,0.038,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794967,66,0.038,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794968,66,0.038,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794969,66,0.038,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794970,66,0.037,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794971,66,0.037,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794972,66,0.037,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794973,66,0.036,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794974,66,0.036,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794975,66,0.036,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13794976,66,0.036,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13794977,66,0.035,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13794978,66,0.035,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13794979,66,0.035,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13794980,66,0.035,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13794981,66,0.034,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13794982,66,0.034,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13794983,66,0.035,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13794984,66,0.036,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13794985,66,0.037,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13794986,86,17.48,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13794987,86,17.65,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13794988,86,17.83,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13794989,86,17.86,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13794990,86,17.91,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13794991,86,17.88,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13794992,86,17.8,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13794993,86,17.72,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13794994,86,17.69,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13794995,86,17.7,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13794996,86,17.57,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13794997,86,17.48,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13794998,86,17.45,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13794999,86,17.27,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795000,86,17.19,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795001,86,17.22,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795002,86,17.12,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795003,86,17.22,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795004,86,17.09,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795005,86,17.07,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795006,86,17.14,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795007,86,17.21,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795008,86,17.34,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795009,86,17.52,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795010,96,13.06,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795011,96,13.35,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795012,96,13.49,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795013,96,13.58,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795014,96,13.61,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795015,96,13.67,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795016,96,13.6,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795017,96,13.54,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795018,96,13.37,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795019,96,13.24,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795020,96,13.14,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795021,96,13.06,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795022,96,12.9,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795023,96,12.89,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795024,96,12.82,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795025,96,12.7,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795026,96,12.7,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795027,96,12.51,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795028,96,12.54,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795029,96,12.46,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795030,96,12.44,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795031,96,12.64,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795032,96,12.88,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795033,96,13.17,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795034,85,17.83,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795035,85,18.06,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795036,85,18.27,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795037,85,18.33,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795038,85,18.38,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795039,85,18.35,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795040,85,18.26,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795041,85,18.17,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795042,85,18.12,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795043,85,18.1,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795044,85,17.96,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795045,85,17.84,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795046,85,17.8,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795047,85,17.6,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795048,85,17.51,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795049,85,17.52,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795050,85,17.42,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795051,85,17.51,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795052,85,17.37,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795053,85,17.35,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795054,85,17.42,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795055,85,17.52,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795056,85,17.69,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795057,85,17.92,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795058,95,13.22,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795059,95,13.31,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795060,95,13.3,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795061,95,13.3,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795062,95,13.31,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795063,95,13.36,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795064,95,13.33,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795065,95,13.34,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795066,95,13.26,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795067,95,13.21,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795068,95,13.2,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795069,95,13.19,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795070,95,13.1,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795071,95,13.16,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795072,95,13.14,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795073,95,13.07,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795074,95,13.12,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795075,95,12.96,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795076,95,13.03,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795077,95,12.97,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795078,95,12.94,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795079,95,13.02,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795080,95,13.08,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795081,95,13.16,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795082,60,0.366,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795083,60,0.362,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795084,60,0.368,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795085,60,0.365,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795086,60,0.368,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795087,60,0.372,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795088,60,0.367,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795089,60,0.365,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795090,60,0.37,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795091,60,0.37,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795092,60,0.369,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795093,60,0.367,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795094,60,0.368,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795095,60,0.365,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795096,60,0.366,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795097,60,0.367,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795098,60,0.368,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795099,60,0.373,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795100,60,0.368,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795101,60,0.364,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795102,60,0.366,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795103,60,0.363,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795104,60,0.363,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795105,60,0.364,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795106,67,0.082,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795107,67,0.082,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795108,67,0.081,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795109,67,0.082,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795110,67,0.082,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795111,67,0.081,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795112,67,0.082,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795113,67,0.083,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795114,67,0.082,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795115,67,0.082,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795116,67,0.082,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795117,67,0.082,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795118,67,0.082,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795119,67,0.083,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795120,67,0.082,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795121,67,0.082,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795122,67,0.082,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795123,67,0.082,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795124,67,0.082,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795125,67,0.082,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795126,67,0.082,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795127,67,0.082,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795128,67,0.082,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795129,67,0.082,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795130,75,23.5,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795131,75,23.5,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795132,75,23.5,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795133,75,23.6,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795134,75,23.8,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795135,75,23.9,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795136,75,24.05,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795137,75,24.25,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795138,75,24.4,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795139,75,24.4,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795140,75,24.4,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795141,75,24.4,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795142,75,24.35,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795143,75,24.25,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795144,75,24.2,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795145,75,24.12,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795146,75,23.9,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795147,75,23.75,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795148,75,23.6,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795149,75,23.65,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795150,75,23.55,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795151,75,23.5,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795152,75,23.45,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795153,75,23.45,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795154,80,74.3,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795155,80,74.3,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795156,80,74.3,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795157,80,74.5,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795158,80,74.9,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795159,80,75.1,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795160,80,75.3,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795161,80,75.6,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795162,80,75.9,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795163,80,75.9,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795164,80,75.9,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795165,80,75.9,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795166,80,75.8,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795167,80,75.6,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795168,80,75.5,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795169,80,75.4,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795170,80,75.1,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795171,80,74.8,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795172,80,74.5,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795173,80,74.6,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795174,80,74.4,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795175,80,74.3,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795176,80,74.2,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795177,80,74.2,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795178,68,0.08,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795179,68,0.081,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795180,68,0.08,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795181,68,0.08,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795182,68,0.081,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795183,68,0.08,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795184,68,0.081,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795185,68,0.082,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795186,68,0.081,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795187,68,0.081,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795188,68,0.081,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795189,68,0.081,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795190,68,0.081,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795191,68,0.082,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795192,68,0.081,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795193,68,0.081,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795194,68,0.081,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795195,68,0.08,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795196,68,0.081,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795197,68,0.081,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795198,68,0.081,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795199,68,0.08,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795200,68,0.08,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795201,68,0.08,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795202,88,24.97,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795203,88,24.62,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795204,88,25.2,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795205,88,24.92,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795206,88,25.23,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795207,88,25.54,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795208,88,25.13,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795209,88,24.93,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795210,88,25.37,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795211,88,25.37,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795212,88,25.26,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795213,88,25.03,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795214,88,25.17,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795215,88,24.91,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795216,88,24.98,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795217,88,25.14,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795218,88,25.24,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795219,88,25.66,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795220,88,25.21,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795221,88,24.85,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795222,88,25.03,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795223,88,24.76,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795224,88,24.76,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795225,88,24.88,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795226,98,28.82,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795227,98,29.01,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795228,98,28.67,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795229,98,28.96,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795230,98,28.9,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795231,98,28.84,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795232,98,29.2,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795233,98,29.58,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795234,98,29.24,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795235,98,29.24,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795236,98,29.31,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795237,98,29.47,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795238,98,29.43,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795239,98,29.55,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795240,98,29.42,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795241,98,29.2,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795242,98,29.12,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795243,98,28.79,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795244,98,28.9,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795245,98,29.08,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795246,98,28.89,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795247,98,28.77,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795248,98,28.76,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795249,98,28.7,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795250,87,25.44,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795251,87,25.08,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795252,87,25.68,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795253,87,25.41,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795254,87,25.73,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795255,87,26.05,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795256,87,25.65,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795257,87,25.45,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795258,87,25.9,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795259,87,25.91,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795260,87,25.79,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795261,87,25.56,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795262,87,25.7,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795263,87,25.43,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795264,87,25.5,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795265,87,25.65,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795266,87,25.75,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795267,87,26.17,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795268,87,25.7,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795269,87,25.33,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795270,87,25.51,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795271,87,25.23,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795272,87,25.22,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795273,87,25.34,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795274,97,29.49,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795275,97,29.68,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795276,97,29.3,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795277,97,29.53,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795278,97,29.4,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795279,97,29.27,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795280,97,29.57,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795281,97,29.9,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795282,97,29.5,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795283,97,29.48,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795284,97,29.55,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795285,97,29.72,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795286,97,29.7,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795287,97,29.86,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795288,97,29.77,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795289,97,29.58,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795290,97,29.55,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795291,97,29.27,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795292,97,29.42,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795293,97,29.64,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795294,97,29.49,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795295,97,29.43,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795296,97,29.45,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795297,97,29.38,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795298,61,0.259,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795299,61,0.259,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795300,61,0.261,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795301,61,0.261,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795302,61,0.261,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795303,61,0.261,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795304,61,0.261,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795305,61,0.26,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795306,61,0.259,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795307,61,0.259,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795308,61,0.259,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795309,61,0.262,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795310,61,0.261,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795311,61,0.265,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795312,61,0.265,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795313,61,0.265,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795314,61,0.264,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795315,61,0.264,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795316,61,0.265,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795317,61,0.265,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795318,61,0.262,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795319,61,0.259,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795320,61,0.26,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795321,61,0.261,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795322,69,0.045,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795323,69,0.045,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795324,69,0.044,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795325,69,0.044,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795326,69,0.044,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795327,69,0.044,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795328,69,0.044,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795329,69,0.044,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795330,69,0.045,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795331,69,0.045,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795332,69,0.045,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795333,69,0.045,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795334,69,0.045,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795335,69,0.044,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795336,69,0.044,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795337,69,0.044,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795338,69,0.045,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795339,69,0.045,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795340,69,0.044,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795341,69,0.044,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795342,69,0.045,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795343,69,0.045,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795344,69,0.045,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795345,69,0.044,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795346,76,23.5,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795347,76,23.5,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795348,76,23.4,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795349,76,23.4,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795350,76,23.35,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795351,76,23.3,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795352,76,23.3,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795353,76,23.3,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795354,76,23.3,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795355,76,23.3,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795356,76,23.35,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795357,76,23.35,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795358,76,23.5,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795359,76,23.5,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795360,76,23.45,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795361,76,23.5,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795362,76,23.45,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795363,76,23.45,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795364,76,23.5,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795365,76,23.5,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795366,76,23.5,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795367,76,23.45,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795368,76,23.5,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795369,76,23.4,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795370,81,74.3,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795371,81,74.3,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795372,81,74.1,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795373,81,74.1,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795374,81,74,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795375,81,73.9,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795376,81,73.9,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795377,81,73.9,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795378,81,73.9,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795379,81,73.9,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795380,81,74,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795381,81,74,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795382,81,74.3,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795383,81,74.3,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795384,81,74.2,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795385,81,74.3,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795386,81,74.2,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795387,81,74.2,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795388,81,74.3,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795389,81,74.3,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795390,81,74.3,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795391,81,74.2,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795392,81,74.3,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795393,81,74.1,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795394,70,0.044,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795395,70,0.044,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795396,70,0.043,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795397,70,0.043,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795398,70,0.043,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795399,70,0.043,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795400,70,0.043,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795401,70,0.043,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795402,70,0.044,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795403,70,0.044,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795404,70,0.044,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795405,70,0.044,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795406,70,0.044,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795407,70,0.043,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795408,70,0.043,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795409,70,0.043,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795410,70,0.044,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795411,70,0.044,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795412,70,0.043,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795413,70,0.043,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795414,70,0.044,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795415,70,0.044,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795416,70,0.044,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795417,70,0.043,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795418,90,16.14,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795419,90,16.14,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795420,90,16.29,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795421,90,16.29,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795422,90,16.29,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795423,90,16.29,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795424,90,16.29,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795425,90,16.25,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795426,90,16.13,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795427,90,16.14,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795428,90,16.14,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795429,90,16.36,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795430,90,16.25,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795431,90,16.58,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795432,90,16.58,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795433,90,16.58,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795434,90,16.47,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795435,90,16.47,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795436,90,16.55,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795437,90,16.59,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795438,90,16.36,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795439,90,16.14,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795440,90,16.18,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795441,90,16.29,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795442,100,15.81,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795443,100,15.81,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795444,100,15.58,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795445,100,15.58,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795446,100,15.58,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795447,100,15.58,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795448,100,15.58,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795449,100,15.64,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795450,100,15.81,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795451,100,15.81,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795452,100,15.81,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795453,100,15.66,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795454,100,15.73,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795455,100,15.51,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795456,100,15.51,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795457,100,15.51,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795458,100,15.68,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795459,100,15.68,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795460,100,15.57,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795461,100,15.51,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795462,100,15.66,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795463,100,15.81,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795464,100,15.75,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795465,100,15.58,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795466,89,16.45,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795467,89,16.45,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795468,89,16.61,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795469,89,16.61,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795470,89,16.6,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795471,89,16.6,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795472,89,16.6,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795473,89,16.56,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795474,89,16.44,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795475,89,16.44,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795476,89,16.45,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795477,89,16.67,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795478,89,16.56,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795479,89,16.9,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795480,89,16.9,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795481,89,16.91,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795482,89,16.79,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795483,89,16.79,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795484,89,16.87,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795485,89,16.91,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795486,89,16.68,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795487,89,16.45,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795488,89,16.49,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795489,89,16.61,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795490,99,16.12,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795491,99,16.13,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795492,99,15.9,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795493,99,15.9,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795494,99,15.91,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795495,99,15.92,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795496,99,15.92,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795497,99,15.98,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795498,99,16.15,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795499,99,16.14,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795500,99,16.13,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795501,99,15.98,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795502,99,16.06,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795503,99,15.83,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795504,99,15.83,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795505,99,15.81,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795506,99,15.99,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795507,99,15.98,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795508,99,15.87,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795509,99,15.81,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795510,99,15.97,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795511,99,16.13,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795512,99,16.08,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795513,99,15.9,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795514,62,0.379,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795515,62,0.38,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795516,62,0.383,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795517,62,0.384,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795518,62,0.385,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795519,62,0.387,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795520,62,0.386,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795521,62,0.385,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795522,62,0.384,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795523,62,0.384,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795524,62,0.38,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795525,62,0.379,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795526,62,0.38,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795527,62,0.379,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795528,62,0.38,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795529,62,0.379,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795530,62,0.379,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795531,62,0.379,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795532,62,0.379,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795533,62,0.379,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795534,62,0.379,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795535,62,0.38,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795536,62,0.384,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795537,62,0.385,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795538,71,0.105,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795539,71,0.104,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795540,71,0.103,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795541,71,0.103,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795542,71,0.102,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795543,71,0.102,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795544,71,0.102,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795545,71,0.103,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795546,71,0.103,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795547,71,0.103,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795548,71,0.104,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795549,71,0.105,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795550,71,0.105,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795551,71,0.104,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795552,71,0.104,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795553,71,0.105,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795554,71,0.105,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795555,71,0.104,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795556,71,0.104,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795557,71,0.105,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795558,71,0.104,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795559,71,0.104,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795560,71,0.103,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795561,71,0.102,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795562,77,21.1,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795563,77,21.1,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795564,77,21.1,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795565,77,21.05,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795566,77,21.05,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795567,77,21.1,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795568,77,21.1,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795569,77,21.1,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795570,77,21.1,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795571,77,21.05,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795572,77,21.1,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795573,77,21.1,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795574,77,21.05,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795575,77,21.1,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795576,77,21.05,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795577,77,21.1,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795578,77,21.1,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795579,77,21.05,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795580,77,21.1,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795581,77,21.05,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795582,77,21.1,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795583,77,21.05,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795584,77,21.05,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795585,77,21.1,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795586,82,70,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795587,82,70,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795588,82,70,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795589,82,69.9,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795590,82,69.9,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795591,82,70,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795592,82,70,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795593,82,70,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795594,82,70,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795595,82,69.9,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795596,82,70,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795597,82,70,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795598,82,69.9,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795599,82,70,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795600,82,69.9,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795601,82,70,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795602,82,70,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795603,82,69.9,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795604,82,70,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795605,82,69.9,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795606,82,70,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795607,82,69.9,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795608,82,69.9,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795609,82,70,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795610,72,0.099,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795611,72,0.098,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795612,72,0.097,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795613,72,0.097,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795614,72,0.096,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795615,72,0.096,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795616,72,0.096,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795617,72,0.097,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795618,72,0.097,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795619,72,0.097,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795620,72,0.098,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795621,72,0.099,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795622,72,0.099,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795623,72,0.099,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795624,72,0.098,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795625,72,0.099,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795626,72,0.099,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795627,72,0.099,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795628,72,0.099,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795629,72,0.099,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795630,72,0.099,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795631,72,0.098,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795632,72,0.097,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795633,72,0.097,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795634,92,26.22,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795635,92,26.33,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795636,92,26.54,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795637,92,26.64,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795638,92,26.74,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795639,92,26.94,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795640,92,26.84,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795641,92,26.74,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795642,92,26.64,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795643,92,26.64,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795644,92,26.33,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795645,92,26.22,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795646,92,26.32,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795647,92,26.23,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795648,92,26.33,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795649,92,26.22,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795650,92,26.22,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795651,92,26.22,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795652,92,26.23,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795653,92,26.22,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795654,92,26.22,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795655,92,26.33,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795656,92,26.65,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795657,92,26.75,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795658,102,35.5,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795659,102,35.34,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795660,102,35.02,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795661,102,34.87,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795662,102,34.71,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795663,102,34.4,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795664,102,34.55,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795665,102,34.71,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795666,102,34.87,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795667,102,34.87,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795668,102,35.34,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795669,102,35.5,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795670,102,35.35,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795671,102,35.51,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795672,102,35.34,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795673,102,35.51,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795674,102,35.51,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795675,102,35.51,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795676,102,35.51,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795677,102,35.51,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795678,102,35.51,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795679,102,35.35,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795680,102,34.86,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795681,102,34.71,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795682,91,26.57,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795683,91,26.68,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795684,91,26.9,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795685,91,27,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795686,91,27.1,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795687,91,27.3,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795688,91,27.2,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795689,91,27.1,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795690,91,27,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795691,91,27,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795692,91,26.68,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795693,91,26.58,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795694,91,26.68,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795695,91,26.58,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795696,91,26.68,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795697,91,26.58,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795698,91,26.58,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795699,91,26.58,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795700,91,26.58,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795701,91,26.58,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795702,91,26.58,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795703,91,26.69,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795704,91,27,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795705,91,27.11,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13795706,101,37.6,'2011-08-19 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13795707,101,37.43,'2011-08-19 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13795708,101,37.09,'2011-08-19 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13795709,101,36.92,'2011-08-19 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13795710,101,36.76,'2011-08-19 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13795711,101,36.43,'2011-08-19 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13795712,101,36.59,'2011-08-19 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13795713,101,36.76,'2011-08-19 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13795714,101,36.92,'2011-08-19 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13795715,101,36.93,'2011-08-19 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13795716,101,37.43,'2011-08-20 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13795717,101,37.59,'2011-08-20 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13795718,101,37.43,'2011-08-20 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13795719,101,37.58,'2011-08-20 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13795720,101,37.43,'2011-08-20 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13795721,101,37.58,'2011-08-20 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13795722,101,37.59,'2011-08-20 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13795723,101,37.58,'2011-08-20 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13795724,101,37.57,'2011-08-20 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13795725,101,37.58,'2011-08-20 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13795726,101,37.58,'2011-08-20 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13795727,101,37.4,'2011-08-20 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13795728,101,36.92,'2011-08-20 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13795729,101,36.74,'2011-08-20 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801497,31,13.17,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801498,31,13.15,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801499,31,13.14,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801500,31,13.14,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801501,31,13.15,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801502,31,12.88,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801503,31,12.76,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801504,31,12.73,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801505,31,12.71,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801506,31,12.68,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801507,31,12.66,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801508,31,12.65,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801509,31,12.63,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801510,31,12.6,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801511,31,12.56,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801512,31,12.54,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801513,31,12.51,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801514,31,12.51,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801515,31,12.83,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801516,31,13.3,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801517,31,13.24,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801518,31,13.22,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801519,31,13.2,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801520,31,13.07,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801521,32,3.039,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801522,32,2.547,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801523,32,2.378,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801524,32,2.443,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801525,32,1.95,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801526,32,2.204,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801527,32,2.017,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801528,32,1.279,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801529,32,1.257,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801530,32,2.337,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801531,32,2.794,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801532,32,3.266,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801533,32,2.472,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801534,32,1.784,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801535,32,1.787,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801536,32,1.508,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801537,32,1.067,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801538,32,1.553,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801539,32,1.484,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801540,32,1.009,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801541,32,2.096,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801542,32,2.976,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801543,32,3.246,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801544,32,3.195,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801545,33,190.5,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801546,33,184.2,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801547,33,184.6,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801548,33,200.1,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801549,33,219.5,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801550,33,251.2,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801551,33,222,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801552,33,212,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801553,33,308.5,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801554,33,175.9,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801555,33,169.5,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801556,33,172.8,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801557,33,107.3,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801558,33,73.02,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801559,33,345.5,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801560,33,317.5,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801561,33,312.6,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801562,33,350.4,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801563,33,21.17,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801564,33,68.91,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801565,33,125.1,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801566,33,174.2,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801567,33,185.3,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801568,33,183.2,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801569,34,28.25,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801570,34,37.4,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801571,34,40.42,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801572,34,25.96,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801573,34,17.45,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801574,34,24.26,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801575,34,36.92,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801576,34,64.13,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801577,34,70.33,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801578,34,55.54,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801579,34,35.18,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801580,34,22.72,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801581,34,61.26,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801582,34,95.4,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801583,34,61.18,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801584,34,58.01,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801585,34,43.94,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801586,34,51.96,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801587,34,50.83,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801588,34,56.15,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801589,34,65.5,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801590,34,21.11,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801591,34,24.2,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801592,34,26.44,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801593,35,629.4,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13801594,35,629,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13801595,35,628.7,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13801596,35,628.6,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13801597,35,628.4,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13801598,35,628.5,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13801599,35,629,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13801600,35,629.6,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13801601,35,629.7,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13801602,35,630,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13801603,35,630.1,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13801604,35,630,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13801605,35,630.2,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13801606,35,630.3,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13801607,35,630.6,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13801608,35,630.9,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13801609,35,631,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13801610,35,631.3,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13801611,35,631.5,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13801612,35,631.7,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13801613,35,631.9,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13801614,35,631.9,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13801615,35,631.7,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13801616,35,631.5,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13801617,30,0,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801618,30,0,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801619,30,0,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801620,30,0,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801621,30,0,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801622,30,0,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801623,30,0,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801624,30,0,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801625,30,0,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801626,30,0,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801627,30,0,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801628,30,0,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801629,30,0,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801630,30,0,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801631,30,0,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801632,30,0,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801633,30,0,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801634,30,0,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801635,30,0,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801636,30,0,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801637,30,0,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801638,30,0,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801639,30,0,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801640,30,0,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801641,28,30.63,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801642,28,31.18,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801643,28,31.13,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801644,28,31.07,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801645,28,30.25,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801646,28,26.6,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801647,28,22.86,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801648,28,21.34,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801649,28,21.37,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801650,28,23.11,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801651,28,22.86,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801652,28,22.99,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801653,28,20.96,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801654,28,19.78,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801655,28,17.59,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801656,28,15.65,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801657,28,15.06,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801658,28,15.98,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801659,28,20.86,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801660,28,25.6,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801661,28,27.2,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801662,28,28.07,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801663,28,29.35,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801664,28,30.12,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801665,29,21.83,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801666,29,23.56,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801667,29,22.21,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801668,29,23.17,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801669,29,26,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801670,29,41.23,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801671,29,49.18,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801672,29,46.2,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801673,29,45.38,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801674,29,44.26,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801675,29,37.19,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801676,29,35.86,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801677,29,46.99,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801678,29,49.03,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801679,29,57.09,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801680,29,57.7,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801681,29,57.78,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801682,29,56.12,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801683,29,40.29,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801684,29,30,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801685,29,26.55,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801686,29,22.78,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801687,29,21.32,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801688,29,19.32,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801689,36,923,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801690,36,924,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801691,36,759.2,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801692,36,543.7,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801693,36,288.9,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801694,36,71.9,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801695,36,3.879,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801696,36,0,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801697,36,0,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801698,36,0,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801699,36,0,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801700,36,0,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801701,36,0,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801702,36,0,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801703,36,0,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801704,36,0,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801705,36,4.75,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801706,36,114,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801707,36,346.5,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801708,36,539.7,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801709,36,721.3,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801710,36,856,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801711,36,1009,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801712,36,1062,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801713,46,1.357,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801714,46,1.144,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801715,46,1.229,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801716,46,1.159,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801717,46,1.346,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801718,46,1.43,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801719,46,1.642,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801720,46,1.615,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801721,46,1.561,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801722,46,1.418,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801723,46,1.421,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801724,46,1.435,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801725,46,1.362,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801726,46,1.476,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801727,46,1.505,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801728,46,1.379,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801729,46,1.724,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801730,46,1.635,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801731,46,1.465,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801732,46,1.532,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801733,46,1.405,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801734,46,1.428,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801735,46,0.815,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801736,46,1.418,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801737,47,1.431,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801738,47,1.208,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801739,47,1.298,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801740,47,1.223,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801741,47,1.419,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801742,47,1.498,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801743,47,1.709,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801744,47,1.676,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801745,47,1.621,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801746,47,1.477,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801747,47,1.479,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801748,47,1.494,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801749,47,1.414,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801750,47,1.529,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801751,47,1.553,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801752,47,1.418,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801753,47,1.771,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801754,47,1.682,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801755,47,1.519,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801756,47,1.601,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801757,47,1.473,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801758,47,1.499,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801759,47,0.858,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801760,47,1.494,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801761,48,0.339,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13801762,48,0.562,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13801763,48,0.472,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13801764,48,0.547,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13801765,48,0.351,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13801766,48,0.272,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13801767,48,0.061,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13801768,48,0.094,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13801769,48,0.149,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13801770,48,0.293,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13801771,48,0.291,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13801772,48,0.276,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13801773,48,0.356,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13801774,48,0.241,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13801775,48,0.217,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13801776,48,0.352,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13801777,48,-0.001,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13801778,48,0.088,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13801779,48,0.251,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13801780,48,0.169,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13801781,48,0.297,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13801782,48,0.271,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13801783,48,0.912,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13801784,48,0.276,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13801785,41,23.4,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801786,40,31.95,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801787,39,13.83,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801788,37,12.51,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801789,43,629.4,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801790,44,0,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801791,42,41.93,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801792,45,27.85481,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801793,38,1.886,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801794,51,0,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801795,53,2.192,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801796,49,1.461,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801797,52,0,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801798,54,2.26,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801799,50,1.521,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801800,56,-0.49,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801801,57,1.77,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13801802,55,0.249,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13805043,58,0.164,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805044,58,0.164,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805045,58,0.165,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805046,58,0.163,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805047,58,0.162,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805048,58,0.159,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805049,58,0.158,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805050,58,0.155,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805051,58,0.153,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805052,58,0.151,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805053,58,0.152,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805054,58,0.151,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805055,58,0.151,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805056,58,0.149,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805057,58,0.148,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805058,58,0.148,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805059,58,0.147,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805060,58,0.146,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805061,58,0.147,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805062,58,0.148,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805063,58,0.15,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805064,58,0.151,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805065,58,0.154,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805066,58,0.158,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805067,63,0.017,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805068,63,0.017,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805069,63,0.017,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805070,63,0.017,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805071,63,0.017,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805072,63,0.017,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805073,63,0.016,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805074,63,0.016,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805075,63,0.016,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805076,63,0.016,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805077,63,0.016,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805078,63,0.016,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805079,63,0.016,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805080,63,0.016,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805081,63,0.016,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805082,63,0.016,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805083,63,0.016,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805084,63,0.016,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805085,63,0.016,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805086,63,0.016,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805087,63,0.017,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805088,63,0.017,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805089,63,0.017,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805090,63,0.016,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805091,73,29.13,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805092,73,30.1,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805093,73,30.55,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805094,73,30.62,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805095,73,30.1,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805096,73,29.2,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805097,73,28.17,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805098,73,27.2,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805099,73,26.35,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805100,73,25.75,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805101,73,25.37,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805102,73,24.95,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805103,73,24.47,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805104,73,24.05,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805105,73,23.6,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805106,73,23.12,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805107,73,22.65,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805108,73,22.05,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805109,73,22.13,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805110,73,22.93,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805111,73,24.13,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805112,73,25.58,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805113,73,26.95,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805114,73,28.33,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805115,78,84.5,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805116,78,86.2,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805117,78,87.1,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805118,78,87.2,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805119,78,86.2,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805120,78,84.6,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805121,78,82.7,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805122,78,81,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805123,78,79.4,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805124,78,78.4,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805125,78,77.72,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805126,78,76.92,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805127,78,76.02,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805128,78,75.3,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805129,78,74.5,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805130,78,73.62,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805131,78,72.7,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805132,78,71.8,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805133,78,71.9,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805134,78,73.23,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805135,78,75.43,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805136,78,78.08,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805137,78,80.5,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805138,78,83,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805139,64,0.018,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805140,64,0.018,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805141,64,0.018,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805142,64,0.018,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805143,64,0.018,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805144,64,0.018,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805145,64,0.017,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805146,64,0.017,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805147,64,0.017,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805148,64,0.017,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805149,64,0.016,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805150,64,0.016,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805151,64,0.016,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805152,64,0.016,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805153,64,0.016,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805154,64,0.016,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805155,64,0.016,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805156,64,0.016,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805157,64,0.015,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805158,64,0.016,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805159,64,0.017,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805160,64,0.017,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805161,64,0.017,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805162,64,0.017,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805163,84,9.89,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805164,84,9.88,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805165,84,9.97,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805166,84,9.85,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805167,84,9.78,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805168,84,9.63,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805169,84,9.58,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805170,84,9.43,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805171,84,9.31,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805172,84,9.15,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805173,84,9.26,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805174,84,9.15,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805175,84,9.14,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805176,84,9.04,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805177,84,9.01,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805178,84,8.98,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805179,84,8.96,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805180,84,8.9,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805181,84,8.91,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805182,84,9.01,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805183,84,9.14,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805184,84,9.17,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805185,84,9.32,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805186,84,9.54,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805187,94,6.517,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805188,94,6.611,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805189,94,6.592,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805190,94,6.57,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805191,94,6.447,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805192,94,6.343,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805193,94,6.187,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805194,94,6.084,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805195,94,6.023,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805196,94,6.006,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805197,94,5.871,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805198,94,5.851,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805199,94,5.796,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805200,94,5.792,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805201,94,5.765,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805202,94,5.677,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805203,94,5.665,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805204,94,5.591,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805205,94,5.609,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805206,94,5.713,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805207,94,5.844,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805208,94,6.043,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805209,94,6.145,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805210,94,6.199,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805211,83,10.22,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805212,83,10.23,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805213,83,10.33,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805214,83,10.2,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805215,83,10.12,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805216,83,9.94,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805217,83,9.87,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805218,83,9.68,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805219,83,9.55,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805220,83,9.37,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805221,83,9.48,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805222,83,9.35,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805223,83,9.34,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805224,83,9.22,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805225,83,9.18,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805226,83,9.14,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805227,83,9.11,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805228,83,9.04,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805229,83,9.05,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805230,83,9.17,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805231,83,9.33,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805232,83,9.39,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805233,83,9.58,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805234,83,9.84,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805235,93,6.133,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805236,93,6.149,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805237,93,6.086,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805238,93,6.066,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805239,93,6.001,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805240,93,5.982,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805241,93,5.924,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805242,93,5.909,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805243,93,5.916,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805244,93,5.956,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805245,93,5.856,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805246,93,5.869,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805247,93,5.847,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805248,93,5.881,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805249,93,5.891,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805250,93,5.848,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805251,93,5.881,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805252,93,5.842,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805253,93,5.859,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805254,93,5.89,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805255,93,5.907,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805256,93,5.989,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805257,93,5.97,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805258,93,5.893,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805259,59,0.28,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805260,59,0.281,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805261,59,0.284,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805262,59,0.282,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805263,59,0.283,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805264,59,0.283,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805265,59,0.284,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805266,59,0.282,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805267,59,0.281,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805268,59,0.28,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805269,59,0.279,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805270,59,0.278,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805271,59,0.278,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805272,59,0.277,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805273,59,0.276,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805274,59,0.274,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805275,59,0.273,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805276,59,0.273,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805277,59,0.273,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805278,59,0.273,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805279,59,0.273,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805280,59,0.273,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805281,59,0.276,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805282,59,0.278,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805283,65,0.037,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805284,65,0.037,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805285,65,0.037,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805286,65,0.037,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805287,65,0.037,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805288,65,0.037,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805289,65,0.037,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805290,65,0.037,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805291,65,0.036,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805292,65,0.037,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805293,65,0.037,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805294,65,0.036,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805295,65,0.036,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805296,65,0.036,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805297,65,0.036,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805298,65,0.036,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805299,65,0.036,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805300,65,0.036,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805301,65,0.036,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805302,65,0.035,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805303,65,0.036,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805304,65,0.036,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805305,65,0.036,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805306,65,0.036,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805307,74,26.3,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805308,74,27.28,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805309,74,27.95,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805310,74,28.23,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805311,74,28.07,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805312,74,27.95,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805313,74,27.65,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805314,74,27.2,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805315,74,26.62,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805316,74,26.17,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805317,74,25.75,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805318,74,25.25,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805319,74,24.97,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805320,74,24.62,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805321,74,24.12,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805322,74,23.8,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805323,74,23.55,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805324,74,23.15,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805325,74,22.85,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805326,74,22.8,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805327,74,23.2,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805328,74,23.95,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805329,74,24.78,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805330,74,25.95,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805331,79,79.31,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805332,79,81.1,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805333,79,82.4,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805334,79,82.9,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805335,79,82.6,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805336,79,82.4,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805337,79,81.7,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805338,79,81,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805339,79,79.87,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805340,79,79.07,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805341,79,78.4,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805342,79,77.5,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805343,79,76.92,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805344,79,76.27,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805345,79,75.4,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805346,79,74.9,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805347,79,74.4,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805348,79,73.65,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805349,79,73.1,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805350,79,73,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805351,79,73.75,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805352,79,75.1,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805353,79,76.61,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805354,79,78.73,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805355,66,0.037,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805356,66,0.038,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805357,66,0.038,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805358,66,0.038,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805359,66,0.038,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805360,66,0.038,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805361,66,0.038,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805362,66,0.038,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805363,66,0.037,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805364,66,0.037,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805365,66,0.037,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805366,66,0.037,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805367,66,0.036,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805368,66,0.036,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805369,66,0.036,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805370,66,0.036,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805371,66,0.035,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805372,66,0.035,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805373,66,0.035,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805374,66,0.035,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805375,66,0.035,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805376,66,0.036,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805377,66,0.036,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805378,66,0.037,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805379,86,17.7,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805380,86,17.85,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805381,86,18.02,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805382,86,17.92,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805383,86,17.93,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805384,86,18,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805385,86,18.05,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805386,86,17.89,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805387,86,17.81,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805388,86,17.72,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805389,86,17.63,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805390,86,17.58,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805391,86,17.57,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805392,86,17.47,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805393,86,17.48,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805394,86,17.28,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805395,86,17.22,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805396,86,17.19,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805397,86,17.17,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805398,86,17.14,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805399,86,17.19,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805400,86,17.21,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805401,86,17.46,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805402,86,17.57,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805403,96,13.38,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805404,96,13.64,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805405,96,13.71,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805406,96,13.84,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805407,96,13.84,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805408,96,13.75,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805409,96,13.66,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805410,96,13.6,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805411,96,13.45,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805412,96,13.39,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805413,96,13.32,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805414,96,13.13,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805415,96,13.06,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805416,96,12.97,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805417,96,12.77,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805418,96,12.82,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805419,96,12.69,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805420,96,12.61,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805421,96,12.54,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805422,96,12.5,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805423,96,12.55,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805424,96,12.76,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805425,96,12.83,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805426,96,13.13,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805427,85,18.15,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805428,85,18.34,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805429,85,18.54,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805430,85,18.46,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805431,85,18.47,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805432,85,18.54,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805433,85,18.57,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805434,85,18.39,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805435,85,18.29,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805436,85,18.18,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805437,85,18.07,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805438,85,18,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805439,85,17.97,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805440,85,17.85,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805441,85,17.85,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805442,85,17.64,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805443,85,17.56,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805444,85,17.51,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805445,85,17.48,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805446,85,17.45,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805447,85,17.51,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805448,85,17.56,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805449,85,17.85,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805450,85,18,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805451,95,13.16,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805452,95,13.23,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805453,95,13.19,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805454,95,13.24,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805455,95,13.23,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805456,95,13.18,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805457,95,13.13,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805458,95,13.16,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805459,95,13.1,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805460,95,13.13,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805461,95,13.14,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805462,95,13.03,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805463,95,13.03,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805464,95,13.01,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805465,95,12.87,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805466,95,12.98,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805467,95,12.91,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805468,95,12.89,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805469,95,12.87,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805470,95,12.85,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805471,95,12.84,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805472,95,12.94,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805473,95,12.86,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805474,95,12.97,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805475,60,0.366,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805476,60,0.361,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805477,60,0.364,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805478,60,0.367,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805479,60,0.369,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805480,60,0.363,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805481,60,0.368,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805482,60,0.368,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805483,60,0.371,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805484,60,0.364,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805485,60,0.373,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805486,60,0.366,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805487,60,0.369,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805488,60,0.367,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805489,60,0.371,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805490,60,0.369,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805491,60,0.369,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805492,60,0.366,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805493,60,0.368,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805494,60,0.369,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805495,60,0.368,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805496,60,0.366,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805497,60,0.363,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805498,60,0.366,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805499,67,0.082,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805500,67,0.083,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805501,67,0.082,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805502,67,0.082,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805503,67,0.082,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805504,67,0.083,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805505,67,0.082,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805506,67,0.082,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805507,67,0.082,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805508,67,0.084,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805509,67,0.082,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805510,67,0.083,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805511,67,0.082,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805512,67,0.083,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805513,67,0.082,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805514,67,0.082,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805515,67,0.082,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805516,67,0.082,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805517,67,0.082,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805518,67,0.082,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805519,67,0.082,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805520,67,0.082,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805521,67,0.082,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805522,67,0.082,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805523,75,23.5,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805524,75,23.6,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805525,75,23.8,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805526,75,23.98,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805527,75,24.3,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805528,75,24.48,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805529,75,24.7,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805530,75,24.78,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805531,75,24.9,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805532,75,24.9,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805533,75,24.9,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805534,75,24.9,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805535,75,24.9,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805536,75,24.9,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805537,75,24.8,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805538,75,24.7,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805539,75,24.63,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805540,75,24.47,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805541,75,24.35,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805542,75,24.25,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805543,75,24.2,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805544,75,24.12,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805545,75,23.9,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805546,75,23.9,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805547,80,74.3,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805548,80,74.5,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805549,80,74.9,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805550,80,75.2,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805551,80,75.7,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805552,80,76.03,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805553,80,76.4,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805554,80,76.58,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805555,80,76.8,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805556,80,76.8,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805557,80,76.8,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805558,80,76.8,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805559,80,76.8,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805560,80,76.8,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805561,80,76.6,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805562,80,76.4,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805563,80,76.28,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805564,80,76.02,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805565,80,75.8,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805566,80,75.6,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805567,80,75.5,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805568,80,75.4,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805569,80,75.1,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805570,80,75.1,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805571,68,0.08,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805572,68,0.081,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805573,68,0.081,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805574,68,0.08,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805575,68,0.081,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805576,68,0.082,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805577,68,0.082,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805578,68,0.082,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805579,68,0.082,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805580,68,0.084,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805581,68,0.082,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805582,68,0.083,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805583,68,0.082,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805584,68,0.083,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805585,68,0.082,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805586,68,0.082,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805587,68,0.081,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805588,68,0.081,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805589,68,0.081,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805590,68,0.081,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805591,68,0.081,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805592,68,0.081,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805593,68,0.081,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805594,68,0.081,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805595,88,24.98,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805596,88,24.56,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805597,88,24.86,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805598,88,25.11,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805599,88,25.34,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805600,88,24.77,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805601,88,25.22,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805602,88,25.14,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805603,88,25.44,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805604,88,24.84,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805605,88,25.59,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805606,88,25,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805607,88,25.22,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805608,88,25.14,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805609,88,25.41,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805610,88,25.28,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805611,88,25.27,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805612,88,25.03,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805613,88,25.18,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805614,88,25.26,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805615,88,25.23,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805616,88,25.02,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805617,88,24.73,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805618,88,24.95,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805619,98,28.62,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805620,98,29.15,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805621,98,29.1,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805622,98,28.95,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805623,98,29.02,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805624,98,29.61,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805625,98,29.48,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805626,98,29.59,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805627,98,29.52,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805628,98,30.12,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805629,98,29.49,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805630,98,29.85,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805631,98,29.68,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805632,98,29.59,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805633,98,29.48,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805634,98,29.33,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805635,98,29.31,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805636,98,29.47,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805637,98,29.25,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805638,98,29.14,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805639,98,29.11,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805640,98,29.08,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805641,98,29.14,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805642,98,28.99,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805643,87,25.45,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805644,87,25.03,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805645,87,25.35,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805646,87,25.62,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805647,87,25.87,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805648,87,25.3,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805649,87,25.77,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805650,87,25.7,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805651,87,26,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805652,87,25.4,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805653,87,26.17,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805654,87,25.56,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805655,87,25.78,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805656,87,25.7,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805657,87,25.97,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805658,87,25.83,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805659,87,25.81,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805660,87,25.57,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805661,87,25.71,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805662,87,25.79,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805663,87,25.75,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805664,87,25.53,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805665,87,25.23,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805666,87,25.46,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805667,97,29.25,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805668,97,29.74,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805669,97,29.58,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805670,97,29.34,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805671,97,29.32,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805672,97,29.82,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805673,97,29.61,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805674,97,29.66,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805675,97,29.57,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805676,97,30.11,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805677,97,29.51,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805678,97,29.87,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805679,97,29.73,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805680,97,29.65,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805681,97,29.57,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805682,97,29.46,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805683,97,29.51,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805684,97,29.7,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805685,97,29.51,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805686,97,29.46,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805687,97,29.46,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805688,97,29.47,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805689,97,29.56,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805690,97,29.4,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805691,61,0.261,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805692,61,0.261,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805693,61,0.262,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805694,61,0.263,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805695,61,0.262,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805696,61,0.262,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805697,61,0.261,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805698,61,0.261,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805699,61,0.261,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805700,61,0.26,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805701,61,0.259,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805702,61,0.259,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805703,61,0.259,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805704,61,0.259,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805705,61,0.259,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805706,61,0.259,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805707,61,0.262,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805708,61,0.261,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805709,61,0.26,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805710,61,0.259,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805711,61,0.259,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805712,61,0.259,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805713,61,0.261,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805714,61,0.261,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805715,69,0.044,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805716,69,0.044,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805717,69,0.044,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805718,69,0.044,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805719,69,0.044,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805720,69,0.044,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805721,69,0.044,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805722,69,0.044,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805723,69,0.044,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805724,69,0.045,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805725,69,0.045,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805726,69,0.045,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805727,69,0.045,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805728,69,0.045,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805729,69,0.045,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805730,69,0.045,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805731,69,0.045,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805732,69,0.045,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805733,69,0.045,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805734,69,0.045,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805735,69,0.045,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805736,69,0.045,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805737,69,0.044,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805738,69,0.044,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805739,76,23.4,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805740,76,23.3,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805741,76,23.3,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805742,76,23.3,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805743,76,23.3,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805744,76,23.3,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805745,76,23.3,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805746,76,23.35,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805747,76,23.45,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805748,76,23.5,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805749,76,23.5,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805750,76,23.5,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805751,76,23.5,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805752,76,23.6,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805753,76,23.6,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805754,76,23.65,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805755,76,23.7,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805756,76,23.7,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805757,76,23.7,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805758,76,23.7,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805759,76,23.7,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805760,76,23.7,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805761,76,23.7,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805762,76,23.7,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805763,81,74.1,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805764,81,73.9,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805765,81,73.9,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805766,81,73.9,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805767,81,73.9,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805768,81,73.9,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805769,81,73.9,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805770,81,74,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805771,81,74.2,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805772,81,74.3,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805773,81,74.3,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805774,81,74.3,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805775,81,74.3,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805776,81,74.5,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805777,81,74.5,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805778,81,74.6,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805779,81,74.7,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805780,81,74.7,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805781,81,74.7,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805782,81,74.7,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805783,81,74.7,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805784,81,74.7,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805785,81,74.7,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805786,81,74.7,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805787,70,0.043,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805788,70,0.043,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805789,70,0.043,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805790,70,0.043,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805791,70,0.043,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805792,70,0.043,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805793,70,0.043,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805794,70,0.043,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805795,70,0.043,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805796,70,0.044,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805797,70,0.044,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805798,70,0.044,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805799,70,0.044,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805800,70,0.044,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805801,70,0.044,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805802,70,0.044,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805803,70,0.044,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805804,70,0.044,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805805,70,0.044,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805806,70,0.044,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805807,70,0.044,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805808,70,0.044,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805809,70,0.043,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805810,70,0.043,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805811,90,16.29,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805812,90,16.29,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805813,90,16.36,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805814,90,16.47,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805815,90,16.36,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805816,90,16.41,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805817,90,16.29,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805818,90,16.29,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805819,90,16.29,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805820,90,16.21,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805821,90,16.14,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805822,90,16.14,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805823,90,16.14,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805824,90,16.14,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805825,90,16.14,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805826,90,16.14,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805827,90,16.37,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805828,90,16.26,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805829,90,16.25,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805830,90,16.14,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805831,90,16.14,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805832,90,16.14,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805833,90,16.26,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805834,90,16.3,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805835,100,15.58,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805836,100,15.58,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805837,100,15.57,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805838,100,15.5,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805839,100,15.57,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805840,100,15.53,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805841,100,15.58,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805842,100,15.58,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805843,100,15.58,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805844,100,15.7,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805845,100,15.81,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805846,100,15.81,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805847,100,15.81,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805848,100,15.81,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805849,100,15.81,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805850,100,15.81,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805851,100,15.67,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805852,100,15.74,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805853,100,15.74,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805854,100,15.82,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805855,100,15.82,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805856,100,15.82,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805857,100,15.65,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805858,100,15.59,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805859,89,16.61,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805860,89,16.6,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805861,89,16.67,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805862,89,16.78,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805863,89,16.67,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805864,89,16.72,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805865,89,16.6,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805866,89,16.6,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805867,89,16.61,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805868,89,16.53,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805869,89,16.45,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805870,89,16.45,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805871,89,16.45,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805872,89,16.46,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805873,89,16.46,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805874,89,16.46,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805875,89,16.69,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805876,89,16.58,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805877,89,16.58,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805878,89,16.46,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805879,89,16.46,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805880,89,16.46,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805881,89,16.59,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805882,89,16.62,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805883,99,15.9,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805884,99,15.91,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805885,99,15.91,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805886,99,15.84,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805887,99,15.91,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805888,99,15.86,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805889,99,15.92,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805890,99,15.91,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805891,99,15.9,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805892,99,16.02,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805893,99,16.13,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805894,99,16.12,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805895,99,16.12,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805896,99,16.1,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805897,99,16.1,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805898,99,16.1,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805899,99,15.94,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805900,99,16.01,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805901,99,16.01,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805902,99,16.08,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805903,99,16.08,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805904,99,16.08,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805905,99,15.91,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805906,99,15.86,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805907,62,0.385,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805908,62,0.38,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805909,62,0.377,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805910,62,0.375,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805911,62,0.375,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805912,62,0.374,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805913,62,0.375,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805914,62,0.375,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805915,62,0.383,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805916,62,0.386,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805917,62,0.38,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805918,62,0.385,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805919,62,0.385,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805920,62,0.388,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805921,62,0.386,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805922,62,0.385,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805923,62,0.384,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805924,62,0.384,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805925,62,0.383,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805926,62,0.385,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805927,62,0.385,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805928,62,0.377,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805929,62,0.375,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805930,62,0.376,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805931,71,0.102,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805932,71,0.103,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805933,71,0.103,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805934,71,0.103,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805935,71,0.104,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805936,71,0.104,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805937,71,0.103,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805938,71,0.103,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805939,71,0.103,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805940,71,0.102,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805941,71,0.103,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805942,71,0.102,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805943,71,0.102,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805944,71,0.101,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805945,71,0.102,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805946,71,0.102,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805947,71,0.103,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805948,71,0.103,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805949,71,0.103,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805950,71,0.102,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805951,71,0.103,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805952,71,0.103,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805953,71,0.103,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805954,71,0.103,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805955,77,21,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805956,77,21.05,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805957,77,21.1,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805958,77,21.1,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805959,77,21.1,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805960,77,21.1,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805961,77,21.1,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805962,77,21.1,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805963,77,21.1,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805964,77,21.1,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805965,77,21.15,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805966,77,21.1,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805967,77,21.15,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805968,77,21.1,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805969,77,21.1,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805970,77,21.1,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805971,77,21.15,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805972,77,21.25,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805973,77,21.05,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805974,77,21.15,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805975,77,21.1,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13805976,77,21.1,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13805977,77,21.05,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13805978,77,21.25,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13805979,82,69.8,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13805980,82,69.9,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13805981,82,70,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13805982,82,70,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13805983,82,70,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13805984,82,70,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13805985,82,70,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13805986,82,70,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13805987,82,70,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13805988,82,70,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13805989,82,70.07,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13805990,82,70,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13805991,82,70.07,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13805992,82,70,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13805993,82,70,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13805994,82,70,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13805995,82,70.07,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13805996,82,70.22,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13805997,82,69.9,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13805998,82,70.07,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13805999,82,70,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13806000,82,69.98,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13806001,82,69.9,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13806002,82,70.23,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13806003,72,0.097,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13806004,72,0.097,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13806005,72,0.098,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13806006,72,0.098,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13806007,72,0.098,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13806008,72,0.098,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13806009,72,0.098,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13806010,72,0.097,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13806011,72,0.097,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13806012,72,0.096,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13806013,72,0.097,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13806014,72,0.097,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13806015,72,0.096,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13806016,72,0.095,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13806017,72,0.096,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13806018,72,0.097,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13806019,72,0.097,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13806020,72,0.097,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13806021,72,0.098,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13806022,72,0.096,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13806023,72,0.097,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13806024,72,0.097,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13806025,72,0.098,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13806026,72,0.097,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13806027,92,26.75,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13806028,92,26.26,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13806029,92,25.97,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13806030,92,25.79,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13806031,92,25.79,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13806032,92,25.67,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13806033,92,25.79,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13806034,92,25.79,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13806035,92,26.56,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13806036,92,26.84,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13806037,92,26.26,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13806038,92,26.75,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13806039,92,26.75,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13806040,92,27.05,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13806041,92,26.85,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13806042,92,26.75,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13806043,92,26.65,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13806044,92,26.65,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13806045,92,26.54,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13806046,92,26.75,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13806047,92,26.75,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13806048,92,25.97,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13806049,92,25.78,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13806050,92,25.9,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13806051,102,34.71,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13806052,102,34.96,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13806053,102,35.16,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13806054,102,35.21,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13806055,102,35.21,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13806056,102,35.36,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13806057,102,35.21,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13806058,102,35.2,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13806059,102,34.76,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13806060,102,34.56,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13806061,102,34.96,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13806062,102,34.72,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13806063,102,34.72,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13806064,102,34.25,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13806065,102,34.56,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13806066,102,34.72,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13806067,102,34.87,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13806068,102,34.87,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13806069,102,35.03,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13806070,102,34.72,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13806071,102,34.72,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13806072,102,35.16,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13806073,102,35.2,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13806074,102,35.05,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13806075,91,27.11,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13806076,91,26.62,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13806077,91,26.32,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13806078,91,26.14,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13806079,91,26.14,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13806080,91,26.02,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13806081,91,26.14,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13806082,91,26.14,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13806083,91,26.92,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13806084,91,27.21,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13806085,91,26.62,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13806086,91,27.11,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13806087,91,27.12,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13806088,91,27.42,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13806089,91,27.21,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13806090,91,27.11,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13806091,91,27.01,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13806092,91,27.01,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13806093,91,26.9,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13806094,91,27.12,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13806095,91,27.11,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13806096,91,26.33,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13806097,91,26.14,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13806098,91,26.25,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13806099,101,36.75,'2011-08-20 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13806100,101,37,'2011-08-20 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13806101,101,37.21,'2011-08-20 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13806102,101,37.24,'2011-08-20 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13806103,101,37.25,'2011-08-20 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13806104,101,37.44,'2011-08-20 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13806105,101,37.24,'2011-08-20 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13806106,101,37.25,'2011-08-20 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13806107,101,36.77,'2011-08-20 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13806108,101,36.57,'2011-08-20 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13806109,101,36.99,'2011-08-21 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13806110,101,36.72,'2011-08-21 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13806111,101,36.72,'2011-08-21 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13806112,101,36.23,'2011-08-21 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13806113,101,36.56,'2011-08-21 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13806114,101,36.72,'2011-08-21 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13806115,101,36.89,'2011-08-21 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13806116,101,36.89,'2011-08-21 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13806117,101,37.07,'2011-08-21 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13806118,101,36.72,'2011-08-21 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13806119,101,36.73,'2011-08-21 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13806120,101,37.2,'2011-08-21 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13806121,101,37.25,'2011-08-21 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13806122,101,37.08,'2011-08-21 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13811890,31,13.16,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13811891,31,13.15,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13811892,31,13.15,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13811893,31,13.15,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13811894,31,13.17,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13811895,31,12.81,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13811896,31,12.74,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13811897,31,12.72,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13811898,31,12.68,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13811899,31,12.65,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13811900,31,12.63,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13811901,31,12.61,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13811902,31,12.58,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13811903,31,12.56,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13811904,31,12.54,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13811905,31,12.52,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13811906,31,12.51,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13811907,31,12.51,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13811908,31,12.78,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13811909,31,13.27,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13811910,31,13.24,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13811911,31,13.2,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13811912,31,13.18,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13811913,31,13.16,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13811914,32,3.672,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13811915,32,3.478,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13811916,32,3.251,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13811917,32,2.642,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13811918,32,1.448,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13811919,32,1.976,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13811920,32,1.404,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13811921,32,1.952,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13811922,32,1.609,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13811923,32,0.978,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13811924,32,1.67,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13811925,32,1.505,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13811926,32,1.706,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13811927,32,1.972,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13811928,32,2.301,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13811929,32,1.659,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13811930,32,1.435,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13811931,32,2.13,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13811932,32,1.227,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13811933,32,2.72,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13811934,32,3.146,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13811935,32,3.956,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13811936,32,3.996,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13811937,32,3.547,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13811938,33,186.5,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13811939,33,177.3,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13811940,33,179.9,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13811941,33,200.4,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13811942,33,239.8,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13811943,33,232,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13811944,33,225.2,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13811945,33,228.2,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13811946,33,226,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13811947,33,306.8,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13811948,33,328.9,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13811949,33,291.3,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13811950,33,323.8,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13811951,33,325.8,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13811952,33,331.6,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13811953,33,323.2,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13811954,33,309.4,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13811955,33,240.8,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13811956,33,95.6,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13811957,33,174.2,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13811958,33,173.3,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13811959,33,190.6,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13811960,33,194.4,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13811961,33,179.7,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13811962,34,24.29,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13811963,34,19.93,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13811964,34,22.52,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13811965,34,26.02,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13811966,34,26.02,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13811967,34,28.55,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13811968,34,27.46,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13811969,34,22.04,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13811970,34,20.54,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13811971,34,43.94,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13811972,34,32.53,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13811973,34,77.86,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13811974,34,64.46,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13811975,34,41.57,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13811976,34,30.34,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13811977,34,48.49,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13811978,34,63.36,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13811979,34,56.53,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13811980,34,86.4,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13811981,34,30.39,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13811982,34,19.63,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13811983,34,22.17,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13811984,34,22.26,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13811985,34,24.08,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13811986,35,631.1,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13811987,35,630.7,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13811988,35,630.3,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13811989,35,630.2,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13811990,35,630.1,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13811991,35,630.2,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13811992,35,630.3,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13811993,35,630.5,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13811994,35,630.6,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13811995,35,630.5,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13811996,35,630.7,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13811997,35,630.7,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13811998,35,630.8,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13811999,35,630.8,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13812000,35,630.9,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13812001,35,631.2,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13812002,35,631.5,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13812003,35,631.7,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13812004,35,631.8,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13812005,35,631.9,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13812006,35,632.2,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13812007,35,632.2,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13812008,35,631.9,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13812009,35,631.7,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13812010,30,0,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812011,30,0,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812012,30,0,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812013,30,0,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812014,30,0,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812015,30,0,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812016,30,0,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812017,30,0,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812018,30,0,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812019,30,0,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812020,30,0,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812021,30,0,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812022,30,0,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812023,30,0,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812024,30,0,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812025,30,0,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812026,30,0,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812027,30,0,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812028,30,0,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812029,30,0,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812030,30,0,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812031,30,0,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812032,30,0,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812033,30,0,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812034,28,31.1,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812035,28,30.53,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812036,28,30.9,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812037,28,30.32,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812038,28,28.82,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812039,28,24.73,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812040,28,20.81,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812041,28,19.1,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812042,28,18.76,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812043,28,18.41,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812044,28,18.28,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812045,28,18.84,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812046,28,18.19,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812047,28,16.8,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812048,28,16.37,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812049,28,17.42,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812050,28,15.87,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812051,28,20.07,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812052,28,23.47,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812053,28,26.69,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812054,28,27.44,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812055,28,29.85,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812056,28,30.38,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812057,28,30.66,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812058,29,16.49,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812059,29,18.76,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812060,29,16.26,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812061,29,17.26,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812062,29,22.91,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812063,29,31.52,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812064,29,35.24,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812065,29,32.71,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812066,29,31.26,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812067,29,36.19,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812068,29,38.2,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812069,29,42.02,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812070,29,46.37,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812071,29,50.78,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812072,29,44.02,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812073,29,51.82,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812074,29,54.02,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812075,29,45.98,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812076,29,28.8,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812077,29,25.41,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812078,29,25,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812079,29,14.39,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812080,29,16.76,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812081,29,17.27,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812082,36,1153,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812083,36,869,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812084,36,772.3,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812085,36,378.3,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812086,36,243.9,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812087,36,57.13,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812088,36,3.286,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812089,36,0,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812090,36,0,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812091,36,0,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812092,36,0,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812093,36,0,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812094,36,0,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812095,36,0,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812096,36,0,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812097,36,0,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812098,36,3.657,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812099,36,115.4,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812100,36,357.4,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812101,36,581,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812102,36,526.7,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812103,36,934,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812104,36,1047,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812105,36,1113,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812106,46,1.301,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812107,46,1.631,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812108,46,1.645,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812109,46,1.437,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812110,46,1.412,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812111,46,1.418,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812112,46,1.51,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812113,46,1.653,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812114,46,1.582,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812115,46,1.488,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812116,46,1.451,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812117,46,1.45,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812118,46,1.431,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812119,46,1.379,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812120,46,1.453,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812121,46,1.461,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812122,46,1.599,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812123,46,1.632,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812124,46,1.427,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812125,46,1.479,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812126,46,1.505,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812127,46,1.242,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812128,46,1.566,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812129,46,1.453,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812130,47,1.373,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812131,47,1.72,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812132,47,1.736,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812133,47,1.515,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812134,47,1.485,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812135,47,1.482,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812136,47,1.567,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812137,47,1.71,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812138,47,1.635,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812139,47,1.537,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812140,47,1.499,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812141,47,1.5,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812142,47,1.478,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812143,47,1.421,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812144,47,1.496,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812145,47,1.507,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812146,47,1.645,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812147,47,1.69,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812148,47,1.487,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812149,47,1.549,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812150,47,1.579,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812151,47,1.308,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812152,47,1.651,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812153,47,1.533,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812154,48,0.397,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13812155,48,0.05,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13812156,48,0.034,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13812157,48,0.255,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13812158,48,0.285,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13812159,48,0.288,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13812160,48,0.203,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13812161,48,0.06,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13812162,48,0.135,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13812163,48,0.233,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13812164,48,0.271,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13812165,48,0.27,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13812166,48,0.292,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13812167,48,0.349,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13812168,48,0.274,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13812169,48,0.263,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13812170,48,0.125,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13812171,48,0.08,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13812172,48,0.283,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13812173,48,0.221,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13812174,48,0.191,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13812175,48,0.462,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13812176,48,0.119,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13812177,48,0.237,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13812178,41,23.37,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812179,40,31.8,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812180,39,14.05,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812181,37,12.51,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812182,43,630.8,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812183,44,0,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812184,42,34,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812185,45,28.94559,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812186,38,2.147,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812187,51,0,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812188,53,1.898,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812189,49,1.463,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812190,52,0,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812191,54,1.96,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812192,50,1.524,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812193,56,-0.19,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812194,57,1.77,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13812195,55,0.246,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13815436,58,0.159,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815437,58,0.161,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815438,58,0.161,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815439,58,0.158,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815440,58,0.156,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815441,58,0.154,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815442,58,0.152,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815443,58,0.151,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815444,58,0.15,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815445,58,0.146,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815446,58,0.145,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815447,58,0.146,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815448,58,0.144,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815449,58,0.143,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815450,58,0.141,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815451,58,0.143,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815452,58,0.143,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815453,58,0.141,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815454,58,0.144,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815455,58,0.142,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815456,58,0.147,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815457,58,0.149,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815458,58,0.151,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815459,58,0.153,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815460,63,0.017,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815461,63,0.016,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815462,63,0.016,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815463,63,0.016,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815464,63,0.016,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815465,63,0.016,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815466,63,0.016,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815467,63,0.016,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815468,63,0.016,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815469,63,0.016,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815470,63,0.016,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815471,63,0.016,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815472,63,0.016,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815473,63,0.016,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815474,63,0.016,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815475,63,0.016,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815476,63,0.016,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815477,63,0.016,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815478,63,0.016,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815479,63,0.016,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815480,63,0.016,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815481,63,0.016,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815482,63,0.016,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815483,63,0.016,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815484,73,30.11,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815485,73,31.25,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815486,73,31.4,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815487,73,31.07,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815488,73,30.32,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815489,73,29.35,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815490,73,28.17,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815491,73,27.07,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815492,73,26.1,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815493,73,25.35,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815494,73,24.67,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815495,73,23.92,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815496,73,23.55,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815497,73,23.07,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815498,73,22.65,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815499,73,22.17,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815500,73,21.8,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815501,73,21.55,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815502,73,21.85,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815503,73,22.88,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815504,73,24.18,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815505,73,25.25,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815506,73,26.68,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815507,73,28.56,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815508,78,86.2,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815509,78,88.2,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815510,78,88.5,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815511,78,87.9,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815512,78,86.6,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815513,78,84.8,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815514,78,82.7,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815515,78,80.7,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815516,78,78.95,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815517,78,77.75,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815518,78,76.37,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815519,78,75.1,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815520,78,74.4,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815521,78,73.52,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815522,78,72.72,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815523,78,72,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815524,78,71.3,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815525,78,70.8,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815526,78,71.4,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815527,78,73.16,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815528,78,75.53,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815529,78,77.51,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815530,78,80,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815531,78,83.4,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815532,64,0.018,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815533,64,0.018,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815534,64,0.018,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815535,64,0.018,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815536,64,0.017,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815537,64,0.017,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815538,64,0.017,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815539,64,0.016,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815540,64,0.016,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815541,64,0.016,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815542,64,0.016,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815543,64,0.015,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815544,64,0.015,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815545,64,0.015,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815546,64,0.015,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815547,64,0.015,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815548,64,0.015,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815549,64,0.015,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815550,64,0.015,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815551,64,0.016,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815552,64,0.016,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815553,64,0.016,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815554,64,0.016,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815555,64,0.017,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815556,84,9.59,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815557,84,9.73,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815558,84,9.76,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815559,84,9.56,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815560,84,9.41,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815561,84,9.36,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815562,84,9.2,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815563,84,9.14,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815564,84,9.12,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815565,84,8.89,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815566,84,8.82,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815567,84,8.86,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815568,84,8.8,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815569,84,8.74,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815570,84,8.63,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815571,84,8.71,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815572,84,8.72,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815573,84,8.6,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815574,84,8.78,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815575,84,8.68,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815576,84,8.92,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815577,84,9.05,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815578,84,9.14,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815579,84,9.24,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815580,94,6.412,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815581,94,6.439,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815582,94,6.359,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815583,94,6.358,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815584,94,6.267,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815585,94,6.112,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815586,94,5.991,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815587,94,5.823,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815588,94,5.712,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815589,94,5.734,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815590,94,5.652,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815591,94,5.542,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815592,94,5.527,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815593,94,5.528,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815594,94,5.508,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815595,94,5.392,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815596,94,5.344,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815597,94,5.37,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815598,94,5.311,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815599,94,5.567,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815600,94,5.604,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815601,94,5.696,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815602,94,5.824,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815603,94,6.037,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815604,83,9.93,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815605,83,10.09,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815606,83,10.13,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815607,83,9.91,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815608,83,9.74,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815609,83,9.66,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815610,83,9.47,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815611,83,9.39,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815612,83,9.35,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815613,83,9.1,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815614,83,9.01,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815615,83,9.04,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815616,83,8.96,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815617,83,8.9,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815618,83,8.78,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815619,83,8.85,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815620,83,8.85,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815621,83,8.72,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815622,83,8.92,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815623,83,8.83,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815624,83,9.11,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815625,83,9.26,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815626,83,9.39,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815627,83,9.53,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815628,93,5.949,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815629,93,5.894,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815630,93,5.814,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815631,93,5.84,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815632,93,5.825,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815633,93,5.76,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815634,93,5.744,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815635,93,5.67,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815636,93,5.637,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815637,93,5.721,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815638,93,5.702,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815639,93,5.638,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815640,93,5.66,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815641,93,5.699,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815642,93,5.72,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815643,93,5.636,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815644,93,5.611,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815645,93,5.66,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815646,93,5.567,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815647,93,5.746,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815648,93,5.667,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815649,93,5.672,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815650,93,5.669,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815651,93,5.728,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815652,59,0.279,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815653,59,0.281,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815654,59,0.283,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815655,59,0.287,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815656,59,0.283,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815657,59,0.282,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815658,59,0.281,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815659,59,0.282,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815660,59,0.28,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815661,59,0.278,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815662,59,0.278,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815663,59,0.275,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815664,59,0.273,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815665,59,0.273,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815666,59,0.274,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815667,59,0.271,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815668,59,0.271,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815669,59,0.27,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815670,59,0.269,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815671,59,0.268,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815672,59,0.271,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815673,59,0.271,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815674,59,0.273,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815675,59,0.275,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815676,65,0.036,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815677,65,0.036,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815678,65,0.037,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815679,65,0.036,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815680,65,0.036,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815681,65,0.037,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815682,65,0.036,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815683,65,0.036,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815684,65,0.036,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815685,65,0.036,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815686,65,0.036,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815687,65,0.036,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815688,65,0.036,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815689,65,0.035,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815690,65,0.035,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815691,65,0.035,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815692,65,0.035,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815693,65,0.035,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815694,65,0.035,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815695,65,0.035,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815696,65,0.035,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815697,65,0.035,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815698,65,0.035,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815699,65,0.035,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815700,74,27.08,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815701,74,28.18,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815702,74,28.75,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815703,74,28.9,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815704,74,28.82,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815705,74,28.52,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815706,74,27.9,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815707,74,27.42,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815708,74,26.85,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815709,74,26.17,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815710,74,25.62,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815711,74,25,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815712,74,24.67,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815713,74,24.3,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815714,74,23.8,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815715,74,23.55,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815716,74,23.3,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815717,74,22.9,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815718,74,22.8,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815719,74,22.8,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815720,74,23.2,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815721,74,23.93,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815722,74,24.85,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815723,74,26.03,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815724,79,80.8,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815725,79,82.8,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815726,79,83.8,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815727,79,84,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815728,79,83.9,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815729,79,83.4,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815730,79,82.2,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815731,79,81.4,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815732,79,80.4,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815733,79,79.07,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815734,79,78.17,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815735,79,77.05,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815736,79,76.37,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815737,79,75.7,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815738,79,74.9,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815739,79,74.4,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815740,79,73.9,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815741,79,73.2,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815742,79,73,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815743,79,73,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815744,79,73.75,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815745,79,75.1,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815746,79,76.71,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815747,79,78.88,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815748,66,0.037,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815749,66,0.038,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815750,66,0.038,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815751,66,0.038,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815752,66,0.038,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815753,66,0.038,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815754,66,0.038,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815755,66,0.037,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815756,66,0.037,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815757,66,0.037,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815758,66,0.036,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815759,66,0.036,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815760,66,0.036,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815761,66,0.035,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815762,66,0.035,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815763,66,0.035,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815764,66,0.035,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815765,66,0.034,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815766,66,0.034,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815767,66,0.034,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815768,66,0.034,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815769,66,0.035,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815770,66,0.035,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815771,66,0.036,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815772,86,17.65,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815773,86,17.78,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815774,86,17.99,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815775,86,18.27,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815776,86,17.99,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815777,86,17.92,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815778,86,17.81,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815779,86,17.84,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815780,86,17.71,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815781,86,17.57,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815782,86,17.55,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815783,86,17.39,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815784,86,17.19,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815785,86,17.22,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815786,86,17.24,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815787,86,17.06,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815788,86,17.07,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815789,86,16.96,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815790,86,16.93,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815791,86,16.84,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815792,86,17.05,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815793,86,17.03,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815794,86,17.2,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815795,86,17.35,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815796,96,13.4,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815797,96,13.64,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815798,96,13.74,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815799,96,13.53,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815800,96,13.75,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815801,96,13.76,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815802,96,13.59,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815803,96,13.4,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815804,96,13.3,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815805,96,13.19,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815806,96,12.96,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815807,96,12.91,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815808,96,12.87,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815809,96,12.69,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815810,96,12.51,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815811,96,12.5,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815812,96,12.38,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815813,96,12.36,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815814,96,12.26,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815815,96,12.33,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815816,96,12.29,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815817,96,12.55,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815818,96,12.69,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815819,96,12.93,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815820,85,18.13,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815821,85,18.3,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815822,85,18.54,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815823,85,18.85,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815824,85,18.56,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815825,85,18.47,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815826,85,18.34,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815827,85,18.35,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815828,85,18.19,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815829,85,18.03,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815830,85,17.98,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815831,85,17.8,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815832,85,17.57,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815833,85,17.59,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815834,85,17.6,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815835,85,17.4,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815836,85,17.4,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815837,85,17.28,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815838,85,17.23,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815839,85,17.14,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815840,85,17.38,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815841,85,17.38,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815842,85,17.59,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815843,85,17.78,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815844,95,13.04,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815845,95,13.09,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815846,95,13.07,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815847,95,12.82,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815848,95,13.04,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815849,95,13.09,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815850,95,13.01,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815851,95,12.92,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815852,95,12.92,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815853,95,12.93,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815854,95,12.79,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815855,95,12.83,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815856,95,12.87,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815857,95,12.77,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815858,95,12.66,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815859,95,12.71,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815860,95,12.64,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815861,95,12.67,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815862,95,12.61,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815863,95,12.68,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815864,95,12.58,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815865,95,12.72,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815866,95,12.72,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815867,95,12.77,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815868,60,0.368,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815869,60,0.37,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815870,60,0.369,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815871,60,0.367,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815872,60,0.363,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815873,60,0.37,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815874,60,0.373,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815875,60,0.369,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815876,60,0.369,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815877,60,0.369,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815878,60,0.37,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815879,60,0.368,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815880,60,0.37,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815881,60,0.366,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815882,60,0.369,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815883,60,0.372,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815884,60,0.366,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815885,60,0.365,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815886,60,0.366,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815887,60,0.365,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815888,60,0.368,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815889,60,0.366,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815890,60,0.361,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815891,60,0.361,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815892,67,0.082,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815893,67,0.081,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815894,67,0.082,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815895,67,0.082,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815896,67,0.083,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815897,67,0.082,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815898,67,0.082,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815899,67,0.083,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815900,67,0.083,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815901,67,0.083,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815902,67,0.083,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815903,67,0.083,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815904,67,0.082,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815905,67,0.083,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815906,67,0.082,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815907,67,0.082,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815908,67,0.082,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815909,67,0.083,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815910,67,0.082,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815911,67,0.082,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815912,67,0.081,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815913,67,0.082,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815914,67,0.082,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815915,67,0.082,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815916,75,24.05,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815917,75,24.13,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815918,75,24.4,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815919,75,24.7,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815920,75,24.9,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815921,75,25.05,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815922,75,25.18,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815923,75,25.4,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815924,75,25.4,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815925,75,25.4,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815926,75,25.4,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815927,75,25.4,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815928,75,25.32,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815929,75,25.1,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815930,75,25,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815931,75,24.9,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815932,75,24.85,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815933,75,24.7,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815934,75,24.62,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815935,75,24.4,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815936,75,24.35,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815937,75,24.13,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815938,75,24.2,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815939,75,24.2,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815940,80,75.3,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815941,80,75.4,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815942,80,75.9,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815943,80,76.4,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815944,80,76.8,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815945,80,77.18,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815946,80,77.4,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815947,80,77.7,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815948,80,77.7,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815949,80,77.7,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815950,80,77.7,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815951,80,77.7,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815952,80,77.6,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815953,80,77.3,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815954,80,77.05,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815955,80,76.8,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815956,80,76.7,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815957,80,76.4,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815958,80,76.27,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815959,80,75.9,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815960,80,75.8,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815961,80,75.4,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815962,80,75.5,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815963,80,75.5,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815964,68,0.08,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815965,68,0.08,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815966,68,0.081,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815967,68,0.082,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815968,68,0.083,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815969,68,0.082,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815970,68,0.082,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815971,68,0.083,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815972,68,0.083,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815973,68,0.083,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815974,68,0.083,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815975,68,0.083,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13815976,68,0.082,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13815977,68,0.083,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13815978,68,0.082,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13815979,68,0.082,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13815980,68,0.082,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13815981,68,0.083,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13815982,68,0.082,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13815983,68,0.082,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13815984,68,0.081,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13815985,68,0.081,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13815986,68,0.082,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13815987,68,0.082,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13815988,88,25.17,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13815989,88,25.33,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13815990,88,25.28,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13815991,88,25.11,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13815992,88,24.73,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13815993,88,25.39,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13815994,88,25.69,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13815995,88,25.25,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13815996,88,25.28,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13815997,88,25.28,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13815998,88,25.4,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13815999,88,25.21,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816000,88,25.39,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816001,88,25.01,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816002,88,25.28,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816003,88,25.59,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816004,88,25.06,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816005,88,24.95,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816006,88,25,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816007,88,24.91,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816008,88,25.2,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816009,88,24.97,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816010,88,24.52,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816011,88,24.53,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816012,98,28.83,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816013,98,28.81,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816014,98,29.16,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816015,98,29.37,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816016,98,29.76,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816017,98,29.45,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816018,98,29.39,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816019,98,29.94,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816020,98,29.94,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816021,98,29.95,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816022,98,29.88,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816023,98,29.88,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816024,98,29.68,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816025,98,29.87,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816026,98,29.54,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816027,98,29.27,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816028,98,29.5,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816029,98,29.59,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816030,98,29.45,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816031,98,29.35,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816032,98,28.85,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816033,98,29,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816034,98,29.32,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816035,98,29.32,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816036,87,25.69,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816037,87,25.86,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816038,87,25.81,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816039,87,25.65,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816040,87,25.28,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816041,87,25.97,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816042,87,26.28,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816043,87,25.84,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816044,87,25.88,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816045,87,25.88,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816046,87,26,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816047,87,25.79,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816048,87,25.97,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816049,87,25.59,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816050,87,25.86,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816051,87,26.16,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816052,87,25.62,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816053,87,25.49,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816054,87,25.54,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816055,87,25.44,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816056,87,25.72,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816057,87,25.48,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816058,87,25.03,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816059,87,25.03,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816060,97,29.22,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816061,97,29.13,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816062,97,29.4,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816063,97,29.5,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816064,97,29.82,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816065,97,29.4,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816066,97,29.29,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816067,97,29.78,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816068,97,29.76,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816069,97,29.75,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816070,97,29.7,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816071,97,29.74,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816072,97,29.58,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816073,97,29.8,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816074,97,29.51,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816075,97,29.31,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816076,97,29.57,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816077,97,29.71,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816078,97,29.63,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816079,97,29.59,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816080,97,29.14,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816081,97,29.34,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816082,97,29.67,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816083,97,29.66,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816084,61,0.261,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816085,61,0.263,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816086,61,0.26,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816087,61,0.259,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816088,61,0.26,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816089,61,0.262,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816090,61,0.261,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816091,61,0.261,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816092,61,0.261,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816093,61,0.26,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816094,61,0.26,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816095,61,0.259,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816096,61,0.259,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816097,61,0.259,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816098,61,0.259,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816099,61,0.261,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816100,61,0.259,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816101,61,0.26,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816102,61,0.261,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816103,61,0.261,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816104,61,0.261,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816105,61,0.263,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816106,61,0.263,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816107,61,0.264,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816108,69,0.044,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816109,69,0.044,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816110,69,0.044,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816111,69,0.044,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816112,69,0.044,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816113,69,0.044,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816114,69,0.044,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816115,69,0.044,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816116,69,0.044,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816117,69,0.044,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816118,69,0.045,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816119,69,0.045,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816120,69,0.045,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816121,69,0.045,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816122,69,0.045,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816123,69,0.044,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816124,69,0.045,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816125,69,0.045,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816126,69,0.044,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816127,69,0.044,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816128,69,0.044,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816129,69,0.044,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816130,69,0.044,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816131,69,0.044,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816132,76,23.65,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816133,76,23.7,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816134,76,23.6,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816135,76,23.7,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816136,76,23.65,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816137,76,23.65,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816138,76,23.65,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816139,76,23.7,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816140,76,23.7,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816141,76,23.7,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816142,76,23.7,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816143,76,23.7,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816144,76,23.7,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816145,76,23.9,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816146,76,23.85,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816147,76,23.9,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816148,76,23.9,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816149,76,23.9,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816150,76,23.9,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816151,76,23.85,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816152,76,23.9,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816153,76,23.9,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816154,76,23.9,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816155,76,23.85,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816156,81,74.6,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816157,81,74.7,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816158,81,74.5,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816159,81,74.7,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816160,81,74.6,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816161,81,74.6,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816162,81,74.6,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816163,81,74.7,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816164,81,74.7,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816165,81,74.7,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816166,81,74.7,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816167,81,74.7,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816168,81,74.7,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816169,81,75.1,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816170,81,75,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816171,81,75.1,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816172,81,75.1,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816173,81,75.1,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816174,81,75.1,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816175,81,75,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816176,81,75.1,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816177,81,75.1,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816178,81,75.1,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816179,81,75,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816180,70,0.043,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816181,70,0.043,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816182,70,0.043,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816183,70,0.043,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816184,70,0.043,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816185,70,0.043,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816186,70,0.043,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816187,70,0.043,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816188,70,0.043,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816189,70,0.043,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816190,70,0.044,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816191,70,0.044,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816192,70,0.044,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816193,70,0.044,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816194,70,0.044,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816195,70,0.043,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816196,70,0.044,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816197,70,0.044,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816198,70,0.043,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816199,70,0.043,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816200,70,0.043,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816201,70,0.043,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816202,70,0.043,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816203,70,0.043,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816204,90,16.3,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816205,90,16.48,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816206,90,16.28,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816207,90,16.15,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816208,90,16.2,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816209,90,16.36,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816210,90,16.3,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816211,90,16.3,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816212,90,16.3,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816213,90,16.26,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816214,90,16.23,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816215,90,16.15,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816216,90,16.15,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816217,90,16.15,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816218,90,16.15,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816219,90,16.31,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816220,90,16.15,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816221,90,16.19,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816222,90,16.31,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816223,90,16.31,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816224,90,16.31,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816225,90,16.43,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816226,90,16.43,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816227,90,16.51,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816228,100,15.59,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816229,100,15.51,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816230,100,15.59,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816231,100,15.64,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816232,100,15.68,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816233,100,15.56,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816234,100,15.59,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816235,100,15.59,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816236,100,15.59,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816237,100,15.65,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816238,100,15.71,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816239,100,15.82,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816240,100,15.82,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816241,100,15.82,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816242,100,15.82,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816243,100,15.6,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816244,100,15.82,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816245,100,15.77,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816246,100,15.6,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816247,100,15.6,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816248,100,15.6,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816249,100,15.54,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816250,100,15.54,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816251,100,15.45,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816252,89,16.62,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816253,89,16.8,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816254,89,16.6,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816255,89,16.47,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816256,89,16.51,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816257,89,16.68,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816258,89,16.62,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816259,89,16.62,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816260,89,16.63,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816261,89,16.59,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816262,89,16.55,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816263,89,16.47,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816264,89,16.47,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816265,89,16.48,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816266,89,16.48,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816267,89,16.64,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816268,89,16.48,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816269,89,16.52,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816270,89,16.64,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816271,89,16.64,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816272,89,16.64,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816273,89,16.77,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816274,89,16.77,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816275,89,16.85,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816276,99,15.87,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816277,99,15.78,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816278,99,15.87,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816279,99,15.92,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816280,99,15.96,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816281,99,15.84,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816282,99,15.87,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816283,99,15.86,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816284,99,15.85,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816285,99,15.91,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816286,99,15.95,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816287,99,16.07,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816288,99,16.06,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816289,99,16.05,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816290,99,16.04,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816291,99,15.8,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816292,99,16.03,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816293,99,15.97,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816294,99,15.8,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816295,99,15.8,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816296,99,15.8,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816297,99,15.75,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816298,99,15.75,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816299,99,15.66,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816300,62,0.375,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816301,62,0.376,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816302,62,0.377,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816303,62,0.379,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816304,62,0.38,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816305,62,0.376,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816306,62,0.377,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816307,62,0.376,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816308,62,0.376,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816309,62,0.376,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816310,62,0.376,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816311,62,0.376,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816312,62,0.376,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816313,62,0.375,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816314,62,0.375,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816315,62,0.375,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816316,62,0.375,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816317,62,0.377,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816318,62,0.376,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816319,62,0.375,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816320,62,0.376,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816321,62,0.377,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816322,62,0.378,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816323,62,0.381,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816324,71,0.103,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816325,71,0.103,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816326,71,0.103,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816327,71,0.102,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816328,71,0.102,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816329,71,0.103,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816330,71,0.103,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816331,71,0.103,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816332,71,0.103,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816333,71,0.103,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816334,71,0.103,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816335,71,0.103,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816336,71,0.103,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816337,71,0.104,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816338,71,0.103,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816339,71,0.103,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816340,71,0.104,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816341,71,0.103,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816342,71,0.103,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816343,71,0.103,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816344,71,0.103,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816345,71,0.103,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816346,71,0.103,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816347,71,0.102,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816348,77,21.15,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816349,77,21.15,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816350,77,21.15,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816351,77,21.15,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816352,77,21.15,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816353,77,21.15,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816354,77,21.2,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816355,77,21.15,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816356,77,21.2,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816357,77,21.25,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816358,77,21.2,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816359,77,21.3,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816360,77,21.2,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816361,77,21.2,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816362,77,21.25,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816363,77,21.2,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816364,77,21.3,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816365,77,21.25,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816366,77,21.3,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816367,77,21.25,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816368,77,21.3,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816369,77,21.25,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816370,77,21.25,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816371,77,21.3,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816372,82,70.07,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816373,82,70.07,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816374,82,70.07,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816375,82,70.07,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816376,82,70.07,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816377,82,70.05,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816378,82,70.15,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816379,82,70.07,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816380,82,70.13,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816381,82,70.23,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816382,82,70.15,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816383,82,70.3,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816384,82,70.15,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816385,82,70.15,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816386,82,70.23,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816387,82,70.15,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816388,82,70.3,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816389,82,70.23,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816390,82,70.3,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816391,82,70.23,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816392,82,70.3,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816393,82,70.22,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816394,82,70.23,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816395,82,70.3,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816396,72,0.097,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816397,72,0.097,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816398,72,0.097,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816399,72,0.097,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816400,72,0.097,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816401,72,0.097,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816402,72,0.097,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816403,72,0.097,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816404,72,0.097,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816405,72,0.097,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816406,72,0.097,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816407,72,0.097,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816408,72,0.097,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816409,72,0.098,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816410,72,0.098,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816411,72,0.097,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816412,72,0.098,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816413,72,0.097,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816414,72,0.097,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816415,72,0.097,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816416,72,0.097,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816417,72,0.097,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816418,72,0.097,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816419,72,0.097,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816420,92,25.79,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816421,92,25.9,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816422,92,26.05,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816423,92,26.21,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816424,92,26.36,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816425,92,25.9,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816426,92,26.05,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816427,92,25.9,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816428,92,25.9,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816429,92,25.9,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816430,92,25.9,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816431,92,25.9,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816432,92,25.9,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816433,92,25.79,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816434,92,25.79,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816435,92,25.79,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816436,92,25.79,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816437,92,25.98,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816438,92,25.9,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816439,92,25.79,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816440,92,25.91,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816441,92,26.06,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816442,92,26.06,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816443,92,26.37,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816444,102,35.21,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816445,102,35.05,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816446,102,34.96,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816447,102,34.88,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816448,102,34.8,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816449,102,35.05,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816450,102,34.96,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816451,102,35.05,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816452,102,35.05,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816453,102,35.05,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816454,102,35.05,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816455,102,35.05,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816456,102,35.05,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816457,102,35.21,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816458,102,35.21,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816459,102,35.21,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816460,102,35.22,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816461,102,35.17,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816462,102,35.06,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816463,102,35.21,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816464,102,35.06,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816465,102,34.97,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816466,102,34.97,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816467,102,34.81,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816468,91,26.14,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816469,91,26.25,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816470,91,26.41,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816471,91,26.56,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816472,91,26.72,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816473,91,26.25,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816474,91,26.41,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816475,91,26.25,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816476,91,26.25,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816477,91,26.25,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816478,91,26.25,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816479,91,26.25,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816480,91,26.25,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816481,91,26.14,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816482,91,26.14,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816483,91,26.14,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816484,91,26.15,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816485,91,26.34,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816486,91,26.26,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816487,91,26.15,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816488,91,26.26,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816489,91,26.42,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816490,91,26.42,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816491,91,26.73,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13816492,101,37.24,'2011-08-21 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13816493,101,37.07,'2011-08-21 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13816494,101,36.99,'2011-08-21 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13816495,101,36.9,'2011-08-21 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13816496,101,36.81,'2011-08-21 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13816497,101,37.07,'2011-08-21 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13816498,101,36.99,'2011-08-21 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13816499,101,37.07,'2011-08-21 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13816500,101,37.08,'2011-08-21 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13816501,101,37.07,'2011-08-21 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13816502,101,37.07,'2011-08-22 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13816503,101,37.07,'2011-08-22 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13816504,101,37.07,'2011-08-22 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13816505,101,37.25,'2011-08-22 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13816506,101,37.24,'2011-08-22 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13816507,101,37.23,'2011-08-22 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13816508,101,37.21,'2011-08-22 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13816509,101,37.16,'2011-08-22 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13816510,101,37.04,'2011-08-22 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13816511,101,37.22,'2011-08-22 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13816512,101,37.04,'2011-08-22 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13816513,101,36.95,'2011-08-22 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13816514,101,36.95,'2011-08-22 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13816515,101,36.78,'2011-08-22 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822283,31,13.16,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822284,31,13.14,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822285,31,13.15,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822286,31,13.07,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822287,31,13.16,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822288,31,12.79,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822289,31,12.75,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822290,31,12.71,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822291,31,12.69,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822292,31,12.61,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822293,31,12.63,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822294,31,12.62,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822295,31,12.6,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822296,31,12.57,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822297,31,12.55,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822298,31,12.53,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822299,31,12.52,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822300,31,12.53,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822301,31,12.88,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822302,31,13.3,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822303,31,13.27,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822304,31,13.23,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822305,31,13.21,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822306,31,13.17,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822307,32,2.928,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822308,32,2.446,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822309,32,2.655,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822310,32,2.521,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822311,32,1.493,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822312,32,1.645,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822313,32,1.642,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822314,32,1.137,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822315,32,1.402,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822316,32,1.665,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822317,32,1.005,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822318,32,1.463,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822319,32,1.034,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822320,32,1.3,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822321,32,1.372,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822322,32,0.918,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822323,32,1.194,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822324,32,1.31,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822325,32,0.879,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822326,32,1.515,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822327,32,2.284,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822328,32,3.073,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822329,32,2.996,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822330,32,3.202,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822331,33,197.8,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822332,33,205.1,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822333,33,246.1,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822334,33,247.1,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822335,33,218.3,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822336,33,225.2,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822337,33,222.5,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822338,33,206.5,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822339,33,237.5,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822340,33,236.9,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822341,33,185.8,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822342,33,243.6,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822343,33,245,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822344,33,217.1,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822345,33,199.8,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822346,33,355.6,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822347,33,235.9,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822348,33,304.9,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822349,33,147.9,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822350,33,173.3,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822351,33,42.19,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822352,33,35.98,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822353,33,47,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822354,33,37.32,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822355,34,50.49,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822356,34,44.48,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822357,34,36.39,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822358,34,25.1,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822359,34,21.38,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822360,34,46.12,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822361,34,45.5,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822362,34,40.91,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822363,34,20.23,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822364,34,20.75,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822365,34,59.82,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822366,34,47.92,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822367,34,58.16,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822368,34,53.29,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822369,34,54.46,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822370,34,70.5,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822371,34,75.25,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822372,34,99,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822373,34,59.99,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822374,34,30.77,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822375,34,28.34,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822376,34,16.22,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822377,34,15.62,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822378,34,18.94,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822379,35,631.3,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13822380,35,630.9,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13822381,35,630.7,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13822382,35,630.4,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13822383,35,630.3,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13822384,35,630.3,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13822385,35,630.5,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13822386,35,630.7,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13822387,35,630.6,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13822388,35,630.6,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13822389,35,630.6,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13822390,35,630.6,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13822391,35,630.6,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13822392,35,630.7,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13822393,35,630.7,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13822394,35,630.9,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13822395,35,631.4,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13822396,35,632.3,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13822397,35,632.1,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13822398,35,632.3,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13822399,35,632.4,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13822400,35,632.4,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13822401,35,632.2,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13822402,35,632,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13822403,30,0,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822404,30,0,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822405,30,0,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822406,30,0,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822407,30,0,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822408,30,0,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822409,30,0,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822410,30,0,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822411,30,0,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822412,30,0,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822413,30,0,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822414,30,0,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822415,30,0,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822416,30,0,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822417,30,0,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822418,30,0,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822419,30,0,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822420,30,0,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822421,30,0,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822422,30,0,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822423,30,0,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822424,30,0,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822425,30,0,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822426,30,0,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822427,28,31.53,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822428,28,31.7,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822429,28,30.92,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822430,28,30.62,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822431,28,29.75,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822432,28,25.66,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822433,28,21.63,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822434,28,19.34,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822435,28,18.64,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822436,28,18.86,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822437,28,18.75,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822438,28,17.95,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822439,28,17.77,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822440,28,18.79,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822441,28,18.76,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822442,28,18.71,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822443,28,17.74,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822444,28,17.39,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822445,28,20.29,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822446,28,24.48,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822447,28,25.09,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822448,28,27.05,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822449,28,28.87,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822450,28,30.58,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822451,29,14.74,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822452,29,15.01,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822453,29,15.63,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822454,29,16.97,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822455,29,24.12,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822456,29,33.23,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822457,29,40.45,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822458,29,34.85,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822459,29,35.53,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822460,29,35.74,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822461,29,36.17,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822462,29,41.02,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822463,29,37.46,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822464,29,35.85,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822465,29,37.64,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822466,29,37.07,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822467,29,40.34,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822468,29,41.09,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822469,29,33.91,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822470,29,31.98,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822471,29,32.54,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822472,29,29.04,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822473,29,20.88,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822474,29,15.71,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822475,36,1032,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822476,36,861,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822477,36,531.7,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822478,36,449.2,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822479,36,261.5,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822480,36,82,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822481,36,4.769,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822482,36,0,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822483,36,0,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822484,36,0,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822485,36,0,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822486,36,0,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822487,36,0,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822488,36,0,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822489,36,0,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822490,36,0,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822491,36,3.646,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822492,36,114.1,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822493,36,332.6,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822494,36,531,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822495,36,615.9,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822496,36,939,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822497,36,1031,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822498,36,1061,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822499,46,1.473,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822500,46,1.579,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822501,46,1.412,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822502,46,1.498,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822503,46,1.471,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822504,46,1.45,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822505,46,1.432,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822506,46,1.433,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822507,46,1.465,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822508,46,1.579,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822509,46,1.431,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822510,46,1.437,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822511,46,1.471,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822512,46,1.455,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822513,46,1.457,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822514,46,1.516,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822515,46,1.439,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822516,46,1.605,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822517,46,1.542,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822518,46,1.591,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822519,46,1.532,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822520,46,1.494,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822521,46,1.254,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822522,46,1.537,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822523,47,1.555,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822524,47,1.668,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822525,47,1.489,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822526,47,1.58,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822527,47,1.549,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822528,47,1.517,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822529,47,1.488,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822530,47,1.483,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822531,47,1.514,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822532,47,1.632,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822533,47,1.479,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822534,47,1.484,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822535,47,1.518,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822536,47,1.504,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822537,47,1.506,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822538,47,1.567,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822539,47,1.485,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822540,47,1.655,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822541,47,1.598,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822542,47,1.661,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822543,47,1.6,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822544,47,1.567,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822545,47,1.318,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822546,47,1.621,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822547,48,0.215,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13822548,48,0.102,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13822549,48,0.281,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13822550,48,0.19,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13822551,48,0.221,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13822552,48,0.253,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13822553,48,0.282,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13822554,48,0.287,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13822555,48,0.256,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13822556,48,0.138,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13822557,48,0.291,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13822558,48,0.286,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13822559,48,0.252,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13822560,48,0.266,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13822561,48,0.264,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13822562,48,0.203,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13822563,48,0.285,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13822564,48,0.115,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13822565,48,0.172,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13822566,48,0.109,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13822567,48,0.17,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13822568,48,0.203,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13822569,48,0.452,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13822570,48,0.149,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13822571,41,23.73,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822572,40,32.41,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822573,39,14.59,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822574,37,12.51,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822575,43,631.1,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822576,44,0,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822577,42,31.27,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822578,45,28.1253,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822579,38,2.16,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822580,51,0,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822581,53,1.877,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822582,49,1.471,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822583,52,0,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822584,54,1.961,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822585,50,1.533,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822586,56,-0.191,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822587,57,1.77,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13822588,55,0.237,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13825829,58,0.157,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825830,58,0.157,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825831,58,0.155,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825832,58,0.155,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825833,58,0.151,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825834,58,0.152,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825835,58,0.149,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825836,58,0.147,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825837,58,0.144,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825838,58,0.144,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825839,58,0.145,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825840,58,0.141,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825841,58,0.142,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825842,58,0.14,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825843,58,0.137,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825844,58,0.137,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825845,58,0.138,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825846,58,0.138,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825847,58,0.138,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825848,58,0.139,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825849,58,0.142,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825850,58,0.144,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825851,58,0.145,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825852,58,0.15,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825853,63,0.016,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825854,63,0.016,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825855,63,0.016,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825856,63,0.015,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825857,63,0.015,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825858,63,0.015,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825859,63,0.015,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825860,63,0.015,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825861,63,0.015,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825862,63,0.015,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825863,63,0.015,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825864,63,0.015,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825865,63,0.015,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825866,63,0.015,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825867,63,0.015,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825868,63,0.015,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825869,63,0.015,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825870,63,0.015,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825871,63,0.015,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825872,63,0.015,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825873,63,0.015,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825874,63,0.015,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825875,63,0.015,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825876,63,0.015,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825877,73,30.35,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825878,73,31.18,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825879,73,31.32,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825880,73,30.82,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825881,73,30.25,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825882,73,29.5,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825883,73,28.45,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825884,73,27.35,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825885,73,26.42,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825886,73,25.57,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825887,73,24.95,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825888,73,24.42,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825889,73,23.8,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825890,73,23.5,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825891,73,23.07,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825892,73,22.85,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825893,73,22.65,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825894,73,22.25,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825895,73,22.3,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825896,73,23.1,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825897,73,24.3,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825898,73,25.38,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825899,73,26.88,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825900,73,28.6,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825901,78,86.6,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825902,78,88.1,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825903,78,88.3,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825904,78,87.5,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825905,78,86.5,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825906,78,85.1,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825907,78,83.2,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825908,78,81.2,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825909,78,79.52,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825910,78,78.05,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825911,78,76.95,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825912,78,75.92,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825913,78,74.9,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825914,78,74.3,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825915,78,73.52,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825916,78,73.1,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825917,78,72.7,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825918,78,72.1,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825919,78,72.18,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825920,78,73.56,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825921,78,75.73,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825922,78,77.73,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825923,78,80.4,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825924,78,83.5,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825925,64,0.017,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825926,64,0.017,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825927,64,0.017,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825928,64,0.017,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825929,64,0.017,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825930,64,0.016,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825931,64,0.016,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825932,64,0.016,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825933,64,0.015,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825934,64,0.015,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825935,64,0.015,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825936,64,0.015,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825937,64,0.015,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825938,64,0.015,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825939,64,0.015,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825940,64,0.015,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825941,64,0.015,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825942,64,0.015,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825943,64,0.015,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825944,64,0.015,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825945,64,0.015,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825946,64,0.016,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825947,64,0.016,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825948,64,0.016,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825949,84,9.49,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825950,84,9.5,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825951,84,9.41,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825952,84,9.41,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825953,84,9.16,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825954,84,9.25,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825955,84,9.05,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825956,84,8.94,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825957,84,8.81,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825958,84,8.75,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825959,84,8.84,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825960,84,8.63,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825961,84,8.69,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825962,84,8.53,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825963,84,8.43,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825964,84,8.39,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825965,84,8.5,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825966,84,8.47,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825967,84,8.49,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825968,84,8.51,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825969,84,8.69,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825970,84,8.79,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825971,84,8.82,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825972,84,9.09,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825973,94,6.128,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825974,94,6.185,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825975,94,6.201,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13825976,94,6.044,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13825977,94,6.048,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13825978,94,5.821,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13825979,94,5.777,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13825980,94,5.653,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13825981,94,5.576,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13825982,94,5.509,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13825983,94,5.36,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13825984,94,5.386,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13825985,94,5.313,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13825986,94,5.33,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13825987,94,5.33,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13825988,94,5.337,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13825989,94,5.257,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13825990,94,5.22,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13825991,94,5.241,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13825992,94,5.374,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13825993,94,5.457,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13825994,94,5.552,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13825995,94,5.747,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13825996,94,5.819,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13825997,83,9.83,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13825998,83,9.85,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13825999,83,9.76,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826000,83,9.76,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826001,83,9.48,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826002,83,9.55,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826003,83,9.33,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826004,83,9.18,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826005,83,9.04,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826006,83,8.95,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826007,83,9.04,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826008,83,8.81,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826009,83,8.86,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826010,83,8.69,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826011,83,8.58,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826012,83,8.54,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826013,83,8.64,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826014,83,8.61,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826015,83,8.63,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826016,83,8.67,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826017,83,8.87,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826018,83,8.99,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826019,83,9.07,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826020,83,9.38,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826021,93,5.669,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826022,93,5.665,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826023,93,5.675,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826024,93,5.568,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826025,93,5.619,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826026,93,5.469,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826027,93,5.505,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826028,93,5.473,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826029,93,5.475,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826030,93,5.473,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826031,93,5.375,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826032,93,5.442,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826033,93,5.413,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826034,93,5.463,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826035,93,5.493,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826036,93,5.519,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826037,93,5.457,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826038,93,5.443,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826039,93,5.455,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826040,93,5.527,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826041,93,5.512,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826042,93,5.511,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826043,93,5.581,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826044,93,5.518,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826045,59,0.278,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826046,59,0.28,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826047,59,0.281,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826048,59,0.282,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826049,59,0.283,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826050,59,0.28,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826051,59,0.281,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826052,59,0.28,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826053,59,0.279,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826054,59,0.277,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826055,59,0.276,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826056,59,0.273,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826057,59,0.272,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826058,59,0.271,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826059,59,0.272,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826060,59,0.271,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826061,59,0.27,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826062,59,0.268,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826063,59,0.266,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826064,59,0.267,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826065,59,0.266,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826066,59,0.27,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826067,59,0.273,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826068,59,0.274,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826069,65,0.036,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826070,65,0.036,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826071,65,0.036,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826072,65,0.035,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826073,65,0.035,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826074,65,0.035,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826075,65,0.036,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826076,65,0.035,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826077,65,0.035,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826078,65,0.035,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826079,65,0.035,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826080,65,0.035,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826081,65,0.035,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826082,65,0.035,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826083,65,0.035,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826084,65,0.035,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826085,65,0.035,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826086,65,0.035,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826087,65,0.035,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826088,65,0.035,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826089,65,0.035,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826090,65,0.035,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826091,65,0.035,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826092,65,0.035,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826093,74,27.35,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826094,74,28.3,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826095,74,28.9,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826096,74,28.9,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826097,74,28.9,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826098,74,28.75,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826099,74,28.22,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826100,74,27.77,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826101,74,27.2,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826102,74,26.55,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826103,74,25.9,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826104,74,25.42,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826105,74,24.9,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826106,74,24.6,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826107,74,24.22,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826108,74,23.85,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826109,74,23.55,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826110,74,23.35,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826111,74,23,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826112,74,23,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826113,74,23.5,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826114,74,23.98,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826115,74,24.98,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826116,74,26.2,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826117,79,81.3,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826118,79,83,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826119,79,84,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826120,79,84,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826121,79,84,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826122,79,83.7,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826123,79,82.9,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826124,79,82,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826125,79,81,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826126,79,79.75,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826127,79,78.62,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826128,79,77.85,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826129,79,76.82,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826130,79,76.25,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826131,79,75.6,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826132,79,75,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826133,79,74.4,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826134,79,74,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826135,79,73.4,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826136,79,73.4,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826137,79,74.3,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826138,79,75.2,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826139,79,76.96,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826140,79,79.21,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826141,66,0.037,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826142,66,0.037,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826143,66,0.037,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826144,66,0.037,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826145,66,0.037,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826146,66,0.037,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826147,66,0.037,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826148,66,0.037,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826149,66,0.036,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826150,66,0.036,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826151,66,0.036,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826152,66,0.035,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826153,66,0.035,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826154,66,0.035,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826155,66,0.034,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826156,66,0.034,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826157,66,0.034,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826158,66,0.034,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826159,66,0.034,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826160,66,0.034,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826161,66,0.034,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826162,66,0.034,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826163,66,0.035,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826164,66,0.035,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826165,86,17.59,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826166,86,17.69,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826167,86,17.81,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826168,86,17.89,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826169,86,18,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826170,86,17.73,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826171,86,17.79,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826172,86,17.73,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826173,86,17.66,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826174,86,17.48,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826175,86,17.41,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826176,86,17.19,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826177,86,17.17,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826178,86,17.1,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826179,86,17.1,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826180,86,17.04,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826181,86,16.92,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826182,86,16.85,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826183,86,16.63,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826184,86,16.72,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826185,86,16.65,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826186,86,16.97,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826187,86,17.15,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826188,86,17.26,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826189,96,13.21,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826190,96,13.49,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826191,96,13.51,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826192,96,13.5,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826193,96,13.45,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826194,96,13.52,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826195,96,13.43,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826196,96,13.31,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826197,96,13.11,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826198,96,13.04,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826199,96,12.84,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826200,96,12.8,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826201,96,12.66,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826202,96,12.52,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826203,96,12.4,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826204,96,12.28,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826205,96,12.24,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826206,96,12.2,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826207,96,12.21,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826208,96,12.16,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826209,96,12.3,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826210,96,12.23,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826211,96,12.44,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826212,96,12.72,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826213,85,18.08,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826214,85,18.22,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826215,85,18.37,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826216,85,18.46,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826217,85,18.57,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826218,85,18.29,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826219,85,18.33,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826220,85,18.25,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826221,85,18.15,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826222,85,17.95,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826223,85,17.85,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826224,85,17.61,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826225,85,17.57,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826226,85,17.48,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826227,85,17.47,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826228,85,17.39,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826229,85,17.26,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826230,85,17.18,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826231,85,16.94,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826232,85,17.03,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826233,85,16.97,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826234,85,17.32,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826235,85,17.54,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826236,85,17.69,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826237,95,12.82,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826238,95,12.91,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826239,95,12.82,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826240,95,12.79,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826241,95,12.74,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826242,95,12.84,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826243,95,12.81,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826244,95,12.78,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826245,95,12.68,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826246,95,12.71,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826247,95,12.62,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826248,95,12.66,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826249,95,12.6,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826250,95,12.54,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826251,95,12.49,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826252,95,12.43,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826253,95,12.45,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826254,95,12.44,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826255,95,12.5,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826256,95,12.46,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826257,95,12.55,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826258,95,12.38,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826259,95,12.44,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826260,95,12.51,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826261,60,0.363,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826262,60,0.368,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826263,60,0.367,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826264,60,0.366,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826265,60,0.367,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826266,60,0.366,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826267,60,0.367,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826268,60,0.369,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826269,60,0.368,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826270,60,0.367,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826271,60,0.373,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826272,60,0.374,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826273,60,0.366,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826274,60,0.368,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826275,60,0.366,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826276,60,0.364,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826277,60,0.362,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826278,60,0.367,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826279,60,0.367,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826280,60,0.363,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826281,60,0.363,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826282,60,0.364,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826283,60,0.366,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826284,60,0.367,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826285,67,0.082,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826286,67,0.081,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826287,67,0.082,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826288,67,0.082,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826289,67,0.082,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826290,67,0.082,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826291,67,0.082,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826292,67,0.082,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826293,67,0.082,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826294,67,0.083,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826295,67,0.082,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826296,67,0.081,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826297,67,0.083,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826298,67,0.082,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826299,67,0.082,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826300,67,0.082,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826301,67,0.083,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826302,67,0.082,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826303,67,0.082,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826304,67,0.083,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826305,67,0.082,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826306,67,0.082,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826307,67,0.081,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826308,67,0.081,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826309,75,24.2,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826310,75,24.35,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826311,75,24.55,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826312,75,24.8,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826313,75,24.95,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826314,75,25.18,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826315,75,25.33,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826316,75,25.4,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826317,75,25.45,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826318,75,25.5,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826319,75,25.45,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826320,75,25.4,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826321,75,25.4,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826322,75,25.4,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826323,75,25.18,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826324,75,25.05,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826325,75,24.9,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826326,75,24.9,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826327,75,24.75,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826328,75,24.62,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826329,75,24.47,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826330,75,24.4,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826331,75,24.25,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826332,75,24.2,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826333,80,75.5,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826334,80,75.8,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826335,80,76.15,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826336,80,76.6,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826337,80,76.93,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826338,80,77.4,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826339,80,77.6,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826340,80,77.7,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826341,80,77.82,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826342,80,77.95,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826343,80,77.82,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826344,80,77.7,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826345,80,77.7,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826346,80,77.7,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826347,80,77.4,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826348,80,77.17,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826349,80,76.8,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826350,80,76.8,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826351,80,76.5,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826352,80,76.27,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826353,80,76.03,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826354,80,75.9,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826355,80,75.6,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826356,80,75.5,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826357,68,0.082,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826358,68,0.08,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826359,68,0.081,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826360,68,0.082,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826361,68,0.082,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826362,68,0.082,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826363,68,0.083,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826364,68,0.083,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826365,68,0.083,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826366,68,0.084,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826367,68,0.082,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826368,68,0.082,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826369,68,0.083,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826370,68,0.082,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826371,68,0.082,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826372,68,0.082,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826373,68,0.083,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826374,68,0.082,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826375,68,0.082,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826376,68,0.082,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826377,68,0.082,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826378,68,0.081,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826379,68,0.081,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826380,68,0.081,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826381,88,24.75,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826382,88,25.2,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826383,88,25.12,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826384,88,25.02,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826385,88,25.1,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826386,88,24.99,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826387,88,25.16,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826388,88,25.27,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826389,88,25.22,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826390,88,25.11,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826391,88,25.65,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826392,88,25.72,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826393,88,25.04,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826394,88,25.26,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826395,88,25.01,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826396,88,24.86,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826397,88,24.63,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826398,88,25.02,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826399,88,25.08,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826400,88,24.69,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826401,88,24.69,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826402,88,24.8,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826403,88,25.04,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826404,88,25.09,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826405,98,29.16,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826406,98,28.85,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826407,98,29.21,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826408,98,29.47,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826409,98,29.55,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826410,98,29.63,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826411,98,29.82,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826412,98,29.74,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826413,98,29.9,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826414,98,30,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826415,98,29.54,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826416,98,29.41,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826417,98,29.89,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826418,98,29.72,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826419,98,29.66,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826420,98,29.69,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826421,98,29.87,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826422,98,29.47,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826423,98,29.34,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826424,98,29.53,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826425,98,29.31,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826426,98,29.23,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826427,98,28.88,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826428,98,28.94,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826429,87,25.26,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826430,87,25.73,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826431,87,25.66,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826432,87,25.57,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826433,87,25.66,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826434,87,25.56,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826435,87,25.74,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826436,87,25.87,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826437,87,25.82,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826438,87,25.71,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826439,87,26.26,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826440,87,26.33,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826441,87,25.63,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826442,87,25.84,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826443,87,25.59,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826444,87,25.42,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826445,87,25.19,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826446,87,25.57,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826447,87,25.63,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826448,87,25.22,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826449,87,25.21,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826450,87,25.32,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826451,87,25.56,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826452,87,25.62,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826453,97,29.5,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826454,97,29.12,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826455,97,29.4,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826456,97,29.56,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826457,97,29.54,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826458,97,29.54,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826459,97,29.66,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826460,97,29.52,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826461,97,29.66,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826462,97,29.76,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826463,97,29.31,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826464,97,29.2,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826465,97,29.71,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826466,97,29.57,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826467,97,29.58,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826468,97,29.64,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826469,97,29.88,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826470,97,29.54,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826471,97,29.47,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826472,97,29.71,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826473,97,29.53,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826474,97,29.5,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826475,97,29.19,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826476,97,29.24,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826477,61,0.261,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826478,61,0.262,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826479,61,0.261,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826480,61,0.261,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826481,61,0.26,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826482,61,0.26,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826483,61,0.26,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826484,61,0.26,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826485,61,0.26,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826486,61,0.262,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826487,61,0.261,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826488,61,0.261,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826489,61,0.261,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826490,61,0.261,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826491,61,0.261,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826492,61,0.261,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826493,61,0.261,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826494,61,0.261,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826495,61,0.261,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826496,61,0.261,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826497,61,0.261,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826498,61,0.262,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826499,61,0.26,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826500,61,0.261,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826501,69,0.044,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826502,69,0.044,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826503,69,0.044,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826504,69,0.044,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826505,69,0.044,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826506,69,0.044,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826507,69,0.044,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826508,69,0.044,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826509,69,0.044,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826510,69,0.044,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826511,69,0.044,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826512,69,0.044,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826513,69,0.044,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826514,69,0.044,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826515,69,0.044,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826516,69,0.044,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826517,69,0.044,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826518,69,0.044,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826519,69,0.044,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826520,69,0.044,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826521,69,0.044,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826522,69,0.044,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826523,69,0.044,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826524,69,0.044,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826525,76,23.8,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826526,76,23.7,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826527,76,23.7,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826528,76,23.7,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826529,76,23.7,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826530,76,23.7,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826531,76,23.7,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826532,76,23.7,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826533,76,23.8,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826534,76,23.85,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826535,76,23.9,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826536,76,23.9,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826537,76,23.9,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826538,76,23.97,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826539,76,23.9,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826540,76,24,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826541,76,24.05,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826542,76,24.13,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826543,76,24.13,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826544,76,24.12,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826545,76,24.13,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826546,76,24.05,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826547,76,23.97,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826548,76,23.9,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826549,81,74.9,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826550,81,74.7,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826551,81,74.7,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826552,81,74.7,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826553,81,74.7,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826554,81,74.7,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826555,81,74.7,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826556,81,74.7,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826557,81,74.9,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826558,81,75,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826559,81,75.1,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826560,81,75.1,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826561,81,75.1,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826562,81,75.2,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826563,81,75.1,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826564,81,75.2,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826565,81,75.3,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826566,81,75.4,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826567,81,75.4,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826568,81,75.4,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826569,81,75.4,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826570,81,75.3,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826571,81,75.2,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826572,81,75.1,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826573,70,0.043,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826574,70,0.043,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826575,70,0.043,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826576,70,0.043,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826577,70,0.043,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826578,70,0.043,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826579,70,0.043,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826580,70,0.043,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826581,70,0.043,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826582,70,0.043,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826583,70,0.043,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826584,70,0.043,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826585,70,0.043,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826586,70,0.043,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826587,70,0.043,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826588,70,0.043,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826589,70,0.043,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826590,70,0.043,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826591,70,0.043,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826592,70,0.043,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826593,70,0.043,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826594,70,0.043,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826595,70,0.043,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826596,70,0.043,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826597,90,16.26,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826598,90,16.3,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826599,90,16.26,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826600,90,16.26,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826601,90,16.26,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826602,90,16.26,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826603,90,16.2,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826604,90,16.2,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826605,90,16.26,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826606,90,16.37,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826607,90,16.31,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826608,90,16.31,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826609,90,16.31,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826610,90,16.31,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826611,90,16.31,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826612,90,16.31,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826613,90,16.32,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826614,90,16.32,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826615,90,16.32,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826616,90,16.32,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826617,90,16.32,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826618,90,16.37,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826619,90,16.2,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826620,90,16.26,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826621,100,15.56,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826622,100,15.5,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826623,100,15.56,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826624,100,15.56,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826625,100,15.56,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826626,100,15.56,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826627,100,15.58,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826628,100,15.59,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826629,100,15.64,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826630,100,15.57,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826631,100,15.6,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826632,100,15.6,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826633,100,15.6,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826634,100,15.6,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826635,100,15.6,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826636,100,15.6,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826637,100,15.6,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826638,100,15.6,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826639,100,15.6,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826640,100,15.6,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826641,100,15.6,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826642,100,15.57,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826643,100,15.69,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826644,100,15.56,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826645,89,16.59,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826646,89,16.63,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826647,89,16.59,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826648,89,16.59,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826649,89,16.58,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826650,89,16.58,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826651,89,16.52,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826652,89,16.53,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826653,89,16.59,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826654,89,16.7,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826655,89,16.64,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826656,89,16.64,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826657,89,16.65,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826658,89,16.65,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826659,89,16.65,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826660,89,16.65,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826661,89,16.66,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826662,89,16.66,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826663,89,16.66,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826664,89,16.66,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826665,89,16.66,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826666,89,16.71,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826667,89,16.53,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826668,89,16.6,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826669,99,15.78,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826670,99,15.72,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826671,99,15.78,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826672,99,15.79,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826673,99,15.79,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826674,99,15.79,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826675,99,15.82,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826676,99,15.81,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826677,99,15.87,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826678,99,15.78,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826679,99,15.8,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826680,99,15.8,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826681,99,15.78,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826682,99,15.78,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826683,99,15.78,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826684,99,15.78,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826685,99,15.77,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826686,99,15.77,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826687,99,15.77,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826688,99,15.77,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826689,99,15.77,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826690,99,15.74,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826691,99,15.86,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826692,99,15.74,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826693,62,0.382,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826694,62,0.382,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826695,62,0.382,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826696,62,0.382,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826697,62,0.382,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826698,62,0.382,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826699,62,0.382,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826700,62,0.381,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826701,62,0.38,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826702,62,0.377,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826703,62,0.378,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826704,62,0.377,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826705,62,0.377,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826706,62,0.376,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826707,62,0.376,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826708,62,0.375,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826709,62,0.376,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826710,62,0.376,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826711,62,0.375,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826712,62,0.376,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826713,62,0.379,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826714,62,0.377,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826715,62,0.381,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826716,62,0.382,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826717,71,0.102,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826718,71,0.102,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826719,71,0.102,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826720,71,0.102,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826721,71,0.102,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826722,71,0.102,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826723,71,0.102,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826724,71,0.102,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826725,71,0.102,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826726,71,0.103,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826727,71,0.103,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826728,71,0.103,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826729,71,0.103,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826730,71,0.103,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826731,71,0.103,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826732,71,0.103,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826733,71,0.103,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826734,71,0.103,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826735,71,0.103,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826736,71,0.103,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826737,71,0.102,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826738,71,0.103,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826739,71,0.102,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826740,71,0.102,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826741,77,21.3,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826742,77,21.25,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826743,77,21.15,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826744,77,21.3,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826745,77,21.2,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826746,77,21.3,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826747,77,21.3,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826748,77,21.2,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826749,77,21.3,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826750,77,21.3,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826751,77,21.3,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826752,77,21.3,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826753,77,21.3,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826754,77,21.3,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826755,77,21.3,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826756,77,21.25,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826757,77,21.3,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826758,77,21.25,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826759,77,21.25,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826760,77,21.3,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826761,77,21.3,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826762,77,21.25,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826763,77,21.15,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826764,77,21.3,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826765,82,70.3,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826766,82,70.22,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826767,82,70.08,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826768,82,70.3,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826769,82,70.15,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826770,82,70.3,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826771,82,70.3,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826772,82,70.15,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826773,82,70.3,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826774,82,70.3,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826775,82,70.3,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826776,82,70.3,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826777,82,70.3,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826778,82,70.3,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826779,82,70.3,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826780,82,70.23,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826781,82,70.3,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826782,82,70.23,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826783,82,70.23,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826784,82,70.3,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826785,82,70.3,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826786,82,70.23,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826787,82,70.08,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826788,82,70.3,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826789,72,0.097,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826790,72,0.097,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826791,72,0.097,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826792,72,0.097,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826793,72,0.097,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826794,72,0.097,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826795,72,0.097,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826796,72,0.097,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826797,72,0.097,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826798,72,0.097,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826799,72,0.097,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826800,72,0.097,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826801,72,0.097,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826802,72,0.097,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826803,72,0.097,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826804,72,0.098,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826805,72,0.097,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826806,72,0.097,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826807,72,0.098,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826808,72,0.097,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826809,72,0.097,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826810,72,0.097,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826811,72,0.097,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826812,72,0.097,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826813,92,26.52,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826814,92,26.52,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826815,92,26.52,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826816,92,26.52,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826817,92,26.52,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826818,92,26.52,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826819,92,26.52,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826820,92,26.37,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826821,92,26.36,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826822,92,26.06,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826823,92,26.06,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826824,92,26.06,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826825,92,26.06,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826826,92,25.91,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826827,92,25.91,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826828,92,25.8,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826829,92,25.91,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826830,92,25.91,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826831,92,25.8,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826832,92,25.91,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826833,92,26.22,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826834,92,26.07,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826835,92,26.37,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826836,92,26.53,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826837,102,34.72,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826838,102,34.72,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826839,102,34.72,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826840,102,34.72,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826841,102,34.72,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826842,102,34.72,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826843,102,34.72,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826844,102,34.81,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826845,102,34.81,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826846,102,34.97,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826847,102,34.97,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826848,102,34.97,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826849,102,34.98,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826850,102,35.06,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826851,102,35.06,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826852,102,35.22,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826853,102,35.06,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826854,102,35.06,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826855,102,35.22,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826856,102,35.06,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826857,102,34.9,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826858,102,34.98,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826859,102,34.81,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826860,102,34.73,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826861,91,26.89,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826862,91,26.89,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826863,91,26.89,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826864,91,26.89,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826865,91,26.89,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826866,91,26.89,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826867,91,26.89,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826868,91,26.73,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826869,91,26.73,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826870,91,26.42,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826871,91,26.42,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826872,91,26.42,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826873,91,26.42,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826874,91,26.27,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826875,91,26.27,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826876,91,26.16,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826877,91,26.27,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826878,91,26.27,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826879,91,26.16,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826880,91,26.27,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826881,91,26.59,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826882,91,26.43,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826883,91,26.74,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826884,91,26.9,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13826885,101,36.69,'2011-08-22 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13826886,101,36.69,'2011-08-22 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13826887,101,36.69,'2011-08-22 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13826888,101,36.69,'2011-08-22 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13826889,101,36.69,'2011-08-22 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13826890,101,36.69,'2011-08-22 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13826891,101,36.69,'2011-08-22 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13826892,101,36.78,'2011-08-22 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13826893,101,36.78,'2011-08-22 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13826894,101,36.95,'2011-08-22 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13826895,101,36.95,'2011-08-23 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13826896,101,36.95,'2011-08-23 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13826897,101,36.94,'2011-08-23 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13826898,101,37.03,'2011-08-23 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13826899,101,37.02,'2011-08-23 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13826900,101,37.18,'2011-08-23 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13826901,101,37.01,'2011-08-23 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13826902,101,37.01,'2011-08-23 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13826903,101,37.18,'2011-08-23 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13826904,101,37.01,'2011-08-23 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13826905,101,36.83,'2011-08-23 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13826906,101,36.92,'2011-08-23 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13826907,101,36.74,'2011-08-23 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13826908,101,36.66,'2011-08-23 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832648,31,13.16,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832649,31,13.15,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832650,31,13.14,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832651,31,13.13,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832652,31,13.13,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832653,31,12.82,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832654,31,12.76,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832655,31,12.71,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832656,31,12.68,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832657,31,12.66,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832658,31,12.62,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832659,31,12.6,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832660,31,12.57,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832661,31,12.54,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832662,31,12.51,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832663,31,12.51,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832664,31,12.48,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832665,31,12.51,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832666,31,12.76,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832667,31,13.29,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832668,31,13.25,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832669,31,13.22,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832670,31,13.2,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832671,31,13.17,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832672,32,3.522,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832673,32,3.546,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832674,32,3.004,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832675,32,1.753,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832676,32,1.359,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832677,32,2.545,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832678,32,1.897,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832679,32,2.093,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832680,32,2.434,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832681,32,1.579,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832682,32,1.534,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832683,32,1.337,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832684,32,1.048,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832685,32,1.454,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832686,32,0.776,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832687,32,0.834,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832688,32,1.364,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832689,32,1.503,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832690,32,3.177,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832691,32,4.05,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832692,32,4.712,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832693,32,4.804,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832694,32,3.845,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832695,32,4.02,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832696,33,33.98,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832697,33,21.2,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832698,33,27.8,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832699,33,42.7,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832700,33,322.8,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832701,33,243,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832702,33,219.2,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832703,33,224.8,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832704,33,221.6,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832705,33,211.5,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832706,33,199.3,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832707,33,216.9,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832708,33,204.2,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832709,33,234.6,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832710,33,272.2,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832711,33,247.6,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832712,33,211.6,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832713,33,2.82,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832714,33,174.7,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832715,33,184.5,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832716,33,194.2,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832717,33,189.3,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832718,33,76,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832719,33,34.16,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832720,34,16.7,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832721,34,24.03,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832722,34,24.66,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832723,34,58.82,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832724,34,32.01,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832725,34,40.97,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832726,34,17.82,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832727,34,14.89,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832728,34,13.19,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832729,34,18.16,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832730,34,26.64,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832731,34,38.64,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832732,34,41.79,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832733,34,32.81,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832734,34,65.32,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832735,34,75.11,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832736,34,52.94,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832737,34,59.73,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832738,34,67.85,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832739,34,17.94,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832740,34,15.47,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832741,34,14.56,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832742,34,80.4,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832743,34,17.6,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832744,35,631.6,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13832745,35,631.3,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13832746,35,631.1,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13832747,35,631,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13832748,35,630.9,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13832749,35,631,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13832750,35,631.4,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13832751,35,631.8,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13832752,35,631.8,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13832753,35,632,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13832754,35,632.2,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13832755,35,632,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13832756,35,631.8,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13832757,35,631.8,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13832758,35,631.8,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13832759,35,631.9,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13832760,35,632.2,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13832761,35,632.4,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13832762,35,632.4,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13832763,35,632.4,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13832764,35,632.4,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13832765,35,632.2,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13832766,35,632,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13832767,35,631.9,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13832768,30,0,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832769,30,0,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832770,30,0,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832771,30,0,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832772,30,0,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832773,30,0,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832774,30,0,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832775,30,0,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832776,30,0,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832777,30,0,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832778,30,0,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832779,30,0,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832780,30,0,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832781,30,0,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832782,30,0,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832783,30,0,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832784,30,0,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832785,30,0,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832786,30,0,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832787,30,0,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832788,30,0,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832789,30,0,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832790,30,0,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832791,30,0,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832792,28,31,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832793,28,31.29,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832794,28,31.21,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832795,28,31.07,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832796,28,29.95,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832797,28,26.07,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832798,28,21.29,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832799,28,19.6,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832800,28,18.76,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832801,28,17.81,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832802,28,16.83,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832803,28,15.97,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832804,28,15.86,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832805,28,16.77,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832806,28,16.34,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832807,28,16,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832808,28,16.84,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832809,28,18.86,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832810,28,22.37,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832811,28,24.92,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832812,28,26.84,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832813,28,28.69,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832814,28,29.66,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832815,28,28.54,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832816,29,16.3,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832817,29,15.71,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832818,29,20.54,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832819,29,16.76,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832820,29,17.45,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832821,29,33.7,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832822,29,35.3,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832823,29,37.09,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832824,29,36.9,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832825,29,38.26,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832826,29,43.78,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832827,29,43.42,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832828,29,43.45,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832829,29,40.86,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832830,29,46.3,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832831,29,42.73,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832832,29,42.3,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832833,29,38.71,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832834,29,26.28,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832835,29,26.17,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832836,29,23.95,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832837,29,22.78,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832838,29,34.83,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832839,29,30.91,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832840,36,1013,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832841,36,905,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832842,36,738.2,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832843,36,531.2,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832844,36,298.4,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832845,36,52.09,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832846,36,2.541,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832847,36,0,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832848,36,0,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832849,36,0,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832850,36,0,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832851,36,0,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832852,36,0,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832853,36,0,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832854,36,0,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832855,36,0,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832856,36,3.314,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832857,36,107.2,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832858,36,338.8,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832859,36,567.3,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832860,36,770.5,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832861,36,926,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832862,36,1021,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832863,36,1051,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832864,46,1.48,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832865,46,1.355,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832866,46,1.348,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832867,46,1.601,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832868,46,1.376,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832869,46,1.446,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832870,46,1.446,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832871,46,1.426,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832872,46,1.501,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832873,46,1.431,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832874,46,1.431,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832875,46,1.438,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832876,46,1.5,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832877,46,1.408,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832878,46,1.439,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832879,46,1.412,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832880,46,1.41,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832881,46,1.539,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832882,46,1.409,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832883,46,1.339,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832884,46,1.385,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832885,46,1.336,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832886,46,1.066,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832887,46,1.28,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832888,47,1.562,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832889,47,1.43,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832890,47,1.423,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832891,47,1.69,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832892,47,1.449,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832893,47,1.514,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832894,47,1.501,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832895,47,1.477,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832896,47,1.552,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832897,47,1.477,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832898,47,1.475,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832899,47,1.479,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832900,47,1.543,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832901,47,1.451,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832902,47,1.481,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832903,47,1.453,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832904,47,1.452,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832905,47,1.591,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832906,47,1.465,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832907,47,1.399,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832908,47,1.452,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832909,47,1.405,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832910,47,1.122,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832911,47,1.345,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832912,48,0.208,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13832913,48,0.34,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13832914,48,0.347,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13832915,48,0.08,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13832916,48,0.321,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13832917,48,0.256,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13832918,48,0.269,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13832919,48,0.293,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13832920,48,0.218,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13832921,48,0.293,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13832922,48,0.295,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13832923,48,0.291,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13832924,48,0.227,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13832925,48,0.319,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13832926,48,0.289,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13832927,48,0.317,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13832928,48,0.318,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13832929,48,0.179,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13832930,48,0.305,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13832931,48,0.371,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13832932,48,0.318,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13832933,48,0.365,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13832934,48,0.648,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13832935,48,0.425,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13832936,41,23.27,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832937,40,31.85,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832938,39,15.91,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832939,37,12.52,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832940,43,631.5,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832941,44,0,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832942,42,31.44,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832943,45,29.08065,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832944,38,1.992,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832945,51,0,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832946,53,1.872,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832947,49,1.465,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832948,52,0,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832949,54,1.935,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832950,50,1.526,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832951,56,-0.165,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832952,57,1.77,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13832953,55,0.244,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13836194,58,0.153,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836195,58,0.153,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836196,58,0.152,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836197,58,0.151,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836198,58,0.15,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836199,58,0.147,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836200,58,0.146,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836201,58,0.142,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836202,58,0.142,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836203,58,0.14,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836204,58,0.14,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836205,58,0.139,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836206,58,0.136,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836207,58,0.137,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836208,58,0.136,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836209,58,0.136,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836210,58,0.135,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836211,58,0.137,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836212,58,0.135,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836213,58,0.137,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836214,58,0.139,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836215,58,0.143,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836216,58,0.144,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836217,58,0.145,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836218,63,0.015,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836219,63,0.015,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836220,63,0.015,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836221,63,0.015,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836222,63,0.015,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836223,63,0.015,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836224,63,0.015,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836225,63,0.015,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836226,63,0.015,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836227,63,0.015,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836228,63,0.015,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836229,63,0.015,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836230,63,0.015,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836231,63,0.015,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836232,63,0.015,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836233,63,0.015,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836234,63,0.014,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836235,63,0.014,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836236,63,0.015,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836237,63,0.015,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836238,63,0.015,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836239,63,0.015,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836240,63,0.015,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836241,63,0.015,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836242,73,30.03,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836243,73,30.8,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836244,73,31,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836245,73,30.7,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836246,73,30.17,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836247,73,29.35,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836248,73,28.17,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836249,73,27.27,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836250,73,26.42,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836251,73,25.62,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836252,73,24.95,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836253,73,24.42,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836254,73,23.85,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836255,73,23.5,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836256,73,22.95,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836257,73,22.55,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836258,73,22.12,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836259,73,21.9,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836260,73,21.95,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836261,73,22.88,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836262,73,24.08,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836263,73,25.61,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836264,73,27.28,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836265,73,28.75,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836266,78,86.1,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836267,78,87.5,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836268,78,87.7,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836269,78,87.3,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836270,78,86.3,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836271,78,84.8,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836272,78,82.7,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836273,78,81.1,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836274,78,79.52,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836275,78,78.17,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836276,78,76.92,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836277,78,75.92,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836278,78,75,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836279,78,74.3,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836280,78,73.3,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836281,78,72.52,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836282,78,71.9,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836283,78,71.5,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836284,78,71.6,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836285,78,73.16,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836286,78,75.33,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836287,78,78.06,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836288,78,81.1,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836289,78,83.8,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836290,64,0.016,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836291,64,0.017,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836292,64,0.016,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836293,64,0.016,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836294,64,0.016,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836295,64,0.016,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836296,64,0.015,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836297,64,0.015,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836298,64,0.015,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836299,64,0.015,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836300,64,0.015,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836301,64,0.015,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836302,64,0.015,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836303,64,0.014,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836304,64,0.014,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836305,64,0.014,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836306,64,0.014,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836307,64,0.014,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836308,64,0.014,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836309,64,0.014,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836310,64,0.015,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836311,64,0.015,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836312,64,0.015,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836313,64,0.016,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836314,84,9.29,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836315,84,9.26,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836316,84,9.18,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836317,84,9.2,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836318,84,9.08,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836319,84,8.98,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836320,84,8.9,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836321,84,8.69,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836322,84,8.67,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836323,84,8.6,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836324,84,8.54,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836325,84,8.53,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836326,84,8.33,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836327,84,8.4,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836328,84,8.35,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836329,84,8.32,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836330,84,8.3,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836331,84,8.38,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836332,84,8.28,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836333,84,8.39,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836334,84,8.5,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836335,84,8.7,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836336,84,8.81,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836337,84,8.86,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836338,94,5.866,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836339,94,5.929,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836340,94,5.948,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836341,94,5.816,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836342,94,5.742,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836343,94,5.634,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836344,94,5.501,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836345,94,5.488,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836346,94,5.367,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836347,94,5.289,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836348,94,5.228,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836349,94,5.174,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836350,94,5.215,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836351,94,5.142,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836352,94,5.09,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836353,94,5.054,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836354,94,5.031,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836355,94,4.967,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836356,94,5.059,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836357,94,5.127,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836358,94,5.249,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836359,94,5.355,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836360,94,5.512,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836361,94,5.663,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836362,83,9.62,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836363,83,9.6,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836364,83,9.51,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836365,83,9.54,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836366,83,9.4,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836367,83,9.27,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836368,83,9.17,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836369,83,8.92,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836370,83,8.89,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836371,83,8.8,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836372,83,8.73,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836373,83,8.71,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836374,83,8.49,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836375,83,8.55,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836376,83,8.5,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836377,83,8.46,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836378,83,8.43,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836379,83,8.5,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836380,83,8.41,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836381,83,8.54,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836382,83,8.68,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836383,83,8.91,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836384,83,9.06,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836385,83,9.15,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836386,93,5.444,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836387,93,5.454,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836388,93,5.474,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836389,93,5.368,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836390,93,5.341,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836391,93,5.31,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836392,93,5.261,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836393,93,5.326,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836394,93,5.272,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836395,93,5.248,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836396,93,5.239,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836397,93,5.229,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836398,93,5.312,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836399,93,5.278,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836400,93,5.254,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836401,93,5.249,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836402,93,5.252,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836403,93,5.208,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836404,93,5.289,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836405,93,5.29,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836406,93,5.314,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836407,93,5.301,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836408,93,5.324,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836409,93,5.353,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836410,59,0.277,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836411,59,0.279,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836412,59,0.279,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836413,59,0.279,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836414,59,0.278,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836415,59,0.279,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836416,59,0.279,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836417,59,0.277,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836418,59,0.277,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836419,59,0.274,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836420,59,0.274,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836421,59,0.272,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836422,59,0.271,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836423,59,0.269,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836424,59,0.267,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836425,59,0.266,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836426,59,0.264,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836427,59,0.264,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836428,59,0.263,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836429,59,0.265,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836430,59,0.264,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836431,59,0.264,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836432,59,0.267,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836433,59,0.272,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836434,65,0.035,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836435,65,0.035,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836436,65,0.035,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836437,65,0.035,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836438,65,0.035,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836439,65,0.035,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836440,65,0.035,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836441,65,0.035,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836442,65,0.035,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836443,65,0.035,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836444,65,0.035,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836445,65,0.034,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836446,65,0.034,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836447,65,0.034,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836448,65,0.034,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836449,65,0.034,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836450,65,0.034,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836451,65,0.034,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836452,65,0.034,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836453,65,0.034,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836454,65,0.034,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836455,65,0.035,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836456,65,0.034,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836457,65,0.034,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836458,74,27.5,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836459,74,28.3,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836460,74,28.83,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836461,74,28.9,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836462,74,28.9,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836463,74,28.45,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836464,74,28.07,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836465,74,27.65,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836466,74,27.05,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836467,74,26.5,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836468,74,25.97,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836469,74,25.42,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836470,74,24.9,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836471,74,24.55,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836472,74,24.05,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836473,74,23.65,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836474,74,23.45,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836475,74,22.95,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836476,74,22.8,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836477,74,22.8,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836478,74,23.15,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836479,74,23.88,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836480,74,24.9,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836481,74,26.3,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836482,79,81.5,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836483,79,83,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836484,79,83.9,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836485,79,84,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836486,79,84,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836487,79,83.2,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836488,79,82.6,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836489,79,81.7,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836490,79,80.7,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836491,79,79.65,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836492,79,78.72,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836493,79,77.85,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836494,79,76.82,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836495,79,76.15,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836496,79,75.3,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836497,79,74.6,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836498,79,74.2,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836499,79,73.3,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836500,79,73,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836501,79,73,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836502,79,73.65,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836503,79,75,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836504,79,76.83,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836505,79,79.31,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836506,66,0.036,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836507,66,0.036,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836508,66,0.037,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836509,66,0.037,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836510,66,0.037,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836511,66,0.037,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836512,66,0.036,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836513,66,0.036,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836514,66,0.035,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836515,66,0.035,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836516,66,0.035,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836517,66,0.035,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836518,66,0.034,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836519,66,0.034,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836520,66,0.034,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836521,66,0.034,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836522,66,0.033,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836523,66,0.033,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836524,66,0.033,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836525,66,0.033,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836526,66,0.033,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836527,66,0.034,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836528,66,0.034,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836529,66,0.035,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836530,86,17.49,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836531,86,17.71,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836532,86,17.62,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836533,86,17.62,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836534,86,17.56,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836535,86,17.68,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836536,86,17.61,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836537,86,17.54,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836538,86,17.5,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836539,86,17.27,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836540,86,17.23,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836541,86,17.12,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836542,86,17.05,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836543,86,16.94,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836544,86,16.76,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836545,86,16.68,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836546,86,16.54,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836547,86,16.57,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836548,86,16.41,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836549,86,16.58,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836550,86,16.48,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836551,86,16.51,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836552,86,16.75,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836553,86,17.1,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836554,96,12.9,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836555,96,13.08,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836556,96,13.28,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836557,96,13.28,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836558,96,13.38,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836559,96,13.19,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836560,96,13.14,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836561,96,13.01,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836562,96,12.76,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836563,96,12.79,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836564,96,12.62,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836565,96,12.46,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836566,96,12.34,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836567,96,12.26,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836568,96,12.25,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836569,96,12.11,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836570,96,12.06,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836571,96,11.96,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836572,96,11.96,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836573,96,11.78,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836574,96,11.95,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836575,96,12.18,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836576,96,12.3,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836577,96,12.45,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836578,85,17.98,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836579,85,18.24,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836580,85,18.16,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836581,85,18.17,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836582,85,18.12,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836583,85,18.23,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836584,85,18.14,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836585,85,18.05,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836586,85,17.98,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836587,85,17.73,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836588,85,17.67,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836589,85,17.53,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836590,85,17.44,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836591,85,17.31,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836592,85,17.12,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836593,85,17.02,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836594,85,16.86,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836595,85,16.88,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836596,85,16.71,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836597,85,16.88,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836598,85,16.79,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836599,85,16.85,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836600,85,17.13,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836601,85,17.53,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836602,95,12.49,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836603,95,12.5,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836604,95,12.62,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836605,95,12.61,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836606,95,12.7,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836607,95,12.55,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836608,95,12.55,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836609,95,12.51,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836610,95,12.36,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836611,95,12.48,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836612,95,12.4,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836613,95,12.33,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836614,95,12.3,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836615,95,12.29,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836616,95,12.34,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836617,95,12.28,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836618,95,12.28,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836619,95,12.24,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836620,95,12.29,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836621,95,12.11,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836622,95,12.23,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836623,95,12.36,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836624,95,12.31,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836625,95,12.24,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836626,60,0.363,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836627,60,0.366,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836628,60,0.366,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836629,60,0.369,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836630,60,0.367,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836631,60,0.366,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836632,60,0.37,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836633,60,0.367,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836634,60,0.367,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836635,60,0.367,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836636,60,0.369,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836637,60,0.37,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836638,60,0.371,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836639,60,0.367,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836640,60,0.366,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836641,60,0.363,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836642,60,0.366,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836643,60,0.366,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836644,60,0.366,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836645,60,0.363,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836646,60,0.363,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836647,60,0.361,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836648,60,0.366,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836649,60,0.366,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836650,67,0.081,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836651,67,0.081,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836652,67,0.081,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836653,67,0.081,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836654,67,0.081,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836655,67,0.082,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836656,67,0.081,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836657,67,0.082,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836658,67,0.082,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836659,67,0.082,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836660,67,0.082,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836661,67,0.082,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836662,67,0.081,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836663,67,0.082,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836664,67,0.082,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836665,67,0.082,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836666,67,0.082,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836667,67,0.082,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836668,67,0.081,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836669,67,0.082,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836670,67,0.082,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836671,67,0.082,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836672,67,0.081,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836673,67,0.081,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836674,75,24.4,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836675,75,24.4,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836676,75,24.63,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836677,75,24.8,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836678,75,25,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836679,75,25.1,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836680,75,25.4,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836681,75,25.5,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836682,75,25.5,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836683,75,25.45,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836684,75,25.4,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836685,75,25.5,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836686,75,25.4,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836687,75,25.4,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836688,75,25.4,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836689,75,25.17,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836690,75,25,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836691,75,24.9,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836692,75,24.8,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836693,75,24.7,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836694,75,24.47,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836695,75,24.4,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836696,75,24.35,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836697,75,24.4,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836698,80,75.9,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836699,80,75.9,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836700,80,76.28,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836701,80,76.6,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836702,80,77.05,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836703,80,77.3,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836704,80,77.7,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836705,80,77.95,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836706,80,77.95,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836707,80,77.82,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836708,80,77.7,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836709,80,77.95,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836710,80,77.7,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836711,80,77.7,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836712,80,77.7,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836713,80,77.4,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836714,80,77.05,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836715,80,76.8,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836716,80,76.6,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836717,80,76.4,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836718,80,76.02,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836719,80,75.9,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836720,80,75.8,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836721,80,75.9,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836722,68,0.081,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836723,68,0.081,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836724,68,0.081,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836725,68,0.081,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836726,68,0.081,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836727,68,0.083,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836728,68,0.082,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836729,68,0.083,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836730,68,0.083,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836731,68,0.083,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836732,68,0.082,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836733,68,0.083,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836734,68,0.082,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836735,68,0.083,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836736,68,0.083,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836737,68,0.083,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836738,68,0.082,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836739,68,0.082,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836740,68,0.081,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836741,68,0.082,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836742,68,0.081,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836743,68,0.081,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836744,68,0.08,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836745,68,0.08,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836746,88,24.76,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836747,88,24.99,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836748,88,25,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836749,88,25.24,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836750,88,25.07,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836751,88,25.01,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836752,88,25.34,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836753,88,25.05,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836754,88,25.05,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836755,88,25.06,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836756,88,25.28,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836757,88,25.42,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836758,88,25.43,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836759,88,25.11,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836760,88,25.02,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836761,88,24.76,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836762,88,25.02,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836763,88,24.98,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836764,88,25.01,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836765,88,24.78,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836766,88,24.79,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836767,88,24.51,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836768,88,24.96,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836769,88,25.06,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836770,98,28.96,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836771,98,29.02,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836772,98,29.03,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836773,98,29.1,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836774,98,29.31,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836775,98,29.66,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836776,98,29.39,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836777,98,29.68,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836778,98,29.91,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836779,98,29.91,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836780,98,29.74,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836781,98,29.71,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836782,98,29.48,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836783,98,29.55,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836784,98,29.67,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836785,98,29.79,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836786,98,29.46,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836787,98,29.42,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836788,98,29.26,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836789,98,29.19,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836790,98,29.21,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836791,98,29.09,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836792,98,28.8,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836793,98,28.71,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836794,87,25.28,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836795,87,25.51,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836796,87,25.54,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836797,87,25.8,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836798,87,25.63,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836799,87,25.58,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836800,87,25.93,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836801,87,25.64,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836802,87,25.65,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836803,87,25.66,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836804,87,25.89,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836805,87,26.03,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836806,87,26.03,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836807,87,25.71,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836808,87,25.6,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836809,87,25.32,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836810,87,25.59,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836811,87,25.54,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836812,87,25.56,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836813,87,25.31,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836814,87,25.32,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836815,87,25.03,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836816,87,25.48,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836817,87,25.59,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836818,97,29.24,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836819,97,29.26,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836820,97,29.21,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836821,97,29.17,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836822,97,29.29,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836823,97,29.56,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836824,97,29.21,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836825,97,29.45,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836826,97,29.65,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836827,97,29.62,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836828,97,29.48,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836829,97,29.45,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836830,97,29.25,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836831,97,29.36,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836832,97,29.53,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836833,97,29.71,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836834,97,29.44,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836835,97,29.45,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836836,97,29.35,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836837,97,29.35,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836838,97,29.43,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836839,97,29.35,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836840,97,29.09,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836841,97,29,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836842,61,0.261,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836843,61,0.262,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836844,61,0.263,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836845,61,0.263,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836846,61,0.262,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836847,61,0.262,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836848,61,0.261,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836849,61,0.262,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836850,61,0.261,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836851,61,0.261,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836852,61,0.26,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836853,61,0.264,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836854,61,0.263,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836855,61,0.262,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836856,61,0.261,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836857,61,0.261,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836858,61,0.262,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836859,61,0.261,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836860,61,0.263,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836861,61,0.261,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836862,61,0.258,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836863,61,0.261,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836864,61,0.261,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836865,61,0.262,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836866,69,0.044,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836867,69,0.044,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836868,69,0.043,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836869,69,0.043,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836870,69,0.044,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836871,69,0.043,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836872,69,0.044,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836873,69,0.044,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836874,69,0.044,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836875,69,0.044,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836876,69,0.044,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836877,69,0.044,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836878,69,0.044,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836879,69,0.044,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836880,69,0.044,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836881,69,0.044,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836882,69,0.044,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836883,69,0.044,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836884,69,0.044,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836885,69,0.044,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836886,69,0.044,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836887,69,0.044,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836888,69,0.044,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836889,69,0.044,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836890,76,23.9,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836891,76,23.9,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836892,76,23.9,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836893,76,23.9,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836894,76,23.9,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836895,76,23.9,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836896,76,23.9,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836897,76,23.9,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836898,76,23.9,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836899,76,23.9,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836900,76,23.98,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836901,76,24.2,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836902,76,24.2,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836903,76,24.2,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836904,76,24.2,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836905,76,24.2,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836906,76,24.2,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836907,76,24.13,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836908,76,24.2,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836909,76,24.2,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836910,76,24.2,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836911,76,24.2,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836912,76,24.2,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836913,76,24.2,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836914,81,75.1,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836915,81,75.1,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836916,81,75.1,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836917,81,75.1,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836918,81,75.1,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836919,81,75.1,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836920,81,75.1,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836921,81,75.1,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836922,81,75.1,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836923,81,75.1,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836924,81,75.2,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836925,81,75.5,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836926,81,75.5,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836927,81,75.5,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836928,81,75.5,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836929,81,75.5,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836930,81,75.5,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836931,81,75.4,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836932,81,75.5,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836933,81,75.5,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836934,81,75.5,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836935,81,75.5,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836936,81,75.5,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836937,81,75.5,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836938,70,0.043,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836939,70,0.043,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836940,70,0.043,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836941,70,0.043,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836942,70,0.043,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836943,70,0.043,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836944,70,0.043,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836945,70,0.043,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836946,70,0.043,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836947,70,0.043,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836948,70,0.043,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836949,70,0.043,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836950,70,0.043,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836951,70,0.043,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836952,70,0.043,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836953,70,0.043,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836954,70,0.043,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836955,70,0.043,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836956,70,0.043,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836957,70,0.043,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836958,70,0.044,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836959,70,0.043,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836960,70,0.043,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836961,70,0.043,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836962,90,16.26,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836963,90,16.3,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836964,90,16.38,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836965,90,16.42,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836966,90,16.34,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836967,90,16.38,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836968,90,16.26,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836969,90,16.3,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836970,90,16.26,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836971,90,16.26,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836972,90,16.19,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836973,90,16.49,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836974,90,16.44,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836975,90,16.38,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13836976,90,16.32,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13836977,90,16.32,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13836978,90,16.38,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13836979,90,16.32,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13836980,90,16.44,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13836981,90,16.33,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13836982,90,16.05,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13836983,90,16.27,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13836984,90,16.27,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13836985,90,16.31,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13836986,100,15.56,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13836987,100,15.51,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13836988,100,15.39,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13836989,100,15.34,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13836990,100,15.45,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13836991,100,15.39,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13836992,100,15.56,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13836993,100,15.51,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13836994,100,15.56,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13836995,100,15.56,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13836996,100,15.67,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13836997,100,15.52,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13836998,100,15.55,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13836999,100,15.58,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837000,100,15.6,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837001,100,15.6,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837002,100,15.58,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837003,100,15.6,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837004,100,15.55,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837005,100,15.63,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837006,100,15.82,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837007,100,15.57,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837008,100,15.57,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837009,100,15.51,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837010,89,16.6,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837011,89,16.64,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837012,89,16.72,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837013,89,16.75,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837014,89,16.67,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837015,89,16.71,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837016,89,16.59,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837017,89,16.64,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837018,89,16.6,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837019,89,16.6,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837020,89,16.52,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837021,89,16.84,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837022,89,16.78,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837023,89,16.72,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837024,89,16.66,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837025,89,16.66,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837026,89,16.73,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837027,89,16.67,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837028,89,16.79,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837029,89,16.67,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837030,89,16.39,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837031,89,16.62,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837032,89,16.61,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837033,89,16.65,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837034,99,15.75,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837035,99,15.69,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837036,99,15.58,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837037,99,15.53,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837038,99,15.65,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837039,99,15.59,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837040,99,15.76,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837041,99,15.7,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837042,99,15.75,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837043,99,15.75,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837044,99,15.84,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837045,99,15.69,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837046,99,15.71,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837047,99,15.73,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837048,99,15.75,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837049,99,15.75,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837050,99,15.71,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837051,99,15.74,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837052,99,15.68,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837053,99,15.75,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837054,99,15.96,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837055,99,15.7,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837056,99,15.71,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837057,99,15.66,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837058,62,0.382,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837059,62,0.382,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837060,62,0.38,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837061,62,0.38,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837062,62,0.374,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837063,62,0.371,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837064,62,0.373,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837065,62,0.376,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837066,62,0.382,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837067,62,0.381,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837068,62,0.382,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837069,62,0.382,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837070,62,0.379,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837071,62,0.379,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837072,62,0.381,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837073,62,0.38,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837074,62,0.379,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837075,62,0.377,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837076,62,0.378,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837077,62,0.38,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837078,62,0.381,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837079,62,0.381,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837080,62,0.382,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837081,62,0.374,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837082,71,0.102,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837083,71,0.102,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837084,71,0.102,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837085,71,0.102,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837086,71,0.103,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837087,71,0.103,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837088,71,0.103,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837089,71,0.103,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837090,71,0.102,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837091,71,0.102,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837092,71,0.102,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837093,71,0.102,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837094,71,0.102,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837095,71,0.102,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837096,71,0.102,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837097,71,0.102,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837098,71,0.102,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837099,71,0.103,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837100,71,0.103,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837101,71,0.102,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837102,71,0.102,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837103,71,0.102,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837104,71,0.102,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837105,71,0.103,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837106,77,21.3,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837107,77,21.3,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837108,77,21.3,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837109,77,21.35,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837110,77,21.3,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837111,77,21.4,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837112,77,21.5,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837113,77,21.4,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837114,77,21.35,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837115,77,21.3,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837116,77,21.4,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837117,77,21.5,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837118,77,21.35,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837119,77,21.45,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837120,77,21.45,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837121,77,21.45,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837122,77,21.45,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837123,77,21.45,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837124,77,21.4,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837125,77,21.45,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837126,77,21.45,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837127,77,21.5,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837128,77,21.5,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837129,77,21.5,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837130,82,70.3,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837131,82,70.3,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837132,82,70.3,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837133,82,70.4,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837134,82,70.3,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837135,82,70.5,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837136,82,70.7,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837137,82,70.5,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837138,82,70.42,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837139,82,70.33,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837140,82,70.5,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837141,82,70.7,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837142,82,70.4,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837143,82,70.6,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837144,82,70.6,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837145,82,70.6,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837146,82,70.6,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837147,82,70.6,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837148,82,70.5,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837149,82,70.6,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837150,82,70.6,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837151,82,70.7,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837152,82,70.7,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837153,82,70.7,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837154,72,0.097,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837155,72,0.097,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837156,72,0.097,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837157,72,0.097,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837158,72,0.098,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837159,72,0.098,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837160,72,0.098,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837161,72,0.098,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837162,72,0.097,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837163,72,0.097,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837164,72,0.097,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837165,72,0.097,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837166,72,0.097,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837167,72,0.097,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837168,72,0.097,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837169,72,0.097,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837170,72,0.097,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837171,72,0.097,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837172,72,0.097,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837173,72,0.097,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837174,72,0.097,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837175,72,0.097,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837176,72,0.097,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837177,72,0.098,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837178,92,26.53,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837179,92,26.53,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837180,92,26.33,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837181,92,26.33,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837182,92,25.74,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837183,92,25.45,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837184,92,25.63,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837185,92,25.94,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837186,92,26.53,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837187,92,26.38,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837188,92,26.53,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837189,92,26.53,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837190,92,26.23,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837191,92,26.23,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837192,92,26.38,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837193,92,26.38,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837194,92,26.23,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837195,92,26.07,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837196,92,26.07,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837197,92,26.38,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837198,92,26.38,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837199,92,26.38,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837200,92,26.53,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837201,92,25.75,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837202,102,34.73,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837203,102,34.73,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837204,102,34.78,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837205,102,34.78,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837206,102,35.18,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837207,102,35.38,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837208,102,35.34,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837209,102,35.14,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837210,102,34.73,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837211,102,34.82,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837212,102,34.74,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837213,102,34.74,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837214,102,34.9,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837215,102,34.91,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837216,102,34.82,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837217,102,34.82,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837218,102,34.9,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837219,102,34.99,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837220,102,34.99,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837221,102,34.82,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837222,102,34.82,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837223,102,34.82,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837224,102,34.74,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837225,102,35.19,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837226,91,26.9,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837227,91,26.9,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837228,91,26.7,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837229,91,26.7,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837230,91,26.1,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837231,91,25.8,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837232,91,25.99,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837233,91,26.31,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837234,91,26.9,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837235,91,26.75,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837236,91,26.91,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837237,91,26.91,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837238,91,26.6,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837239,91,26.6,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837240,91,26.75,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837241,91,26.75,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837242,91,26.6,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837243,91,26.44,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837244,91,26.44,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837245,91,26.75,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837246,91,26.76,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837247,91,26.75,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837248,91,26.91,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837249,91,26.11,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13837250,101,36.66,'2011-08-23 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13837251,101,36.65,'2011-08-23 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13837252,101,36.71,'2011-08-23 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13837253,101,36.71,'2011-08-23 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13837254,101,37.13,'2011-08-23 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13837255,101,37.34,'2011-08-23 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13837256,101,37.3,'2011-08-23 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13837257,101,37.06,'2011-08-23 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13837258,101,36.64,'2011-08-23 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13837259,101,36.71,'2011-08-23 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13837260,101,36.62,'2011-08-24 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13837261,101,36.62,'2011-08-24 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13837262,101,36.8,'2011-08-24 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13837263,101,36.8,'2011-08-24 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13837264,101,36.71,'2011-08-24 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13837265,101,36.71,'2011-08-24 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13837266,101,36.8,'2011-08-24 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13837267,101,36.89,'2011-08-24 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13837268,101,36.89,'2011-08-24 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13837269,101,36.71,'2011-08-24 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13837270,101,36.71,'2011-08-24 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13837271,101,36.71,'2011-08-24 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13837272,101,36.62,'2011-08-24 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13837273,101,37.1,'2011-08-24 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842397,31,13.16,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842398,31,13.15,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842399,31,13.12,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842400,31,13.12,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842401,31,13.01,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842402,31,12.81,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842403,31,12.75,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842404,31,12.72,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842405,31,12.69,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842406,31,12.66,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842407,31,12.65,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842408,31,12.64,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842409,31,12.62,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842410,31,12.61,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842411,31,12.59,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842412,31,12.58,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842413,31,12.57,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842414,31,12.59,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842415,31,12.82,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842416,31,13.24,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842417,31,13.2,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842418,31,13.18,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842419,31,13.16,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842420,31,13.15,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842421,32,2.796,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842422,32,2.423,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842423,32,2.386,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842424,32,1.982,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842425,32,1.737,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842426,32,2.509,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842427,32,1.644,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842428,32,1.368,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842429,32,0.839,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842430,32,1.434,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842431,32,1.436,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842432,32,2.327,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842433,32,2.726,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842434,32,2.107,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842435,32,2.41,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842436,32,1.865,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842437,32,1.801,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842438,32,1.863,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842439,32,2.928,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842440,32,3.933,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842441,32,3.916,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842442,32,2.863,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842443,32,3.833,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842444,32,3.734,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842445,33,50.56,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842446,33,45.2,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842447,33,34.62,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842448,33,20.52,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842449,33,338,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842450,33,242.2,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842451,33,230.2,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842452,33,204.8,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842453,33,292.2,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842454,33,285.8,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842455,33,244.2,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842456,33,244.5,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842457,33,210.8,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842458,33,227.2,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842459,33,205.5,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842460,33,244.3,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842461,33,248,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842462,33,209.8,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842463,33,203.7,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842464,33,181.9,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842465,33,172.2,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842466,33,179,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842467,33,188.3,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842468,33,188.1,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842469,34,16.57,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842470,34,16.08,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842471,34,18.49,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842472,34,20.35,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842473,34,32.77,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842474,34,36.23,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842475,34,15.58,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842476,34,38.15,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842477,34,60.31,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842478,34,65.78,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842479,34,59.19,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842480,34,65.2,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842481,34,20.8,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842482,34,34.52,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842483,34,41.33,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842484,34,83.1,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842485,34,46.17,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842486,34,40.63,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842487,34,29.8,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842488,34,17.28,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842489,34,16.61,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842490,34,20.12,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842491,34,23.79,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842492,34,25.9,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842493,35,631.3,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13842494,35,630.7,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13842495,35,630.1,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13842496,35,629.9,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13842497,35,629.8,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13842498,35,629.8,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13842499,35,630,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13842500,35,630.2,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13842501,35,630.1,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13842502,35,630.4,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13842503,35,630.4,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13842504,35,630,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13842505,35,630.1,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13842506,35,629.9,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13842507,35,630,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13842508,35,630.3,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13842509,35,630.8,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13842510,35,630.9,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13842511,35,630.8,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13842512,35,631,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13842513,35,631.3,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13842514,35,631.3,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13842515,35,631.2,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13842516,35,630.9,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13842517,30,0,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842518,30,0,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842519,30,0,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842520,30,0,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842521,30,0,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842522,30,0,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842523,30,0,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842524,30,0,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842525,30,0,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842526,30,0,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842527,30,0,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842528,30,0,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842529,30,0,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842530,30,0,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842531,30,0,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842532,30,0,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842533,30,0,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842534,30,0,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842535,30,0,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842536,30,0,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842537,30,0,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842538,30,0,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842539,30,0,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842540,30,0,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842541,28,29.6,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842542,28,31.21,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842543,28,32.3,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842544,28,32.35,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842545,28,31.03,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842546,28,27.2,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842547,28,22.9,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842548,28,21.35,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842549,28,20.6,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842550,28,21.51,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842551,28,22.16,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842552,28,23.99,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842553,28,24.07,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842554,28,23.76,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842555,28,22.96,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842556,28,23.6,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842557,28,23.61,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842558,28,22.74,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842559,28,24.58,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842560,28,28.08,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842561,28,29.2,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842562,28,30.41,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842563,28,32.44,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842564,28,31.4,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842565,29,25.1,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842566,29,23.79,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842567,29,20.35,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842568,29,21.37,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842569,29,24.65,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842570,29,35.31,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842571,29,36.34,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842572,29,38.39,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842573,29,36.55,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842574,29,36.04,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842575,29,38.91,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842576,29,28.31,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842577,29,35.13,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842578,29,33.05,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842579,29,31.27,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842580,29,33.28,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842581,29,35.51,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842582,29,33.44,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842583,29,25.1,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842584,29,24.84,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842585,29,24.08,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842586,29,24.55,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842587,29,18.93,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842588,29,19.41,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842589,36,1015,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842590,36,859,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842591,36,728.9,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842592,36,454.1,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842593,36,273,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842594,36,48.13,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842595,36,2.252,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842596,36,0,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842597,36,0,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842598,36,0,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842599,36,0,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842600,36,0,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842601,36,0,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842602,36,0,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842603,36,0,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842604,36,0,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842605,36,1.701,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842606,36,79.55,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842607,36,189.8,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842608,36,591.4,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842609,36,758.1,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842610,36,693,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842611,36,-9999,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842612,36,515.3,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842613,46,1.238,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842614,46,1.175,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842615,46,1.384,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842616,46,1.159,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842617,46,1.462,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842618,46,1.405,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842619,46,1.487,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842620,46,1.394,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842621,46,1.406,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842622,46,1.434,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842623,46,1.461,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842624,46,1.605,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842625,46,1.598,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842626,46,1.48,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842627,46,1.505,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842628,46,1.384,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842629,46,1.513,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842630,46,1.333,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842631,46,1.279,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842632,46,1.474,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842633,46,1.333,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842634,46,1.412,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842635,46,1.478,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842636,46,1.392,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842637,47,1.303,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842638,47,1.239,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842639,47,1.463,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842640,47,1.226,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842641,47,1.543,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842642,47,1.474,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842643,47,1.548,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842644,47,1.448,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842645,47,1.458,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842646,47,1.489,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842647,47,1.519,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842648,47,1.674,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842649,47,1.667,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842650,47,1.543,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842651,47,1.567,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842652,47,1.443,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842653,47,1.576,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842654,47,1.387,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842655,47,1.335,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842656,47,1.548,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842657,47,1.402,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842658,47,1.488,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842659,47,1.563,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842660,47,1.47,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842661,48,0.467,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13842662,48,0.531,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13842663,48,0.307,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13842664,48,0.544,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13842665,48,0.227,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13842666,48,0.296,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13842667,48,0.222,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13842668,48,0.322,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13842669,48,0.312,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13842670,48,0.281,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13842671,48,0.251,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13842672,48,0.096,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13842673,48,0.103,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13842674,48,0.227,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13842675,48,0.203,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13842676,48,0.327,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13842677,48,0.194,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13842678,48,0.383,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13842679,48,0.435,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13842680,48,0.222,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13842681,48,0.368,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13842682,48,0.282,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13842683,48,0.207,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13842684,48,0.3,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13842685,41,23.74,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842686,40,32.95,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842687,39,15.14,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842688,37,12.48,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842689,43,631.3,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842690,44,0,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842691,42,33.25,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842692,45,29.07217,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842693,38,2.228,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842694,51,0,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842695,53,1.881,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842696,49,1.374,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842697,52,0,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842698,54,1.987,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842699,50,1.431,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842700,56,-0.217,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842701,57,1.77,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13842702,55,0.339,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13845943,58,0.149,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13845944,58,0.149,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13845945,58,0.15,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13845946,58,0.148,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13845947,58,0.147,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13845948,58,0.144,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13845949,58,0.144,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13845950,58,0.14,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13845951,58,0.137,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13845952,58,0.138,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13845953,58,0.136,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13845954,58,0.137,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13845955,58,0.139,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13845956,58,0.135,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13845957,58,0.136,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13845958,58,0.133,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13845959,58,0.134,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13845960,58,0.135,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13845961,58,0.134,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13845962,58,0.135,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13845963,58,0.139,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13845964,58,0.14,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13845965,58,0.143,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13845966,58,0.146,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13845967,63,0.015,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13845968,63,0.015,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13845969,63,0.015,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13845970,63,0.015,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13845971,63,0.014,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13845972,63,0.014,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13845973,63,0.014,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13845974,63,0.014,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13845975,63,0.014,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13845976,63,0.014,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13845977,63,0.014,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13845978,63,0.014,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13845979,63,0.014,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13845980,63,0.014,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13845981,63,0.014,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13845982,63,0.015,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13845983,63,0.014,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13845984,63,0.014,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13845985,63,0.014,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13845986,63,0.014,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13845987,63,0.014,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13845988,63,0.014,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13845989,63,0.014,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13845990,63,0.014,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13845991,73,30.35,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13845992,73,31.33,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13845993,73,31.47,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13845994,73,31.32,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13845995,73,30.65,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13845996,73,29.87,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13845997,73,28.75,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13845998,73,27.75,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13845999,73,26.87,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846000,73,26.17,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846001,73,25.57,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846002,73,25.25,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846003,73,25,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846004,73,24.9,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846005,73,24.7,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846006,73,24.63,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846007,73,24.4,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846008,73,24.2,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846009,73,24.2,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846010,73,24.55,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846011,73,25.7,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846012,73,27.23,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846013,73,28.4,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846014,73,29.95,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846015,78,86.6,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846016,78,88.4,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846017,78,88.6,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846018,78,88.3,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846019,78,87.2,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846020,78,85.8,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846021,78,83.8,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846022,78,82,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846023,78,80.4,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846024,78,79.07,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846025,78,78.05,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846026,78,77.5,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846027,78,77.05,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846028,78,76.8,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846029,78,76.4,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846030,78,76.28,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846031,78,75.9,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846032,78,75.5,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846033,78,75.5,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846034,78,76.16,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846035,78,78.31,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846036,78,81,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846037,78,83.2,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846038,78,85.9,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846039,64,0.016,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846040,64,0.016,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846041,64,0.016,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846042,64,0.016,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846043,64,0.016,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846044,64,0.015,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846045,64,0.015,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846046,64,0.015,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846047,64,0.015,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846048,64,0.014,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846049,64,0.014,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846050,64,0.014,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846051,64,0.014,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846052,64,0.014,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846053,64,0.014,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846054,64,0.015,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846055,64,0.014,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846056,64,0.014,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846057,64,0.014,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846058,64,0.014,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846059,64,0.015,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846060,64,0.015,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846061,64,0.015,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846062,64,0.015,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846063,84,9.06,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846064,84,9.06,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846065,84,9.11,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846066,84,8.97,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846067,84,8.92,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846068,84,8.77,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846069,84,8.78,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846070,84,8.56,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846071,84,8.44,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846072,84,8.46,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846073,84,8.36,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846074,84,8.4,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846075,84,8.51,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846076,84,8.31,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846077,84,8.36,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846078,84,8.21,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846079,84,8.27,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846080,84,8.27,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846081,84,8.27,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846082,84,8.28,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846083,84,8.5,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846084,84,8.57,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846085,84,8.74,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846086,84,8.87,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846087,94,5.722,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846088,94,5.822,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846089,94,5.768,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846090,94,5.772,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846091,94,5.616,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846092,94,5.563,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846093,94,5.368,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846094,94,5.339,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846095,94,5.31,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846096,94,5.186,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846097,94,5.181,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846098,94,5.122,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846099,94,5.047,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846100,94,5.136,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846101,94,5.082,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846102,94,5.175,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846103,94,5.082,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846104,94,5.094,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846105,94,5.094,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846106,94,5.145,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846107,94,5.235,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846108,94,5.355,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846109,94,5.422,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846110,94,5.518,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846111,83,9.39,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846112,83,9.4,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846113,83,9.46,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846114,83,9.31,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846115,83,9.25,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846116,83,9.07,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846117,83,9.06,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846118,83,8.81,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846119,83,8.66,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846120,83,8.67,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846121,83,8.56,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846122,83,8.59,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846123,83,8.7,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846124,83,8.5,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846125,83,8.54,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846126,83,8.38,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846127,83,8.44,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846128,83,8.44,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846129,83,8.44,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846130,83,8.45,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846131,83,8.7,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846132,83,8.81,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846133,83,9.01,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846134,83,9.18,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846135,93,5.301,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846136,93,5.329,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846137,93,5.26,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846138,93,5.282,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846139,93,5.187,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846140,93,5.207,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846141,93,5.098,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846142,93,5.144,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846143,93,5.18,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846144,93,5.11,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846145,93,5.144,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846146,93,5.111,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846147,93,5.05,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846148,93,5.15,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846149,93,5.11,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846150,93,5.218,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846151,93,5.136,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846152,93,5.159,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846153,93,5.156,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846154,93,5.181,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846155,93,5.176,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846156,93,5.184,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846157,93,5.153,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846158,93,5.141,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846159,59,0.273,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846160,59,0.275,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846161,59,0.278,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846162,59,0.276,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846163,59,0.276,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846164,59,0.279,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846165,59,0.277,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846166,59,0.274,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846167,59,0.274,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846168,59,0.273,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846169,59,0.272,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846170,59,0.271,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846171,59,0.27,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846172,59,0.268,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846173,59,0.267,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846174,59,0.265,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846175,59,0.265,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846176,59,0.267,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846177,59,0.265,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846178,59,0.266,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846179,59,0.263,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846180,59,0.267,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846181,59,0.268,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846182,59,0.271,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846183,65,0.034,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846184,65,0.034,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846185,65,0.035,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846186,65,0.035,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846187,65,0.035,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846188,65,0.034,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846189,65,0.034,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846190,65,0.034,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846191,65,0.034,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846192,65,0.034,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846193,65,0.034,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846194,65,0.034,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846195,65,0.034,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846196,65,0.034,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846197,65,0.034,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846198,65,0.034,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846199,65,0.034,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846200,65,0.033,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846201,65,0.033,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846202,65,0.033,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846203,65,0.034,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846204,65,0.034,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846205,65,0.034,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846206,65,0.034,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846207,74,27.35,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846208,74,28.38,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846209,74,29.05,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846210,74,29.2,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846211,74,29.12,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846212,74,28.82,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846213,74,28.45,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846214,74,27.9,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846215,74,27.5,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846216,74,26.8,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846217,74,26.3,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846218,74,25.97,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846219,74,25.6,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846220,74,25.45,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846221,74,25.1,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846222,74,24.95,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846223,74,24.8,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846224,74,24.7,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846225,74,24.47,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846226,74,24.4,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846227,74,24.68,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846228,74,25.33,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846229,74,26.3,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846230,74,27.35,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846231,79,81.3,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846232,79,83.1,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846233,79,84.3,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846234,79,84.6,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846235,79,84.4,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846236,79,83.9,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846237,79,83.2,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846238,79,82.2,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846239,79,81.5,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846240,79,80.2,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846241,79,79.3,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846242,79,78.72,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846243,79,78.2,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846244,79,77.82,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846245,79,77.3,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846246,79,76.92,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846247,79,76.6,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846248,79,76.4,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846249,79,76.02,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846250,79,75.9,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846251,79,76.38,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846252,79,77.61,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846253,79,79.31,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846254,79,81.3,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846255,66,0.035,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846256,66,0.036,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846257,66,0.036,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846258,66,0.036,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846259,66,0.036,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846260,66,0.036,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846261,66,0.036,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846262,66,0.036,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846263,66,0.035,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846264,66,0.035,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846265,66,0.035,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846266,66,0.034,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846267,66,0.034,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846268,66,0.034,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846269,66,0.034,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846270,66,0.034,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846271,66,0.034,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846272,66,0.033,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846273,66,0.033,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846274,66,0.033,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846275,66,0.034,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846276,66,0.034,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846277,66,0.034,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846278,66,0.035,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846279,86,17.22,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846280,86,17.35,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846281,86,17.56,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846282,86,17.44,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846283,86,17.44,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846284,86,17.64,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846285,86,17.46,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846286,86,17.32,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846287,86,17.28,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846288,86,17.18,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846289,86,17.12,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846290,86,17.05,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846291,86,17.01,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846292,86,16.83,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846293,86,16.76,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846294,86,16.61,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846295,86,16.62,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846296,86,16.72,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846297,86,16.62,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846298,86,16.67,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846299,86,16.45,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846300,86,16.72,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846301,86,16.82,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846302,86,17.01,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846303,96,12.68,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846304,96,12.91,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846305,96,13.02,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846306,96,13.13,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846307,96,13.13,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846308,96,12.95,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846309,96,12.94,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846310,96,12.88,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846311,96,12.72,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846312,96,12.57,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846313,96,12.46,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846314,96,12.33,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846315,96,12.23,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846316,96,12.3,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846317,96,12.23,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846318,96,12.23,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846319,96,12.19,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846320,96,12,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846321,96,11.99,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846322,96,11.97,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846323,96,12.18,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846324,96,12.14,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846325,96,12.36,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846326,96,12.5,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846327,85,17.7,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846328,85,17.88,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846329,85,18.11,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846330,85,18,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846331,85,18,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846332,85,18.2,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846333,85,18,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846334,85,17.83,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846335,85,17.78,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846336,85,17.65,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846337,85,17.57,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846338,85,17.48,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846339,85,17.42,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846340,85,17.24,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846341,85,17.16,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846342,85,16.99,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846343,85,16.99,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846344,85,17.09,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846345,85,16.99,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846346,85,17.03,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846347,85,16.81,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846348,85,17.11,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846349,85,17.25,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846350,85,17.48,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846351,95,12.28,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846352,95,12.35,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846353,95,12.35,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846354,95,12.41,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846355,95,12.4,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846356,95,12.27,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846357,95,12.31,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846358,95,12.33,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846359,95,12.26,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846360,95,12.21,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846361,95,12.19,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846362,95,12.12,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846363,95,12.08,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846364,95,12.18,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846365,95,12.15,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846366,95,12.19,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846367,95,12.18,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846368,95,12.01,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846369,95,12.03,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846370,95,12.02,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846371,95,12.21,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846372,95,12.07,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846373,95,12.15,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846374,95,12.12,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846375,60,0.363,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846376,60,0.362,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846377,60,0.368,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846378,60,0.362,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846379,60,0.368,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846380,60,0.365,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846381,60,0.365,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846382,60,0.362,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846383,60,0.369,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846384,60,0.368,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846385,60,0.368,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846386,60,0.372,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846387,60,0.362,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846388,60,0.369,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846389,60,0.366,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846390,60,0.366,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846391,60,0.366,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846392,60,0.367,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846393,60,0.368,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846394,60,0.368,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846395,60,0.366,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846396,60,0.364,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846397,60,0.366,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846398,60,0.366,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846399,67,0.081,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846400,67,0.081,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846401,67,0.081,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846402,67,0.082,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846403,67,0.081,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846404,67,0.082,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846405,67,0.082,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846406,67,0.083,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846407,67,0.081,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846408,67,0.082,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846409,67,0.082,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846410,67,0.081,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846411,67,0.083,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846412,67,0.081,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846413,67,0.082,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846414,67,0.082,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846415,67,0.082,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846416,67,0.081,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846417,67,0.081,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846418,67,0.081,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846419,67,0.081,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846420,67,0.081,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846421,67,0.081,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846422,67,0.081,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846423,75,24.35,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846424,75,24.55,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846425,75,24.63,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846426,75,24.9,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846427,75,25.05,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846428,75,25.25,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846429,75,25.4,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846430,75,25.4,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846431,75,25.63,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846432,75,25.83,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846433,75,25.75,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846434,75,25.63,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846435,75,25.6,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846436,75,25.5,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846437,75,25.4,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846438,75,25.45,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846439,75,25.4,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846440,75,25.4,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846441,75,25.1,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846442,75,25.1,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846443,75,25.05,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846444,75,24.9,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846445,75,24.9,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846446,75,24.9,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846447,80,75.8,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846448,80,76.15,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846449,80,76.28,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846450,80,76.8,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846451,80,77.18,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846452,80,77.5,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846453,80,77.7,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846454,80,77.7,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846455,80,78.18,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846456,80,78.5,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846457,80,78.4,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846458,80,78.17,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846459,80,78.2,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846460,80,77.95,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846461,80,77.7,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846462,80,77.82,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846463,80,77.7,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846464,80,77.7,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846465,80,77.3,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846466,80,77.3,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846467,80,77.17,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846468,80,76.8,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846469,80,76.8,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846470,80,76.8,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846471,68,0.08,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846472,68,0.081,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846473,68,0.081,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846474,68,0.082,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846475,68,0.081,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846476,68,0.082,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846477,68,0.083,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846478,68,0.084,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846479,68,0.082,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846480,68,0.083,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846481,68,0.083,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846482,68,0.082,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846483,68,0.084,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846484,68,0.082,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846485,68,0.083,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846486,68,0.083,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846487,68,0.082,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846488,68,0.081,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846489,68,0.081,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846490,68,0.081,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846491,68,0.081,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846492,68,0.081,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846493,68,0.081,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846494,68,0.081,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846495,88,24.73,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846496,88,24.67,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846497,88,25.22,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846498,88,24.64,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846499,88,25.19,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846500,88,24.86,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846501,88,24.91,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846502,88,24.67,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846503,88,25.29,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846504,88,25.14,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846505,88,25.14,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846506,88,25.59,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846507,88,24.6,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846508,88,25.25,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846509,88,25.01,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846510,88,25.01,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846511,88,25,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846512,88,25.13,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846513,88,25.2,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846514,88,25.19,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846515,88,24.96,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846516,88,24.81,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846517,88,25.02,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846518,88,25.02,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846519,98,28.93,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846520,98,29.07,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846521,98,28.88,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846522,98,29.46,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846523,98,29.24,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846524,98,29.7,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846525,98,29.75,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846526,98,29.89,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846527,98,29.53,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846528,98,29.79,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846529,98,29.79,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846530,98,29.46,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846531,98,30.03,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846532,98,29.5,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846533,98,29.66,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846534,98,29.65,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846535,98,29.64,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846536,98,29.38,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846537,98,29.25,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846538,98,29.25,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846539,98,29.19,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846540,98,29.21,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846541,98,29.06,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846542,98,29.06,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846543,87,25.25,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846544,87,25.2,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846545,87,25.76,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846546,87,25.19,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846547,87,25.77,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846548,87,25.44,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846549,87,25.49,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846550,87,25.26,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846551,87,25.9,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846552,87,25.75,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846553,87,25.75,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846554,87,26.21,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846555,87,25.2,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846556,87,25.86,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846557,87,25.61,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846558,87,25.6,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846559,87,25.59,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846560,87,25.71,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846561,87,25.78,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846562,87,25.76,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846563,87,25.52,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846564,87,25.36,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846565,87,25.58,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846566,87,25.58,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846567,97,29.21,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846568,97,29.29,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846569,97,29.03,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846570,97,29.52,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846571,97,29.21,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846572,97,29.57,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846573,97,29.54,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846574,97,29.63,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846575,97,29.24,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846576,97,29.48,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846577,97,29.47,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846578,97,29.15,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846579,97,29.72,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846580,97,29.24,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846581,97,29.43,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846582,97,29.46,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846583,97,29.48,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846584,97,29.28,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846585,97,29.18,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846586,97,29.21,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846587,97,29.18,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846588,97,29.25,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846589,97,29.1,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846590,97,29.11,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846591,61,0.263,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846592,61,0.263,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846593,61,0.26,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846594,61,0.258,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846595,61,0.257,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846596,61,0.262,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846597,61,0.262,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846598,61,0.263,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846599,61,0.262,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846600,61,0.262,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846601,61,0.261,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846602,61,0.261,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846603,61,0.26,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846604,61,0.259,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846605,61,0.258,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846606,61,0.26,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846607,61,0.26,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846608,61,0.258,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846609,61,0.258,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846610,61,0.261,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846611,61,0.261,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846612,61,0.261,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846613,61,0.261,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846614,61,0.262,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846615,69,0.043,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846616,69,0.043,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846617,69,0.044,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846618,69,0.044,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846619,69,0.044,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846620,69,0.043,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846621,69,0.043,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846622,69,0.043,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846623,69,0.044,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846624,69,0.044,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846625,69,0.044,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846626,69,0.044,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846627,69,0.044,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846628,69,0.044,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846629,69,0.044,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846630,69,0.044,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846631,69,0.044,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846632,69,0.044,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846633,69,0.044,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846634,69,0.044,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846635,69,0.044,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846636,69,0.044,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846637,69,0.044,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846638,69,0.044,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846639,76,24.2,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846640,76,24.2,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846641,76,24.12,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846642,76,23.97,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846643,76,23.9,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846644,76,23.9,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846645,76,24.05,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846646,76,24.05,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846647,76,24.2,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846648,76,24.2,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846649,76,24.13,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846650,76,24.2,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846651,76,24.13,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846652,76,24.2,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846653,76,24.22,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846654,76,24.3,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846655,76,24.4,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846656,76,24.35,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846657,76,24.35,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846658,76,24.4,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846659,76,24.4,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846660,76,24.35,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846661,76,24.35,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846662,76,24.4,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846663,81,75.5,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846664,81,75.5,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846665,81,75.4,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846666,81,75.2,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846667,81,75.1,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846668,81,75.1,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846669,81,75.3,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846670,81,75.3,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846671,81,75.5,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846672,81,75.5,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846673,81,75.4,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846674,81,75.5,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846675,81,75.4,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846676,81,75.5,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846677,81,75.6,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846678,81,75.7,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846679,81,75.9,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846680,81,75.8,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846681,81,75.8,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846682,81,75.9,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846683,81,75.9,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846684,81,75.8,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846685,81,75.8,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846686,81,75.9,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846687,70,0.043,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846688,70,0.043,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846689,70,0.043,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846690,70,0.043,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846691,70,0.043,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846692,70,0.043,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846693,70,0.043,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846694,70,0.043,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846695,70,0.043,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846696,70,0.043,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846697,70,0.043,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846698,70,0.043,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846699,70,0.043,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846700,70,0.044,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846701,70,0.044,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846702,70,0.044,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846703,70,0.044,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846704,70,0.044,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846705,70,0.044,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846706,70,0.043,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846707,70,0.043,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846708,70,0.043,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846709,70,0.043,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846710,70,0.043,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846711,90,16.38,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846712,90,16.42,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846713,90,16.2,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846714,90,16.09,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846715,90,15.98,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846716,90,16.31,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846717,90,16.31,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846718,90,16.38,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846719,90,16.31,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846720,90,16.34,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846721,90,16.27,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846722,90,16.27,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846723,90,16.21,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846724,90,16.13,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846725,90,16.09,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846726,90,16.17,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846727,90,16.23,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846728,90,16.11,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846729,90,16.06,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846730,90,16.27,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846731,90,16.27,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846732,90,16.27,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846733,90,16.28,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846734,90,16.35,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846735,100,15.4,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846736,100,15.34,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846737,100,15.49,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846738,100,15.56,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846739,100,15.64,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846740,100,15.41,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846741,100,15.41,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846742,100,15.39,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846743,100,15.51,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846744,100,15.45,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846745,100,15.57,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846746,100,15.57,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846747,100,15.6,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846748,100,15.71,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846749,100,15.77,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846750,100,15.75,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846751,100,15.72,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846752,100,15.78,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846753,100,15.83,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846754,100,15.57,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846755,100,15.57,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846756,100,15.57,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846757,100,15.57,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846758,100,15.46,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846759,89,16.72,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846760,89,16.76,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846761,89,16.53,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846762,89,16.42,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846763,89,16.31,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846764,89,16.65,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846765,89,16.64,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846766,89,16.72,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846767,89,16.64,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846768,89,16.68,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846769,89,16.61,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846770,89,16.61,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846771,89,16.55,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846772,89,16.47,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846773,89,16.43,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846774,89,16.51,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846775,89,16.58,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846776,89,16.45,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846777,89,16.4,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846778,89,16.62,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846779,89,16.62,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846780,89,16.62,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846781,89,16.62,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846782,89,16.7,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846783,99,15.55,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846784,99,15.5,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846785,99,15.66,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846786,99,15.73,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846787,99,15.81,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846788,99,15.58,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846789,99,15.59,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846790,99,15.57,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846791,99,15.67,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846792,99,15.62,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846793,99,15.71,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846794,99,15.71,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846795,99,15.72,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846796,99,15.84,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846797,99,15.9,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846798,99,15.86,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846799,99,15.83,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846800,99,15.89,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846801,99,15.94,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846802,99,15.68,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846803,99,15.68,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846804,99,15.68,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846805,99,15.68,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846806,99,15.57,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846807,62,0.373,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846808,62,0.378,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846809,62,0.375,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846810,62,0.375,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846811,62,0.375,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846812,62,0.375,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846813,62,0.375,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846814,62,0.375,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846815,62,0.375,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846816,62,0.374,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846817,62,0.379,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846818,62,0.382,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846819,62,0.384,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846820,62,0.383,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846821,62,0.383,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846822,62,0.383,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846823,62,0.383,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846824,62,0.383,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846825,62,0.383,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846826,62,0.383,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846827,62,0.376,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846828,62,0.373,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846829,62,0.374,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846830,62,0.375,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846831,71,0.103,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846832,71,0.102,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846833,71,0.102,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846834,71,0.102,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846835,71,0.102,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846836,71,0.102,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846837,71,0.102,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846838,71,0.102,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846839,71,0.102,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846840,71,0.103,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846841,71,0.102,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846842,71,0.102,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846843,71,0.102,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846844,71,0.102,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846845,71,0.102,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846846,71,0.102,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846847,71,0.102,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846848,71,0.102,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846849,71,0.102,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846850,71,0.102,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846851,71,0.103,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846852,71,0.103,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846853,71,0.102,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846854,71,0.102,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846855,77,21.45,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846856,77,21.45,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846857,77,21.5,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846858,77,21.45,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846859,77,21.45,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846860,77,21.4,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846861,77,21.5,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846862,77,21.5,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846863,77,21.5,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846864,77,21.5,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846865,77,21.45,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846866,77,21.45,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846867,77,21.45,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846868,77,21.5,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846869,77,21.5,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846870,77,21.45,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846871,77,21.45,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846872,77,21.5,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846873,77,21.5,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846874,77,21.45,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846875,77,21.5,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846876,77,21.5,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846877,77,21.5,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846878,77,21.5,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846879,82,70.6,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846880,82,70.6,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846881,82,70.7,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846882,82,70.6,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846883,82,70.6,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846884,82,70.5,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846885,82,70.7,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846886,82,70.7,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846887,82,70.7,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846888,82,70.7,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846889,82,70.6,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846890,82,70.6,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846891,82,70.6,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846892,82,70.7,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846893,82,70.7,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846894,82,70.6,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846895,82,70.6,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846896,82,70.7,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846897,82,70.7,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846898,82,70.6,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846899,82,70.7,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846900,82,70.7,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846901,82,70.7,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846902,82,70.7,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846903,72,0.098,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846904,72,0.097,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846905,72,0.097,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846906,72,0.097,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846907,72,0.097,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846908,72,0.097,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846909,72,0.097,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846910,72,0.097,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846911,72,0.097,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846912,72,0.098,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846913,72,0.097,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846914,72,0.097,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846915,72,0.097,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846916,72,0.097,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846917,72,0.097,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846918,72,0.097,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846919,72,0.097,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846920,72,0.097,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846921,72,0.097,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846922,72,0.097,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846923,72,0.098,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846924,72,0.098,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846925,72,0.097,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846926,72,0.097,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846927,92,25.57,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846928,92,26.08,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846929,92,25.79,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846930,92,25.79,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846931,92,25.79,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846932,92,25.79,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846933,92,25.79,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846934,92,25.79,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846935,92,25.79,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846936,92,25.68,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846937,92,26.15,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846938,92,26.45,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846939,92,26.64,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846940,92,26.54,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846941,92,26.54,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846942,92,26.54,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846943,92,26.54,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846944,92,26.55,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846945,92,26.55,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846946,92,26.55,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846947,92,25.95,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846948,92,25.65,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846949,92,25.69,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846950,92,25.8,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846951,102,35.23,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846952,102,34.72,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846953,102,34.92,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846954,102,34.92,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846955,102,34.92,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846956,102,34.92,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846957,102,34.92,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846958,102,34.92,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846959,102,34.92,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846960,102,35.08,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846961,102,34.84,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846962,102,34.64,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846963,102,34.59,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846964,102,34.75,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846965,102,34.75,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846966,102,34.75,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846967,102,34.75,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846968,102,34.75,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846969,102,34.75,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846970,102,34.76,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846971,102,35.16,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846972,102,35.36,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846973,102,35.09,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846974,102,34.93,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846975,91,25.93,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13846976,91,26.45,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13846977,91,26.16,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13846978,91,26.16,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13846979,91,26.16,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13846980,91,26.16,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13846981,91,26.16,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13846982,91,26.16,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13846983,91,26.16,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13846984,91,26.05,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13846985,91,26.52,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13846986,91,26.83,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13846987,91,27.02,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13846988,91,26.92,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13846989,91,26.92,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13846990,91,26.93,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13846991,91,26.92,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13846992,91,26.93,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13846993,91,26.93,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13846994,91,26.93,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13846995,91,26.33,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13846996,91,26.03,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13846997,91,26.06,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13846998,91,26.17,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13846999,101,37.14,'2011-08-24 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13847000,101,36.57,'2011-08-24 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13847001,101,36.79,'2011-08-24 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13847002,101,36.78,'2011-08-24 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13847003,101,36.77,'2011-08-24 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13847004,101,36.78,'2011-08-24 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13847005,101,36.77,'2011-08-24 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13847006,101,36.77,'2011-08-24 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13847007,101,36.77,'2011-08-24 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13847008,101,36.94,'2011-08-24 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13847009,101,36.68,'2011-08-25 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13847010,101,36.47,'2011-08-25 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13847011,101,36.43,'2011-08-25 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13847012,101,36.59,'2011-08-25 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13847013,101,36.58,'2011-08-25 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13847014,101,36.58,'2011-08-25 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13847015,101,36.59,'2011-08-25 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13847016,101,36.57,'2011-08-25 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13847017,101,36.57,'2011-08-25 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13847018,101,36.56,'2011-08-25 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13847019,101,36.99,'2011-08-25 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13847020,101,37.2,'2011-08-25 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13847021,101,36.9,'2011-08-25 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13847022,101,36.74,'2011-08-25 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853448,31,13.13,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853449,31,13.13,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853450,31,13.12,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853451,31,13.11,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853452,31,13.12,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853453,31,12.81,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853454,31,12.74,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853455,31,12.71,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853456,31,12.69,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853457,31,12.69,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853458,31,12.66,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853459,31,12.64,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853460,31,12.6,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853461,31,12.58,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853462,31,12.56,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853463,31,12.54,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853464,31,12.53,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853465,31,12.55,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853466,31,12.8,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853467,31,13.18,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853468,31,13.22,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853469,31,13.1,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853470,31,13.17,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853471,31,13.16,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853472,32,3.344,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853473,32,2.65,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853474,32,2.298,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853475,32,2.64,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853476,32,2.366,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853477,32,1.978,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853478,32,1.605,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853479,32,1.547,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853480,32,2.6,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853481,32,2.197,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853482,32,2.244,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853483,32,1.275,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853484,32,1.561,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853485,32,2.109,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853486,32,2.689,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853487,32,1.909,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853488,32,1.408,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853489,32,1.933,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853490,32,2.177,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853491,32,3.728,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853492,32,5.018,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853493,32,3.629,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853494,32,4.297,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853495,32,3.917,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853496,33,191,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853497,33,207.8,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853498,33,186.6,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853499,33,213.1,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853500,33,212.9,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853501,33,227,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853502,33,235.1,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853503,33,288,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853504,33,196.3,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853505,33,225.3,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853506,33,276.6,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853507,33,265.6,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853508,33,234.1,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853509,33,212.9,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853510,33,198.7,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853511,33,318.9,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853512,33,341.5,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853513,33,346.2,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853514,33,144,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853515,33,185.5,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853516,33,197.2,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853517,33,202.8,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853518,33,197.6,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853519,33,186.4,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853520,34,35.38,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853521,34,42.34,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853522,34,50.18,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853523,34,34.66,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853524,34,17.62,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853525,34,21.93,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853526,34,58.73,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853527,34,65.7,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853528,34,68.89,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853529,34,77.71,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853530,34,35.35,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853531,34,68.32,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853532,34,57.47,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853533,34,41.14,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853534,34,44.94,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853535,34,83.8,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853536,34,95.1,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853537,34,39.99,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853538,34,68.57,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853539,34,21.92,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853540,34,16.69,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853541,34,20.19,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853542,34,18.73,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853543,34,18.15,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853544,35,630.4,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13853545,35,630.1,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13853546,35,629.8,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13853547,35,629.6,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13853548,35,629.5,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13853549,35,629.6,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13853550,35,630,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13853551,35,630.4,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13853552,35,630.4,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13853553,35,631.2,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13853554,35,631.9,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13853555,35,632.2,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13853556,35,631.9,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13853557,35,631.5,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13853558,35,631.6,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13853559,35,631.7,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13853560,35,632.1,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13853561,35,632.4,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13853562,35,632.6,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13853563,35,632.7,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13853564,35,632.9,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13853565,35,632.7,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13853566,35,632.6,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13853567,35,632.3,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13853568,30,0,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853569,30,0,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853570,30,0,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853571,30,0,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853572,30,0,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853573,30,0,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853574,30,0,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853575,30,0,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853576,30,0,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853577,30,0,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853578,30,0,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853579,30,0,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853580,30,0,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853581,30,0,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853582,30,0,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853583,30,0,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853584,30,0,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853585,30,0,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853586,30,0,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853587,30,0,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853588,30,0,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853589,30,0,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853590,30,0,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853591,30,0,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853592,28,33.16,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853593,28,32.95,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853594,28,33.42,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853595,28,33.29,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853596,28,31.98,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853597,28,27.68,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853598,28,23.57,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853599,28,23.44,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853600,28,25.29,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853601,28,25.51,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853602,28,24.89,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853603,28,22.02,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853604,28,20.13,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853605,28,19.37,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853606,28,20.26,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853607,28,20.33,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853608,28,19.82,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853609,28,18.5,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853610,28,24.18,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853611,28,27.05,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853612,28,27.3,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853613,28,29.28,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853614,28,31.03,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853615,28,32.27,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853616,29,18.69,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853617,29,16.89,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853618,29,16.99,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853619,29,16.73,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853620,29,19.52,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853621,29,31.38,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853622,29,36.73,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853623,29,34.38,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853624,29,29.45,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853625,29,30.23,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853626,29,36.46,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853627,29,48.89,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853628,29,48.93,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853629,29,46.15,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853630,29,40.36,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853631,29,43.71,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853632,29,51.01,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853633,29,47.59,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853634,29,32.62,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853635,29,30.26,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853636,29,35.71,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853637,29,23.44,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853638,29,24.27,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853639,29,20.14,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853640,36,1003,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853641,36,663.3,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853642,36,662.9,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853643,36,523.1,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853644,36,285.7,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853645,36,44.42,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853646,36,1.5,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853647,36,0,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853648,36,0,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853649,36,0,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853650,36,0,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853651,36,0,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853652,36,0,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853653,36,0,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853654,36,0,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853655,36,0,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853656,36,2.956,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853657,36,100.1,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853658,36,324.3,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853659,36,604.5,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853660,36,582.2,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853661,36,820,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853662,36,774,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853663,36,1035,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853664,46,1.313,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853665,46,1.444,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853666,46,1.173,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853667,46,1.246,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853668,46,1.509,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853669,46,1.464,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853670,46,1.513,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853671,46,1.598,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853672,46,1.519,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853673,46,1.434,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853674,46,1.464,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853675,46,1.421,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853676,46,1.427,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853677,46,1.355,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853678,46,1.329,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853679,46,1.523,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853680,46,1.499,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853681,46,1.567,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853682,46,1.509,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853683,46,1.361,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853684,46,1.089,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853685,46,1.346,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853686,46,1.071,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853687,46,1.357,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853688,47,1.391,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853689,47,1.529,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853690,47,1.242,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853691,47,1.32,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853692,47,1.595,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853693,47,1.537,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853694,47,1.577,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853695,47,1.665,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853696,47,1.587,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853697,47,1.5,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853698,47,1.529,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853699,47,1.478,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853700,47,1.478,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853701,47,1.402,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853702,47,1.377,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853703,47,1.579,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853704,47,1.552,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853705,47,1.619,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853706,47,1.573,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853707,47,1.426,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853708,47,1.142,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853709,47,1.416,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853710,47,1.13,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853711,47,1.435,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853712,48,0.379,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13853713,48,0.241,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13853714,48,0.528,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13853715,48,0.45,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13853716,48,0.175,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13853717,48,0.233,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13853718,48,0.193,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13853719,48,0.105,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13853720,48,0.183,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13853721,48,0.27,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13853722,48,0.241,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13853723,48,0.292,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13853724,48,0.292,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13853725,48,0.368,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13853726,48,0.393,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13853727,48,0.191,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13853728,48,0.218,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13853729,48,0.151,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13853730,48,0.197,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13853731,48,0.344,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13853732,48,0.628,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13853733,48,0.354,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13853734,48,0.64,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13853735,48,0.335,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13853736,41,27.33,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853737,40,34.06,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853738,39,21.32,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853739,37,12.57,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853740,43,630.4,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853741,44,0,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853742,42,27.54,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853743,45,-9999,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853744,38,2.574,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853745,51,0,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853746,53,1.925,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853747,49,1.436,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853748,52,0,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853749,54,2.04,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853750,50,1.506,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853751,56,-0.27,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853752,57,1.77,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13853753,55,0.264,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13856994,58,0.145,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13856995,58,0.146,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13856996,58,0.144,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13856997,58,0.145,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13856998,58,0.144,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13856999,58,0.142,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857000,58,0.141,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857001,58,0.139,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857002,58,0.136,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857003,58,0.138,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857004,58,0.135,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857005,58,0.134,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857006,58,0.135,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857007,58,0.133,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857008,58,0.134,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857009,58,0.132,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857010,58,0.132,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857011,58,0.131,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857012,58,0.13,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857013,58,0.131,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857014,58,0.136,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857015,58,0.139,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857016,58,0.14,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857017,58,0.144,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857018,63,0.015,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857019,63,0.014,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857020,63,0.014,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857021,63,0.014,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857022,63,0.014,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857023,63,0.014,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857024,63,0.014,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857025,63,0.014,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857026,63,0.014,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857027,63,0.014,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857028,63,0.014,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857029,63,0.014,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857030,63,0.014,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857031,63,0.014,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857032,63,0.014,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857033,63,0.014,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857034,63,0.014,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857035,63,0.014,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857036,63,0.014,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857037,63,0.014,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857038,63,0.014,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857039,63,0.014,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857040,63,0.014,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857041,63,0.014,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857042,73,30.58,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857043,73,31.55,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857044,73,31.7,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857045,73,31.7,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857046,73,31.15,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857047,73,30.32,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857048,73,29.27,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857049,73,28.17,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857050,73,27.42,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857051,73,26.8,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857052,73,26.4,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857053,73,26.12,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857054,73,25.7,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857055,73,25.17,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857056,73,24.8,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857057,73,24.47,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857058,73,23.97,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857059,73,23.55,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857060,73,23.6,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857061,73,24.43,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857062,73,25.65,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857063,73,26.6,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857064,73,28.18,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857065,73,29.43,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857066,78,87.1,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857067,78,88.8,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857068,78,89.1,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857069,78,89.1,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857070,78,88,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857071,78,86.6,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857072,78,84.7,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857073,78,82.7,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857074,78,81.4,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857075,78,80.2,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857076,78,79.5,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857077,78,78.97,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857078,78,78.27,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857079,78,77.4,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857080,78,76.6,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857081,78,76.02,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857082,78,75.2,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857083,78,74.4,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857084,78,74.5,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857085,78,75.96,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857086,78,78.18,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857087,78,79.88,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857088,78,82.8,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857089,78,85,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857090,64,0.016,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857091,64,0.016,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857092,64,0.016,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857093,64,0.016,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857094,64,0.015,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857095,64,0.015,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857096,64,0.015,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857097,64,0.014,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857098,64,0.014,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857099,64,0.014,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857100,64,0.014,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857101,64,0.014,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857102,64,0.014,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857103,64,0.014,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857104,64,0.014,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857105,64,0.014,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857106,64,0.014,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857107,64,0.014,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857108,64,0.014,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857109,64,0.014,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857110,64,0.014,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857111,64,0.014,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857112,64,0.015,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857113,64,0.015,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857114,84,8.82,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857115,84,8.87,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857116,84,8.8,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857117,84,8.84,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857118,84,8.77,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857119,84,8.68,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857120,84,8.6,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857121,84,8.51,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857122,84,8.35,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857123,84,8.45,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857124,84,8.32,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857125,84,8.21,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857126,84,8.31,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857127,84,8.19,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857128,84,8.23,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857129,84,8.16,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857130,84,8.16,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857131,84,8.1,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857132,84,8.04,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857133,84,8.09,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857134,84,8.36,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857135,84,8.49,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857136,84,8.54,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857137,84,8.79,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857138,94,5.611,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857139,94,5.661,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857140,94,5.681,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857141,94,5.621,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857142,94,5.553,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857143,94,5.45,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857144,94,5.319,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857145,94,5.218,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857146,94,5.216,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857147,94,5.118,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857148,94,5.127,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857149,94,5.166,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857150,94,5.029,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857151,94,5.036,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857152,94,4.924,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857153,94,4.952,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857154,94,4.905,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857155,94,4.894,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857156,94,4.985,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857157,94,5.092,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857158,94,5.13,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857159,94,5.16,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857160,94,5.321,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857161,94,5.324,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857162,83,9.14,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857163,83,9.22,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857164,83,9.14,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857165,83,9.18,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857166,83,9.1,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857167,83,8.98,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857168,83,8.88,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857169,83,8.76,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857170,83,8.59,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857171,83,8.67,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857172,83,8.53,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857173,83,8.41,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857174,83,8.51,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857175,83,8.37,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857176,83,8.41,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857177,83,8.33,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857178,83,8.32,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857179,83,8.25,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857180,83,8.19,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857181,83,8.26,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857182,83,8.56,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857183,83,8.71,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857184,83,8.8,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857185,83,9.09,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857186,93,5.182,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857187,93,5.163,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857188,93,5.177,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857189,93,5.121,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857190,93,5.094,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857191,93,5.064,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857192,93,5.018,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857193,93,4.996,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857194,93,5.057,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857195,93,4.994,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857196,93,5.033,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857197,93,5.097,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857198,93,4.992,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857199,93,5.031,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857200,93,4.949,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857201,93,5.001,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857202,93,4.983,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857203,93,5.001,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857204,93,5.098,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857205,93,5.141,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857206,93,5.078,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857207,93,5.034,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857208,93,5.079,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857209,93,4.989,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857210,59,0.273,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857211,59,0.273,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857212,59,0.275,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857213,59,0.275,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857214,59,0.275,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857215,59,0.274,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857216,59,0.275,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857217,59,0.273,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857218,59,0.273,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857219,59,0.272,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857220,59,0.271,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857221,59,0.269,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857222,59,0.266,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857223,59,0.266,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857224,59,0.264,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857225,59,0.264,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857226,59,0.263,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857227,59,0.263,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857228,59,0.262,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857229,59,0.262,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857230,59,0.262,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857231,59,0.264,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857232,59,0.266,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857233,59,0.265,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857234,65,0.034,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857235,65,0.034,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857236,65,0.034,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857237,65,0.034,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857238,65,0.034,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857239,65,0.034,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857240,65,0.034,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857241,65,0.034,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857242,65,0.033,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857243,65,0.033,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857244,65,0.033,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857245,65,0.033,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857246,65,0.033,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857247,65,0.033,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857248,65,0.033,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857249,65,0.033,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857250,65,0.033,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857251,65,0.033,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857252,65,0.033,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857253,65,0.033,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857254,65,0.033,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857255,65,0.033,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857256,65,0.033,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857257,65,0.033,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857258,74,28.08,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857259,74,28.75,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857260,74,29.2,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857261,74,29.43,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857262,74,29.5,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857263,74,29.2,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857264,74,28.82,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857265,74,28.3,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857266,74,27.77,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857267,74,27.27,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857268,74,26.8,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857269,74,26.55,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857270,74,26.25,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857271,74,25.9,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857272,74,25.55,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857273,74,25.25,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857274,74,24.85,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857275,74,24.62,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857276,74,24.3,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857277,74,24.25,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857278,74,24.68,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857279,74,25.25,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857280,74,26.03,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857281,74,27.08,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857282,79,82.6,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857283,79,83.8,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857284,79,84.6,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857285,79,85,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857286,79,85.1,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857287,79,84.6,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857288,79,83.9,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857289,79,83,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857290,79,82,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857291,79,81.1,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857292,79,80.2,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857293,79,79.75,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857294,79,79.2,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857295,79,78.6,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857296,79,78.07,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857297,79,77.5,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857298,79,76.7,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857299,79,76.27,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857300,79,75.7,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857301,79,75.6,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857302,79,76.38,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857303,79,77.5,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857304,79,78.86,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857305,79,80.8,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857306,66,0.035,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857307,66,0.035,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857308,66,0.035,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857309,66,0.036,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857310,66,0.036,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857311,66,0.036,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857312,66,0.035,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857313,66,0.035,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857314,66,0.035,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857315,66,0.034,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857316,66,0.034,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857317,66,0.034,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857318,66,0.034,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857319,66,0.034,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857320,66,0.034,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857321,66,0.033,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857322,66,0.033,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857323,66,0.033,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857324,66,0.033,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857325,66,0.033,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857326,66,0.033,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857327,66,0.033,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857328,66,0.033,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857329,66,0.034,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857330,86,17.18,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857331,86,17.23,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857332,86,17.34,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857333,86,17.36,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857334,86,17.36,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857335,86,17.29,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857336,86,17.31,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857337,86,17.22,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857338,86,17.19,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857339,86,17.15,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857340,86,17.04,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857341,86,16.89,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857342,86,16.67,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857343,86,16.66,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857344,86,16.54,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857345,86,16.57,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857346,86,16.46,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857347,86,16.44,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857348,86,16.39,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857349,86,16.41,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857350,86,16.35,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857351,86,16.49,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857352,86,16.66,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857353,86,16.62,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857354,96,12.64,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857355,96,12.81,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857356,96,12.82,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857357,96,12.91,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857358,96,12.91,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857359,96,12.92,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857360,96,12.8,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857361,96,12.66,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857362,96,12.5,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857363,96,12.34,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857364,96,12.25,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857365,96,12.27,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857366,96,12.29,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857367,96,12.21,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857368,96,12.11,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857369,96,12.02,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857370,96,11.91,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857371,96,11.84,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857372,96,11.73,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857373,96,11.68,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857374,96,11.83,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857375,96,11.94,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857376,96,12.02,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857377,96,12.31,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857378,85,17.69,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857379,85,17.76,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857380,85,17.9,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857381,85,17.93,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857382,85,17.93,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857383,85,17.86,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857384,85,17.86,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857385,85,17.75,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857386,85,17.7,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857387,85,17.63,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857388,85,17.51,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857389,85,17.34,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857390,85,17.11,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857391,85,17.08,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857392,85,16.95,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857393,85,16.97,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857394,85,16.83,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857395,85,16.81,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857396,85,16.74,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857397,85,16.76,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857398,85,16.72,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857399,85,16.87,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857400,85,17.08,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857401,85,17.07,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857402,95,12.11,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857403,95,12.18,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857404,95,12.1,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857405,95,12.14,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857406,95,12.14,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857407,95,12.17,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857408,95,12.11,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857409,95,12.06,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857410,95,11.99,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857411,95,11.91,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857412,95,11.91,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857413,95,11.97,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857414,95,12.03,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857415,95,12.01,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857416,95,11.96,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857417,95,11.93,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857418,95,11.89,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857419,95,11.87,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857420,95,11.8,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857421,95,11.76,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857422,95,11.86,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857423,95,11.87,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857424,95,11.83,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857425,95,11.96,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857426,60,0.364,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857427,60,0.37,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857428,60,0.368,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857429,60,0.367,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857430,60,0.363,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857431,60,0.369,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857432,60,0.369,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857433,60,0.367,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857434,60,0.369,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857435,60,0.372,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857436,60,0.372,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857437,60,0.367,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857438,60,0.367,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857439,60,0.368,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857440,60,0.368,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857441,60,0.365,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857442,60,0.365,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857443,60,0.365,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857444,60,0.369,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857445,60,0.366,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857446,60,0.368,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857447,60,0.364,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857448,60,0.363,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857449,60,0.368,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857450,67,0.081,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857451,67,0.08,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857452,67,0.081,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857453,67,0.081,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857454,67,0.082,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857455,67,0.081,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857456,67,0.081,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857457,67,0.082,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857458,67,0.082,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857459,67,0.081,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857460,67,0.081,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857461,67,0.082,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857462,67,0.082,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857463,67,0.081,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857464,67,0.081,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857465,67,0.082,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857466,67,0.082,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857467,67,0.082,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857468,67,0.081,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857469,67,0.081,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857470,67,0.08,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857471,67,0.081,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857472,67,0.082,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857473,67,0.081,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857474,75,24.95,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857475,75,25.1,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857476,75,25.33,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857477,75,25.4,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857478,75,25.55,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857479,75,25.83,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857480,75,25.9,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857481,75,26.13,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857482,75,26.2,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857483,75,26.2,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857484,75,26.2,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857485,75,26.2,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857486,75,26.2,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857487,75,25.9,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857488,75,25.9,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857489,75,25.9,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857490,75,25.55,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857491,75,25.4,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857492,75,25.4,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857493,75,25.4,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857494,75,25.32,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857495,75,25.1,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857496,75,25.1,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857497,75,25.1,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857498,80,76.93,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857499,80,77.3,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857500,80,77.6,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857501,80,77.7,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857502,80,78.07,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857503,80,78.5,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857504,80,78.6,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857505,80,78.97,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857506,80,79.1,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857507,80,79.1,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857508,80,79.1,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857509,80,79.1,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857510,80,79.1,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857511,80,78.6,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857512,80,78.6,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857513,80,78.6,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857514,80,78.07,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857515,80,77.7,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857516,80,77.7,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857517,80,77.7,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857518,80,77.6,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857519,80,77.3,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857520,80,77.3,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857521,80,77.3,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857522,68,0.081,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857523,68,0.08,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857524,68,0.081,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857525,68,0.082,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857526,68,0.083,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857527,68,0.082,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857528,68,0.082,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857529,68,0.083,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857530,68,0.083,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857531,68,0.082,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857532,68,0.082,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857533,68,0.083,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857534,68,0.083,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857535,68,0.083,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857536,68,0.082,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857537,68,0.083,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857538,68,0.083,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857539,68,0.083,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857540,68,0.081,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857541,68,0.081,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857542,68,0.081,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857543,68,0.082,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857544,68,0.082,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857545,68,0.081,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857546,88,24.81,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857547,88,25.41,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857548,88,25.21,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857549,88,25.15,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857550,88,24.69,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857551,88,25.26,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857552,88,25.31,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857553,88,25.09,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857554,88,25.24,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857555,88,25.55,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857556,88,25.54,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857557,88,25.09,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857558,88,25.09,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857559,88,25.23,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857560,88,25.15,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857561,88,24.91,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857562,88,24.92,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857563,88,24.89,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857564,88,25.3,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857565,88,24.99,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857566,88,25.2,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857567,88,24.82,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857568,88,24.72,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857569,88,25.16,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857570,98,29.22,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857571,98,28.88,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857572,98,29.26,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857573,98,29.4,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857574,98,29.92,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857575,98,29.52,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857576,98,29.55,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857577,98,29.95,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857578,98,29.91,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857579,98,29.62,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857580,98,29.62,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857581,98,29.94,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857582,98,29.94,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857583,98,29.68,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857584,98,29.59,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857585,98,29.75,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857586,98,29.76,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857587,98,29.72,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857588,98,29.37,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857589,98,29.43,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857590,98,29.04,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857591,98,29.24,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857592,98,29.32,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857593,98,29.01,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857594,87,25.37,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857595,87,25.99,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857596,87,25.8,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857597,87,25.75,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857598,87,25.28,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857599,87,25.88,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857600,87,25.93,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857601,87,25.72,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857602,87,25.88,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857603,87,26.19,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857604,87,26.19,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857605,87,25.72,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857606,87,25.72,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857607,87,25.85,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857608,87,25.77,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857609,87,25.52,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857610,87,25.53,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857611,87,25.49,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857612,87,25.9,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857613,87,25.58,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857614,87,25.78,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857615,87,25.39,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857616,87,25.28,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857617,87,25.73,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857618,97,29.22,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857619,97,28.83,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857620,97,29.13,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857621,97,29.19,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857622,97,29.65,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857623,97,29.18,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857624,97,29.16,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857625,97,29.49,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857626,97,29.43,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857627,97,29.14,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857628,97,29.16,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857629,97,29.49,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857630,97,29.49,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857631,97,29.28,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857632,97,29.22,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857633,97,29.4,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857634,97,29.47,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857635,97,29.48,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857636,97,29.15,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857637,97,29.26,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857638,97,28.95,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857639,97,29.16,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857640,97,29.28,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857641,97,28.96,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857642,61,0.263,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857643,61,0.263,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857644,61,0.26,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857645,61,0.258,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857646,61,0.259,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857647,61,0.263,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857648,61,0.262,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857649,61,0.263,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857650,61,0.262,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857651,61,0.261,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857652,61,0.261,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857653,61,0.261,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857654,61,0.261,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857655,61,0.261,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857656,61,0.261,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857657,61,0.259,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857658,61,0.26,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857659,61,0.259,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857660,61,0.261,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857661,61,0.261,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857662,61,0.261,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857663,61,0.262,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857664,61,0.262,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857665,61,0.263,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857666,69,0.043,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857667,69,0.043,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857668,69,0.044,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857669,69,0.044,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857670,69,0.044,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857671,69,0.043,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857672,69,0.044,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857673,69,0.043,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857674,69,0.044,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857675,69,0.044,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857676,69,0.044,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857677,69,0.043,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857678,69,0.043,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857679,69,0.043,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857680,69,0.043,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857681,69,0.044,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857682,69,0.044,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857683,69,0.044,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857684,69,0.043,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857685,69,0.043,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857686,69,0.043,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857687,69,0.043,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857688,69,0.043,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857689,69,0.043,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857690,76,24.3,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857691,76,24.3,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857692,76,24.2,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857693,76,24.35,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857694,76,24.3,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857695,76,24.35,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857696,76,24.35,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857697,76,24.4,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857698,76,24.4,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857699,76,24.35,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857700,76,24.4,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857701,76,24.4,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857702,76,24.63,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857703,76,24.63,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857704,76,24.7,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857705,76,24.7,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857706,76,24.7,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857707,76,24.63,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857708,76,24.63,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857709,76,24.7,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857710,76,24.7,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857711,76,24.62,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857712,76,24.63,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857713,76,24.7,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857714,81,75.7,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857715,81,75.7,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857716,81,75.5,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857717,81,75.8,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857718,81,75.7,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857719,81,75.8,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857720,81,75.8,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857721,81,75.9,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857722,81,75.9,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857723,81,75.8,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857724,81,75.9,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857725,81,75.9,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857726,81,76.28,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857727,81,76.28,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857728,81,76.4,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857729,81,76.4,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857730,81,76.4,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857731,81,76.28,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857732,81,76.28,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857733,81,76.4,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857734,81,76.4,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857735,81,76.27,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857736,81,76.28,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857737,81,76.4,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857738,70,0.043,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857739,70,0.043,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857740,70,0.043,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857741,70,0.043,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857742,70,0.043,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857743,70,0.043,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857744,70,0.043,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857745,70,0.043,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857746,70,0.043,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857747,70,0.043,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857748,70,0.043,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857749,70,0.043,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857750,70,0.043,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857751,70,0.043,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857752,70,0.043,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857753,70,0.044,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857754,70,0.044,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857755,70,0.044,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857756,70,0.043,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857757,70,0.043,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857758,70,0.043,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857759,70,0.043,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857760,70,0.043,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857761,70,0.043,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857762,90,16.43,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857763,90,16.39,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857764,90,16.21,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857765,90,16.09,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857766,90,16.1,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857767,90,16.39,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857768,90,16.35,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857769,90,16.39,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857770,90,16.35,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857771,90,16.28,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857772,90,16.32,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857773,90,16.28,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857774,90,16.28,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857775,90,16.28,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857776,90,16.28,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857777,90,16.14,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857778,90,16.2,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857779,90,16.14,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857780,90,16.28,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857781,90,16.28,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857782,90,16.28,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857783,90,16.32,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857784,90,16.32,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857785,90,16.4,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857786,100,15.35,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857787,100,15.4,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857788,100,15.5,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857789,100,15.57,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857790,100,15.57,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857791,100,15.4,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857792,100,15.46,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857793,100,15.4,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857794,100,15.46,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857795,100,15.57,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857796,100,15.52,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857797,100,15.58,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857798,100,15.58,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857799,100,15.58,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857800,100,15.58,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857801,100,15.72,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857802,100,15.69,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857803,100,15.72,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857804,100,15.58,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857805,100,15.58,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857806,100,15.58,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857807,100,15.52,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857808,100,15.52,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857809,100,15.41,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857810,89,16.78,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857811,89,16.74,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857812,89,16.55,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857813,89,16.44,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857814,89,16.44,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857815,89,16.74,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857816,89,16.7,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857817,89,16.74,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857818,89,16.7,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857819,89,16.63,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857820,89,16.67,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857821,89,16.63,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857822,89,16.64,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857823,89,16.64,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857824,89,16.64,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857825,89,16.5,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857826,89,16.56,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857827,89,16.5,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857828,89,16.64,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857829,89,16.64,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857830,89,16.64,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857831,89,16.68,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857832,89,16.68,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857833,89,16.76,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857834,99,15.45,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857835,99,15.51,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857836,99,15.6,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857837,99,15.68,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857838,99,15.68,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857839,99,15.51,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857840,99,15.57,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857841,99,15.51,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857842,99,15.57,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857843,99,15.66,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857844,99,15.61,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857845,99,15.65,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857846,99,15.65,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857847,99,15.65,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857848,99,15.63,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857849,99,15.77,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857850,99,15.74,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857851,99,15.77,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857852,99,15.63,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857853,99,15.63,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857854,99,15.63,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857855,99,15.57,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857856,99,15.57,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857857,99,15.46,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857858,62,0.375,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857859,62,0.375,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857860,62,0.375,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857861,62,0.375,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857862,62,0.375,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857863,62,0.375,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857864,62,0.375,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857865,62,0.375,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857866,62,0.375,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857867,62,0.375,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857868,62,0.375,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857869,62,0.375,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857870,62,0.375,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857871,62,0.375,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857872,62,0.375,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857873,62,0.371,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857874,62,0.374,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857875,62,0.37,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857876,62,0.374,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857877,62,0.371,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857878,62,0.375,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857879,62,0.375,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857880,62,0.375,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857881,62,0.375,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857882,71,0.102,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857883,71,0.102,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857884,71,0.102,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857885,71,0.102,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857886,71,0.102,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857887,71,0.102,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857888,71,0.102,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857889,71,0.102,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857890,71,0.102,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857891,71,0.102,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857892,71,0.102,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857893,71,0.102,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857894,71,0.102,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857895,71,0.102,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857896,71,0.102,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857897,71,0.103,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857898,71,0.103,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857899,71,0.104,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857900,71,0.103,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857901,71,0.103,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857902,71,0.102,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857903,71,0.102,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857904,71,0.102,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857905,71,0.102,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857906,77,21.5,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857907,77,21.5,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857908,77,21.5,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857909,77,21.45,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857910,77,21.55,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857911,77,21.5,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857912,77,21.6,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857913,77,21.55,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857914,77,21.65,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857915,77,21.55,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857916,77,21.65,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857917,77,21.65,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857918,77,21.65,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857919,77,21.7,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857920,77,21.65,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857921,77,21.7,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857922,77,21.65,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857923,77,21.7,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857924,77,21.65,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857925,77,21.65,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857926,77,21.65,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857927,77,21.7,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857928,77,21.7,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857929,77,21.7,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857930,82,70.7,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857931,82,70.7,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857932,82,70.7,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857933,82,70.6,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857934,82,70.8,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857935,82,70.7,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857936,82,70.9,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857937,82,70.8,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857938,82,71,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857939,82,70.8,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857940,82,71,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857941,82,71,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857942,82,71,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857943,82,71.1,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857944,82,71,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857945,82,71.1,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857946,82,71,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857947,82,71.1,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857948,82,71,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857949,82,71,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857950,82,71,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857951,82,71.1,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857952,82,71.1,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857953,82,71.1,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857954,72,0.097,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857955,72,0.097,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857956,72,0.097,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857957,72,0.097,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857958,72,0.097,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857959,72,0.097,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857960,72,0.097,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857961,72,0.097,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857962,72,0.097,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857963,72,0.097,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857964,72,0.097,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857965,72,0.097,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857966,72,0.097,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857967,72,0.097,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857968,72,0.097,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857969,72,0.098,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857970,72,0.098,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857971,72,0.099,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857972,72,0.098,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857973,72,0.098,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857974,72,0.097,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857975,72,0.097,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13857976,72,0.097,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13857977,72,0.097,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13857978,92,25.8,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13857979,92,25.8,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13857980,92,25.8,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13857981,92,25.8,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13857982,92,25.8,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13857983,92,25.8,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13857984,92,25.8,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13857985,92,25.8,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13857986,92,25.8,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13857987,92,25.8,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13857988,92,25.8,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13857989,92,25.8,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13857990,92,25.81,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13857991,92,25.81,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13857992,92,25.81,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13857993,92,25.48,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13857994,92,25.76,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13857995,92,25.36,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13857996,92,25.76,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13857997,92,25.47,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13857998,92,25.81,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13857999,92,25.81,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13858000,92,25.81,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13858001,92,25.81,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13858002,102,34.93,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13858003,102,34.93,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13858004,102,34.93,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13858005,102,34.93,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13858006,102,34.93,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13858007,102,34.93,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13858008,102,34.93,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13858009,102,34.93,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13858010,102,34.93,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13858011,102,34.93,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13858012,102,34.93,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13858013,102,34.93,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13858014,102,34.93,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13858015,102,34.93,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13858016,102,34.94,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13858017,102,35.41,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13858018,102,35.22,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13858019,102,35.57,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13858020,102,35.21,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13858021,102,35.41,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13858022,102,34.94,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13858023,102,34.94,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13858024,102,34.94,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13858025,102,34.94,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13858026,91,26.17,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13858027,91,26.17,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13858028,91,26.17,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13858029,91,26.17,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13858030,91,26.17,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13858031,91,26.17,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13858032,91,26.17,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13858033,91,26.17,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13858034,91,26.17,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13858035,91,26.17,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13858036,91,26.17,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13858037,91,26.18,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13858038,91,26.18,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13858039,91,26.18,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13858040,91,26.18,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13858041,91,25.85,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13858042,91,26.13,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13858043,91,25.74,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13858044,91,26.14,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13858045,91,25.85,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13858046,91,26.19,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13858047,91,26.19,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13858048,91,26.19,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13858049,91,26.19,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13858050,101,36.74,'2011-08-25 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13858051,101,36.74,'2011-08-25 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13858052,101,36.74,'2011-08-25 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13858053,101,36.74,'2011-08-25 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13858054,101,36.74,'2011-08-25 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13858055,101,36.74,'2011-08-25 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13858056,101,36.74,'2011-08-25 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13858057,101,36.74,'2011-08-25 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13858058,101,36.74,'2011-08-25 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13858059,101,36.74,'2011-08-25 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13858060,101,36.74,'2011-08-26 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13858061,101,36.73,'2011-08-26 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13858062,101,36.71,'2011-08-26 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13858063,101,36.71,'2011-08-26 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13858064,101,36.71,'2011-08-26 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13858065,101,37.2,'2011-08-26 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13858066,101,37,'2011-08-26 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13858067,101,37.38,'2011-08-26 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13858068,101,37,'2011-08-26 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13858069,101,37.21,'2011-08-26 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13858070,101,36.71,'2011-08-26 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13858071,101,36.71,'2011-08-26 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13858072,101,36.71,'2011-08-26 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13858073,101,36.7,'2011-08-26 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863467,31,13.13,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863468,31,13.12,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863469,31,13.11,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863470,31,13.12,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863471,31,13.12,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863472,31,12.8,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863473,31,12.75,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863474,31,12.71,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863475,31,12.7,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863476,31,12.68,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863477,31,12.65,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863478,31,12.61,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863479,31,12.6,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863480,31,12.57,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863481,31,12.56,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863482,31,12.53,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863483,31,12.52,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863484,31,12.54,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863485,31,12.79,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863486,31,13.26,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863487,31,13.21,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863488,31,13.19,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863489,31,13.17,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863490,31,13.15,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863491,32,2.437,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863492,32,3.626,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863493,32,4.092,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863494,32,3.065,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863495,32,2.389,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863496,32,2.191,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863497,32,1.432,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863498,32,2.139,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863499,32,2.476,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863500,32,2.064,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863501,32,1.03,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863502,32,1.041,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863503,32,0.923,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863504,32,1.369,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863505,32,1.078,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863506,32,1.163,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863507,32,1.274,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863508,32,1.81,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863509,32,1.845,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863510,32,2.857,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863511,32,2.864,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863512,32,3.765,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863513,32,3.443,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863514,32,2.892,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863515,33,221.9,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863516,33,280,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863517,33,276.8,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863518,33,271.9,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863519,33,271.7,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863520,33,235.7,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863521,33,230.3,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863522,33,198.6,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863523,33,146.8,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863524,33,229.9,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863525,33,275,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863526,33,298.9,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863527,33,233.2,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863528,33,254.4,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863529,33,239.7,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863530,33,305.1,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863531,33,241.5,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863532,33,160.2,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863533,33,168.2,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863534,33,178.4,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863535,33,176.8,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863536,33,190.9,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863537,33,182.7,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863538,33,200.4,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863539,34,65.12,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863540,34,18.64,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863541,34,15.19,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863542,34,16.38,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863543,34,12.07,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863544,34,21.73,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863545,34,22.41,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863546,34,35.29,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863547,34,26.91,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863548,34,85.8,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863549,34,72.4,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863550,34,62.62,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863551,34,57.86,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863552,34,75.57,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863553,34,31.62,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863554,34,91,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863555,34,94.8,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863556,34,66.97,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863557,34,55.38,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863558,34,33.69,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863559,34,18.13,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863560,34,18.21,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863561,34,18.95,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863562,34,55.57,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863563,35,631.8,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13863564,35,631.5,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13863565,35,631.3,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13863566,35,631.1,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13863567,35,630.9,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13863568,35,631.2,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13863569,35,631.5,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13863570,35,631.9,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13863571,35,632.2,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13863572,35,632.5,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13863573,35,632.6,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13863574,35,632.6,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13863575,35,632.4,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13863576,35,632.3,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13863577,35,632.3,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13863578,35,632.5,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13863579,35,632.6,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13863580,35,632.8,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13863581,35,633.1,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13863582,35,633.1,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13863583,35,633.1,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13863584,35,633,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13863585,35,632.7,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13863586,35,632.4,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13863587,30,0,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863588,30,0,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863589,30,0,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863590,30,0,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863591,30,0,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863592,30,0,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863593,30,0,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863594,30,0,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863595,30,0,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863596,30,0,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863597,30,0,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863598,30,0,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863599,30,0,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863600,30,0,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863601,30,0,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863602,30,0,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863603,30,0,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863604,30,0,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863605,30,0,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863606,30,0,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863607,30,0,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863608,30,0,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863609,30,0,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863610,30,0,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863611,28,33.38,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863612,28,33.29,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863613,28,33.23,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863614,28,32.83,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863615,28,31.71,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863616,28,26.69,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863617,28,23.22,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863618,28,23.18,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863619,28,26.02,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863620,28,23.76,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863621,28,19.93,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863622,28,18.87,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863623,28,18.99,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863624,28,19.53,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863625,28,18.91,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863626,28,19.53,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863627,28,19.36,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863628,28,20.74,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863629,28,24.08,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863630,28,27.05,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863631,28,28.59,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863632,28,30,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863633,28,31.52,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863634,28,32.05,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863635,29,23.68,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863636,29,15.47,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863637,29,14.29,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863638,29,17.34,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863639,29,22.97,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863640,29,33.54,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863641,29,38.72,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863642,29,29.11,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863643,29,30.12,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863644,29,40.38,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863645,29,48.9,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863646,29,53.43,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863647,29,47.75,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863648,29,48.42,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863649,29,47.79,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863650,29,47.36,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863651,29,47.69,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863652,29,40.44,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863653,29,35.75,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863654,29,29.95,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863655,29,31.51,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863656,29,26.3,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863657,29,25.05,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863658,29,28.56,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863659,36,995,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863660,36,885,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863661,36,730.4,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863662,36,517.6,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863663,36,281.4,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863664,36,40.88,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863665,36,1.819,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863666,36,0,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863667,36,0,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863668,36,0,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863669,36,0,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863670,36,0,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863671,36,0,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863672,36,0,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863673,36,0,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863674,36,0,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863675,36,2.759,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863676,36,95.6,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863677,36,315,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863678,36,542.6,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863679,36,787.7,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863680,36,874,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863681,36,1035,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863682,36,1024,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863683,46,1.466,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863684,46,1.444,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863685,46,1.589,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863686,46,1.605,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863687,46,1.734,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863688,46,1.709,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863689,46,1.509,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863690,46,1.529,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863691,46,1.383,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863692,46,1.476,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863693,46,1.458,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863694,46,1.435,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863695,46,1.44,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863696,46,1.369,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863697,46,1.63,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863698,46,1.503,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863699,46,1.577,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863700,46,1.423,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863701,46,1.602,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863702,46,1.243,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863703,46,1.306,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863704,46,1.319,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863705,46,1.234,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863706,46,1.275,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863707,47,1.552,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863708,47,1.529,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863709,47,1.683,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863710,47,1.699,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863711,47,1.833,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863712,47,1.791,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863713,47,1.573,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863714,47,1.592,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863715,47,1.447,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863716,47,1.54,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863717,47,1.51,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863718,47,1.484,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863719,47,1.489,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863720,47,1.417,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863721,47,1.686,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863722,47,1.555,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863723,47,1.632,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863724,47,1.476,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863725,47,1.671,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863726,47,1.303,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863727,47,1.373,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863728,47,1.389,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863729,47,1.303,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863730,47,1.347,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863731,48,0.218,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13863732,48,0.241,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13863733,48,0.087,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13863734,48,0.071,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13863735,48,-0.063,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13863736,48,-0.021,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13863737,48,0.197,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13863738,48,0.178,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13863739,48,0.323,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13863740,48,0.23,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13863741,48,0.26,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13863742,48,0.286,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13863743,48,0.281,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13863744,48,0.353,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13863745,48,0.084,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13863746,48,0.215,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13863747,48,0.138,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13863748,48,0.294,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13863749,48,0.099,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13863750,48,0.467,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13863751,48,0.397,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13863752,48,0.381,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13863753,48,0.467,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13863754,48,0.423,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13863755,41,25.78,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863756,40,34.1,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863757,39,16.91,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863758,37,12.53,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863759,43,631.9,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863760,44,0,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863761,42,33.08,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863762,45,27.39385,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863763,38,2.608,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863764,51,0,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863765,53,1.972,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863766,49,1.448,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863767,52,0,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863768,54,2.044,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863769,50,1.515,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863770,56,-0.274,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863771,57,1.77,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13863772,55,0.255,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13867013,58,0.143,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867014,58,0.146,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867015,58,0.146,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867016,58,0.145,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867017,58,0.143,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867018,58,0.139,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867019,58,0.137,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867020,58,0.138,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867021,58,0.137,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867022,58,0.134,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867023,58,0.133,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867024,58,0.131,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867025,58,0.133,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867026,58,0.131,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867027,58,0.13,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867028,58,0.132,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867029,58,0.129,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867030,58,0.131,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867031,58,0.131,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867032,58,0.133,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867033,58,0.135,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867034,58,0.136,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867035,58,0.139,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867036,58,0.142,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867037,63,0.014,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867038,63,0.014,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867039,63,0.014,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867040,63,0.014,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867041,63,0.014,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867042,63,0.014,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867043,63,0.014,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867044,63,0.014,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867045,63,0.014,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867046,63,0.014,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867047,63,0.013,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867048,63,0.014,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867049,63,0.013,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867050,63,0.014,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867051,63,0.014,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867052,63,0.013,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867053,63,0.014,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867054,63,0.014,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867055,63,0.014,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867056,63,0.014,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867057,63,0.014,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867058,63,0.014,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867059,63,0.014,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867060,63,0.014,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867061,73,31.15,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867062,73,32.18,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867063,73,32.25,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867064,73,31.72,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867065,73,30.97,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867066,73,30.1,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867067,73,29.12,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867068,73,28.17,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867069,73,27.42,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867070,73,26.97,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867071,73,26.42,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867072,73,25.82,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867073,73,25.3,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867074,73,24.95,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867075,73,24.55,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867076,73,24.3,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867077,73,23.9,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867078,73,23.55,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867079,73,23.85,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867080,73,24.6,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867081,73,25.83,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867082,73,27.35,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867083,73,29.06,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867084,73,30.75,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867085,78,88.1,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867086,78,89.9,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867087,78,90,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867088,78,89.1,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867089,78,87.7,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867090,78,86.2,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867091,78,84.4,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867092,78,82.7,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867093,78,81.4,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867094,78,80.6,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867095,78,79.52,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867096,78,78.52,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867097,78,77.62,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867098,78,76.92,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867099,78,76.15,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867100,78,75.7,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867101,78,75.1,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867102,78,74.4,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867103,78,75,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867104,78,76.26,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867105,78,78.51,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867106,78,81.3,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867107,78,84.3,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867108,78,87.4,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867109,64,0.016,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867110,64,0.016,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867111,64,0.016,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867112,64,0.015,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867113,64,0.015,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867114,64,0.015,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867115,64,0.015,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867116,64,0.014,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867117,64,0.014,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867118,64,0.014,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867119,64,0.014,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867120,64,0.014,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867121,64,0.013,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867122,64,0.014,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867123,64,0.014,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867124,64,0.013,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867125,64,0.014,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867126,64,0.013,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867127,64,0.013,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867128,64,0.014,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867129,64,0.014,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867130,64,0.014,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867131,64,0.015,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867132,64,0.015,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867133,84,8.74,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867134,84,8.86,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867135,84,8.88,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867136,84,8.84,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867137,84,8.7,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867138,84,8.5,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867139,84,8.43,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867140,84,8.45,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867141,84,8.39,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867142,84,8.27,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867143,84,8.21,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867144,84,8.12,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867145,84,8.2,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867146,84,8.13,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867147,84,8.01,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867148,84,8.17,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867149,84,7.986,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867150,84,8.11,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867151,84,8.07,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867152,84,8.18,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867153,84,8.3,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867154,84,8.36,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867155,84,8.52,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867156,84,8.66,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867157,94,5.567,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867158,94,5.592,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867159,94,5.562,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867160,94,5.47,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867161,94,5.422,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867162,94,5.367,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867163,94,5.238,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867164,94,5.109,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867165,94,5.05,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867166,94,5.071,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867167,94,5,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867168,94,4.952,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867169,94,4.897,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867170,94,4.871,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867171,94,4.894,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867172,94,4.77,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867173,94,4.869,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867174,94,4.756,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867175,94,4.811,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867176,94,4.88,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867177,94,4.997,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867178,94,5.171,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867179,94,5.287,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867180,94,5.432,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867181,83,9.07,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867182,83,9.22,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867183,83,9.24,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867184,83,9.18,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867185,83,9.02,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867186,83,8.8,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867187,83,8.7,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867188,83,8.7,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867189,83,8.62,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867190,83,8.49,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867191,83,8.42,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867192,83,8.32,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867193,83,8.38,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867194,83,8.31,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867195,83,8.19,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867196,83,8.34,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867197,83,8.14,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867198,83,8.27,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867199,83,8.23,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867200,83,8.36,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867201,83,8.5,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867202,83,8.6,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867203,83,8.8,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867204,83,8.98,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867205,93,5.091,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867206,93,5.063,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867207,93,5.036,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867208,93,4.986,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867209,93,4.996,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867210,93,5.004,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867211,93,4.954,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867212,93,4.897,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867213,93,4.888,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867214,93,4.935,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867215,93,4.905,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867216,93,4.903,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867217,93,4.885,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867218,93,4.883,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867219,93,4.931,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867220,93,4.83,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867221,93,4.952,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867222,93,4.853,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867223,93,4.896,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867224,93,4.903,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867225,93,4.929,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867226,93,4.993,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867227,93,4.983,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867228,93,4.995,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867229,59,0.271,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867230,59,0.272,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867231,59,0.276,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867232,59,0.273,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867233,59,0.275,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867234,59,0.275,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867235,59,0.273,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867236,59,0.272,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867237,59,0.271,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867238,59,0.267,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867239,59,0.266,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867240,59,0.266,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867241,59,0.265,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867242,59,0.264,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867243,59,0.262,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867244,59,0.262,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867245,59,0.261,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867246,59,0.259,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867247,59,0.26,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867248,59,0.26,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867249,59,0.259,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867250,59,0.261,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867251,59,0.262,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867252,59,0.265,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867253,65,0.033,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867254,65,0.033,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867255,65,0.033,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867256,65,0.033,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867257,65,0.033,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867258,65,0.033,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867259,65,0.033,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867260,65,0.033,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867261,65,0.033,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867262,65,0.033,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867263,65,0.033,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867264,65,0.033,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867265,65,0.032,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867266,65,0.033,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867267,65,0.032,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867268,65,0.032,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867269,65,0.033,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867270,65,0.032,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867271,65,0.032,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867272,65,0.032,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867273,65,0.032,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867274,65,0.032,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867275,65,0.033,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867276,65,0.032,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867277,74,28.1,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867278,74,28.98,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867279,74,29.5,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867280,74,29.72,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867281,74,29.5,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867282,74,29.35,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867283,74,29.05,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867284,74,28.45,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867285,74,28.02,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867286,74,27.42,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867287,74,26.92,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867288,74,26.55,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867289,74,26.05,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867290,74,25.67,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867291,74,25.37,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867292,74,25.05,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867293,74,24.85,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867294,74,24.55,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867295,74,24.3,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867296,74,24.25,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867297,74,24.68,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867298,74,25.5,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867299,74,26.55,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867300,74,27.63,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867301,79,82.6,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867302,79,84.2,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867303,79,85.1,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867304,79,85.5,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867305,79,85.1,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867306,79,84.8,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867307,79,84.3,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867308,79,83.2,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867309,79,82.5,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867310,79,81.4,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867311,79,80.5,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867312,79,79.75,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867313,79,78.85,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867314,79,78.3,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867315,79,77.72,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867316,79,77.17,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867317,79,76.7,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867318,79,76.15,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867319,79,75.7,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867320,79,75.6,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867321,79,76.38,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867322,79,77.96,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867323,79,79.78,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867324,79,81.8,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867325,66,0.034,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867326,66,0.035,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867327,66,0.035,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867328,66,0.036,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867329,66,0.035,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867330,66,0.035,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867331,66,0.034,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867332,66,0.034,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867333,66,0.034,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867334,66,0.034,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867335,66,0.034,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867336,66,0.034,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867337,66,0.033,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867338,66,0.033,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867339,66,0.033,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867340,66,0.033,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867341,66,0.033,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867342,66,0.032,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867343,66,0.032,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867344,66,0.032,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867345,66,0.032,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867346,66,0.033,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867347,66,0.033,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867348,66,0.034,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867349,86,17.05,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867350,86,17.12,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867351,86,17.39,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867352,86,17.19,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867353,86,17.32,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867354,86,17.33,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867355,86,17.19,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867356,86,17.12,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867357,86,17.04,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867358,86,16.71,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867359,86,16.64,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867360,86,16.63,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867361,86,16.56,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867362,86,16.51,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867363,86,16.35,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867364,86,16.36,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867365,86,16.28,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867366,86,16.13,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867367,86,16.19,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867368,86,16.24,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867369,86,16.12,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867370,86,16.3,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867371,86,16.38,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867372,86,16.63,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867373,96,12.32,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867374,96,12.58,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867375,96,12.52,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867376,96,12.77,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867377,96,12.6,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867378,96,12.54,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867379,96,12.49,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867380,96,12.38,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867381,96,12.24,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867382,96,12.31,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867383,96,12.18,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867384,96,12.05,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867385,96,11.92,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867386,96,11.82,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867387,96,11.81,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867388,96,11.7,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867389,96,11.63,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867390,96,11.63,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867391,96,11.5,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867392,96,11.41,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867393,96,11.63,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867394,96,11.71,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867395,96,11.91,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867396,96,12.04,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867397,85,17.55,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867398,85,17.66,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867399,85,17.96,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867400,85,17.77,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867401,85,17.9,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867402,85,17.9,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867403,85,17.75,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867404,85,17.66,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867405,85,17.56,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867406,85,17.19,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867407,85,17.1,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867408,85,17.08,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867409,85,16.99,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867410,85,16.92,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867411,85,16.74,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867412,85,16.74,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867413,85,16.65,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867414,85,16.48,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867415,85,16.54,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867416,85,16.59,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867417,85,16.48,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867418,85,16.68,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867419,85,16.81,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867420,85,17.1,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867421,95,11.82,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867422,95,11.92,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867423,95,11.78,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867424,95,11.98,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867425,95,11.82,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867426,95,11.79,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867427,95,11.79,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867428,95,11.76,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867429,95,11.71,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867430,95,11.86,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867431,95,11.81,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867432,95,11.75,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867433,95,11.69,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867434,95,11.65,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867435,95,11.7,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867436,95,11.64,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867437,95,11.62,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867438,95,11.66,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867439,95,11.57,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867440,95,11.48,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867441,95,11.65,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867442,95,11.62,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867443,95,11.67,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867444,95,11.61,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867445,60,0.366,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867446,60,0.364,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867447,60,0.364,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867448,60,0.369,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867449,60,0.365,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867450,60,0.367,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867451,60,0.366,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867452,60,0.368,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867453,60,0.367,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867454,60,0.369,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867455,60,0.367,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867456,60,0.367,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867457,60,0.364,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867458,60,0.364,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867459,60,0.367,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867460,60,0.369,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867461,60,0.364,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867462,60,0.367,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867463,60,0.368,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867464,60,0.368,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867465,60,0.363,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867466,60,0.364,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867467,60,0.362,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867468,60,0.364,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867469,67,0.081,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867470,67,0.081,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867471,67,0.082,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867472,67,0.081,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867473,67,0.082,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867474,67,0.082,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867475,67,0.082,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867476,67,0.081,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867477,67,0.082,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867478,67,0.082,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867479,67,0.082,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867480,67,0.082,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867481,67,0.082,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867482,67,0.082,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867483,67,0.082,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867484,67,0.081,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867485,67,0.082,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867486,67,0.082,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867487,67,0.081,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867488,67,0.08,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867489,67,0.081,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867490,67,0.081,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867491,67,0.081,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867492,67,0.081,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867493,75,25.1,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867494,75,25.33,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867495,75,25.4,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867496,75,25.4,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867497,75,25.83,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867498,75,25.98,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867499,75,26.2,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867500,75,26.25,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867501,75,26.4,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867502,75,26.35,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867503,75,26.4,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867504,75,26.3,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867505,75,26.2,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867506,75,26.2,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867507,75,26.05,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867508,75,25.9,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867509,75,25.9,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867510,75,25.68,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867511,75,25.45,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867512,75,25.4,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867513,75,25.4,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867514,75,25.2,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867515,75,25.1,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867516,75,25.25,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867517,80,77.3,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867518,80,77.6,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867519,80,77.7,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867520,80,77.7,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867521,80,78.5,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867522,80,78.73,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867523,80,79.1,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867524,80,79.2,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867525,80,79.5,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867526,80,79.4,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867527,80,79.5,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867528,80,79.3,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867529,80,79.1,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867530,80,79.1,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867531,80,78.85,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867532,80,78.6,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867533,80,78.6,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867534,80,78.3,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867535,80,77.82,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867536,80,77.7,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867537,80,77.7,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867538,80,77.37,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867539,80,77.3,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867540,80,77.5,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867541,68,0.081,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867542,68,0.081,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867543,68,0.082,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867544,68,0.081,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867545,68,0.083,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867546,68,0.083,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867547,68,0.083,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867548,68,0.083,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867549,68,0.083,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867550,68,0.082,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867551,68,0.083,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867552,68,0.083,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867553,68,0.083,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867554,68,0.083,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867555,68,0.083,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867556,68,0.082,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867557,68,0.083,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867558,68,0.082,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867559,68,0.081,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867560,68,0.081,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867561,68,0.082,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867562,68,0.082,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867563,68,0.082,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867564,68,0.082,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867565,88,25.05,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867566,88,24.84,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867567,88,24.84,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867568,88,25.23,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867569,88,24.88,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867570,88,25.05,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867571,88,25.02,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867572,88,25.26,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867573,88,25.11,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867574,88,25.34,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867575,88,25.11,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867576,88,25.1,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867577,88,24.87,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867578,88,24.87,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867579,88,25.06,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867580,88,25.28,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867581,88,24.81,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867582,88,25.12,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867583,88,25.16,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867584,88,25.15,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867585,88,24.76,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867586,88,24.83,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867587,88,24.61,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867588,88,24.83,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867589,98,29.08,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867590,98,29.24,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867591,98,29.48,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867592,98,29.28,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867593,98,29.71,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867594,98,29.69,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867595,98,29.86,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867596,98,29.71,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867597,98,29.97,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867598,98,29.8,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867599,98,29.97,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867600,98,29.96,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867601,98,29.91,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867602,98,29.9,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867603,98,29.69,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867604,98,29.52,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867605,98,29.84,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867606,98,29.58,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867607,98,29.41,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867608,98,29.19,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867609,98,29.38,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867610,98,29.24,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867611,98,29.4,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867612,98,29.24,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867613,87,25.62,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867614,87,25.41,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867615,87,25.42,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867616,87,25.84,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867617,87,25.49,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867618,87,25.67,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867619,87,25.65,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867620,87,25.9,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867621,87,25.76,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867622,87,25.99,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867623,87,25.75,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867624,87,25.74,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867625,87,25.5,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867626,87,25.5,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867627,87,25.68,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867628,87,25.9,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867629,87,25.41,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867630,87,25.73,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867631,87,25.76,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867632,87,25.75,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867633,87,25.34,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867634,87,25.4,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867635,87,25.17,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867636,87,25.4,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867637,97,29,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867638,97,29.12,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867639,97,29.28,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867640,97,29.04,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867641,97,29.38,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867642,97,29.28,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867643,97,29.39,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867644,97,29.18,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867645,97,29.4,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867646,97,29.24,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867647,97,29.41,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867648,97,29.43,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867649,97,29.39,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867650,97,29.41,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867651,97,29.26,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867652,97,29.14,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867653,97,29.5,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867654,97,29.27,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867655,97,29.17,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867656,97,28.98,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867657,97,29.22,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867658,97,29.15,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867659,97,29.31,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867660,97,29.16,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867661,61,0.262,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867662,61,0.258,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867663,61,0.257,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867664,61,0.258,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867665,61,0.258,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867666,61,0.257,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867667,61,0.257,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867668,61,0.257,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867669,61,0.262,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867670,61,0.261,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867671,61,0.262,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867672,61,0.261,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867673,61,0.261,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867674,61,0.261,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867675,61,0.261,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867676,61,0.261,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867677,61,0.261,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867678,61,0.261,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867679,61,0.261,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867680,61,0.261,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867681,61,0.262,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867682,61,0.262,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867683,61,0.258,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867684,61,0.257,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867685,69,0.043,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867686,69,0.044,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867687,69,0.044,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867688,69,0.044,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867689,69,0.044,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867690,69,0.044,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867691,69,0.044,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867692,69,0.044,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867693,69,0.043,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867694,69,0.043,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867695,69,0.043,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867696,69,0.043,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867697,69,0.043,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867698,69,0.043,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867699,69,0.043,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867700,69,0.043,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867701,69,0.043,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867702,69,0.043,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867703,69,0.043,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867704,69,0.043,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867705,69,0.043,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867706,69,0.043,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867707,69,0.044,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867708,69,0.044,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867709,76,24.7,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867710,76,24.7,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867711,76,24.7,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867712,76,24.48,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867713,76,24.7,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867714,76,24.63,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867715,76,24.7,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867716,76,24.62,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867717,76,24.55,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867718,76,24.7,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867719,76,24.7,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867720,76,24.7,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867721,76,24.7,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867722,76,24.7,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867723,76,24.8,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867724,76,24.85,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867725,76,24.9,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867726,76,24.85,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867727,76,24.9,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867728,76,24.85,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867729,76,24.85,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867730,76,24.9,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867731,76,24.9,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867732,76,24.8,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867733,81,76.4,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867734,81,76.4,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867735,81,76.4,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867736,81,76.03,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867737,81,76.4,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867738,81,76.28,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867739,81,76.4,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867740,81,76.27,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867741,81,76.15,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867742,81,76.4,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867743,81,76.4,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867744,81,76.4,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867745,81,76.4,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867746,81,76.4,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867747,81,76.6,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867748,81,76.7,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867749,81,76.8,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867750,81,76.7,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867751,81,76.8,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867752,81,76.7,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867753,81,76.7,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867754,81,76.8,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867755,81,76.8,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867756,81,76.6,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867757,70,0.043,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867758,70,0.044,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867759,70,0.044,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867760,70,0.044,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867761,70,0.044,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867762,70,0.044,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867763,70,0.044,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867764,70,0.044,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867765,70,0.043,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867766,70,0.043,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867767,70,0.043,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867768,70,0.043,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867769,70,0.043,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867770,70,0.043,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867771,70,0.043,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867772,70,0.043,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867773,70,0.043,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867774,70,0.043,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867775,70,0.043,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867776,70,0.043,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867777,70,0.043,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867778,70,0.043,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867779,70,0.044,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867780,70,0.044,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867781,90,16.32,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867782,90,16.1,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867783,90,15.99,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867784,90,16.05,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867785,90,16.05,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867786,90,15.99,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867787,90,15.99,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867788,90,15.99,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867789,90,16.36,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867790,90,16.32,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867791,90,16.32,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867792,90,16.29,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867793,90,16.29,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867794,90,16.29,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867795,90,16.29,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867796,90,16.29,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867797,90,16.29,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867798,90,16.29,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867799,90,16.29,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867800,90,16.29,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867801,90,16.33,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867802,90,16.4,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867803,90,16.11,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867804,90,16,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867805,100,15.43,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867806,100,15.58,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867807,100,15.65,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867808,100,15.62,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867809,100,15.62,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867810,100,15.65,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867811,100,15.65,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867812,100,15.65,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867813,100,15.46,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867814,100,15.52,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867815,100,15.52,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867816,100,15.58,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867817,100,15.58,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867818,100,15.58,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867819,100,15.58,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867820,100,15.58,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867821,100,15.58,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867822,100,15.58,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867823,100,15.58,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867824,100,15.58,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867825,100,15.53,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867826,100,15.41,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867827,100,15.58,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867828,100,15.66,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867829,89,16.68,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867830,89,16.46,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867831,89,16.34,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867832,89,16.4,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867833,89,16.4,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867834,89,16.34,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867835,89,16.34,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867836,89,16.34,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867837,89,16.72,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867838,89,16.68,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867839,89,16.68,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867840,89,16.65,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867841,89,16.65,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867842,89,16.65,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867843,89,16.65,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867844,89,16.65,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867845,89,16.65,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867846,89,16.66,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867847,89,16.66,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867848,89,16.66,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867849,89,16.7,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867850,89,16.77,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867851,89,16.47,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867852,89,16.36,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867853,99,15.48,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867854,99,15.63,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867855,99,15.7,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867856,99,15.69,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867857,99,15.69,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867858,99,15.72,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867859,99,15.72,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867860,99,15.7,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867861,99,15.52,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867862,99,15.57,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867863,99,15.57,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867864,99,15.61,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867865,99,15.6,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867866,99,15.6,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867867,99,15.6,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867868,99,15.6,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867869,99,15.6,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867870,99,15.58,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867871,99,15.58,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867872,99,15.59,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867873,99,15.53,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867874,99,15.43,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867875,99,15.59,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867876,99,15.67,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867877,62,0.375,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867878,62,0.375,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867879,62,0.375,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867880,62,0.377,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867881,62,0.375,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867882,62,0.377,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867883,62,0.375,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867884,62,0.375,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867885,62,0.375,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867886,62,0.375,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867887,62,0.375,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867888,62,0.375,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867889,62,0.375,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867890,62,0.375,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867891,62,0.375,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867892,62,0.375,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867893,62,0.375,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867894,62,0.375,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867895,62,0.375,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867896,62,0.375,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867897,62,0.375,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867898,62,0.375,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867899,62,0.375,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867900,62,0.375,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867901,71,0.102,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867902,71,0.102,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867903,71,0.102,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867904,71,0.101,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867905,71,0.102,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867906,71,0.101,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867907,71,0.102,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867908,71,0.102,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867909,71,0.102,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867910,71,0.102,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867911,71,0.102,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867912,71,0.102,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867913,71,0.102,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867914,71,0.102,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867915,71,0.102,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867916,71,0.102,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867917,71,0.102,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867918,71,0.102,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867919,71,0.102,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867920,71,0.102,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867921,71,0.102,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867922,71,0.102,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867923,71,0.102,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867924,71,0.102,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867925,77,21.65,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867926,77,21.65,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867927,77,21.7,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867928,77,21.65,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867929,77,21.7,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867930,77,21.7,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867931,77,21.7,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867932,77,21.7,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867933,77,21.75,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867934,77,21.7,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867935,77,21.7,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867936,77,21.65,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867937,77,21.8,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867938,77,21.75,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867939,77,21.8,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867940,77,21.85,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867941,77,21.8,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867942,77,21.9,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867943,77,21.85,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867944,77,21.85,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867945,77,21.8,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867946,77,21.85,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867947,77,21.85,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867948,77,21.9,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867949,82,71,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867950,82,71,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867951,82,71.1,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867952,82,71,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867953,82,71.1,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867954,82,71.1,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867955,82,71.1,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867956,82,71.1,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867957,82,71.2,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867958,82,71.1,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867959,82,71.1,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867960,82,71,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867961,82,71.3,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867962,82,71.2,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867963,82,71.3,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867964,82,71.4,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867965,82,71.3,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867966,82,71.5,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867967,82,71.4,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867968,82,71.4,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867969,82,71.3,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867970,82,71.4,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867971,82,71.4,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867972,82,71.5,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867973,72,0.097,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867974,72,0.097,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867975,72,0.097,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13867976,72,0.096,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13867977,72,0.097,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13867978,72,0.096,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13867979,72,0.097,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13867980,72,0.097,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13867981,72,0.097,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13867982,72,0.097,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13867983,72,0.097,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13867984,72,0.097,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13867985,72,0.097,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13867986,72,0.097,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13867987,72,0.097,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13867988,72,0.097,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13867989,72,0.097,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13867990,72,0.097,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13867991,72,0.097,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13867992,72,0.097,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13867993,72,0.097,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13867994,72,0.097,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13867995,72,0.097,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13867996,72,0.097,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13867997,92,25.81,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13867998,92,25.81,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13867999,92,25.81,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13868000,92,26.02,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13868001,92,25.81,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13868002,92,26.02,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13868003,92,25.81,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13868004,92,25.81,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13868005,92,25.81,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13868006,92,25.81,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13868007,92,25.81,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13868008,92,25.81,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13868009,92,25.81,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13868010,92,25.81,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13868011,92,25.81,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13868012,92,25.82,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13868013,92,25.82,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13868014,92,25.82,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13868015,92,25.82,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13868016,92,25.82,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13868017,92,25.82,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13868018,92,25.82,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13868019,92,25.82,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13868020,92,25.82,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13868021,102,34.94,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13868022,102,34.94,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13868023,102,34.94,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13868024,102,34.63,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13868025,102,34.94,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13868026,102,34.63,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13868027,102,34.94,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13868028,102,34.94,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13868029,102,34.94,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13868030,102,34.94,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13868031,102,34.94,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13868032,102,34.94,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13868033,102,34.94,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13868034,102,34.94,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13868035,102,34.94,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13868036,102,34.95,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13868037,102,34.95,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13868038,102,34.95,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13868039,102,34.95,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13868040,102,34.95,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13868041,102,34.95,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13868042,102,34.95,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13868043,102,34.95,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13868044,102,34.95,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13868045,91,26.19,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13868046,91,26.19,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13868047,91,26.2,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13868048,91,26.41,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13868049,91,26.2,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13868050,91,26.4,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13868051,91,26.2,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13868052,91,26.19,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13868053,91,26.2,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13868054,91,26.2,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13868055,91,26.2,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13868056,91,26.2,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13868057,91,26.2,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13868058,91,26.2,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13868059,91,26.2,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13868060,91,26.2,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13868061,91,26.2,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13868062,91,26.21,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13868063,91,26.21,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13868064,91,26.21,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13868065,91,26.21,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13868066,91,26.21,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13868067,91,26.21,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13868068,91,26.21,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13868069,101,36.68,'2011-08-26 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13868070,101,36.7,'2011-08-26 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13868071,101,36.68,'2011-08-26 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13868072,101,36.35,'2011-08-26 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13868073,101,36.68,'2011-08-26 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13868074,101,36.36,'2011-08-26 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13868075,101,36.67,'2011-08-26 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13868076,101,36.69,'2011-08-26 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13868077,101,36.67,'2011-08-26 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13868078,101,36.67,'2011-08-26 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13868079,101,36.67,'2011-08-27 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13868080,101,36.67,'2011-08-27 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13868081,101,36.67,'2011-08-27 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13868082,101,36.67,'2011-08-27 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13868083,101,36.67,'2011-08-27 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13868084,101,36.66,'2011-08-27 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13868085,101,36.66,'2011-08-27 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13868086,101,36.64,'2011-08-27 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13868087,101,36.64,'2011-08-27 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13868088,101,36.64,'2011-08-27 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13868089,101,36.64,'2011-08-27 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13868090,101,36.64,'2011-08-27 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13868091,101,36.64,'2011-08-27 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13868092,101,36.64,'2011-08-27 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873335,31,13.13,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873336,31,13.13,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873337,31,13.13,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873338,31,13.13,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873339,31,13.13,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873340,31,12.8,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873341,31,12.75,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873342,31,12.71,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873343,31,12.69,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873344,31,12.66,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873345,31,12.64,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873346,31,12.63,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873347,31,12.61,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873348,31,12.59,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873349,31,12.54,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873350,31,12.55,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873351,31,12.54,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873352,31,12.55,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873353,31,12.7,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873354,31,13.31,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873355,31,13.29,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873356,31,13.26,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873357,31,13.22,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873358,31,13.2,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873359,32,4.361,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873360,32,4.444,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873361,32,3.913,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873362,32,2.892,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873363,32,1.964,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873364,32,2.4,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873365,32,1.483,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873366,32,1.678,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873367,32,1.896,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873368,32,1.131,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873369,32,2.141,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873370,32,4.07,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873371,32,3.516,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873372,32,3.285,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873373,32,2.631,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873374,32,1.645,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873375,32,0.967,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873376,32,0.772,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873377,32,1.307,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873378,32,0.99,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873379,32,2.831,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873380,32,1.797,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873381,32,2.003,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873382,32,3.018,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873383,33,284.9,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873384,33,287.5,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873385,33,279.2,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873386,33,267.8,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873387,33,284.6,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873388,33,254.4,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873389,33,230.5,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873390,33,215.2,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873391,33,215.7,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873392,33,215.1,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873393,33,215.9,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873394,33,189.3,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873395,33,171.2,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873396,33,199.8,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873397,33,214.4,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873398,33,269,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873399,33,219,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873400,33,227.7,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873401,33,155.3,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873402,33,110.7,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873403,33,196,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873404,33,184,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873405,33,78.61,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873406,33,43.11,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873407,34,17.09,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873408,34,16.37,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873409,34,16.98,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873410,34,30.3,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873411,34,22.17,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873412,34,31.23,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873413,34,41.97,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873414,34,39.7,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873415,34,36.17,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873416,34,47.42,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873417,34,44.69,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873418,34,22.31,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873419,34,25.73,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873420,34,19.73,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873421,34,32.64,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873422,34,54.06,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873423,34,29.32,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873424,34,59.33,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873425,34,39.18,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873426,34,36,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873427,34,21.4,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873428,34,25.8,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873429,34,55.83,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873430,34,19.42,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873431,35,632,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13873432,35,631.5,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13873433,35,631.3,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13873434,35,631.3,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13873435,35,631.4,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13873436,35,631.4,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13873437,35,632,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13873438,35,632.4,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13873439,35,632.5,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13873440,35,632.4,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13873441,35,632.4,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13873442,35,632.7,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13873443,35,633,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13873444,35,632.9,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13873445,35,632.9,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13873446,35,633.1,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13873447,35,633.1,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13873448,35,633.1,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13873449,35,633.1,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13873450,35,633.2,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13873451,35,633.1,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13873452,35,632.8,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13873453,35,632.3,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13873454,35,631.9,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13873455,30,0,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873456,30,0,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873457,30,0,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873458,30,0,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873459,30,0,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873460,30,0,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873461,30,0,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873462,30,0,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873463,30,0,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873464,30,0,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873465,30,0,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873466,30,0,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873467,30,0,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873468,30,0,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873469,30,0,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873470,30,0,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873471,30,0,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873472,30,0,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873473,30,0,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873474,30,0,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873475,30,0,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873476,30,0,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873477,30,0,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873478,30,0,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873479,28,31.91,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873480,28,31.88,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873481,28,32.1,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873482,28,32.03,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873483,28,31.24,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873484,28,27.42,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873485,28,23.35,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873486,28,21.98,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873487,28,21.88,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873488,28,21.15,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873489,28,21.47,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873490,28,23.74,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873491,28,22.91,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873492,28,22.76,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873493,28,21.03,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873494,28,19.45,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873495,28,18.46,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873496,28,18.51,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873497,28,19.93,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873498,28,22.96,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873499,28,23.48,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873500,28,25.51,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873501,28,27.7,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873502,28,28.51,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873503,29,26.65,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873504,29,23.74,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873505,29,21.11,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873506,29,22.1,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873507,29,25.54,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873508,29,37.1,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873509,29,44.13,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873510,29,43.95,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873511,29,45.86,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873512,29,44.35,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873513,29,41.5,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873514,29,49.96,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873515,29,45.77,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873516,29,51,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873517,29,54.95,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873518,29,64.84,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873519,29,65.46,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873520,29,64.46,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873521,29,55.49,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873522,29,52.4,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873523,29,46.23,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873524,29,41.36,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873525,29,36.14,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873526,29,36.3,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873527,36,973,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873528,36,837,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873529,36,713.8,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873530,36,503.7,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873531,36,280.2,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873532,36,36.84,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873533,36,0.878,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873534,36,0,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873535,36,0,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873536,36,0,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873537,36,0,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873538,36,0,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873539,36,0,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873540,36,0,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873541,36,0,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873542,36,0,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873543,36,2.177,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873544,36,56.38,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873545,36,245.4,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873546,36,273.4,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873547,36,306,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873548,36,480.7,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873549,36,-9999,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873550,36,930,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873551,46,1.476,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873552,46,1.116,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873553,46,1.582,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873554,46,1.328,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873555,46,1.285,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873556,46,1.58,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873557,46,1.485,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873558,46,1.488,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873559,46,1.46,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873560,46,1.675,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873561,46,1.471,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873562,46,1.388,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873563,46,1.557,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873564,46,1.596,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873565,46,1.462,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873566,46,1.422,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873567,46,1.491,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873568,46,1.687,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873569,46,1.414,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873570,46,1.454,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873571,46,1.302,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873572,46,1.58,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873573,46,1.554,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873574,46,1.136,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873575,47,1.56,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873576,47,1.179,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873577,47,1.672,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873578,47,1.403,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873579,47,1.357,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873580,47,1.658,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873581,47,1.547,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873582,47,1.547,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873583,47,1.518,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873584,47,1.739,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873585,47,1.527,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873586,47,1.447,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873587,47,1.621,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873588,47,1.662,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873589,47,1.517,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873590,47,1.472,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873591,47,1.541,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873592,47,1.743,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873593,47,1.464,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873594,47,1.514,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873595,47,1.357,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873596,47,1.652,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873597,47,1.631,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873598,47,1.194,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873599,48,0.21,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13873600,48,0.591,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13873601,48,0.098,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13873602,48,0.367,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13873603,48,0.413,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13873604,48,0.112,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13873605,48,0.223,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13873606,48,0.223,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13873607,48,0.252,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13873608,48,0.031,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13873609,48,0.243,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13873610,48,0.323,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13873611,48,0.149,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13873612,48,0.108,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13873613,48,0.253,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13873614,48,0.298,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13873615,48,0.229,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13873616,48,0.027,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13873617,48,0.306,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13873618,48,0.256,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13873619,48,0.413,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13873620,48,0.118,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13873621,48,0.139,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13873622,48,0.576,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13873623,41,25.23,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873624,40,32.84,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873625,39,17.8,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873626,37,12.52,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873627,43,632.3,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873628,44,0,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873629,42,37.2,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873630,45,28.56039,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873631,38,2.276,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873632,51,0,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873633,53,2.365,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873634,49,1.429,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873635,52,0,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873636,54,2.448,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873637,50,1.493,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873638,56,-0.678,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873639,57,1.77,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13873640,55,0.277,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13876881,58,0.143,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13876882,58,0.144,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13876883,58,0.144,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13876884,58,0.141,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13876885,58,0.14,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13876886,58,0.139,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13876887,58,0.137,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13876888,58,0.135,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13876889,58,0.132,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13876890,58,0.133,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13876891,58,0.133,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13876892,58,0.132,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13876893,58,0.131,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13876894,58,0.13,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13876895,58,0.131,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13876896,58,0.131,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13876897,58,0.132,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13876898,58,0.129,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13876899,58,0.128,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13876900,58,0.132,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13876901,58,0.132,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13876902,58,0.132,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13876903,58,0.134,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13876904,58,0.137,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13876905,63,0.014,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13876906,63,0.014,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13876907,63,0.014,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13876908,63,0.014,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13876909,63,0.014,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13876910,63,0.013,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13876911,63,0.013,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13876912,63,0.013,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13876913,63,0.014,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13876914,63,0.013,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13876915,63,0.013,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13876916,63,0.013,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13876917,63,0.013,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13876918,63,0.013,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13876919,63,0.013,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13876920,63,0.013,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13876921,63,0.013,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13876922,63,0.013,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13876923,63,0.013,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13876924,63,0.013,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13876925,63,0.013,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13876926,63,0.014,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13876927,63,0.013,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13876928,63,0.014,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13876929,73,32.15,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13876930,73,32.32,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13876931,73,32.1,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13876932,73,31.8,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13876933,73,31.32,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13876934,73,30.4,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13876935,73,29.42,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13876936,73,28.6,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13876937,73,27.82,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13876938,73,27.27,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13876939,73,26.67,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13876940,73,26.35,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13876941,73,26.2,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13876942,73,26.12,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13876943,73,25.9,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13876944,73,25.55,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13876945,73,25.25,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13876946,73,24.9,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13876947,73,24.85,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13876948,73,25.2,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13876949,73,25.83,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13876950,73,26.3,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13876951,73,27.28,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13876952,73,29.06,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13876953,78,89.9,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13876954,78,90.1,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13876955,78,89.7,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13876956,78,89.2,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13876957,78,88.3,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13876958,78,86.8,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13876959,78,85,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13876960,78,83.5,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13876961,78,82.1,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13876962,78,81.1,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13876963,78,80,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13876964,78,79.4,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13876965,78,79.1,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13876966,78,78.97,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13876967,78,78.6,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13876968,78,78.07,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13876969,78,77.5,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13876970,78,76.8,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13876971,78,76.7,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13876972,78,77.38,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13876973,78,78.5,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13876974,78,79.31,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13876975,78,81.1,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13876976,78,84.3,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13876977,64,0.015,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13876978,64,0.015,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13876979,64,0.015,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13876980,64,0.015,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13876981,64,0.015,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13876982,64,0.015,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13876983,64,0.014,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13876984,64,0.014,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13876985,64,0.014,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13876986,64,0.014,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13876987,64,0.014,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13876988,64,0.014,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13876989,64,0.014,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13876990,64,0.014,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13876991,64,0.013,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13876992,64,0.013,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13876993,64,0.013,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13876994,64,0.013,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13876995,64,0.013,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13876996,64,0.013,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13876997,64,0.014,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13876998,64,0.014,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13876999,64,0.014,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877000,64,0.015,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877001,84,8.72,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877002,84,8.78,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877003,84,8.78,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877004,84,8.62,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877005,84,8.55,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877006,84,8.52,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877007,84,8.38,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877008,84,8.29,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877009,84,8.14,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877010,84,8.21,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877011,84,8.17,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877012,84,8.13,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877013,84,8.07,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877014,84,8.03,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877015,84,8.08,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877016,84,8.09,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877017,84,8.15,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877018,84,8.01,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877019,84,7.93,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877020,84,8.14,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877021,84,8.13,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877022,84,8.13,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877023,84,8.26,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877024,84,8.37,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877025,94,5.548,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877026,94,5.506,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877027,94,5.458,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877028,94,5.429,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877029,94,5.363,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877030,94,5.227,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877031,94,5.179,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877032,94,5.083,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877033,94,5.069,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877034,94,4.94,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877035,94,4.898,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877036,94,4.86,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877037,94,4.894,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877038,94,4.902,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877039,94,4.849,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877040,94,4.817,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877041,94,4.738,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877042,94,4.789,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877043,94,4.847,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877044,94,4.769,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877045,94,4.861,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877046,94,4.953,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877047,94,4.999,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877048,94,5.224,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877049,83,9.08,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877050,83,9.13,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877051,83,9.13,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877052,83,8.95,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877053,83,8.87,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877054,83,8.82,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877055,83,8.65,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877056,83,8.55,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877057,83,8.38,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877058,83,8.43,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877059,83,8.38,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877060,83,8.33,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877061,83,8.27,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877062,83,8.23,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877063,83,8.27,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877064,83,8.28,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877065,83,8.34,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877066,83,8.19,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877067,83,8.1,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877068,83,8.32,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877069,83,8.33,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877070,83,8.33,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877071,83,8.49,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877072,83,8.64,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877073,93,5.012,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877074,93,4.983,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877075,93,4.953,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877076,93,4.943,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877077,93,4.92,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877078,93,4.852,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877079,93,4.868,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877080,93,4.838,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877081,93,4.874,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877082,93,4.791,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877083,93,4.789,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877084,93,4.777,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877085,93,4.815,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877086,93,4.829,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877087,93,4.794,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877088,93,4.785,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877089,93,4.73,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877090,93,4.799,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877091,93,4.866,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877092,93,4.757,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877093,93,4.809,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877094,93,4.86,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877095,93,4.836,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877096,93,4.927,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877097,59,0.267,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877098,59,0.271,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877099,59,0.273,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877100,59,0.273,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877101,59,0.272,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877102,59,0.27,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877103,59,0.27,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877104,59,0.269,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877105,59,0.266,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877106,59,0.265,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877107,59,0.264,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877108,59,0.263,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877109,59,0.262,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877110,59,0.262,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877111,59,0.26,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877112,59,0.26,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877113,59,0.259,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877114,59,0.26,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877115,59,0.26,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877116,59,0.256,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877117,59,0.259,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877118,59,0.26,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877119,59,0.259,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877120,59,0.26,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877121,65,0.033,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877122,65,0.032,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877123,65,0.032,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877124,65,0.032,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877125,65,0.032,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877126,65,0.032,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877127,65,0.032,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877128,65,0.032,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877129,65,0.032,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877130,65,0.032,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877131,65,0.032,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877132,65,0.032,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877133,65,0.032,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877134,65,0.032,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877135,65,0.032,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877136,65,0.032,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877137,65,0.032,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877138,65,0.031,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877139,65,0.031,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877140,65,0.032,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877141,65,0.031,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877142,65,0.031,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877143,65,0.032,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877144,65,0.032,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877145,74,28.98,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877146,74,29.8,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877147,74,29.95,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877148,74,30.1,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877149,74,29.95,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877150,74,29.72,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877151,74,29.35,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877152,74,28.82,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877153,74,28.37,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877154,74,27.9,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877155,74,27.35,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877156,74,26.92,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877157,74,26.55,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877158,74,26.25,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877159,74,26.05,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877160,74,25.75,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877161,74,25.67,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877162,74,25.32,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877163,74,25.05,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877164,74,25,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877165,74,25.2,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877166,74,25.4,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877167,74,25.68,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877168,74,26.3,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877169,79,84.2,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877170,79,85.6,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877171,79,85.9,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877172,79,86.2,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877173,79,85.9,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877174,79,85.5,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877175,79,84.8,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877176,79,83.9,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877177,79,83.1,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877178,79,82.2,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877179,79,81.2,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877180,79,80.5,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877181,79,79.75,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877182,79,79.2,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877183,79,78.85,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877184,79,78.4,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877185,79,78.3,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877186,79,77.6,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877187,79,77.17,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877188,79,77.05,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877189,79,77.38,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877190,79,77.7,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877191,79,78.3,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877192,79,79.31,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877193,66,0.034,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877194,66,0.035,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877195,66,0.034,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877196,66,0.034,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877197,66,0.034,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877198,66,0.035,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877199,66,0.035,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877200,66,0.034,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877201,66,0.034,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877202,66,0.034,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877203,66,0.033,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877204,66,0.033,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877205,66,0.033,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877206,66,0.033,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877207,66,0.033,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877208,66,0.032,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877209,66,0.032,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877210,66,0.032,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877211,66,0.032,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877212,66,0.032,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877213,66,0.032,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877214,66,0.032,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877215,66,0.032,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877216,66,0.032,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877217,86,16.72,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877218,86,17.06,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877219,86,17.22,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877220,86,17.22,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877221,86,17.16,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877222,86,16.95,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877223,86,16.99,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877224,86,16.87,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877225,86,16.69,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877226,86,16.64,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877227,86,16.57,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877228,86,16.46,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877229,86,16.41,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877230,86,16.36,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877231,86,16.2,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877232,86,16.25,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877233,86,16.13,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877234,86,16.25,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877235,86,16.25,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877236,86,15.97,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877237,86,16.19,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877238,86,16.25,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877239,86,16.16,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877240,86,16.19,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877241,96,12.38,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877242,96,12.38,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877243,96,12.38,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877244,96,12.38,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877245,96,12.4,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877246,96,12.5,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877247,96,12.39,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877248,96,12.3,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877249,96,12.21,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877250,96,12.1,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877251,96,11.99,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877252,96,11.91,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877253,96,11.79,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877254,96,11.69,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877255,96,11.76,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877256,96,11.59,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877257,96,11.56,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877258,96,11.41,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877259,96,11.35,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877260,96,11.51,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877261,96,11.37,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877262,96,11.35,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877263,96,11.47,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877264,96,11.61,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877265,85,17.24,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877266,85,17.63,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877267,85,17.81,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877268,85,17.81,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877269,85,17.75,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877270,85,17.52,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877271,85,17.55,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877272,85,17.41,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877273,85,17.2,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877274,85,17.13,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877275,85,17.05,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877276,85,16.92,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877277,85,16.84,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877278,85,16.78,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877279,85,16.62,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877280,85,16.65,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877281,85,16.53,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877282,85,16.63,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877283,85,16.63,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877284,85,16.34,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877285,85,16.57,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877286,85,16.64,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877287,85,16.56,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877288,85,16.61,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877289,95,11.75,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877290,95,11.62,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877291,95,11.57,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877292,95,11.57,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877293,95,11.58,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877294,95,11.7,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877295,95,11.65,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877296,95,11.63,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877297,95,11.62,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877298,95,11.59,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877299,95,11.56,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877300,95,11.55,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877301,95,11.5,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877302,95,11.45,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877303,95,11.55,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877304,95,11.41,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877305,95,11.42,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877306,95,11.32,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877307,95,11.29,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877308,95,11.46,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877309,95,11.3,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877310,95,11.27,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877311,95,11.33,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877312,95,11.37,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877313,60,0.362,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877314,60,0.362,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877315,60,0.37,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877316,60,0.365,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877317,60,0.366,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877318,60,0.365,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877319,60,0.371,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877320,60,0.367,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877321,60,0.369,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877322,60,0.369,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877323,60,0.367,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877324,60,0.367,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877325,60,0.367,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877326,60,0.368,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877327,60,0.371,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877328,60,0.365,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877329,60,0.362,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877330,60,0.363,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877331,60,0.365,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877332,60,0.368,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877333,60,0.369,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877334,60,0.371,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877335,60,0.367,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877336,60,0.367,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877337,67,0.081,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877338,67,0.081,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877339,67,0.081,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877340,67,0.081,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877341,67,0.081,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877342,67,0.081,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877343,67,0.081,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877344,67,0.082,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877345,67,0.081,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877346,67,0.081,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877347,67,0.081,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877348,67,0.081,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877349,67,0.082,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877350,67,0.081,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877351,67,0.08,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877352,67,0.081,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877353,67,0.082,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877354,67,0.082,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877355,67,0.082,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877356,67,0.081,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877357,67,0.081,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877358,67,0.08,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877359,67,0.08,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877360,67,0.08,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877361,75,25.4,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877362,75,25.4,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877363,75,25.4,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877364,75,25.83,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877365,75,26.05,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877366,75,26.2,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877367,75,26.35,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877368,75,26.47,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877369,75,26.63,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877370,75,26.7,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877371,75,26.7,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877372,75,26.7,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877373,75,26.4,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877374,75,26.4,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877375,75,26.4,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877376,75,26.25,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877377,75,26.2,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877378,75,26.2,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877379,75,25.9,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877380,75,25.9,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877381,75,25.75,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877382,75,25.45,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877383,75,25.45,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877384,75,25.45,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877385,80,77.7,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877386,80,77.7,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877387,80,77.7,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877388,80,78.5,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877389,80,78.85,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877390,80,79.1,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877391,80,79.4,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877392,80,79.63,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877393,80,79.88,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877394,80,80,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877395,80,80,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877396,80,80,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877397,80,79.5,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877398,80,79.5,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877399,80,79.5,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877400,80,79.2,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877401,80,79.1,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877402,80,79.1,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877403,80,78.6,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877404,80,78.6,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877405,80,78.4,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877406,80,77.83,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877407,80,77.82,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877408,80,77.82,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877409,68,0.082,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877410,68,0.082,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877411,68,0.081,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877412,68,0.082,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877413,68,0.082,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877414,68,0.083,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877415,68,0.082,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877416,68,0.083,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877417,68,0.083,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877418,68,0.083,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877419,68,0.083,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877420,68,0.083,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877421,68,0.083,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877422,68,0.083,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877423,68,0.082,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877424,68,0.083,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877425,68,0.084,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877426,68,0.084,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877427,68,0.082,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877428,68,0.081,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877429,68,0.081,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877430,68,0.08,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877431,68,0.081,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877432,68,0.081,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877433,88,24.62,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877434,88,24.63,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877435,88,25.31,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877436,88,24.94,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877437,88,24.99,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877438,88,24.95,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877439,88,25.49,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877440,88,25.13,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877441,88,25.36,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877442,88,25.28,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877443,88,25.14,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877444,88,25.13,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877445,88,25.13,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877446,88,25.17,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877447,88,25.42,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877448,88,24.95,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877449,88,24.61,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877450,88,24.72,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877451,88,24.87,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877452,88,25.18,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877453,88,25.25,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877454,88,25.39,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877455,88,25.08,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877456,88,25.07,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877457,98,29.41,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877458,98,29.42,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877459,98,29.16,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877460,98,29.59,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877461,98,29.63,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877462,98,29.77,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877463,98,29.55,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877464,98,29.98,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877465,98,29.82,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877466,98,29.96,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877467,98,29.99,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877468,98,29.99,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877469,98,29.98,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877470,98,29.82,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877471,98,29.46,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877472,98,29.78,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877473,98,30.03,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877474,98,29.96,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877475,98,29.69,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877476,98,29.43,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877477,98,29.3,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877478,98,29.04,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877479,98,29.11,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877480,98,29.11,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877481,87,25.19,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877482,87,25.2,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877483,87,25.91,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877484,87,25.55,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877485,87,25.61,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877486,87,25.58,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877487,87,26.15,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877488,87,25.78,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877489,87,26.03,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877490,87,25.95,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877491,87,25.8,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877492,87,25.79,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877493,87,25.78,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877494,87,25.82,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877495,87,26.07,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877496,87,25.58,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877497,87,25.23,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877498,87,25.34,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877499,87,25.49,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877500,87,25.8,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877501,87,25.86,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877502,87,26,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877503,87,25.68,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877504,87,25.67,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877505,97,29.27,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877506,97,29.24,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877507,97,28.92,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877508,97,29.25,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877509,97,29.23,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877510,97,29.27,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877511,97,28.98,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877512,97,29.34,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877513,97,29.16,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877514,97,29.27,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877515,97,29.31,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877516,97,29.32,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877517,97,29.34,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877518,97,29.21,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877519,97,28.9,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877520,97,29.26,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877521,97,29.54,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877522,97,29.51,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877523,97,29.3,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877524,97,29.07,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877525,97,28.98,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877526,97,28.77,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877527,97,28.87,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877528,97,28.88,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877529,61,0.257,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877530,61,0.257,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877531,61,0.261,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877532,61,0.26,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877533,61,0.26,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877534,61,0.261,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877535,61,0.257,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877536,61,0.257,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877537,61,0.257,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877538,61,0.259,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877539,61,0.262,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877540,61,0.26,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877541,61,0.263,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877542,61,0.262,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877543,61,0.261,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877544,61,0.261,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877545,61,0.262,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877546,61,0.261,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877547,61,0.261,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877548,61,0.262,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877549,61,0.261,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877550,61,0.261,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877551,61,0.26,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877552,61,0.259,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877553,69,0.044,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877554,69,0.044,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877555,69,0.043,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877556,69,0.043,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877557,69,0.043,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877558,69,0.043,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877559,69,0.044,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877560,69,0.044,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877561,69,0.044,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877562,69,0.044,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877563,69,0.043,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877564,69,0.043,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877565,69,0.043,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877566,69,0.043,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877567,69,0.043,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877568,69,0.043,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877569,69,0.043,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877570,69,0.043,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877571,69,0.043,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877572,69,0.043,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877573,69,0.043,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877574,69,0.043,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877575,69,0.043,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877576,69,0.043,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877577,76,24.7,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877578,76,24.7,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877579,76,24.7,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877580,76,24.7,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877581,76,24.7,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877582,76,24.7,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877583,76,24.7,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877584,76,24.7,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877585,76,24.75,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877586,76,24.8,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877587,76,24.9,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877588,76,24.9,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103); +INSERT INTO `TimeSeriesResultValues` VALUES (13877589,76,24.85,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877590,76,24.95,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877591,76,24.9,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877592,76,24.95,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877593,76,25,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877594,76,25,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877595,76,25.05,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877596,76,25,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877597,76,25.1,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877598,76,25,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877599,76,25.05,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877600,76,24.95,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877601,81,76.4,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877602,81,76.4,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877603,81,76.4,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877604,81,76.4,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877605,81,76.4,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877606,81,76.4,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877607,81,76.4,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877608,81,76.4,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877609,81,76.5,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877610,81,76.6,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877611,81,76.8,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877612,81,76.8,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877613,81,76.7,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877614,81,76.93,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877615,81,76.8,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877616,81,76.93,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877617,81,77.05,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877618,81,77.05,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877619,81,77.17,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877620,81,77.05,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877621,81,77.3,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877622,81,77.05,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877623,81,77.17,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877624,81,76.93,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877625,70,0.044,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877626,70,0.044,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877627,70,0.043,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877628,70,0.043,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877629,70,0.043,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877630,70,0.043,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877631,70,0.044,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877632,70,0.044,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877633,70,0.044,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877634,70,0.044,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877635,70,0.043,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877636,70,0.043,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877637,70,0.043,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877638,70,0.043,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877639,70,0.043,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877640,70,0.043,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877641,70,0.043,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877642,70,0.043,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877643,70,0.043,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877644,70,0.043,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877645,70,0.043,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877646,70,0.043,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877647,70,0.043,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877648,70,0.044,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877649,90,16,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877650,90,16,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877651,90,16.33,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877652,90,16.27,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877653,90,16.21,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877654,90,16.35,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877655,90,16,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877656,90,16,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877657,90,16,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877658,90,16.11,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877659,90,16.37,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877660,90,16.26,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877661,90,16.41,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877662,90,16.33,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877663,90,16.3,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877664,90,16.3,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877665,90,16.34,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877666,90,16.3,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877667,90,16.3,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877668,90,16.34,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877669,90,16.34,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877670,90,16.3,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877671,90,16.22,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877672,90,16.19,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877673,100,15.66,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877674,100,15.66,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877675,100,15.35,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877676,100,15.37,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877677,100,15.4,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877678,100,15.38,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877679,100,15.65,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877680,100,15.66,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877681,100,15.66,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877682,100,15.58,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877683,100,15.47,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877684,100,15.55,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877685,100,15.42,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877686,100,15.53,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877687,100,15.59,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877688,100,15.59,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877689,100,15.53,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877690,100,15.59,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877691,100,15.59,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877692,100,15.53,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877693,100,15.53,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877694,100,15.59,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877695,100,15.61,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877696,100,15.57,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877697,89,16.36,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877698,89,16.36,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877699,89,16.7,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877700,89,16.63,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877701,89,16.57,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877702,89,16.71,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877703,89,16.35,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877704,89,16.35,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877705,89,16.36,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877706,89,16.47,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877707,89,16.74,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877708,89,16.62,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877709,89,16.78,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877710,89,16.71,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877711,89,16.67,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877712,89,16.67,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877713,89,16.71,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877714,89,16.67,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877715,89,16.67,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877716,89,16.71,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877717,89,16.71,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877718,89,16.67,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877719,89,16.6,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877720,89,16.56,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877721,99,15.67,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877722,99,15.67,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877723,99,15.37,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877724,99,15.41,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877725,99,15.43,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877726,99,15.41,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877727,99,15.69,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877728,99,15.67,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877729,99,15.67,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877730,99,15.59,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877731,99,15.47,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877732,99,15.54,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877733,99,15.4,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877734,99,15.51,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877735,99,15.56,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877736,99,15.56,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877737,99,15.49,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877738,99,15.55,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877739,99,15.55,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877740,99,15.49,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877741,99,15.49,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877742,99,15.55,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877743,99,15.56,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877744,99,15.53,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877745,62,0.376,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877746,62,0.378,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877747,62,0.379,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877748,62,0.379,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877749,62,0.379,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877750,62,0.379,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877751,62,0.379,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877752,62,0.379,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877753,62,0.379,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877754,62,0.377,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877755,62,0.376,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877756,62,0.375,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877757,62,0.375,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877758,62,0.375,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877759,62,0.375,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877760,62,0.375,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877761,62,0.375,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877762,62,0.375,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877763,62,0.375,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877764,62,0.375,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877765,62,0.375,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877766,62,0.375,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877767,62,0.375,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877768,62,0.375,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877769,71,0.102,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877770,71,0.1,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877771,71,0.1,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877772,71,0.1,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877773,71,0.1,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877774,71,0.1,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877775,71,0.1,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877776,71,0.1,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877777,71,0.1,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877778,71,0.101,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877779,71,0.102,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877780,71,0.102,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877781,71,0.102,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877782,71,0.102,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877783,71,0.102,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877784,71,0.102,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877785,71,0.102,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877786,71,0.102,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877787,71,0.102,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877788,71,0.102,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877789,71,0.102,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877790,71,0.102,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877791,71,0.102,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877792,71,0.102,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877793,77,21.85,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877794,77,21.9,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877795,77,21.85,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877796,77,21.85,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877797,77,21.85,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877798,77,21.9,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877799,77,21.9,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877800,77,21.85,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877801,77,21.9,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877802,77,21.9,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877803,77,21.9,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877804,77,21.9,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877805,77,21.9,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877806,77,21.9,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877807,77,21.85,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877808,77,21.9,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877809,77,21.9,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877810,77,21.9,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877811,77,21.9,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877812,77,21.9,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877813,77,21.9,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877814,77,21.85,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877815,77,21.9,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877816,77,21.9,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877817,82,71.4,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877818,82,71.5,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877819,82,71.4,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877820,82,71.4,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877821,82,71.4,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877822,82,71.5,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877823,82,71.5,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877824,82,71.4,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877825,82,71.5,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877826,82,71.5,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877827,82,71.5,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877828,82,71.5,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877829,82,71.5,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877830,82,71.5,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877831,82,71.4,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877832,82,71.5,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877833,82,71.5,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877834,82,71.5,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877835,82,71.5,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877836,82,71.5,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877837,82,71.5,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877838,82,71.4,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877839,82,71.5,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877840,82,71.5,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877841,72,0.097,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877842,72,0.095,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877843,72,0.095,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877844,72,0.095,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877845,72,0.095,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877846,72,0.095,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877847,72,0.095,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877848,72,0.095,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877849,72,0.095,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877850,72,0.096,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877851,72,0.097,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877852,72,0.097,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877853,72,0.097,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877854,72,0.097,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877855,72,0.097,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877856,72,0.097,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877857,72,0.097,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877858,72,0.097,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877859,72,0.097,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877860,72,0.097,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877861,72,0.097,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877862,72,0.097,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877863,72,0.097,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877864,72,0.097,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877865,92,25.93,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877866,92,26.13,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877867,92,26.24,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877868,92,26.24,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877869,92,26.24,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877870,92,26.24,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877871,92,26.25,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877872,92,26.25,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877873,92,26.24,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877874,92,26.04,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877875,92,25.93,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877876,92,25.83,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877877,92,25.83,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877878,92,25.83,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877879,92,25.83,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877880,92,25.83,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877881,92,25.83,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877882,92,25.83,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877883,92,25.83,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877884,92,25.84,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877885,92,25.84,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877886,92,25.84,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877887,92,25.84,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877888,92,25.84,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877889,102,34.8,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877890,102,34.48,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877891,102,34.33,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877892,102,34.33,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877893,102,34.33,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877894,102,34.34,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877895,102,34.34,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877896,102,34.34,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877897,102,34.34,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877898,102,34.65,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877899,102,34.8,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877900,102,34.96,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877901,102,34.96,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877902,102,34.96,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877903,102,34.96,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877904,102,34.96,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877905,102,34.96,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877906,102,34.96,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877907,102,34.96,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877908,102,34.97,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877909,102,34.97,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877910,102,34.97,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877911,102,34.97,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877912,102,34.97,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877913,91,26.31,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877914,91,26.53,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877915,91,26.63,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877916,91,26.63,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877917,91,26.63,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877918,91,26.64,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877919,91,26.64,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877920,91,26.64,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877921,91,26.64,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877922,91,26.43,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877923,91,26.33,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877924,91,26.22,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877925,91,26.22,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877926,91,26.22,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877927,91,26.22,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877928,91,26.22,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877929,91,26.22,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877930,91,26.22,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877931,91,26.22,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877932,91,26.23,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877933,91,26.23,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877934,91,26.23,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877935,91,26.23,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877936,91,26.23,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13877937,101,36.48,'2011-08-27 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13877938,101,36.15,'2011-08-27 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13877939,101,35.99,'2011-08-27 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13877940,101,35.98,'2011-08-27 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13877941,101,35.98,'2011-08-27 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13877942,101,35.96,'2011-08-27 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13877943,101,35.95,'2011-08-27 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13877944,101,35.95,'2011-08-27 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13877945,101,35.95,'2011-08-27 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13877946,101,36.28,'2011-08-27 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13877947,101,36.44,'2011-08-28 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13877948,101,36.61,'2011-08-28 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13877949,101,36.61,'2011-08-28 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13877950,101,36.61,'2011-08-28 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13877951,101,36.61,'2011-08-28 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13877952,101,36.61,'2011-08-28 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13877953,101,36.61,'2011-08-28 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13877954,101,36.61,'2011-08-28 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13877955,101,36.6,'2011-08-28 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13877956,101,36.57,'2011-08-28 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13877957,101,36.57,'2011-08-28 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13877958,101,36.57,'2011-08-28 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13877959,101,36.57,'2011-08-28 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13877960,101,36.57,'2011-08-28 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883143,31,13.17,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883144,31,13.16,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883145,31,13.06,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883146,31,13.15,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883147,31,13.16,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883148,31,12.81,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883149,31,12.75,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883150,31,12.7,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883151,31,12.7,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883152,31,12.67,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883153,31,12.66,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883154,31,12.62,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883155,31,12.6,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883156,31,12.56,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883157,31,12.52,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883158,31,12.42,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883159,31,12.37,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883160,31,12.49,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883161,31,12.74,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883162,31,13.34,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883163,31,13.29,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883164,31,13.18,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883165,31,13.23,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883166,31,13.2,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883167,32,3.132,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883168,32,3.53,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883169,32,3.125,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883170,32,2.744,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883171,32,2.106,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883172,32,2.12,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883173,32,1.654,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883174,32,1.435,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883175,32,1.29,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883176,32,1.286,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883177,32,3.172,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883178,32,1.526,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883179,32,1.175,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883180,32,1.344,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883181,32,1.191,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883182,32,1.302,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883183,32,1.575,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883184,32,1.628,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883185,32,2.4,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883186,32,3.967,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883187,32,3.328,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883188,32,2.641,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883189,32,2.893,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883190,32,2.544,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883191,33,40.65,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883192,33,33.79,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883193,33,32.66,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883194,33,18.13,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883195,33,2.042,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883196,33,304,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883197,33,231.2,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883198,33,333.4,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883199,33,53.81,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883200,33,225.1,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883201,33,339.3,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883202,33,217.4,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883203,33,230.1,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883204,33,251.3,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883205,33,325.5,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883206,33,344.2,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883207,33,348.6,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883208,33,75.87,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883209,33,169.1,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883210,33,205.3,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883211,33,180.5,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883212,33,169.9,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883213,33,35.28,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883214,33,297.8,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883215,34,20.36,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883216,34,22.64,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883217,34,18.97,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883218,34,23.91,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883219,34,24.3,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883220,34,20.02,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883221,34,25.55,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883222,34,71.1,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883223,34,77.12,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883224,34,66.46,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883225,34,36.22,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883226,34,93.8,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883227,34,59.76,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883228,34,58.24,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883229,34,45.94,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883230,34,37.03,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883231,34,44.45,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883232,34,86.5,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883233,34,44.41,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883234,34,18.83,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883235,34,19.72,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883236,34,38.82,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883237,34,24,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883238,34,89.6,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883239,35,631.3,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13883240,35,630.7,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13883241,35,630.2,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13883242,35,630,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13883243,35,630,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13883244,35,630,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13883245,35,630.4,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13883246,35,631.1,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13883247,35,631,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13883248,35,631.2,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13883249,35,632.2,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13883250,35,632.1,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13883251,35,631.2,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13883252,35,631.1,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13883253,35,630.9,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13883254,35,630.8,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13883255,35,630.8,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13883256,35,630.8,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13883257,35,630.9,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13883258,35,630.8,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13883259,35,630.7,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13883260,35,630.6,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13883261,35,630.2,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13883262,35,629.9,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13883263,30,0,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883264,30,0,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883265,30,0,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883266,30,0,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883267,30,0,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883268,30,0,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883269,30,0,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883270,30,0,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883271,30,0,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883272,30,0,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883273,30,0,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883274,30,0,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883275,30,0,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883276,30,0,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883277,30,0,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883278,30,0,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883279,30,0,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883280,30,0,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883281,30,0,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883282,30,0,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883283,30,0,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883284,30,0,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883285,30,0,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883286,30,0,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883287,28,29.29,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883288,28,29.53,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883289,28,29.6,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883290,28,29.01,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883291,28,27.86,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883292,28,25.44,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883293,28,21.63,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883294,28,20.79,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883295,28,20.8,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883296,28,19.59,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883297,28,18.87,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883298,28,18.16,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883299,28,16.29,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883300,28,14.76,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883301,28,13.7,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883302,28,13.55,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883303,28,14.02,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883304,28,15.9,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883305,28,19.82,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883306,28,21.47,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883307,28,23.89,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883308,28,26.05,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883309,28,26.62,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883310,28,27.93,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883311,29,34.38,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883312,29,34.1,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883313,29,34,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883314,29,34.54,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883315,29,39.51,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883316,29,50.02,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883317,29,59.71,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883318,29,51.06,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883319,29,57.74,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883320,29,59.63,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883321,29,68.3,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883322,29,70.21,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883323,29,76.97,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883324,29,84.5,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883325,29,85.7,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883326,29,88.6,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883327,29,88.3,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883328,29,67.98,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883329,29,60.62,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883330,29,56.18,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883331,29,43.01,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883332,29,41.34,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883333,29,39.35,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883334,29,26.93,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883335,36,984,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883336,36,850,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883337,36,728.1,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883338,36,508.5,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883339,36,263.5,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883340,36,37.73,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883341,36,0.794,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883342,36,0,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883343,36,0,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883344,36,0,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883345,36,0,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883346,36,0,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883347,36,0,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883348,36,0,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883349,36,0,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883350,36,0,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883351,36,1.861,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883352,36,90.7,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883353,36,314,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883354,36,540,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883355,36,747,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883356,36,903,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883357,36,965,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883358,36,898,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883359,46,1.074,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883360,46,1.497,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883361,46,1.378,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883362,46,1.323,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883363,46,1.448,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883364,46,1.445,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883365,46,1.421,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883366,46,1.536,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883367,46,1.691,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883368,46,1.509,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883369,46,1.156,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883370,46,1.474,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883371,46,1.547,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883372,46,1.501,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883373,46,1.585,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883374,46,1.662,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883375,46,1.476,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883376,46,1.51,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883377,46,1.454,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883378,46,1.557,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883379,46,1.468,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883380,46,1.406,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883381,46,1.46,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883382,46,1.514,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883383,47,1.13,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883384,47,1.576,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883385,47,1.451,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883386,47,1.391,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883387,47,1.521,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883388,47,1.511,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883389,47,1.476,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883390,47,1.593,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883391,47,1.754,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883392,47,1.562,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883393,47,1.195,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883394,47,1.522,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883395,47,1.593,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883396,47,1.542,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883397,47,1.624,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883398,47,1.703,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883399,47,1.514,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883400,47,1.553,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883401,47,1.505,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883402,47,1.617,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883403,47,1.53,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883404,47,1.472,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883405,47,1.53,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883406,47,1.589,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883407,48,0.64,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13883408,48,0.194,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13883409,48,0.319,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13883410,48,0.379,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13883411,48,0.249,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13883412,48,0.259,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13883413,48,0.294,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13883414,48,0.177,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13883415,48,0.016,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13883416,48,0.208,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13883417,48,0.575,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13883418,48,0.248,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13883419,48,0.177,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13883420,48,0.228,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13883421,48,0.146,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13883422,48,0.067,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13883423,48,0.256,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13883424,48,0.217,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13883425,48,0.265,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13883426,48,0.153,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13883427,48,0.24,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13883428,48,0.298,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13883429,48,0.24,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13883430,48,0.181,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13883431,41,23.64,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883432,40,30.19,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883433,39,17.91,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883434,37,12.54,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883435,43,631.9,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883436,44,0,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883437,42,48.61,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883438,45,-9999,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883439,38,2.268,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883440,51,0,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883441,53,1.895,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883442,49,1.438,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883443,52,0,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883444,54,1.995,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883445,50,1.499,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883446,56,-0.225,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883447,57,1.77,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13883448,55,0.271,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13886689,58,0.138,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886690,58,0.14,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886691,58,0.139,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886692,58,0.139,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886693,58,0.138,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886694,58,0.138,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886695,58,0.136,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886696,58,0.131,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886697,58,0.132,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886698,58,0.131,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886699,58,0.13,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886700,58,0.128,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886701,58,0.129,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886702,58,0.128,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886703,58,0.126,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886704,58,0.127,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886705,58,0.127,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886706,58,0.124,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886707,58,0.127,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886708,58,0.127,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886709,58,0.131,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886710,58,0.132,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886711,58,0.135,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886712,58,0.138,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886713,63,0.014,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886714,63,0.013,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886715,63,0.014,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886716,63,0.013,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886717,63,0.013,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886718,63,0.013,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886719,63,0.013,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886720,63,0.013,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886721,63,0.013,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886722,63,0.013,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886723,63,0.013,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886724,63,0.013,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886725,63,0.013,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886726,63,0.013,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886727,63,0.013,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886728,63,0.013,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886729,63,0.013,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886730,63,0.014,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886731,63,0.013,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886732,63,0.013,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886733,63,0.013,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886734,63,0.014,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886735,63,0.014,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886736,63,0.013,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886737,73,30.58,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886738,73,31.1,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886739,73,31.4,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886740,73,31.17,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886741,73,30.47,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886742,73,29.57,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886743,73,28.67,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886744,73,27.77,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886745,73,27.05,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886746,73,26.55,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886747,73,26.17,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886748,73,25.37,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886749,73,25,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886750,73,24.67,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886751,73,24.22,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886752,73,23.65,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886753,73,23.32,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886754,73,22.85,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886755,73,23.03,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886756,73,23.83,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886757,73,24.95,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886758,73,26.43,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886759,73,28.05,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886760,73,29.58,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886761,78,87.1,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886762,78,87.9,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886763,78,88.5,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886764,78,88,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886765,78,86.9,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886766,78,85.2,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886767,78,83.6,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886768,78,82,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886769,78,80.7,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886770,78,79.75,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886771,78,79.07,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886772,78,77.72,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886773,78,77.05,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886774,78,76.37,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886775,78,75.6,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886776,78,74.6,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886777,78,73.97,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886778,78,73.1,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886779,78,73.43,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886780,78,74.9,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886781,78,76.93,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886782,78,79.56,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886783,78,82.5,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886784,78,85.2,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886785,64,0.015,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886786,64,0.015,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886787,64,0.015,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886788,64,0.015,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886789,64,0.015,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886790,64,0.014,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886791,64,0.014,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886792,64,0.014,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886793,64,0.014,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886794,64,0.013,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886795,64,0.013,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886796,64,0.013,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886797,64,0.013,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886798,64,0.013,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886799,64,0.013,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886800,64,0.013,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886801,64,0.013,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886802,64,0.013,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886803,64,0.013,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886804,64,0.013,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886805,64,0.013,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886806,64,0.014,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886807,64,0.014,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886808,64,0.014,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886809,84,8.44,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886810,84,8.56,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886811,84,8.51,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886812,84,8.49,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886813,84,8.46,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886814,84,8.46,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886815,84,8.34,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886816,84,8.09,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886817,84,8.16,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886818,84,8.06,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886819,84,8.02,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886820,84,7.958,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886821,84,7.983,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886822,84,7.96,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886823,84,7.822,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886824,84,7.883,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886825,84,7.86,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886826,84,7.724,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886827,84,7.917,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886828,84,7.894,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886829,84,8.08,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886830,84,8.12,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886831,84,8.31,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886832,84,8.44,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886833,94,5.343,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886834,94,5.307,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886835,94,5.36,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886836,94,5.291,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886837,94,5.216,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886838,94,5.055,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886839,94,4.985,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886840,94,5.013,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886841,94,4.899,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886842,94,4.878,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886843,94,4.842,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886844,94,4.824,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886845,94,4.752,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886846,94,4.731,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886847,94,4.723,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886848,94,4.642,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886849,94,4.62,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886850,94,4.67,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886851,94,4.586,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886852,94,4.762,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886853,94,4.815,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886854,94,4.998,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886855,94,5.102,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886856,94,5.195,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886857,83,8.74,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886858,83,8.88,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886859,83,8.83,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886860,83,8.81,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886861,83,8.77,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886862,83,8.74,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886863,83,8.6,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886864,83,8.33,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886865,83,8.39,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886866,83,8.27,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886867,83,8.22,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886868,83,8.14,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886869,83,8.16,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886870,83,8.13,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886871,83,7.98,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886872,83,8.03,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886873,83,8,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886874,83,7.857,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886875,83,8.06,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886876,83,8.05,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886877,83,8.26,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886878,83,8.33,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886879,83,8.56,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886880,83,8.73,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886881,93,4.934,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886882,93,4.858,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886883,93,4.903,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886884,93,4.852,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886885,93,4.833,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886886,93,4.743,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886887,93,4.741,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886888,93,4.827,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886889,93,4.766,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886890,93,4.776,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886891,93,4.773,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886892,93,4.81,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886893,93,4.763,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886894,93,4.764,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886895,93,4.789,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886896,93,4.742,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886897,93,4.751,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886898,93,4.827,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886899,93,4.727,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886900,93,4.844,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886901,93,4.814,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886902,93,4.889,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886903,93,4.871,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886904,93,4.867,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886905,59,0.263,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886906,59,0.264,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886907,59,0.265,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886908,59,0.266,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886909,59,0.266,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886910,59,0.265,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886911,59,0.264,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886912,59,0.264,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886913,59,0.261,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886914,59,0.262,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886915,59,0.26,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886916,59,0.259,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886917,59,0.26,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886918,59,0.259,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886919,59,0.258,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886920,59,0.256,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886921,59,0.255,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886922,59,0.252,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886923,59,0.253,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886924,59,0.253,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886925,59,0.253,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886926,59,0.255,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886927,59,0.258,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886928,59,0.26,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886929,65,0.032,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886930,65,0.032,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886931,65,0.032,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886932,65,0.032,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886933,65,0.032,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886934,65,0.032,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886935,65,0.032,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886936,65,0.032,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886937,65,0.032,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886938,65,0.031,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886939,65,0.031,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886940,65,0.032,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886941,65,0.031,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886942,65,0.031,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886943,65,0.031,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886944,65,0.031,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886945,65,0.031,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886946,65,0.031,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886947,65,0.031,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886948,65,0.031,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886949,65,0.031,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886950,65,0.031,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886951,65,0.031,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886952,65,0.031,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886953,74,27.58,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886954,74,28.3,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886955,74,28.83,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886956,74,28.97,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886957,74,28.97,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886958,74,28.82,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886959,74,28.52,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886960,74,28.02,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886961,74,27.65,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886962,74,27.05,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886963,74,26.67,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886964,74,26.12,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886965,74,25.9,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886966,74,25.6,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886967,74,25.25,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886968,74,24.85,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886969,74,24.47,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886970,74,24.12,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886971,74,23.9,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886972,74,23.8,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886973,74,24.18,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886974,74,24.85,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886975,74,25.88,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13886976,74,27.08,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13886977,79,81.6,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13886978,79,83,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13886979,79,83.9,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13886980,79,84.1,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13886981,79,84.1,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13886982,79,83.9,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13886983,79,83.4,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13886984,79,82.5,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13886985,79,81.7,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13886986,79,80.7,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13886987,79,80,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13886988,79,78.97,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13886989,79,78.6,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13886990,79,78.2,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13886991,79,77.5,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13886992,79,76.7,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13886993,79,76.02,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13886994,79,75.4,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13886995,79,75.1,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13886996,79,74.9,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13886997,79,75.5,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13886998,79,76.73,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13886999,79,78.63,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887000,79,80.8,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887001,66,0.033,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887002,66,0.033,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887003,66,0.034,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887004,66,0.034,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887005,66,0.034,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887006,66,0.034,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887007,66,0.033,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887008,66,0.033,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887009,66,0.033,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887010,66,0.032,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887011,66,0.032,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887012,66,0.032,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887013,66,0.032,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887014,66,0.032,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887015,66,0.031,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887016,66,0.031,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887017,66,0.031,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887018,66,0.031,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887019,66,0.03,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887020,66,0.03,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887021,66,0.03,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887022,66,0.031,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887023,66,0.031,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887024,66,0.032,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887025,86,16.43,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887026,86,16.54,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887027,86,16.55,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887028,86,16.64,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887029,86,16.65,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887030,86,16.56,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887031,86,16.54,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887032,86,16.5,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887033,86,16.32,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887034,86,16.4,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887035,86,16.21,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887036,86,16.16,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887037,86,16.2,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887038,86,16.13,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887039,86,16.09,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887040,86,15.93,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887041,86,15.88,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887042,86,15.65,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887043,86,15.69,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887044,86,15.71,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887045,86,15.77,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887046,86,15.81,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887047,86,16.06,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887048,86,16.24,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887049,96,11.74,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887050,96,11.96,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887051,96,12.11,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887052,96,12.11,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887053,96,12.11,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887054,96,12.11,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887055,96,12.03,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887056,96,11.92,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887057,96,11.84,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887058,96,11.65,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887059,96,11.62,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887060,96,11.59,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887061,96,11.43,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887062,96,11.31,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887063,96,11.22,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887064,96,11.21,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887065,96,11.12,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887066,96,11.1,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887067,96,11.02,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887068,96,10.97,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887069,96,10.96,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887070,96,11.11,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887071,96,11.19,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887072,96,11.39,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887073,85,16.89,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887074,85,17.04,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887075,85,17.07,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887076,85,17.18,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887077,85,17.19,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887078,85,17.08,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887079,85,17.06,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887080,85,16.99,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887081,85,16.79,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887082,85,16.86,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887083,85,16.65,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887084,85,16.57,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887085,85,16.6,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887086,85,16.53,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887087,85,16.47,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887088,85,16.29,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887089,85,16.23,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887090,85,15.98,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887091,85,16.01,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887092,85,16.03,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887093,85,16.1,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887094,85,16.16,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887095,85,16.45,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887096,85,16.68,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887097,95,11.35,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887098,95,11.42,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887099,95,11.49,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887100,95,11.45,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887101,95,11.45,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887102,95,11.48,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887103,95,11.44,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887104,95,11.4,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887105,95,11.39,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887106,95,11.28,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887107,95,11.31,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887108,95,11.36,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887109,95,11.25,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887110,95,11.17,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887111,95,11.13,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887112,95,11.18,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887113,95,11.15,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887114,95,11.2,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887115,95,11.14,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887116,95,11.11,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887117,95,11.05,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887118,95,11.1,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887119,95,11.04,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887120,95,11.07,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887121,60,0.365,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887122,60,0.369,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887123,60,0.361,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887124,60,0.367,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887125,60,0.369,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887126,60,0.368,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887127,60,0.366,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887128,60,0.367,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887129,60,0.363,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887130,60,0.367,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887131,60,0.368,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887132,60,0.367,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887133,60,0.371,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887134,60,0.363,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887135,60,0.365,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887136,60,0.363,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887137,60,0.367,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887138,60,0.371,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887139,60,0.367,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887140,60,0.367,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887141,60,0.366,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887142,60,0.362,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887143,60,0.361,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887144,60,0.363,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887145,67,0.08,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887146,67,0.08,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887147,67,0.081,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887148,67,0.08,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887149,67,0.08,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887150,67,0.081,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887151,67,0.081,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887152,67,0.081,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887153,67,0.082,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887154,67,0.082,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887155,67,0.081,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887156,67,0.081,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887157,67,0.08,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887158,67,0.082,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887159,67,0.081,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887160,67,0.081,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887161,67,0.08,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887162,67,0.08,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887163,67,0.081,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887164,67,0.08,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887165,67,0.08,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887166,67,0.081,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887167,67,0.081,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887168,67,0.081,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887169,75,25.5,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887170,75,25.45,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887171,75,25.6,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887172,75,25.9,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887173,75,25.9,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887174,75,26.13,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887175,75,26.25,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887176,75,26.4,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887177,75,26.4,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887178,75,26.4,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887179,75,26.4,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887180,75,26.4,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887181,75,26.4,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887182,75,26.35,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887183,75,26.2,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887184,75,26.13,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887185,75,26.05,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887186,75,25.9,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887187,75,25.82,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887188,75,25.4,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887189,75,25.55,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887190,75,25.4,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887191,75,25.4,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887192,75,25.4,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887193,80,77.95,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887194,80,77.83,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887195,80,78.2,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887196,80,78.6,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887197,80,78.6,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887198,80,78.97,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887199,80,79.2,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887200,80,79.5,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887201,80,79.5,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887202,80,79.5,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887203,80,79.5,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887204,80,79.5,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887205,80,79.5,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887206,80,79.4,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887207,80,79.1,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887208,80,78.97,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887209,80,78.85,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887210,80,78.6,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887211,80,78.5,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887212,80,77.7,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887213,80,78.07,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887214,80,77.7,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887215,80,77.7,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887216,80,77.7,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887217,68,0.081,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887218,68,0.081,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887219,68,0.082,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887220,68,0.081,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887221,68,0.081,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887222,68,0.082,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887223,68,0.083,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887224,68,0.083,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887225,68,0.084,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887226,68,0.083,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887227,68,0.083,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887228,68,0.083,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887229,68,0.082,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887230,68,0.084,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887231,68,0.083,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887232,68,0.083,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887233,68,0.081,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887234,68,0.081,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887235,68,0.081,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887236,68,0.081,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887237,68,0.081,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887238,68,0.082,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887239,68,0.081,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887240,68,0.081,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887241,88,24.86,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887242,88,25.22,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887243,88,24.57,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887244,88,25.1,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887245,88,25.27,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887246,88,25.16,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887247,88,24.97,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887248,88,25.08,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887249,88,24.73,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887250,88,25.09,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887251,88,25.2,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887252,88,25.09,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887253,88,25.42,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887254,88,24.72,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887255,88,24.94,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887256,88,24.76,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887257,88,25.03,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887258,88,25.48,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887259,88,25.02,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887260,88,25.08,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887261,88,24.97,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887262,88,24.62,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887263,88,24.55,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887264,88,24.73,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887265,98,29.26,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887266,98,29.08,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887267,98,29.56,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887268,98,29.34,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887269,98,29.31,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887270,98,29.61,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887271,98,29.81,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887272,98,29.72,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887273,98,29.96,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887274,98,29.95,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887275,98,29.63,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887276,98,29.72,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887277,98,29.46,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887278,98,29.95,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887279,98,29.78,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887280,98,29.77,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887281,98,29.44,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887282,98,29.15,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887283,98,29.46,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887284,98,29.11,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887285,98,29.2,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887286,98,29.41,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887287,98,29.32,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887288,98,29.14,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887289,87,25.45,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887290,87,25.82,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887291,87,25.16,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887292,87,25.71,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887293,87,25.89,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887294,87,25.79,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887295,87,25.6,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887296,87,25.73,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887297,87,25.37,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887298,87,25.75,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887299,87,25.85,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887300,87,25.73,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887301,87,26.07,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887302,87,25.35,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887303,87,25.58,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887304,87,25.38,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887305,87,25.65,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887306,87,26.1,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887307,87,25.63,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887308,87,25.69,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887309,87,25.57,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887310,87,25.2,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887311,87,25.12,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887312,87,25.31,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887313,97,29.04,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887314,97,28.84,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887315,97,29.27,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887316,97,29,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887317,97,28.92,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887318,97,29.14,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887319,97,29.29,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887320,97,29.15,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887321,97,29.36,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887322,97,29.33,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887323,97,29.03,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887324,97,29.14,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887325,97,28.91,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887326,97,29.41,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887327,97,29.27,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887328,97,29.31,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887329,97,29.03,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887330,97,28.78,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887331,97,29.13,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887332,97,28.85,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887333,97,28.98,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887334,97,29.25,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887335,97,29.17,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887336,97,28.98,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887337,61,0.257,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887338,61,0.257,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887339,61,0.257,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887340,61,0.258,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887341,61,0.257,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887342,61,0.257,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887343,61,0.257,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887344,61,0.257,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887345,61,0.257,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887346,61,0.258,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887347,61,0.26,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887348,61,0.261,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887349,61,0.259,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887350,61,0.261,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887351,61,0.262,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887352,61,0.261,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887353,61,0.261,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887354,61,0.261,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887355,61,0.262,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887356,61,0.261,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887357,61,0.26,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887358,61,0.256,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887359,61,0.257,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887360,61,0.257,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887361,69,0.043,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887362,69,0.043,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887363,69,0.043,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887364,69,0.043,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887365,69,0.043,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887366,69,0.043,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887367,69,0.043,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887368,69,0.043,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887369,69,0.043,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887370,69,0.043,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887371,69,0.043,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887372,69,0.043,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887373,69,0.043,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887374,69,0.043,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887375,69,0.043,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887376,69,0.043,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887377,69,0.043,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887378,69,0.043,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887379,69,0.043,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887380,69,0.043,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887381,69,0.043,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887382,69,0.043,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887383,69,0.043,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887384,69,0.043,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887385,76,25.05,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887386,76,24.9,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887387,76,24.9,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887388,76,24.85,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887389,76,24.9,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887390,76,24.9,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887391,76,24.9,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887392,76,24.9,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887393,76,24.9,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887394,76,24.9,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887395,76,24.95,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887396,76,25,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887397,76,25.05,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887398,76,25.05,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887399,76,25.1,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887400,76,25.05,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887401,76,25.1,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887402,76,25.05,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887403,76,25.1,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887404,76,25.1,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887405,76,25.1,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887406,76,25.1,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887407,76,25,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887408,76,25.1,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887409,81,77.18,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887410,81,76.8,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887411,81,76.8,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887412,81,76.7,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887413,81,76.8,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887414,81,76.8,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887415,81,76.8,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887416,81,76.8,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887417,81,76.8,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887418,81,76.8,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887419,81,76.93,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887420,81,77.05,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887421,81,77.18,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887422,81,77.18,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887423,81,77.3,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887424,81,77.18,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887425,81,77.3,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887426,81,77.18,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887427,81,77.3,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887428,81,77.3,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887429,81,77.3,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887430,81,77.3,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887431,81,77.05,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887432,81,77.3,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887433,70,0.044,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887434,70,0.044,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887435,70,0.044,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887436,70,0.044,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887437,70,0.044,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887438,70,0.044,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887439,70,0.044,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887440,70,0.044,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887441,70,0.044,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887442,70,0.044,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887443,70,0.043,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887444,70,0.043,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887445,70,0.044,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887446,70,0.043,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887447,70,0.043,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887448,70,0.043,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887449,70,0.043,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887450,70,0.043,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887451,70,0.043,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887452,70,0.043,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887453,70,0.043,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887454,70,0.044,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887455,70,0.044,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887456,70,0.044,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887457,90,15.97,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887458,90,16,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887459,90,16,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887460,90,16.06,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887461,90,16,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887462,90,16,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887463,90,16,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887464,90,16,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887465,90,16,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887466,90,16.07,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887467,90,16.19,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887468,90,16.3,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887469,90,16.19,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887470,90,16.3,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887471,90,16.38,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887472,90,16.3,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887473,90,16.3,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887474,90,16.3,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887475,90,16.34,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887476,90,16.3,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887477,90,16.27,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887478,90,15.97,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887479,90,16.01,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887480,90,16.01,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887481,100,15.72,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887482,100,15.66,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887483,100,15.66,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887484,100,15.63,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887485,100,15.66,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887486,100,15.66,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887487,100,15.66,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887488,100,15.66,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887489,100,15.66,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887490,100,15.64,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887491,100,15.57,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887492,100,15.5,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887493,100,15.57,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887494,100,15.59,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887495,100,15.48,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887496,100,15.59,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887497,100,15.59,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887498,100,15.59,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887499,100,15.53,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887500,100,15.59,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887501,100,15.55,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887502,100,15.72,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887503,100,15.66,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887504,100,15.66,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887505,89,16.33,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887506,89,16.37,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887507,89,16.37,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887508,89,16.43,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887509,89,16.37,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887510,89,16.37,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887511,89,16.37,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887512,89,16.37,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887513,89,16.37,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887514,89,16.44,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887515,89,16.56,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887516,89,16.67,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887517,89,16.56,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887518,89,16.67,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887519,89,16.75,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887520,89,16.68,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887521,89,16.68,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887522,89,16.68,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887523,89,16.72,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887524,89,16.68,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887525,89,16.64,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887526,89,16.34,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887527,89,16.38,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887528,89,16.38,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887529,99,15.67,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887530,99,15.64,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887531,99,15.64,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887532,99,15.61,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887533,99,15.64,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887534,99,15.64,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887535,99,15.64,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887536,99,15.64,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887537,99,15.64,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887538,99,15.62,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887539,99,15.53,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887540,99,15.45,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887541,99,15.53,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887542,99,15.54,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887543,99,15.42,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887544,99,15.53,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887545,99,15.53,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887546,99,15.53,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887547,99,15.47,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887548,99,15.53,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887549,99,15.49,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887550,99,15.66,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887551,99,15.61,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887552,99,15.61,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887553,62,0.375,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887554,62,0.377,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887555,62,0.379,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887556,62,0.379,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887557,62,0.379,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887558,62,0.379,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887559,62,0.379,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887560,62,0.377,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887561,62,0.375,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887562,62,0.376,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887563,62,0.375,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887564,62,0.375,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887565,62,0.375,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887566,62,0.375,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887567,62,0.375,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887568,62,0.375,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887569,62,0.375,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887570,62,0.375,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887571,62,0.375,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887572,62,0.375,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887573,62,0.375,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887574,62,0.375,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887575,62,0.375,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887576,62,0.375,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887577,71,0.102,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887578,71,0.101,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887579,71,0.1,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887580,71,0.1,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887581,71,0.1,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887582,71,0.1,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887583,71,0.1,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887584,71,0.101,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887585,71,0.102,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887586,71,0.102,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887587,71,0.102,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887588,71,0.102,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887589,71,0.102,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887590,71,0.102,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887591,71,0.102,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887592,71,0.102,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887593,71,0.102,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887594,71,0.102,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887595,71,0.102,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887596,71,0.102,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887597,71,0.102,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887598,71,0.101,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887599,71,0.101,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887600,71,0.101,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887601,77,21.9,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887602,77,21.9,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887603,77,21.9,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887604,77,21.9,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887605,77,21.9,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887606,77,21.9,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887607,77,21.85,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887608,77,21.95,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887609,77,21.95,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887610,77,21.85,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887611,77,21.9,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887612,77,21.95,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887613,77,21.95,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887614,77,22.1,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887615,77,22,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887616,77,22.1,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887617,77,22.05,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887618,77,22.05,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887619,77,22.05,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887620,77,21.95,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887621,77,22.1,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887622,77,22.1,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887623,77,22.05,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887624,77,22.1,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887625,82,71.5,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887626,82,71.5,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887627,82,71.5,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887628,82,71.5,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887629,82,71.5,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887630,82,71.5,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887631,82,71.4,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887632,82,71.6,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887633,82,71.6,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887634,82,71.4,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887635,82,71.5,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887636,82,71.6,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887637,82,71.6,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887638,82,71.9,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887639,82,71.7,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887640,82,71.9,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887641,82,71.8,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887642,82,71.8,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887643,82,71.8,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887644,82,71.6,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887645,82,71.9,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887646,82,71.9,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887647,82,71.8,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887648,82,71.9,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887649,72,0.097,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887650,72,0.096,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887651,72,0.095,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887652,72,0.095,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887653,72,0.095,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887654,72,0.095,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887655,72,0.095,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887656,72,0.096,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887657,72,0.097,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887658,72,0.097,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887659,72,0.097,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887660,72,0.097,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887661,72,0.097,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887662,72,0.097,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887663,72,0.097,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887664,72,0.097,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887665,72,0.097,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887666,72,0.097,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887667,72,0.097,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887668,72,0.097,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887669,72,0.097,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887670,72,0.097,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887671,72,0.097,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887672,72,0.097,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887673,92,25.84,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887674,92,26.05,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887675,92,26.25,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887676,92,26.25,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887677,92,26.25,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887678,92,26.25,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887679,92,26.25,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887680,92,26.05,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887681,92,25.84,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887682,92,25.95,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887683,92,25.84,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887684,92,25.84,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887685,92,25.84,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887686,92,25.84,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887687,92,25.84,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887688,92,25.84,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887689,92,25.84,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887690,92,25.84,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887691,92,25.84,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887692,92,25.84,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887693,92,25.84,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887694,92,25.85,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887695,92,25.85,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887696,92,25.85,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887697,102,34.97,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887698,102,34.66,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887699,102,34.35,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887700,102,34.35,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887701,102,34.35,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887702,102,34.35,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887703,102,34.35,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887704,102,34.66,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887705,102,34.97,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887706,102,34.82,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887707,102,34.98,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887708,102,34.98,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887709,102,34.98,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887710,102,34.98,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887711,102,34.98,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887712,102,34.98,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887713,102,34.98,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887714,102,34.98,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887715,102,34.98,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887716,102,34.98,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887717,102,34.98,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887718,102,34.99,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887719,102,34.99,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887720,102,34.99,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887721,91,26.23,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887722,91,26.45,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887723,91,26.66,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887724,91,26.66,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887725,91,26.66,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887726,91,26.66,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887727,91,26.66,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887728,91,26.45,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887729,91,26.24,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887730,91,26.35,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887731,91,26.25,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887732,91,26.25,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887733,91,26.25,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887734,91,26.25,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887735,91,26.25,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887736,91,26.25,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887737,91,26.25,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887738,91,26.25,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887739,91,26.25,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887740,91,26.25,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887741,91,26.25,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887742,91,26.26,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887743,91,26.26,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887744,91,26.26,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13887745,101,36.57,'2011-08-28 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13887746,101,36.24,'2011-08-28 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13887747,101,35.92,'2011-08-28 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13887748,101,35.92,'2011-08-28 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13887749,101,35.92,'2011-08-28 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13887750,101,35.92,'2011-08-28 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13887751,101,35.92,'2011-08-28 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13887752,101,36.23,'2011-08-28 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13887753,101,36.56,'2011-08-28 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13887754,101,36.38,'2011-08-28 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13887755,101,36.54,'2011-08-29 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13887756,101,36.54,'2011-08-29 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13887757,101,36.54,'2011-08-29 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13887758,101,36.54,'2011-08-29 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13887759,101,36.54,'2011-08-29 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13887760,101,36.54,'2011-08-29 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13887761,101,36.54,'2011-08-29 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13887762,101,36.54,'2011-08-29 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13887763,101,36.54,'2011-08-29 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13887764,101,36.54,'2011-08-29 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13887765,101,36.53,'2011-08-29 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13887766,101,36.51,'2011-08-29 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13887767,101,36.51,'2011-08-29 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13887768,101,36.51,'2011-08-29 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13892995,31,13.18,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13892996,31,13.17,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13892997,31,13.17,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13892998,31,13.17,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13892999,31,13.18,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893000,31,12.81,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893001,31,12.75,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893002,31,12.71,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893003,31,12.67,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893004,31,12.66,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893005,31,12.64,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893006,31,12.61,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893007,31,12.59,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893008,31,12.5,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893009,31,12.51,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893010,31,12.5,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893011,31,12.49,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893012,31,12.51,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893013,31,12.96,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893014,31,13.29,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893015,31,13.26,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893016,31,13.26,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893017,31,13.11,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893018,31,13.2,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893019,32,4.06,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893020,32,4.123,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893021,32,3.727,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893022,32,3.022,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893023,32,3.262,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893024,32,2.521,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893025,32,1.89,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893026,32,1.279,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893027,32,1.659,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893028,32,1.062,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893029,32,1.392,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893030,32,1.22,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893031,32,0.615,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893032,32,0.838,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893033,32,1.01,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893034,32,2.302,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893035,32,1.074,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893036,32,1.749,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893037,32,2.299,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893038,32,2.453,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893039,32,2.551,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893040,32,2.543,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893041,32,3.361,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893042,32,5.196,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893043,33,258.3,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893044,33,256.4,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893045,33,259,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893046,33,242.2,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893047,33,201.3,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893048,33,212.2,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893049,33,222.4,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893050,33,243.5,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893051,33,215.3,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893052,33,319.3,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893053,33,219.3,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893054,33,321.2,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893055,33,254.8,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893056,33,283.9,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893057,33,312.6,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893058,33,267.9,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893059,33,324.7,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893060,33,193.7,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893061,33,163.8,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893062,33,187.8,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893063,33,6.769,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893064,33,55.09,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893065,33,173.3,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893066,33,207,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893067,34,18.56,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893068,34,15.57,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893069,34,19.71,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893070,34,38.19,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893071,34,14.01,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893072,34,7.726,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893073,34,32.8,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893074,34,38.3,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893075,34,44.39,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893076,34,64.24,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893077,34,30.73,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893078,34,57.34,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893079,34,50.69,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893080,34,80.1,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893081,34,47.74,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893082,34,65.98,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893083,34,74.9,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893084,34,72.51,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893085,34,55.31,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893086,34,27.83,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893087,34,74.83,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893088,34,65.58,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893089,34,67.6,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893090,34,19.35,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893091,35,629.4,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13893092,35,628.9,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13893093,35,628.5,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13893094,35,628.1,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13893095,35,627.8,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13893096,35,627.8,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13893097,35,628.1,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13893098,35,628.3,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13893099,35,628.2,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13893100,35,628.3,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13893101,35,628.5,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13893102,35,628.7,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13893103,35,628.6,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13893104,35,628.7,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13893105,35,628.6,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13893106,35,628.5,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13893107,35,628.6,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13893108,35,628.6,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13893109,35,628.6,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13893110,35,628.4,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13893111,35,628.5,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13893112,35,628.4,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13893113,35,628,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13893114,35,627.7,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13893115,30,0,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893116,30,0,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893117,30,0,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893118,30,0,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893119,30,0,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893120,30,0,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893121,30,0,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893122,30,0,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893123,30,0,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893124,30,0,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893125,30,0,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893126,30,0,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893127,30,0,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893128,30,0,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893129,30,0,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893130,30,0,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893131,30,0,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893132,30,0,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893133,30,0,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893134,30,0,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893135,30,0,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893136,30,0,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893137,30,0,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893138,30,0,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893139,28,28.94,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893140,28,29.1,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893141,28,29.54,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893142,28,29.2,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893143,28,27.84,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893144,28,24.98,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893145,28,21.27,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893146,28,19.35,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893147,28,18.41,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893148,28,17.97,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893149,28,19.22,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893150,28,17.72,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893151,28,16.61,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893152,28,15.53,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893153,28,15.61,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893154,28,16.87,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893155,28,16.16,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893156,28,18.38,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893157,28,21.73,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893158,28,24.76,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893159,28,24.34,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893160,28,24.83,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893161,28,28.08,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893162,28,29.56,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893163,29,27.62,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893164,29,26.13,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893165,29,23.43,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893166,29,23.93,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893167,29,27.4,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893168,29,40.75,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893169,29,44.62,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893170,29,46.45,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893171,29,47.76,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893172,29,48.88,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893173,29,46.69,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893174,29,43.92,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893175,29,54.72,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893176,29,56.36,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893177,29,56.79,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893178,29,54.85,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893179,29,57.11,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893180,29,48.49,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893181,29,39.05,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893182,29,35.07,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893183,29,41.95,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893184,29,36.51,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893185,29,25.19,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893186,29,25.24,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893187,36,993,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893188,36,882,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893189,36,720.4,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893190,36,504.1,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893191,36,270.1,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893192,36,28.04,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893193,36,1.162,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893194,36,0,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893195,36,0,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893196,36,0,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893197,36,0,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893198,36,0,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893199,36,0,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893200,36,0,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893201,36,0,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893202,36,0,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893203,36,2.29,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893204,36,100.9,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893205,36,355.6,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893206,36,625,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893207,36,532.5,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893208,36,540,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893209,36,-9999,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893210,36,1113,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893211,46,1.437,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893212,46,1.47,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893213,46,1.287,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893214,46,1.4,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893215,46,0.988,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893216,46,1.295,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893217,46,1.42,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893218,46,1.553,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893219,46,1.449,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893220,46,1.413,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893221,46,1.413,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893222,46,1.421,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893223,46,1.422,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893224,46,1.425,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893225,46,1.423,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893226,46,1.57,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893227,46,1.698,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893228,46,1.678,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893229,46,1.558,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893230,46,1.158,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893231,46,1.347,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893232,46,1.539,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893233,46,1.368,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893234,46,1.034,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893235,47,1.512,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893236,47,1.547,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893237,47,1.355,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893238,47,1.473,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893239,47,1.038,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893240,47,1.353,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893241,47,1.474,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893242,47,1.607,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893243,47,1.497,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893244,47,1.458,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893245,47,1.462,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893246,47,1.466,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893247,47,1.465,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893248,47,1.465,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893249,47,1.463,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893250,47,1.617,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893251,47,1.748,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893252,47,1.733,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893253,47,1.618,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893254,47,1.208,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893255,47,1.406,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893256,47,1.608,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893257,47,1.436,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893258,47,1.089,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893259,48,0.258,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13893260,48,0.223,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13893261,48,0.415,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13893262,48,0.297,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13893263,48,0.732,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13893264,48,0.417,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13893265,48,0.296,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13893266,48,0.163,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13893267,48,0.273,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13893268,48,0.312,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13893269,48,0.308,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13893270,48,0.304,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13893271,48,0.305,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13893272,48,0.305,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13893273,48,0.307,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13893274,48,0.153,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13893275,48,0.022,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13893276,48,0.037,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13893277,48,0.152,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13893278,48,0.562,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13893279,48,0.364,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13893280,48,0.162,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13893281,48,0.334,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13893282,48,0.681,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13893283,41,21.58,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893284,40,30.08,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893285,39,12.94,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893286,37,12.37,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893287,43,629.9,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893288,44,0,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893289,42,51.77,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893290,45,27.97647,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893291,38,2.313,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893292,51,0,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893293,53,1.887,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893294,49,1.448,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893295,52,0,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893296,54,1.98,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893297,50,1.503,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893298,56,-0.21,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893299,57,1.77,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13893300,55,0.267,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13896541,58,0.141,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896542,58,0.14,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896543,58,0.14,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896544,58,0.14,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896545,58,0.137,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896546,58,0.136,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896547,58,0.134,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896548,58,0.133,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896549,58,0.131,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896550,58,0.127,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896551,58,0.129,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896552,58,0.128,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896553,58,0.127,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896554,58,0.126,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896555,58,0.126,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896556,58,0.124,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896557,58,0.123,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896558,58,0.121,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896559,58,0.125,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896560,58,0.125,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896561,58,0.129,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896562,58,0.132,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896563,58,0.131,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896564,58,0.136,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896565,63,0.013,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896566,63,0.014,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896567,63,0.014,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896568,63,0.013,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896569,63,0.013,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896570,63,0.013,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896571,63,0.013,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896572,63,0.013,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896573,63,0.013,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896574,63,0.013,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896575,63,0.013,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896576,63,0.013,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896577,63,0.013,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896578,63,0.013,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896579,63,0.013,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896580,63,0.013,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896581,63,0.013,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896582,63,0.013,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896583,63,0.013,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896584,63,0.013,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896585,63,0.013,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896586,63,0.013,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896587,63,0.013,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896588,63,0.013,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896589,73,30.75,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896590,73,31.4,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896591,73,31.7,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896592,73,31.4,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896593,73,30.65,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896594,73,29.87,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896595,73,28.75,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896596,73,27.7,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896597,73,26.8,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896598,73,26.22,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896599,73,25.55,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896600,73,25.07,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896601,73,24.67,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896602,73,24.1,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896603,73,23.55,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896604,73,23.22,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896605,73,22.9,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896606,73,22.65,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896607,73,22.8,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896608,73,23.83,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896609,73,25.15,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896610,73,25.9,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896611,73,26.8,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896612,73,28.63,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896613,78,87.3,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896614,78,88.5,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896615,78,89.1,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896616,78,88.5,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896617,78,87.2,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896618,78,85.8,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896619,78,83.8,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896620,78,81.9,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896621,78,80.2,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896622,78,79.17,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896623,78,78.07,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896624,78,77.15,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896625,78,76.37,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896626,78,75.4,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896627,78,74.4,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896628,78,73.77,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896629,78,73.2,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896630,78,72.7,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896631,78,73,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896632,78,74.91,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896633,78,77.28,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896634,78,78.63,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896635,78,80.3,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896636,78,83.5,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896637,64,0.015,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896638,64,0.015,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896639,64,0.015,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896640,64,0.015,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896641,64,0.015,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896642,64,0.014,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896643,64,0.014,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896644,64,0.014,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896645,64,0.013,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896646,64,0.013,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896647,64,0.013,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896648,64,0.013,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896649,64,0.013,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896650,64,0.013,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896651,64,0.013,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896652,64,0.013,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896653,64,0.013,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896654,64,0.013,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896655,64,0.013,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896656,64,0.013,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896657,64,0.013,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896658,64,0.013,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896659,64,0.014,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896660,64,0.014,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896661,84,8.63,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896662,84,8.55,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896663,84,8.55,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896664,84,8.55,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896665,84,8.41,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896666,84,8.35,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896667,84,8.21,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896668,84,8.19,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896669,84,8.09,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896670,84,7.876,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896671,84,8,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896672,84,7.964,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896673,84,7.891,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896674,84,7.831,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896675,84,7.832,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896676,84,7.701,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896677,84,7.71,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896678,84,7.577,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896679,84,7.81,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896680,84,7.756,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896681,84,8,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896682,84,8.13,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896683,84,8.09,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896684,84,8.32,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896685,94,5.234,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896686,94,5.349,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896687,94,5.35,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896688,94,5.252,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896689,94,5.206,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896690,94,5.096,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896691,94,4.979,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896692,94,4.861,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896693,94,4.811,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896694,94,4.886,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896695,94,4.726,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896696,94,4.675,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896697,94,4.646,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896698,94,4.633,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896699,94,4.586,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896700,94,4.648,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896701,94,4.606,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896702,94,4.655,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896703,94,4.566,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896704,94,4.754,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896705,94,4.83,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896706,94,4.815,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896707,94,4.962,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896708,94,5.06,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896709,83,8.95,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896710,83,8.87,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896711,83,8.88,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896712,83,8.88,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896713,83,8.71,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896714,83,8.63,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896715,83,8.47,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896716,83,8.42,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896717,83,8.31,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896718,83,8.07,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896719,83,8.19,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896720,83,8.14,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896721,83,8.06,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896722,83,7.987,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896723,83,7.98,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896724,83,7.839,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896725,83,7.842,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896726,83,7.702,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896727,83,7.945,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896728,83,7.909,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896729,83,8.19,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896730,83,8.33,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896731,83,8.31,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896732,83,8.58,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896733,93,4.813,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896734,93,4.888,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896735,93,4.873,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896736,93,4.806,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896737,93,4.808,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896738,93,4.768,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896739,93,4.724,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896740,93,4.683,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896741,93,4.695,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896742,93,4.818,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896743,93,4.698,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896744,93,4.681,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896745,93,4.686,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896746,93,4.706,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896747,93,4.691,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896748,93,4.785,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896749,93,4.764,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896750,93,4.832,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896751,93,4.719,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896752,93,4.838,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896753,93,4.813,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896754,93,4.749,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896755,93,4.831,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896756,93,4.795,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896757,59,0.26,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896758,59,0.261,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896759,59,0.263,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896760,59,0.262,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896761,59,0.262,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896762,59,0.263,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896763,59,0.261,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896764,59,0.26,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896765,59,0.261,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896766,59,0.26,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896767,59,0.257,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896768,59,0.257,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896769,59,0.255,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896770,59,0.255,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896771,59,0.253,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896772,59,0.253,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896773,59,0.252,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896774,59,0.251,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896775,59,0.249,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896776,59,0.249,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896777,59,0.25,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896778,59,0.252,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896779,59,0.254,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896780,59,0.254,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896781,65,0.031,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896782,65,0.032,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896783,65,0.031,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896784,65,0.031,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896785,65,0.031,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896786,65,0.031,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896787,65,0.031,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896788,65,0.031,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896789,65,0.031,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896790,65,0.031,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896791,65,0.03,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896792,65,0.03,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896793,65,0.03,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896794,65,0.03,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896795,65,0.03,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896796,65,0.03,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896797,65,0.03,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896798,65,0.03,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896799,65,0.03,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896800,65,0.03,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896801,65,0.03,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896802,65,0.03,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896803,65,0.03,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896804,65,0.03,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896805,74,28.1,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896806,74,28.9,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896807,74,29.2,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896808,74,29.5,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896809,74,29.42,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896810,74,29.12,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896811,74,28.75,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896812,74,28.15,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896813,74,27.57,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896814,74,27,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896815,74,26.47,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896816,74,26.05,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896817,74,25.55,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896818,74,25.12,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896819,74,24.8,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896820,74,24.47,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896821,74,23.97,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896822,74,23.7,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896823,74,23.55,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896824,74,23.6,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896825,74,24,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896826,74,24.73,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896827,74,25.3,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896828,74,26.3,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896829,79,82.6,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896830,79,84,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896831,79,84.6,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896832,79,85.1,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896833,79,85,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896834,79,84.4,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896835,79,83.7,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896836,79,82.7,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896837,79,81.6,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896838,79,80.6,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896839,79,79.62,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896840,79,78.85,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896841,79,78.07,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896842,79,77.27,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896843,79,76.6,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896844,79,76.02,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896845,79,75.2,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896846,79,74.7,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896847,79,74.4,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896848,79,74.5,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896849,79,75.2,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896850,79,76.48,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896851,79,77.63,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896852,79,79.31,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896853,66,0.032,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896854,66,0.033,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896855,66,0.033,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896856,66,0.033,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896857,66,0.033,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896858,66,0.033,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896859,66,0.033,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896860,66,0.032,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896861,66,0.032,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896862,66,0.032,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896863,66,0.031,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896864,66,0.031,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896865,66,0.031,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896866,66,0.03,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896867,66,0.03,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896868,66,0.03,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896869,66,0.03,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896870,66,0.029,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896871,66,0.03,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896872,66,0.03,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896873,66,0.03,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896874,66,0.03,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896875,66,0.03,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896876,66,0.031,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896877,86,16.21,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896878,86,16.3,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896879,86,16.48,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896880,86,16.4,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896881,86,16.4,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896882,86,16.42,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896883,86,16.32,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896884,86,16.23,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896885,86,16.27,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896886,86,16.21,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896887,86,15.99,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896888,86,15.98,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896889,86,15.88,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896890,86,15.82,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896891,86,15.73,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896892,86,15.71,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896893,86,15.62,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896894,86,15.54,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896895,86,15.42,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896896,86,15.46,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896897,86,15.46,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896898,86,15.62,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896899,86,15.81,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896900,86,15.73,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896901,96,11.68,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896902,96,11.89,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896903,96,11.83,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896904,96,11.97,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896905,96,11.97,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896906,96,11.85,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896907,96,11.77,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896908,96,11.69,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896909,96,11.47,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896910,96,11.37,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896911,96,11.32,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896912,96,11.18,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896913,96,11.1,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896914,96,10.99,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896915,96,10.92,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896916,96,10.85,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896917,96,10.78,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896918,96,10.71,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896919,96,10.66,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896920,96,10.65,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896921,96,10.77,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896922,96,10.83,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896923,96,10.8,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896924,96,11.1,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896925,85,16.69,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896926,85,16.81,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896927,85,17.01,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896928,85,16.94,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896929,85,16.95,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896930,85,16.95,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896931,85,16.84,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896932,85,16.72,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896933,85,16.75,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896934,85,16.66,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896935,85,16.42,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896936,85,16.39,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896937,85,16.27,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896938,85,16.19,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896939,85,16.09,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896940,85,16.05,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896941,85,15.95,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896942,85,15.85,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896943,85,15.73,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896944,85,15.77,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896945,85,15.78,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896946,85,15.96,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896947,85,16.18,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896948,85,16.13,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896949,95,11.19,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896950,95,11.28,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896951,95,11.16,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896952,95,11.26,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896953,95,11.26,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896954,95,11.17,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896955,95,11.15,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896956,95,11.16,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896957,95,11.03,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896958,95,11.01,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896959,95,11.04,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896960,95,10.98,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896961,95,10.97,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896962,95,10.91,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896963,95,10.9,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896964,95,10.89,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896965,95,10.87,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896966,95,10.85,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896967,95,10.84,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896968,95,10.82,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896969,95,10.89,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896970,95,10.85,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896971,95,10.74,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896972,95,10.91,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896973,60,0.361,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896974,60,0.367,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896975,60,0.365,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13896976,60,0.364,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13896977,60,0.369,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13896978,60,0.367,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13896979,60,0.367,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13896980,60,0.366,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13896981,60,0.362,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13896982,60,0.365,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13896983,60,0.367,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13896984,60,0.364,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13896985,60,0.365,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13896986,60,0.368,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13896987,60,0.369,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13896988,60,0.364,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13896989,60,0.369,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13896990,60,0.365,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13896991,60,0.364,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13896992,60,0.364,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13896993,60,0.36,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13896994,60,0.362,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13896995,60,0.367,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13896996,60,0.366,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13896997,67,0.081,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13896998,67,0.08,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13896999,67,0.081,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897000,67,0.081,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897001,67,0.08,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897002,67,0.081,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897003,67,0.081,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897004,67,0.081,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897005,67,0.082,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897006,67,0.081,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897007,67,0.081,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897008,67,0.081,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897009,67,0.081,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897010,67,0.08,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897011,67,0.08,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897012,67,0.081,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897013,67,0.08,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897014,67,0.08,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897015,67,0.081,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897016,67,0.081,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897017,67,0.081,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897018,67,0.08,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897019,67,0.079,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897020,67,0.08,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897021,75,25.4,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897022,75,25.4,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897023,75,25.4,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897024,75,25.9,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897025,75,25.9,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897026,75,26.2,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897027,75,26.4,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897028,75,26.4,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897029,75,26.4,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897030,75,26.4,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897031,75,26.4,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897032,75,26.4,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897033,75,26.3,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897034,75,26.2,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897035,75,26.13,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897036,75,25.97,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897037,75,25.9,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897038,75,25.62,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897039,75,25.45,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897040,75,25.4,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897041,75,25.4,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897042,75,25.1,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897043,75,25.1,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897044,75,25.05,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897045,80,77.7,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897046,80,77.7,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897047,80,77.7,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897048,80,78.6,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897049,80,78.6,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897050,80,79.1,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897051,80,79.5,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897052,80,79.5,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897053,80,79.5,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897054,80,79.5,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897055,80,79.5,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897056,80,79.5,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897057,80,79.3,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897058,80,79.1,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897059,80,78.97,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897060,80,78.72,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897061,80,78.6,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897062,80,78.17,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897063,80,77.82,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897064,80,77.7,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897065,80,77.7,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897066,80,77.3,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897067,80,77.3,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897068,80,77.18,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897069,68,0.081,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897070,68,0.081,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897071,68,0.082,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897072,68,0.082,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897073,68,0.081,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897074,68,0.083,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897075,68,0.083,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897076,68,0.083,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897077,68,0.084,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897078,68,0.083,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897079,68,0.083,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897080,68,0.083,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897081,68,0.083,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897082,68,0.082,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897083,68,0.082,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897084,68,0.082,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897085,68,0.081,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897086,68,0.081,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897087,68,0.082,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897088,68,0.081,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897089,68,0.081,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897090,68,0.08,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897091,68,0.079,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897092,68,0.08,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897093,88,24.52,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897094,88,25.07,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897095,88,24.86,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897096,88,24.81,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897097,88,25.27,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897098,88,25.13,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897099,88,25.05,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897100,88,24.98,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897101,88,24.63,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897102,88,24.86,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897103,88,25.09,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897104,88,24.85,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897105,88,24.86,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897106,88,25.13,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897107,88,25.28,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897108,88,24.8,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897109,88,25.25,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897110,88,24.87,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897111,88,24.85,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897112,88,24.84,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897113,88,24.48,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897114,88,24.64,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897115,88,25.13,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897116,88,24.99,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897117,98,29.3,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897118,98,29.1,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897119,98,29.27,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897120,98,29.41,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897121,98,29.32,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897122,98,29.59,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897123,98,29.69,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897124,98,29.83,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897125,98,30.06,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897126,98,29.89,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897127,98,29.73,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897128,98,29.88,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897129,98,29.91,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897130,98,29.58,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897131,98,29.32,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897132,98,29.64,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897133,98,29.09,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897134,98,29.27,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897135,98,29.26,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897136,98,29.04,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897137,98,29.26,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897138,98,29.03,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897139,98,28.59,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897140,98,28.63,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897141,87,25.09,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897142,87,25.67,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897143,87,25.46,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897144,87,25.42,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897145,87,25.9,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897146,87,25.77,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897147,87,25.69,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897148,87,25.62,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897149,87,25.27,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897150,87,25.5,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897151,87,25.74,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897152,87,25.49,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897153,87,25.5,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897154,87,25.77,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897155,87,25.91,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897156,87,25.42,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897157,87,25.86,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897158,87,25.47,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897159,87,25.44,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897160,87,25.42,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897161,87,25.04,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897162,87,25.2,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897163,87,25.7,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897164,87,25.56,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897165,97,29.13,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897166,97,28.89,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897167,97,29,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897168,97,29.06,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897169,97,28.91,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897170,97,29.08,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897171,97,29.14,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897172,97,29.23,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897173,97,29.45,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897174,97,29.29,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897175,97,29.13,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897176,97,29.32,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897177,97,29.37,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897178,97,29.08,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897179,97,28.88,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897180,97,29.25,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897181,97,28.76,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897182,97,28.99,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897183,97,29.05,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897184,97,28.88,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897185,97,29.16,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897186,97,28.97,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897187,97,28.56,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897188,97,28.59,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897189,61,0.258,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897190,61,0.259,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897191,61,0.262,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897192,61,0.261,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897193,61,0.261,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897194,61,0.26,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897195,61,0.257,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897196,61,0.257,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897197,61,0.257,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897198,61,0.257,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897199,61,0.257,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897200,61,0.256,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897201,61,0.257,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897202,61,0.261,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897203,61,0.259,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897204,61,0.26,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897205,61,0.258,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897206,61,0.259,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897207,61,0.256,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897208,61,0.257,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897209,61,0.257,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897210,61,0.257,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897211,61,0.258,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897212,61,0.258,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897213,69,0.043,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897214,69,0.043,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897215,69,0.043,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897216,69,0.043,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897217,69,0.043,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897218,69,0.043,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897219,69,0.043,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897220,69,0.043,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897221,69,0.043,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897222,69,0.043,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897223,69,0.043,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897224,69,0.044,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897225,69,0.043,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897226,69,0.043,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897227,69,0.043,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897228,69,0.043,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897229,69,0.043,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897230,69,0.043,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897231,69,0.044,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897232,69,0.043,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897233,69,0.043,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897234,69,0.043,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897235,69,0.043,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897236,69,0.043,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897237,76,25,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897238,76,24.9,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897239,76,24.9,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897240,76,24.9,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897241,76,24.9,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897242,76,24.9,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897243,76,24.9,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897244,76,24.9,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897245,76,24.9,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897246,76,25.05,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897247,76,25.05,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897248,76,25.1,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897249,76,25.1,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897250,76,25,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897251,76,25.1,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897252,76,25.05,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897253,76,25.1,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897254,76,25.1,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897255,76,25.1,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897256,76,25.1,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897257,76,25.1,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897258,76,25.1,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897259,76,25.05,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897260,76,25.05,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897261,81,77.05,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897262,81,76.8,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897263,81,76.8,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897264,81,76.8,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897265,81,76.8,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897266,81,76.8,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897267,81,76.8,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897268,81,76.8,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897269,81,76.8,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897270,81,77.18,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897271,81,77.18,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897272,81,77.3,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897273,81,77.3,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897274,81,77.05,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897275,81,77.3,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897276,81,77.18,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897277,81,77.3,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897278,81,77.3,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897279,81,77.3,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897280,81,77.3,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897281,81,77.3,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897282,81,77.3,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897283,81,77.18,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897284,81,77.18,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897285,70,0.044,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897286,70,0.043,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897287,70,0.043,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897288,70,0.043,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897289,70,0.043,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897290,70,0.043,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897291,70,0.044,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897292,70,0.044,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897293,70,0.044,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897294,70,0.044,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897295,70,0.044,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897296,70,0.044,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897297,70,0.044,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897298,70,0.043,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897299,70,0.043,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897300,70,0.043,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897301,70,0.044,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897302,70,0.044,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897303,70,0.044,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897304,70,0.044,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897305,70,0.044,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897306,70,0.044,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897307,70,0.044,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897308,70,0.044,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897309,90,16.07,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897310,90,16.13,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897311,90,16.4,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897312,90,16.34,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897313,90,16.34,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897314,90,16.26,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897315,90,16,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897316,90,16,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897317,90,16,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897318,90,16.01,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897319,90,16.01,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897320,90,15.93,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897321,90,16.01,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897322,90,16.3,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897323,90,16.12,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897324,90,16.23,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897325,90,16.11,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897326,90,16.15,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897327,90,15.93,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897328,90,16.01,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897329,90,16.01,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897330,90,16.01,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897331,90,16.07,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897332,90,16.13,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897333,100,15.64,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897334,100,15.61,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897335,100,15.33,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897336,100,15.35,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897337,100,15.35,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897338,100,15.47,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897339,100,15.66,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897340,100,15.66,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897341,100,15.66,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897342,100,15.66,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897343,100,15.66,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897344,100,15.78,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897345,100,15.66,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897346,100,15.59,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897347,100,15.68,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897348,100,15.61,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897349,100,15.68,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897350,100,15.63,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897351,100,15.78,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897352,100,15.66,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897353,100,15.66,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897354,100,15.66,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897355,100,15.64,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897356,100,15.61,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897357,89,16.44,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897358,89,16.5,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897359,89,16.77,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897360,89,16.71,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897361,89,16.71,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897362,89,16.63,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897363,89,16.37,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897364,89,16.37,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897365,89,16.37,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897366,89,16.37,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897367,89,16.37,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897368,89,16.29,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897369,89,16.38,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897370,89,16.68,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897371,89,16.49,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897372,89,16.6,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897373,89,16.49,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897374,89,16.53,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897375,89,16.3,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897376,89,16.38,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897377,89,16.38,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897378,89,16.38,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897379,89,16.44,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897380,89,16.5,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897381,99,15.59,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897382,99,15.56,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897383,99,15.3,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897384,99,15.33,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897385,99,15.33,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897386,99,15.44,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897387,99,15.64,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897388,99,15.64,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897389,99,15.63,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897390,99,15.62,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897391,99,15.62,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897392,99,15.73,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897393,99,15.6,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897394,99,15.53,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897395,99,15.62,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897396,99,15.55,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897397,99,15.62,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897398,99,15.56,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897399,99,15.71,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897400,99,15.6,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897401,99,15.6,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897402,99,15.6,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897403,99,15.58,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897404,99,15.56,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897405,62,0.377,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897406,62,0.378,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897407,62,0.38,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897408,62,0.38,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897409,62,0.38,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897410,62,0.38,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897411,62,0.38,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897412,62,0.378,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897413,62,0.379,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897414,62,0.375,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897415,62,0.376,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897416,62,0.375,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897417,62,0.375,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897418,62,0.375,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897419,62,0.375,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897420,62,0.375,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897421,62,0.375,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897422,62,0.375,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897423,62,0.375,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897424,62,0.375,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897425,62,0.375,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897426,62,0.375,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897427,62,0.375,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897428,62,0.375,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897429,71,0.101,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897430,71,0.1,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897431,71,0.1,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897432,71,0.1,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897433,71,0.1,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897434,71,0.1,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897435,71,0.1,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897436,71,0.1,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897437,71,0.1,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897438,71,0.101,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897439,71,0.101,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897440,71,0.101,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897441,71,0.101,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897442,71,0.101,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897443,71,0.101,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897444,71,0.101,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897445,71,0.101,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897446,71,0.101,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897447,71,0.101,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897448,71,0.101,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897449,71,0.101,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897450,71,0.101,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897451,71,0.101,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897452,71,0.101,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897453,77,22,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897454,77,22.1,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897455,77,22.05,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897456,77,22.1,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897457,77,22.1,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897458,77,22.1,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897459,77,22.05,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897460,77,22.1,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897461,77,22.05,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897462,77,22.05,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897463,77,22.05,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897464,77,22.1,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897465,77,22.05,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897466,77,22.1,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897467,77,22.1,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897468,77,22.1,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897469,77,22.1,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897470,77,22.1,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897471,77,22.1,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897472,77,22.05,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897473,77,22.1,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897474,77,22.1,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897475,77,22.1,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897476,77,22.1,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897477,82,71.7,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897478,82,71.9,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897479,82,71.8,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897480,82,71.9,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897481,82,71.9,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897482,82,71.9,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897483,82,71.8,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897484,82,71.9,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897485,82,71.8,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897486,82,71.8,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897487,82,71.8,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897488,82,71.9,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897489,82,71.8,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897490,82,71.9,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897491,82,71.9,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897492,82,71.9,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897493,82,71.9,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897494,82,71.9,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897495,82,71.9,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897496,82,71.8,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897497,82,71.9,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897498,82,71.9,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897499,82,71.9,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897500,82,71.9,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897501,72,0.097,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897502,72,0.096,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897503,72,0.096,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897504,72,0.096,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897505,72,0.096,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897506,72,0.096,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897507,72,0.096,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897508,72,0.096,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897509,72,0.096,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897510,72,0.097,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897511,72,0.097,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897512,72,0.097,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897513,72,0.097,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897514,72,0.097,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897515,72,0.097,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897516,72,0.097,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897517,72,0.097,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897518,72,0.097,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897519,72,0.097,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897520,72,0.097,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897521,72,0.097,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897522,72,0.097,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897523,72,0.097,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897524,72,0.097,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897525,92,26.06,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897526,92,26.06,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897527,92,26.27,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897528,92,26.27,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897529,92,26.27,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897530,92,26.27,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897531,92,26.27,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897532,92,26.06,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897533,92,26.16,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897534,92,25.85,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897535,92,25.95,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897536,92,25.85,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897537,92,25.85,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897538,92,25.86,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897539,92,25.86,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897540,92,25.86,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897541,92,25.86,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897542,92,25.86,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897543,92,25.86,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897544,92,25.86,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897545,92,25.86,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897546,92,25.86,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897547,92,25.86,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897548,92,25.86,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897549,102,34.67,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897550,102,34.67,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897551,102,34.36,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897552,102,34.36,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897553,102,34.36,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897554,102,34.36,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897555,102,34.36,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897556,102,34.67,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897557,102,34.52,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897558,102,34.98,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897559,102,34.83,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897560,102,34.99,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897561,102,34.99,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897562,102,34.99,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897563,102,34.99,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897564,102,34.99,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897565,102,34.99,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897566,102,34.99,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897567,102,34.99,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897568,102,34.99,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897569,102,34.99,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897570,102,34.99,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897571,102,34.99,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897572,102,34.99,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897573,91,26.47,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897574,91,26.47,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897575,91,26.68,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897576,91,26.68,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897577,91,26.68,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897578,91,26.68,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897579,91,26.68,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897580,91,26.47,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897581,91,26.57,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897582,91,26.26,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897583,91,26.36,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897584,91,26.26,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897585,91,26.26,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897586,91,26.27,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897587,91,26.27,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897588,91,26.27,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897589,91,26.27,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897590,91,26.27,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897591,91,26.27,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897592,91,26.27,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897593,91,26.27,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897594,91,26.27,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897595,91,26.27,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897596,91,26.27,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13897597,101,36.18,'2011-08-29 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13897598,101,36.18,'2011-08-29 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13897599,101,35.85,'2011-08-29 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13897600,101,35.85,'2011-08-29 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13897601,101,35.85,'2011-08-29 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13897602,101,35.85,'2011-08-29 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13897603,101,35.86,'2011-08-29 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13897604,101,36.18,'2011-08-29 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13897605,101,36.02,'2011-08-29 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13897606,101,36.5,'2011-08-29 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13897607,101,36.34,'2011-08-30 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13897608,101,36.49,'2011-08-30 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13897609,101,36.49,'2011-08-30 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13897610,101,36.47,'2011-08-30 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13897611,101,36.47,'2011-08-30 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13897612,101,36.47,'2011-08-30 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13897613,101,36.47,'2011-08-30 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13897614,101,36.47,'2011-08-30 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13897615,101,36.47,'2011-08-30 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13897616,101,36.47,'2011-08-30 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13897617,101,36.47,'2011-08-30 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13897618,101,36.47,'2011-08-30 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13897619,101,36.47,'2011-08-30 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13897620,101,36.47,'2011-08-30 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13902864,31,13.17,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13902865,31,13.18,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13902866,31,13.17,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13902867,31,13.17,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13902868,31,13.16,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13902869,31,12.8,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13902870,31,12.74,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13902871,31,12.69,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13902872,31,12.67,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13902873,31,12.68,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13902874,31,12.59,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13902875,31,12.66,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13902876,31,12.64,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13902877,31,12.62,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13902878,31,12.59,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13902879,31,12.56,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13902880,31,12.54,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13902881,31,12.55,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13902882,31,12.83,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13902883,31,13.25,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13902884,31,13.21,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13902885,31,13.2,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13902886,31,13.1,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13902887,31,13.17,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13902888,32,4.673,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13902889,32,3.638,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13902890,32,4.025,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13902891,32,3.364,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13902892,32,3.034,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13902893,32,2.388,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13902894,32,1.154,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13902895,32,1.836,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13902896,32,3.247,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13902897,32,3.303,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13902898,32,3.954,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13902899,32,3.858,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13902900,32,5.689,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13902901,32,4.237,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13902902,32,4.137,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13902903,32,4.75,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13902904,32,4.564,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13902905,32,4.192,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13902906,32,2.469,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13902907,32,2.365,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13902908,32,4.731,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13902909,32,5.979,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13902910,32,5.69,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13902911,32,5.854,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13902912,33,190.6,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13902913,33,180.9,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13902914,33,208.4,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13902915,33,186.6,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13902916,33,202,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13902917,33,226.1,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13902918,33,245.2,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13902919,33,223.4,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13902920,33,183.3,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13902921,33,166.4,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13902922,33,170.7,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13902923,33,169.3,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13902924,33,180.2,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13902925,33,173.6,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13902926,33,179.5,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13902927,33,200.8,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13902928,33,218.8,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13902929,33,214.5,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13902930,33,193.1,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13902931,33,164.4,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13902932,33,184.9,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13902933,33,203.1,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13902934,33,192.2,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13902935,33,195.8,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13902936,34,18.27,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13902937,34,19.67,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13902938,34,23.76,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13902939,34,20.71,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13902940,34,16.82,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13902941,34,10.13,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13902942,34,67.07,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13902943,34,13.28,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13902944,34,25.31,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13902945,34,16.91,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13902946,34,16.86,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13902947,34,17.93,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13902948,34,15.92,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13902949,34,16.11,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13902950,34,16.58,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13902951,34,16.11,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13902952,34,7.114,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13902953,34,7.61,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13902954,34,20.51,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13902955,34,16.99,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13902956,34,25.19,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13902957,34,23.63,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13902958,34,24.13,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13902959,34,26.17,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13902960,35,627.3,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13902961,35,626.8,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13902962,35,626.4,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13902963,35,626,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13902964,35,625.8,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13902965,35,625.6,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13902966,35,625.8,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13902967,35,625.9,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13902968,35,625.8,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13902969,35,625.7,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13902970,35,625.6,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',0,100),(13902971,35,625.1,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',0,100),(13902972,35,625.3,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',0,100),(13902973,35,625.3,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',0,100),(13902974,35,625.3,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',0,100),(13902975,35,625.3,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',0,100),(13902976,35,625.3,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',0,100),(13902977,35,625.4,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',0,100),(13902978,35,625.5,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',0,100),(13902979,35,625.5,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',0,100),(13902980,35,625.7,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',0,100),(13902981,35,625.5,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',0,100),(13902982,35,625,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',0,100),(13902983,35,624.9,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',0,100),(13902984,30,0,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13902985,30,0,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13902986,30,0,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13902987,30,0,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13902988,30,0,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13902989,30,0,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13902990,30,0,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13902991,30,0,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13902992,30,0,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13902993,30,0,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13902994,30,0,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13902995,30,0,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13902996,30,0,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13902997,30,0,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13902998,30,0,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13902999,30,0,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903000,30,0,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903001,30,0,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903002,30,0,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903003,30,0,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903004,30,0,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903005,30,0,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903006,30,0,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903007,30,0,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903008,28,29.51,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13903009,28,29.34,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13903010,28,30.28,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13903011,28,29.77,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13903012,28,28.74,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13903013,28,24.95,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13903014,28,20.69,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13903015,28,19.71,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13903016,28,23.62,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13903017,28,24.57,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13903018,28,24.56,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13903019,28,23.97,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13903020,28,23.33,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13903021,28,22.96,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13903022,28,22.4,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13903023,28,21.36,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903024,28,19.19,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903025,28,19.57,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903026,28,23.61,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903027,28,27.07,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903028,28,28.78,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903029,28,29.46,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903030,28,29.9,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903031,28,30.35,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903032,29,24.88,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13903033,29,23.97,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13903034,29,22.49,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13903035,29,21.82,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13903036,29,24.22,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13903037,29,34.35,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13903038,29,43.88,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13903039,29,37.71,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13903040,29,27.64,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13903041,29,26.61,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13903042,29,27.37,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13903043,29,28.16,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13903044,29,32.36,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13903045,29,33.2,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13903046,29,33.57,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13903047,29,40.18,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903048,29,40.4,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903049,29,35.67,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903050,29,23.28,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903051,29,20,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903052,29,16.91,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903053,29,17.43,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903054,29,18.9,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903055,29,13.34,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903056,36,956,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13903057,36,742.3,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13903058,36,710.6,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13903059,36,491.5,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13903060,36,263.4,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13903061,36,24.48,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13903062,36,0.812,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13903063,36,0,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13903064,36,0,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13903065,36,0,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13903066,36,0,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13903067,36,0,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13903068,36,0,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13903069,36,0,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13903070,36,0,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13903071,36,0,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903072,36,2.401,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903073,36,93.8,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903074,36,316.9,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903075,36,546.1,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903076,36,758.4,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903077,36,915,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903078,36,992,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903079,36,1067,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903080,46,1.042,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13903081,46,1.102,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13903082,46,1.248,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13903083,46,1.428,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13903084,46,1.441,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13903085,46,1.518,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13903086,46,1.641,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13903087,46,1.474,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13903088,46,1.516,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13903089,46,1.358,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13903090,46,1.346,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13903091,46,1.233,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13903092,46,1.45,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13903093,46,1.364,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13903094,46,1.293,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13903095,46,1.643,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903096,46,1.404,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903097,46,1.47,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903098,46,1.419,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903099,46,1.447,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903100,46,1.231,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903101,46,1.465,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903102,46,1.369,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903103,46,0.889,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903104,47,1.097,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13903105,47,1.16,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13903106,47,1.315,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13903107,47,1.503,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13903108,47,1.515,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13903109,47,1.586,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13903110,47,1.703,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13903111,47,1.526,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13903112,47,1.58,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13903113,47,1.418,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13903114,47,1.405,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13903115,47,1.285,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13903116,47,1.511,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13903117,47,1.42,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13903118,47,1.345,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13903119,47,1.707,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903120,47,1.453,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903121,47,1.521,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903122,47,1.478,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903123,47,1.517,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903124,47,1.294,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903125,47,1.542,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903126,47,1.443,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903127,47,0.937,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903128,48,0.673,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13903129,48,0.61,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13903130,48,0.455,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13903131,48,0.266,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13903132,48,0.255,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13903133,48,0.184,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13903134,48,0.067,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13903135,48,0.244,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13903136,48,0.19,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13903137,48,0.352,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13903138,48,0.365,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13903139,48,0.485,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13903140,48,0.259,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13903141,48,0.35,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13903142,48,0.425,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13903143,48,0.063,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13903144,48,0.317,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13903145,48,0.249,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13903146,48,0.292,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13903147,48,0.253,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13903148,48,0.476,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13903149,48,0.228,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13903150,48,0.327,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13903151,48,0.833,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13903152,41,23.16,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903153,40,30.73,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903154,39,14.67,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903155,37,12.49,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903156,43,627.5,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903157,44,0,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903158,42,37.34,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903159,45,-9999,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903160,38,2.576,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903161,51,0,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903162,53,1.912,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903163,49,1.406,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903164,52,0,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903165,54,1.994,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903166,50,1.464,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903167,56,-0.224,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903168,57,1.77,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13903169,55,0.306,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,104),(13906410,58,0.137,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906411,58,0.139,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906412,58,0.138,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906413,58,0.137,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906414,58,0.136,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906415,58,0.135,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906416,58,0.132,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906417,58,0.131,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906418,58,0.13,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906419,58,0.13,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906420,58,0.126,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906421,58,0.126,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906422,58,0.124,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906423,58,0.128,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906424,58,0.126,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906425,58,0.126,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906426,58,0.127,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906427,58,0.125,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906428,58,0.125,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906429,58,0.126,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906430,58,0.131,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906431,58,0.131,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906432,58,0.133,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906433,58,0.136,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906434,63,0.014,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906435,63,0.013,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906436,63,0.013,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906437,63,0.013,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906438,63,0.013,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906439,63,0.013,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906440,63,0.013,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906441,63,0.013,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906442,63,0.013,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906443,63,0.013,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906444,63,0.013,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906445,63,0.013,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906446,63,0.013,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906447,63,0.013,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906448,63,0.013,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906449,63,0.013,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906450,63,0.013,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906451,63,0.013,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906452,63,0.013,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906453,63,0.013,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906454,63,0.013,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906455,63,0.013,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906456,63,0.013,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906457,63,0.013,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906458,73,30.58,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906459,73,31.18,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906460,73,31.32,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906461,73,31.32,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906462,73,30.65,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906463,73,29.8,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906464,73,28.6,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906465,73,27.62,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906466,73,26.72,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906467,73,26.35,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906468,73,26.05,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906469,73,25.67,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906470,73,25.55,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906471,73,25.25,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906472,73,25,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906473,73,24.6,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906474,73,24.3,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906475,73,23.97,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906476,73,23.98,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906477,73,24.55,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906478,73,25.7,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906479,73,26.95,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906480,73,28.4,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906481,73,29.88,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906482,78,87.1,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906483,78,88.1,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906484,78,88.4,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906485,78,88.3,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906486,78,87.2,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906487,78,85.6,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906488,78,83.5,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906489,78,81.7,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906490,78,80.1,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906491,78,79.4,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906492,78,78.85,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906493,78,78.3,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906494,78,78.07,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906495,78,77.5,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906496,78,77.05,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906497,78,76.25,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906498,78,75.7,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906499,78,75.2,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906500,78,75.2,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906501,78,76.16,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906502,78,78.31,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906503,78,80.5,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906504,78,83.1,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906505,78,85.8,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906506,64,0.015,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906507,64,0.015,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906508,64,0.014,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906509,64,0.015,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906510,64,0.014,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906511,64,0.014,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906512,64,0.014,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906513,64,0.013,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906514,64,0.013,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906515,64,0.013,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906516,64,0.013,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906517,64,0.013,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906518,64,0.013,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906519,64,0.013,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906520,64,0.013,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906521,64,0.013,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906522,64,0.012,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906523,64,0.013,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906524,64,0.013,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906525,64,0.013,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906526,64,0.013,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906527,64,0.014,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906528,64,0.014,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906529,64,0.014,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906530,84,8.41,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906531,84,8.49,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906532,84,8.45,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906533,84,8.39,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906534,84,8.33,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906535,84,8.28,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906536,84,8.15,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906537,84,8.09,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906538,84,8.05,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906539,84,8.06,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906540,84,7.864,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906541,84,7.826,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906542,84,7.726,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906543,84,7.95,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906544,84,7.84,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906545,84,7.818,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906546,84,7.882,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906547,84,7.782,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906548,84,7.757,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906549,84,7.841,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906550,84,8.06,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906551,84,8.08,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906552,84,8.15,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906553,84,8.36,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906554,94,5.254,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906555,94,5.24,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906556,94,5.248,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906557,94,5.235,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906558,94,5.116,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906559,94,5.007,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906560,94,4.916,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906561,94,4.81,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906562,94,4.714,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906563,94,4.68,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906564,94,4.764,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906565,94,4.714,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906566,94,4.755,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906567,94,4.613,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906568,94,4.637,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906569,94,4.616,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906570,94,4.538,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906571,94,4.577,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906572,94,4.603,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906573,94,4.637,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906574,94,4.679,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906575,94,4.853,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906576,94,4.967,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906577,94,5.04,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906578,83,8.71,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906579,83,8.81,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906580,83,8.77,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906581,83,8.71,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906582,83,8.64,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906583,83,8.56,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906584,83,8.4,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906585,83,8.32,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906586,83,8.27,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906587,83,8.26,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906588,83,8.06,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906589,83,8.01,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906590,83,7.907,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906591,83,8.13,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906592,83,8.01,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906593,83,7.986,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906594,83,8.05,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906595,83,7.935,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906596,83,7.91,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906597,83,8.01,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906598,83,8.25,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906599,83,8.3,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906600,83,8.41,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906601,83,8.65,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906602,93,4.847,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906603,93,4.801,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906604,93,4.799,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906605,93,4.797,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906606,93,4.725,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906607,93,4.69,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906608,93,4.682,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906609,93,4.654,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906610,93,4.608,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906611,93,4.6,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906612,93,4.705,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906613,93,4.671,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906614,93,4.728,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906615,93,4.601,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906616,93,4.65,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906617,93,4.647,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906618,93,4.591,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906619,93,4.657,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906620,93,4.682,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906621,93,4.668,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906622,93,4.632,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906623,93,4.714,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906624,93,4.723,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906625,93,4.691,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906626,59,0.258,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906627,59,0.259,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906628,59,0.261,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906629,59,0.26,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906630,59,0.26,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906631,59,0.261,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906632,59,0.258,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906633,59,0.258,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906634,59,0.256,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906635,59,0.255,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906636,59,0.254,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906637,59,0.254,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906638,59,0.253,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906639,59,0.252,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906640,59,0.252,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906641,59,0.249,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906642,59,0.249,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906643,59,0.249,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906644,59,0.247,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906645,59,0.247,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906646,59,0.249,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906647,59,0.251,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906648,59,0.252,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906649,59,0.253,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906650,65,0.03,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906651,65,0.03,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906652,65,0.03,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906653,65,0.03,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906654,65,0.03,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906655,65,0.03,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906656,65,0.03,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906657,65,0.03,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906658,65,0.03,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906659,65,0.03,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906660,65,0.03,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906661,65,0.03,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906662,65,0.03,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906663,65,0.03,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906664,65,0.029,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906665,65,0.03,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906666,65,0.03,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906667,65,0.029,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906668,65,0.03,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906669,65,0.03,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906670,65,0.029,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906671,65,0.03,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906672,65,0.03,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906673,65,0.03,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906674,74,27.35,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906675,74,28.3,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906676,74,28.9,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906677,74,28.9,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906678,74,28.9,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906679,74,28.82,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906680,74,28.45,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906681,74,27.85,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906682,74,27.2,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906683,74,26.8,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906684,74,26.3,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906685,74,25.75,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906686,74,25.5,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906687,74,25.12,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906688,74,24.85,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906689,74,24.62,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906690,74,24.4,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906691,74,24.3,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906692,74,23.97,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906693,74,23.98,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906694,74,24.38,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906695,74,25.08,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906696,74,26.03,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906697,74,27.08,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906698,79,81.3,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906699,79,83,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906700,79,84,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906701,79,84,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906702,79,84,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906703,79,83.9,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906704,79,83.2,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906705,79,82.1,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906706,79,81,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906707,79,80.2,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906708,79,79.3,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906709,79,78.4,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906710,79,77.95,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906711,79,77.27,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906712,79,76.7,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906713,79,76.27,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906714,79,75.9,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906715,79,75.7,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906716,79,75.2,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906717,79,75.2,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906718,79,75.83,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906719,79,77.15,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906720,79,78.86,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906721,79,80.8,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906722,66,0.031,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906723,66,0.032,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906724,66,0.032,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906725,66,0.032,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906726,66,0.032,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906727,66,0.032,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906728,66,0.032,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906729,66,0.031,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906730,66,0.031,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906731,66,0.031,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906732,66,0.031,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906733,66,0.03,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906734,66,0.03,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906735,66,0.03,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906736,66,0.03,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906737,66,0.03,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906738,66,0.03,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906739,66,0.029,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906740,66,0.029,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906741,66,0.029,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906742,66,0.029,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906743,66,0.03,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906744,66,0.03,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906745,66,0.031,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906746,86,16.06,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906747,86,16.14,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906748,86,16.26,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906749,86,16.25,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906750,86,16.21,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906751,86,16.29,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906752,86,16.05,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906753,86,16.08,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906754,86,15.93,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906755,86,15.86,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906756,86,15.79,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906757,86,15.75,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906758,86,15.7,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906759,86,15.6,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906760,86,15.64,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906761,86,15.42,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906762,86,15.44,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906763,86,15.4,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906764,86,15.29,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906765,86,15.31,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906766,86,15.4,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906767,86,15.52,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906768,86,15.64,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906769,86,15.75,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906770,96,11.18,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906771,96,11.37,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906772,96,11.47,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906773,96,11.52,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906774,96,11.54,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906775,96,11.42,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906776,96,11.48,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906777,96,11.32,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906778,96,11.26,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906779,96,11.14,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906780,96,11.02,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906781,96,10.93,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906782,96,10.83,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906783,96,10.81,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906784,96,10.67,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906785,96,10.72,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906786,96,10.62,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906787,96,10.59,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906788,96,10.54,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906789,96,10.5,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906790,96,10.52,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906791,96,10.62,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906792,96,10.77,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906793,96,10.98,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906794,85,16.51,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906795,85,16.63,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906796,85,16.77,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906797,85,16.77,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906798,85,16.72,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906799,85,16.8,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906800,85,16.55,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906801,85,16.55,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906802,85,16.38,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906803,85,16.29,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906804,85,16.21,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906805,85,16.14,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906806,85,16.09,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906807,85,15.97,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906808,85,16,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906809,85,15.77,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906810,85,15.78,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906811,85,15.73,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906812,85,15.61,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906813,85,15.63,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906814,85,15.73,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906815,85,15.87,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906816,85,16.02,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906817,85,16.18,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906818,95,10.82,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906819,95,10.86,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906820,95,10.88,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906821,95,10.9,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906822,95,10.92,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906823,95,10.83,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906824,95,10.94,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906825,95,10.85,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906826,95,10.87,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906827,95,10.83,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906828,95,10.78,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906829,95,10.75,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906830,95,10.72,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906831,95,10.75,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906832,95,10.64,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906833,95,10.74,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906834,95,10.67,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906835,95,10.65,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906836,95,10.64,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906837,95,10.61,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906838,95,10.58,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906839,95,10.59,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906840,95,10.62,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906841,95,10.67,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906842,60,0.364,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906843,60,0.361,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906844,60,0.361,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906845,60,0.367,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906846,60,0.366,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906847,60,0.361,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906848,60,0.365,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906849,60,0.369,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906850,60,0.369,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906851,60,0.369,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906852,60,0.365,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906853,60,0.367,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906854,60,0.369,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906855,60,0.366,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906856,60,0.367,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906857,60,0.367,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906858,60,0.362,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906859,60,0.361,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906860,60,0.364,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906861,60,0.366,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906862,60,0.364,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906863,60,0.363,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906864,60,0.361,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906865,60,0.364,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906866,67,0.08,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906867,67,0.081,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906868,67,0.081,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906869,67,0.08,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906870,67,0.081,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906871,67,0.081,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906872,67,0.081,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906873,67,0.08,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906874,67,0.08,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906875,67,0.08,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906876,67,0.081,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906877,67,0.08,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906878,67,0.08,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906879,67,0.08,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906880,67,0.08,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906881,67,0.08,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906882,67,0.081,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906883,67,0.081,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906884,67,0.08,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906885,67,0.08,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906886,67,0.08,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906887,67,0.08,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906888,67,0.081,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906889,67,0.08,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906890,75,25.1,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906891,75,25.33,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906892,75,25.4,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906893,75,25.5,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906894,75,25.83,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906895,75,25.98,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906896,75,26.2,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906897,75,26.2,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906898,75,26.2,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906899,75,26.2,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906900,75,26.2,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906901,75,26.2,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906902,75,26.2,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906903,75,26.05,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906904,75,25.9,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906905,75,25.77,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906906,75,25.55,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906907,75,25.45,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906908,75,25.4,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906909,75,25.4,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906910,75,25.1,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906911,75,25.1,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906912,75,25.1,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906913,75,25.1,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906914,80,77.3,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906915,80,77.6,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906916,80,77.7,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906917,80,77.95,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906918,80,78.5,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906919,80,78.73,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906920,80,79.1,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906921,80,79.1,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906922,80,79.1,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906923,80,79.1,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906924,80,79.1,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906925,80,79.1,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906926,80,79.1,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906927,80,78.85,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906928,80,78.6,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906929,80,78.37,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906930,80,78.07,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906931,80,77.82,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906932,80,77.7,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906933,80,77.7,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906934,80,77.3,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906935,80,77.3,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906936,80,77.3,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906937,80,77.3,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906938,68,0.08,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906939,68,0.081,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906940,68,0.081,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906941,68,0.081,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906942,68,0.081,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906943,68,0.082,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906944,68,0.082,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906945,68,0.082,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906946,68,0.082,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906947,68,0.082,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906948,68,0.082,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906949,68,0.082,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906950,68,0.081,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906951,68,0.081,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906952,68,0.081,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906953,68,0.081,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906954,68,0.082,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906955,68,0.081,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906956,68,0.08,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906957,68,0.08,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906958,68,0.08,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906959,68,0.08,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906960,68,0.081,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906961,68,0.08,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906962,88,24.79,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906963,88,24.61,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906964,88,24.49,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906965,88,25.05,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906966,88,25.02,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906967,88,24.59,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906968,88,24.9,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906969,88,25.28,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906970,88,25.29,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906971,88,25.29,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906972,88,24.91,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906973,88,25.06,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906974,88,25.34,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906975,88,25.04,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13906976,88,25.1,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13906977,88,25.1,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13906978,88,24.66,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13906979,88,24.6,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13906980,88,24.82,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13906981,88,25.04,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13906982,88,24.79,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13906983,88,24.68,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13906984,88,24.55,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13906985,88,24.78,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13906986,98,28.79,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13906987,98,29.23,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13906988,98,29.27,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13906989,98,29.08,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13906990,98,29.25,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13906991,98,29.59,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13906992,98,29.52,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13906993,98,29.33,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13906994,98,29.33,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13906995,98,29.34,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13906996,98,29.53,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13906997,98,29.49,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13906998,98,28.99,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13906999,98,29.27,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907000,98,29.13,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907001,98,29.12,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907002,98,29.47,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907003,98,29.19,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907004,98,29.01,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907005,98,28.67,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907006,98,28.79,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907007,98,28.88,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907008,98,28.94,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907009,98,28.78,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907010,87,25.35,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907011,87,25.18,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907012,87,25.07,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907013,87,25.65,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907014,87,25.63,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907015,87,25.2,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907016,87,25.53,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907017,87,25.92,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907018,87,25.93,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907019,87,25.93,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907020,87,25.55,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907021,87,25.69,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907022,87,25.98,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907023,87,25.67,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907024,87,25.72,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907025,87,25.71,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907026,87,25.25,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907027,87,25.19,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907028,87,25.4,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907029,87,25.62,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907030,87,25.36,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907031,87,25.24,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907032,87,25.11,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907033,87,25.34,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907034,97,28.73,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907035,97,29.12,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907036,97,29.1,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907037,97,28.83,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907038,97,28.92,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907039,97,29.18,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907040,97,29.06,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907041,97,28.85,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907042,97,28.82,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907043,97,28.83,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907044,97,29.02,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907045,97,29,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907046,97,28.54,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907047,97,28.85,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907048,97,28.77,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907049,97,28.8,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907050,97,29.18,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907051,97,28.96,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907052,97,28.85,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907053,97,28.55,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907054,97,28.72,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907055,97,28.83,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907056,97,28.93,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907057,97,28.75,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907058,61,0.261,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907059,61,0.262,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907060,61,0.262,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907061,61,0.26,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907062,61,0.261,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907063,61,0.262,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907064,61,0.262,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907065,61,0.261,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907066,61,0.258,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907067,61,0.259,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907068,61,0.258,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907069,61,0.258,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907070,61,0.257,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907071,61,0.257,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907072,61,0.257,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907073,61,0.257,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907074,61,0.257,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907075,61,0.257,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907076,61,0.257,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907077,61,0.257,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907078,61,0.258,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907079,61,0.261,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907080,61,0.262,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907081,61,0.259,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907082,69,0.042,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907083,69,0.043,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907084,69,0.043,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907085,69,0.043,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907086,69,0.043,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907087,69,0.043,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907088,69,0.043,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907089,69,0.043,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907090,69,0.043,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907091,69,0.043,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907092,69,0.043,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907093,69,0.043,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907094,69,0.043,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907095,69,0.043,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907096,69,0.043,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907097,69,0.043,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907098,69,0.043,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907099,69,0.043,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907100,69,0.043,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907101,69,0.043,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907102,69,0.043,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907103,69,0.042,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907104,69,0.042,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907105,69,0.043,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907106,76,24.9,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907107,76,24.9,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907108,76,24.9,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907109,76,24.9,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907110,76,24.9,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907111,76,24.9,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907112,76,24.9,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907113,76,24.9,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907114,76,24.9,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907115,76,24.9,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907116,76,24.9,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907117,76,25.05,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907118,76,25.1,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907119,76,25.1,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907120,76,25.1,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907121,76,25.1,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907122,76,25.1,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907123,76,25.1,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907124,76,25.05,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907125,76,25.05,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907126,76,25,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907127,76,25.05,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907128,76,25.1,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907129,76,24.95,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907130,81,76.8,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907131,81,76.8,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907132,81,76.8,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907133,81,76.8,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907134,81,76.8,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907135,81,76.8,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907136,81,76.8,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907137,81,76.8,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907138,81,76.8,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907139,81,76.8,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907140,81,76.8,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907141,81,77.18,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907142,81,77.3,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907143,81,77.3,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907144,81,77.3,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907145,81,77.3,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907146,81,77.3,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907147,81,77.3,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907148,81,77.18,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907149,81,77.18,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907150,81,77.05,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907151,81,77.18,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907152,81,77.3,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907153,81,76.93,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907154,70,0.043,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907155,70,0.043,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907156,70,0.043,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907157,70,0.043,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907158,70,0.043,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907159,70,0.043,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907160,70,0.043,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907161,70,0.043,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907162,70,0.044,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907163,70,0.043,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907164,70,0.044,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907165,70,0.044,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907166,70,0.044,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907167,70,0.044,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907168,70,0.044,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907169,70,0.044,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907170,70,0.044,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907171,70,0.044,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907172,70,0.044,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907173,70,0.044,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907174,70,0.044,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907175,70,0.043,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907176,70,0.043,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907177,70,0.043,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907178,90,16.3,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907179,90,16.4,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907180,90,16.4,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907181,90,16.29,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907182,90,16.29,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907183,90,16.4,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907184,90,16.4,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907185,90,16.36,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907186,90,16.13,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907187,90,16.19,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907188,90,16.13,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907189,90,16.07,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907190,90,16.01,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907191,90,16.01,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907192,90,16.01,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907193,90,16.01,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907194,90,16.01,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907195,90,16.01,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907196,90,16.01,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907197,90,16.01,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907198,90,16.07,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907199,90,16.33,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907200,90,16.4,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907201,90,16.18,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907202,100,15.41,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907203,100,15.33,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907204,100,15.33,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907205,100,15.4,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907206,100,15.4,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907207,100,15.33,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907208,100,15.33,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907209,100,15.38,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907210,100,15.61,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907211,100,15.58,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907212,100,15.61,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907213,100,15.64,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907214,100,15.66,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907215,100,15.66,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907216,100,15.66,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907217,100,15.66,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907218,100,15.66,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907219,100,15.66,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907220,100,15.66,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907221,100,15.66,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907222,100,15.64,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907223,100,15.44,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907224,100,15.33,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907225,100,15.48,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907226,89,16.68,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907227,89,16.77,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907228,89,16.77,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907229,89,16.66,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907230,89,16.66,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907231,89,16.77,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907232,89,16.77,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907233,89,16.73,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907234,89,16.49,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907235,89,16.56,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907236,89,16.49,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907237,89,16.44,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907238,89,16.37,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907239,89,16.38,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907240,89,16.38,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907241,89,16.38,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907242,89,16.38,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907243,89,16.38,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907244,89,16.38,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907245,89,16.38,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907246,89,16.44,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907247,89,16.7,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907248,89,16.78,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907249,89,16.55,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907250,99,15.37,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907251,99,15.29,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907252,99,15.3,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907253,99,15.38,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907254,99,15.38,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907255,99,15.3,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907256,99,15.3,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907257,99,15.36,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907258,99,15.58,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907259,99,15.55,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907260,99,15.58,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907261,99,15.59,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907262,99,15.62,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907263,99,15.61,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907264,99,15.6,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907265,99,15.6,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907266,99,15.6,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907267,99,15.6,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907268,99,15.6,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907269,99,15.6,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907270,99,15.58,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907271,99,15.39,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907272,99,15.28,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907273,99,15.43,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907274,62,0.379,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907275,62,0.38,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907276,62,0.38,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907277,62,0.38,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907278,62,0.38,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907279,62,0.38,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907280,62,0.38,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907281,62,0.38,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907282,62,0.38,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907283,62,0.379,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907284,62,0.375,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907285,62,0.375,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907286,62,0.375,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907287,62,0.375,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907288,62,0.375,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907289,62,0.375,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907290,62,0.375,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907291,62,0.375,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907292,62,0.375,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907293,62,0.375,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907294,62,0.375,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907295,62,0.376,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907296,62,0.379,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907297,62,0.38,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907298,71,0.1,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907299,71,0.1,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907300,71,0.1,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907301,71,0.1,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907302,71,0.1,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907303,71,0.1,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907304,71,0.1,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907305,71,0.099,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907306,71,0.099,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907307,71,0.1,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907308,71,0.101,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907309,71,0.101,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907310,71,0.101,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907311,71,0.101,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907312,71,0.101,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907313,71,0.101,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907314,71,0.101,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907315,71,0.101,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907316,71,0.101,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907317,71,0.101,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907318,71,0.101,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907319,71,0.1,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907320,71,0.099,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907321,71,0.099,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907322,77,22.1,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907323,77,22.1,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907324,77,22.1,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907325,77,22.1,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907326,77,22.1,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907327,77,22.18,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907328,77,22.17,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907329,77,22.1,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907330,77,22.1,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907331,77,22.4,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907332,77,22.33,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907333,77,22.32,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907334,77,22.33,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907335,77,22.4,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907336,77,22.25,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907337,77,22.25,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907338,77,22.33,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907339,77,22.33,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907340,77,22.4,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907341,77,22.25,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907342,77,22.32,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907343,77,22.1,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907344,77,22.33,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907345,77,22.4,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907346,82,71.9,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907347,82,71.9,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907348,82,71.9,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907349,82,71.9,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907350,82,71.9,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907351,82,72,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907352,82,72,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907353,82,71.9,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907354,82,71.9,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907355,82,72.3,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907356,82,72.2,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907357,82,72.2,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907358,82,72.2,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907359,82,72.3,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907360,82,72.1,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907361,82,72.1,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907362,82,72.2,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907363,82,72.2,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907364,82,72.3,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907365,82,72.1,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907366,82,72.2,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907367,82,71.9,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907368,82,72.2,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907369,82,72.3,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907370,72,0.096,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907371,72,0.096,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907372,72,0.096,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907373,72,0.096,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907374,72,0.096,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907375,72,0.096,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907376,72,0.096,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907377,72,0.096,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907378,72,0.096,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907379,72,0.096,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907380,72,0.097,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907381,72,0.097,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907382,72,0.097,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907383,72,0.097,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907384,72,0.097,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907385,72,0.097,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907386,72,0.097,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907387,72,0.097,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907388,72,0.097,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907389,72,0.097,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907390,72,0.097,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907391,72,0.097,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907392,72,0.096,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907393,72,0.096,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907394,92,26.17,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907395,92,26.27,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907396,92,26.27,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907397,92,26.27,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907398,92,26.27,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907399,92,26.27,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907400,92,26.28,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907401,92,26.28,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907402,92,26.28,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907403,92,26.17,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907404,92,25.86,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907405,92,25.86,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907406,92,25.86,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907407,92,25.86,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907408,92,25.86,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907409,92,25.86,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907410,92,25.86,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907411,92,25.86,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907412,92,25.86,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907413,92,25.86,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907414,92,25.86,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907415,92,25.97,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907416,92,26.18,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907417,92,26.28,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907418,102,34.52,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907419,102,34.37,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907420,102,34.37,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907421,102,34.37,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907422,102,34.37,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907423,102,34.37,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907424,102,34.37,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907425,102,34.37,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907426,102,34.38,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907427,102,34.53,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907428,102,35,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907429,102,35,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907430,102,35,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907431,102,35,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907432,102,35,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907433,102,35,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907434,102,35,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907435,102,35,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907436,102,35,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907437,102,35,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907438,102,35,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907439,102,34.84,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907440,102,34.53,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907441,102,34.38,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907442,91,26.59,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907443,91,26.69,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907444,91,26.69,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907445,91,26.69,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907446,91,26.69,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907447,91,26.69,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907448,91,26.7,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907449,91,26.7,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907450,91,26.7,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907451,91,26.59,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907452,91,26.28,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907453,91,26.28,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907454,91,26.28,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907455,91,26.28,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907456,91,26.28,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907457,91,26.28,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907458,91,26.28,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907459,91,26.28,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907460,91,26.28,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907461,91,26.28,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907462,91,26.28,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907463,91,26.39,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907464,91,26.6,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907465,91,26.7,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13907466,101,35.98,'2011-08-30 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13907467,101,35.82,'2011-08-30 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13907468,101,35.82,'2011-08-30 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13907469,101,35.82,'2011-08-30 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13907470,101,35.82,'2011-08-30 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13907471,101,35.82,'2011-08-30 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13907472,101,35.81,'2011-08-30 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13907473,101,35.8,'2011-08-30 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13907474,101,35.79,'2011-08-30 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13907475,101,35.96,'2011-08-30 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13907476,101,36.44,'2011-08-31 00:00:00.000000',-7,'Not censored','Unknown',1,103),(13907477,101,36.44,'2011-08-31 01:00:00.000000',-7,'Not censored','Unknown',1,103),(13907478,101,36.44,'2011-08-31 02:00:00.000000',-7,'Not censored','Unknown',1,103),(13907479,101,36.44,'2011-08-31 03:00:00.000000',-7,'Not censored','Unknown',1,103),(13907480,101,36.44,'2011-08-31 04:00:00.000000',-7,'Not censored','Unknown',1,103),(13907481,101,36.44,'2011-08-31 05:00:00.000000',-7,'Not censored','Unknown',1,103),(13907482,101,36.44,'2011-08-31 06:00:00.000000',-7,'Not censored','Unknown',1,103),(13907483,101,36.44,'2011-08-31 07:00:00.000000',-7,'Not censored','Unknown',1,103),(13907484,101,36.44,'2011-08-31 08:00:00.000000',-7,'Not censored','Unknown',1,103),(13907485,101,36.44,'2011-08-31 09:00:00.000000',-7,'Not censored','Unknown',1,103),(13907486,101,36.44,'2011-08-31 10:00:00.000000',-7,'Not censored','Unknown',1,103),(13907487,101,36.27,'2011-08-31 11:00:00.000000',-7,'Not censored','Unknown',1,103),(13907488,101,35.95,'2011-08-31 12:00:00.000000',-7,'Not censored','Unknown',1,103),(13907489,101,35.79,'2011-08-31 13:00:00.000000',-7,'Not censored','Unknown',1,103),(13912791,31,13.16,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912792,31,13.16,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912793,31,13.17,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912794,31,13.19,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912795,31,13.18,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912796,31,12.79,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912797,31,12.74,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912798,31,12.71,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912799,31,12.67,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912800,31,12.63,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912815,32,5.189,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912816,32,5.132,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912817,32,4.243,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912818,32,3.119,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912819,32,3.027,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912820,32,2.764,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912821,32,1.442,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912822,32,2.455,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912823,32,1.136,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912824,32,1.167,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912839,33,195.3,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912840,33,200.9,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912841,33,195.2,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912842,33,197.6,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912843,33,228.9,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912844,33,259,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912845,33,247.2,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912846,33,333,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912847,33,276.5,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912848,33,252.7,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912863,34,23.46,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912864,34,24.23,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912865,34,24.44,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912866,34,29.5,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912867,34,39.92,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912868,34,14.35,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912869,34,52.33,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912870,34,45.86,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912871,34,55.97,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912872,34,72.13,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912887,35,624.7,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',0,100),(13912888,35,624.5,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',0,100),(13912889,35,624.2,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',0,100),(13912890,35,623.9,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',0,100),(13912891,35,623.8,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',0,100),(13912892,35,623.9,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',0,100),(13912893,35,624.6,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',0,100),(13912894,35,625.8,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',0,100),(13912895,35,626.2,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',0,100),(13912896,35,626.7,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',0,100),(13912911,30,0,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912912,30,0,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912913,30,0,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912914,30,0,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912915,30,0,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912916,30,0,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912917,30,0,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912918,30,0,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912919,30,0,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912920,30,0,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912935,28,30.81,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912936,28,30.36,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912937,28,29.44,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912938,28,29.56,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912939,28,29.79,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912940,28,26.72,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912941,28,21.41,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912942,28,21.29,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912943,28,16.94,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912944,28,13.49,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912959,29,13.45,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912960,29,13.42,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912961,29,13.35,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912962,29,12.95,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912963,29,12.48,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912964,29,15.52,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912965,29,22.53,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912966,29,28.89,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912967,29,41.1,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912968,29,48.18,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13912983,36,962,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13912984,36,718,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13912985,36,374.2,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13912986,36,328.4,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13912987,36,263.2,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13912988,36,37.68,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13912989,36,1.028,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13912990,36,0,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13912991,36,0,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13912992,36,0,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13913007,46,1.124,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13913008,46,1.393,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13913009,46,1.212,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13913010,46,1.291,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13913011,46,1.487,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13913012,46,1.484,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13913013,46,1.462,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13913014,46,1.451,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13913015,46,1.548,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13913016,46,1.524,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13913031,47,1.186,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13913032,47,1.468,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13913033,47,1.275,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13913034,47,1.359,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13913035,47,1.566,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13913036,47,1.556,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13913037,47,1.519,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13913038,47,1.507,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13913039,47,1.596,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13913040,47,1.561,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13913055,48,0.584,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13913056,48,0.302,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13913057,48,0.495,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13913058,48,0.411,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13913059,48,0.204,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13913060,48,0.214,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13913061,48,0.251,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13913062,48,0.263,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13913063,48,0.174,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13913064,48,0.209,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916337,58,0.136,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916338,58,0.138,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916339,58,0.137,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916340,58,0.134,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916341,58,0.133,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916342,58,0.134,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916343,58,0.131,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916344,58,0.128,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916345,58,0.126,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916346,58,0.125,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916361,63,0.013,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916362,63,0.013,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916363,63,0.013,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916364,63,0.013,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916365,63,0.013,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916366,63,0.013,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916367,63,0.013,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916368,63,0.013,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916369,63,0.013,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916370,63,0.013,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916385,73,31.48,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916386,73,31.8,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916387,73,31.62,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916388,73,30.97,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916389,73,30.32,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916390,73,29.65,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916391,73,28.45,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916392,73,27.15,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916393,73,26.1,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916394,73,25.2,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916409,78,88.7,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916410,78,89.2,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916411,78,88.9,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916412,78,87.7,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916413,78,86.6,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916414,78,85.4,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916415,78,83.2,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916416,78,80.9,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916417,78,78.94,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916418,78,77.37,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916433,64,0.015,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916434,64,0.014,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916435,64,0.014,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916436,64,0.014,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916437,64,0.014,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916438,64,0.013,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916439,64,0.013,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916440,64,0.013,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916441,64,0.013,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916442,64,0.013,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916457,84,8.34,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916458,84,8.43,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916459,84,8.39,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916460,84,8.28,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916461,84,8.18,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916462,84,8.26,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916463,84,8.07,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916464,84,7.935,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916465,84,7.853,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916466,84,7.76,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916481,94,5.229,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916482,94,5.227,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916483,94,5.129,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916484,94,5.058,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916485,94,4.992,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916486,94,4.832,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916487,94,4.78,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916488,94,4.736,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916489,94,4.644,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916490,94,4.593,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916505,83,8.66,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916506,83,8.76,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916507,83,8.72,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916508,83,8.59,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916509,83,8.47,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916510,83,8.53,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916511,83,8.32,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916512,83,8.15,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916513,83,8.05,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916514,83,7.936,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916529,93,4.778,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916530,93,4.75,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916531,93,4.677,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916532,93,4.66,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916533,93,4.638,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916534,93,4.541,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916535,93,4.565,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916536,93,4.6,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916537,93,4.586,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916538,93,4.588,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916553,59,0.256,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916554,59,0.256,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916555,59,0.26,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916556,59,0.26,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916557,59,0.258,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916558,59,0.256,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916559,59,0.257,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916560,59,0.255,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916561,59,0.254,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916562,59,0.253,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916577,65,0.03,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916578,65,0.03,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916579,65,0.03,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916580,65,0.03,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916581,65,0.03,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916582,65,0.03,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916583,65,0.029,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916584,65,0.03,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916585,65,0.029,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916586,65,0.029,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916601,74,28.18,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916602,74,29.05,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916603,74,29.2,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916604,74,29.2,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916605,74,28.97,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916606,74,28.82,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916607,74,28.45,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916608,74,27.95,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916609,74,27.2,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916610,74,26.8,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916625,79,82.8,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916626,79,84.3,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916627,79,84.6,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916628,79,84.6,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916629,79,84.1,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916630,79,83.9,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916631,79,83.2,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916632,79,82.4,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916633,79,81,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916634,79,80.2,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916649,66,0.031,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916650,66,0.032,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916651,66,0.031,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916652,66,0.031,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916653,66,0.032,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916654,66,0.032,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916655,66,0.031,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916656,66,0.031,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916657,66,0.031,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916658,66,0.03,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916673,86,15.91,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916674,86,15.96,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916675,86,16.19,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916676,86,16.17,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916677,86,16.07,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916678,86,15.96,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916679,86,16.01,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916680,86,15.86,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916681,86,15.78,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916682,86,15.68,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916697,96,11.11,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916698,96,11.33,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916699,96,11.28,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916700,96,11.32,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916701,96,11.31,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916702,96,11.33,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916703,96,11.19,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916704,96,11.13,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916705,96,11,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916706,96,10.92,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916721,85,16.38,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916722,85,16.46,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916723,85,16.72,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916724,85,16.69,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916725,85,16.59,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916726,85,16.46,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916727,85,16.5,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916728,85,16.33,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916729,85,16.23,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916730,85,16.1,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916745,95,10.65,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916746,95,10.75,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916747,95,10.64,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916748,95,10.67,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916749,95,10.68,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916750,95,10.74,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916751,95,10.64,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916752,95,10.65,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916753,95,10.62,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916754,95,10.63,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916769,60,0.364,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916770,60,0.364,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916771,60,0.363,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916772,60,0.361,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916773,60,0.367,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916774,60,0.367,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916775,60,0.364,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916776,60,0.368,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916777,60,0.368,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916778,60,0.365,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916793,67,0.08,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916794,67,0.08,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916795,67,0.081,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916796,67,0.081,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916797,67,0.08,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916798,67,0.08,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916799,67,0.081,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916800,67,0.08,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916801,67,0.08,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916802,67,0.081,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916817,75,25.05,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916818,75,25.4,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916819,75,25.45,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916820,75,25.75,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916821,75,25.9,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916822,75,26.13,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916823,75,26.2,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916824,75,26.2,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916825,75,26.2,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916826,75,26.3,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916841,80,77.18,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916842,80,77.7,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916843,80,77.83,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916844,80,78.4,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916845,80,78.6,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916846,80,78.98,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916847,80,79.1,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916848,80,79.1,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916849,80,79.1,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916850,80,79.3,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916865,68,0.08,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916866,68,0.08,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916867,68,0.081,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916868,68,0.081,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916869,68,0.081,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916870,68,0.081,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916871,68,0.082,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916872,68,0.081,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916873,68,0.081,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916874,68,0.082,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916889,88,24.78,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916890,88,24.83,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916891,88,24.69,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916892,88,24.57,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916893,88,25.11,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916894,88,25.12,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916895,88,24.82,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916896,88,25.14,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916897,88,25.14,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916898,88,24.98,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916913,98,28.79,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916914,98,28.83,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916915,98,29.1,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916916,98,29.36,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916917,98,29.13,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916918,98,29.15,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916919,98,29.44,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916920,98,29.16,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916921,98,29.16,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916922,98,29.42,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916937,87,25.35,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916938,87,25.41,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916939,87,25.28,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916940,87,25.17,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916941,87,25.73,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916942,87,25.75,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916943,87,25.45,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916944,87,25.78,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916945,87,25.78,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916946,87,25.61,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916961,97,28.74,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916962,97,28.7,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916963,97,28.87,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916964,97,29.04,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916965,97,28.76,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916966,97,28.71,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916967,97,28.96,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916968,97,28.65,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916969,97,28.64,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916970,97,28.89,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13916985,61,0.256,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13916986,61,0.256,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13916987,61,0.256,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13916988,61,0.256,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13916989,61,0.256,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13916990,61,0.256,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13916991,61,0.256,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13916992,61,0.256,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13916993,61,0.258,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13916994,61,0.261,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917009,69,0.043,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917010,69,0.043,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917011,69,0.043,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917012,69,0.043,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917013,69,0.043,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917014,69,0.043,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917015,69,0.043,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917016,69,0.043,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917017,69,0.043,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917018,69,0.043,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917033,76,24.95,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917034,76,24.95,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917035,76,24.9,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917036,76,24.9,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917037,76,24.85,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917038,76,24.9,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917039,76,24.85,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917040,76,24.9,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917041,76,24.9,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917042,76,24.9,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917057,81,76.93,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917058,81,76.93,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917059,81,76.8,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917060,81,76.8,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917061,81,76.7,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917062,81,76.8,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917063,81,76.7,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917064,81,76.8,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917065,81,76.8,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917066,81,76.8,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917081,70,0.043,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917082,70,0.043,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917083,70,0.043,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917084,70,0.043,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917085,70,0.043,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917086,70,0.043,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917087,70,0.043,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917088,70,0.043,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917089,70,0.043,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917090,70,0.043,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917105,90,15.96,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917106,90,15.96,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917107,90,15.96,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917108,90,15.96,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917109,90,15.96,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917110,90,15.96,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917111,90,15.96,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917112,90,15.96,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917113,90,16.07,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917114,90,16.29,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917129,100,15.62,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917130,100,15.62,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917131,100,15.62,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917132,100,15.62,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917133,100,15.62,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917134,100,15.62,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917135,100,15.62,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917136,100,15.62,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917137,100,15.55,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917138,100,15.4,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917153,89,16.32,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917154,89,16.32,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917155,89,16.32,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917156,89,16.32,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917157,89,16.32,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917158,89,16.32,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917159,89,16.32,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917160,89,16.32,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917161,89,16.43,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917162,89,16.66,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917177,99,15.59,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917178,99,15.6,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917179,99,15.6,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917180,99,15.6,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917181,99,15.6,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917182,99,15.6,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917183,99,15.6,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917184,99,15.6,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917185,99,15.52,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917186,99,15.37,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917201,62,0.38,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917202,62,0.38,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917203,62,0.38,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917204,62,0.38,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917205,62,0.38,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917206,62,0.38,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917207,62,0.38,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917208,62,0.38,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917209,62,0.38,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917210,62,0.38,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917225,71,0.099,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917226,71,0.099,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917227,71,0.099,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917228,71,0.099,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917229,71,0.099,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917230,71,0.099,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917231,71,0.099,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917232,71,0.099,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917233,71,0.099,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917234,71,0.099,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917249,77,22.4,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917250,77,22.4,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917251,77,22.33,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917252,77,22.4,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917253,77,22.25,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917254,77,22.33,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917255,77,22.33,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917256,77,22.4,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917257,77,22.32,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917258,77,22.33,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917273,82,72.3,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917274,82,72.3,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917275,82,72.2,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917276,82,72.3,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917277,82,72.1,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917278,82,72.2,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917279,82,72.2,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917280,82,72.3,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917281,82,72.2,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917282,82,72.2,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917297,72,0.096,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917298,72,0.096,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917299,72,0.096,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917300,72,0.096,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917301,72,0.096,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917302,72,0.096,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917303,72,0.096,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917304,72,0.096,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917305,72,0.096,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917306,72,0.096,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917321,92,26.28,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917322,92,26.29,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917323,92,26.29,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917324,92,26.29,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917325,92,26.29,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917326,92,26.29,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917327,92,26.29,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917328,92,26.29,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917329,92,26.29,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917330,92,26.29,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917345,102,34.38,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917346,102,34.38,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917347,102,34.39,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917348,102,34.38,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917349,102,34.38,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917350,102,34.38,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917351,102,34.39,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917352,102,34.38,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917353,102,34.39,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917354,102,34.39,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917369,91,26.71,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917370,91,26.71,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917371,91,26.72,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917372,91,26.71,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917373,91,26.71,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917374,91,26.71,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917375,91,26.72,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917376,91,26.71,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917377,91,26.72,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917378,91,26.72,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(13917393,101,35.79,'2011-08-31 14:00:00.000000',-7,'Not censored','Unknown',1,103),(13917394,101,35.77,'2011-08-31 15:00:00.000000',-7,'Not censored','Unknown',1,103),(13917395,101,35.76,'2011-08-31 16:00:00.000000',-7,'Not censored','Unknown',1,103),(13917396,101,35.76,'2011-08-31 17:00:00.000000',-7,'Not censored','Unknown',1,103),(13917397,101,35.76,'2011-08-31 18:00:00.000000',-7,'Not censored','Unknown',1,103),(13917398,101,35.76,'2011-08-31 19:00:00.000000',-7,'Not censored','Unknown',1,103),(13917399,101,35.76,'2011-08-31 20:00:00.000000',-7,'Not censored','Unknown',1,103),(13917400,101,35.76,'2011-08-31 21:00:00.000000',-7,'Not censored','Unknown',1,103),(13917401,101,35.76,'2011-08-31 22:00:00.000000',-7,'Not censored','Unknown',1,103),(13917402,101,35.76,'2011-08-31 23:00:00.000000',-7,'Not censored','Unknown',1,103),(15439846,13,8.203333,'2007-09-01 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15439847,13,8.21,'2007-09-01 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15439848,13,8.21,'2007-09-01 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15439849,13,8.21,'2007-09-01 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15439850,13,8.22,'2007-09-01 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15439851,13,8.22,'2007-09-01 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15439852,13,8.22,'2007-09-01 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15439853,13,8.22,'2007-09-01 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15439854,13,8.22,'2007-09-01 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15439855,13,8.22,'2007-09-01 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15439856,13,8.22,'2007-09-01 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15439857,13,8.22,'2007-09-01 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15439858,13,8.22,'2007-09-01 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15439859,13,8.22,'2007-09-01 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15439860,13,8.22,'2007-09-01 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15439861,13,8.223333,'2007-09-01 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15439862,13,8.23,'2007-09-01 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15439863,13,8.23,'2007-09-01 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15439864,13,8.233333,'2007-09-01 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15439865,13,8.239999,'2007-09-01 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15439866,13,8.245,'2007-09-01 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15439867,13,8.25,'2007-09-01 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15439868,13,8.25,'2007-09-01 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15439869,13,8.25,'2007-09-01 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15439870,13,8.25,'2007-09-01 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15439871,13,8.25,'2007-09-01 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15439872,13,8.248333,'2007-09-01 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15439873,13,8.241666,'2007-09-01 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15439874,13,8.25,'2007-09-01 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15439875,13,8.25,'2007-09-01 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15439876,13,8.25,'2007-09-01 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15439877,13,8.25,'2007-09-01 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15439878,13,8.25,'2007-09-01 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15439879,13,8.25,'2007-09-01 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15439880,13,8.248333,'2007-09-01 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15439881,13,8.246666,'2007-09-01 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15439882,13,8.239999,'2007-09-01 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15439883,13,8.239999,'2007-09-01 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15439884,13,8.235,'2007-09-01 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15439885,13,8.23,'2007-09-01 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15439886,13,8.23,'2007-09-01 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15439887,13,8.23,'2007-09-01 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15439888,13,8.23,'2007-09-01 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15439889,13,8.228333,'2007-09-01 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15439890,13,8.23,'2007-09-01 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15439891,13,8.23,'2007-09-01 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15439892,13,8.23,'2007-09-01 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15439893,13,8.23,'2007-09-01 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15439894,13,8.23,'2007-09-02 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15439895,13,8.23,'2007-09-02 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15439896,13,8.23,'2007-09-02 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15439897,13,8.23,'2007-09-02 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15439898,13,8.23,'2007-09-02 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15439899,13,8.228333,'2007-09-02 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15439900,13,8.228333,'2007-09-02 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15439901,13,8.225,'2007-09-02 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15439902,13,8.225,'2007-09-02 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15439903,13,8.221667,'2007-09-02 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15439904,13,8.22,'2007-09-02 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15439905,13,8.22,'2007-09-02 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15439906,13,8.22,'2007-09-02 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15439907,13,8.22,'2007-09-02 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15439908,13,8.22,'2007-09-02 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15439909,13,8.223333,'2007-09-02 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15439910,13,8.23,'2007-09-02 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15439911,13,8.23,'2007-09-02 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15439912,13,8.233333,'2007-09-02 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15439913,13,8.239999,'2007-09-02 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15439914,13,8.246667,'2007-09-02 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15439915,13,8.25,'2007-09-02 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15439916,13,8.251667,'2007-09-02 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15439917,13,8.258334,'2007-09-02 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15439918,13,8.260001,'2007-09-02 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15439919,13,8.260001,'2007-09-02 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15439920,13,8.260001,'2007-09-02 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15439921,13,8.260001,'2007-09-02 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15439922,13,8.260001,'2007-09-02 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15439923,13,8.260001,'2007-09-02 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15439924,13,8.260001,'2007-09-02 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15439925,13,8.258334,'2007-09-02 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15439926,13,8.260001,'2007-09-02 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15439927,13,8.260001,'2007-09-02 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15439928,13,8.258334,'2007-09-02 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15439929,13,8.25,'2007-09-02 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15439930,13,8.25,'2007-09-02 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15439931,13,8.248333,'2007-09-02 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15439932,13,8.239999,'2007-09-02 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15439933,13,8.239999,'2007-09-02 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15439934,13,8.239999,'2007-09-02 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15439935,13,8.236666,'2007-09-02 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15439936,13,8.23,'2007-09-02 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15439937,13,8.23,'2007-09-02 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15439938,13,8.23,'2007-09-02 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15439939,13,8.231667,'2007-09-02 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15439940,13,8.235,'2007-09-02 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15439941,13,8.238332,'2007-09-02 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15439942,13,8.239999,'2007-09-03 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15439943,13,8.238332,'2007-09-03 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15439944,13,8.239999,'2007-09-03 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15439945,13,8.239999,'2007-09-03 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15439946,13,8.239999,'2007-09-03 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15439947,13,8.239999,'2007-09-03 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15439948,13,8.239999,'2007-09-03 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15439949,13,8.239999,'2007-09-03 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15439950,13,8.239999,'2007-09-03 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15439951,13,8.246667,'2007-09-03 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15439952,13,8.25,'2007-09-03 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15439953,13,8.25,'2007-09-03 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15439954,13,8.25,'2007-09-03 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15439955,13,8.25,'2007-09-03 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15439956,13,8.25,'2007-09-03 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15439957,13,8.25,'2007-09-03 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15439958,13,8.25,'2007-09-03 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15439959,13,8.25,'2007-09-03 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15439960,13,8.258334,'2007-09-03 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15439961,13,8.261667,'2007-09-03 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15439962,13,8.27,'2007-09-03 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15439963,13,8.27,'2007-09-03 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15439964,13,8.275001,'2007-09-03 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15439965,13,8.271667,'2007-09-03 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15439966,13,8.27,'2007-09-03 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15439967,13,8.27,'2007-09-03 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15439968,13,8.27,'2007-09-03 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15439969,13,8.263333,'2007-09-03 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15439970,13,8.260001,'2007-09-03 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15439971,13,8.260001,'2007-09-03 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15439972,13,8.260001,'2007-09-03 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15439973,13,8.260001,'2007-09-03 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15439974,13,8.260001,'2007-09-03 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15439975,13,8.260001,'2007-09-03 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15439976,13,8.256667,'2007-09-03 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15439977,13,8.25,'2007-09-03 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15439978,13,8.25,'2007-09-03 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15439979,13,8.241666,'2007-09-03 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15439980,13,8.238333,'2007-09-03 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15439981,13,8.23,'2007-09-03 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15439982,13,8.228333,'2007-09-03 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15439983,13,8.22,'2007-09-03 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15439984,13,8.22,'2007-09-03 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15439985,13,8.22,'2007-09-03 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15439986,13,8.221667,'2007-09-03 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15439987,13,8.23,'2007-09-03 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15439988,13,8.23,'2007-09-03 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15439989,13,8.23,'2007-09-03 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15439990,13,8.23,'2007-09-04 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15439991,13,8.23,'2007-09-04 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15439992,13,8.23,'2007-09-04 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15439993,13,8.231667,'2007-09-04 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15439994,13,8.235,'2007-09-04 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15439995,13,8.239999,'2007-09-04 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15439996,13,8.239999,'2007-09-04 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15439997,13,8.239999,'2007-09-04 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15439998,13,8.239999,'2007-09-04 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15439999,13,8.239999,'2007-09-04 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440000,13,8.239999,'2007-09-04 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440001,13,8.239999,'2007-09-04 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440002,13,8.236666,'2007-09-04 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440003,13,8.233333,'2007-09-04 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440004,13,8.233333,'2007-09-04 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440005,13,8.23,'2007-09-04 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440006,13,8.23,'2007-09-04 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440007,13,8.238332,'2007-09-04 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440008,13,8.239999,'2007-09-04 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440009,13,8.243333,'2007-09-04 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440010,13,8.25,'2007-09-04 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440011,13,8.25,'2007-09-04 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440012,13,8.260001,'2007-09-04 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440013,13,8.260001,'2007-09-04 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440014,13,8.268333,'2007-09-04 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440015,13,8.275,'2007-09-04 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440016,13,8.275,'2007-09-04 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440017,13,8.28,'2007-09-04 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440018,13,8.283334,'2007-09-04 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440019,13,8.288334,'2007-09-04 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440020,13,8.288334,'2007-09-04 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440021,13,8.283333,'2007-09-04 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440022,13,8.28,'2007-09-04 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440023,13,8.281667,'2007-09-04 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440024,13,8.295,'2007-09-04 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440025,13,8.29,'2007-09-04 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440026,13,8.29,'2007-09-04 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440027,13,8.293334,'2007-09-04 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440028,13,8.29,'2007-09-04 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440029,13,8.288333,'2007-09-04 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440030,13,8.285,'2007-09-04 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440031,13,8.284999,'2007-09-04 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440032,13,8.28,'2007-09-04 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440033,13,8.27,'2007-09-04 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440034,13,8.263333,'2007-09-04 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440035,13,8.260001,'2007-09-04 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440036,13,8.260001,'2007-09-04 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440037,13,8.258334,'2007-09-04 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440038,13,8.260001,'2007-09-05 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440039,13,8.255,'2007-09-05 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440040,13,8.258334,'2007-09-05 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440041,13,8.25,'2007-09-05 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440042,13,8.25,'2007-09-05 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440043,13,8.25,'2007-09-05 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440044,13,8.239999,'2007-09-05 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440045,13,8.235,'2007-09-05 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440046,13,8.228333,'2007-09-05 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440047,13,8.218333,'2007-09-05 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440048,13,8.21,'2007-09-05 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440049,13,8.201667,'2007-09-05 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440050,13,8.196666,'2007-09-05 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440051,13,8.19,'2007-09-05 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440052,13,8.19,'2007-09-05 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440053,13,8.188333,'2007-09-05 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440054,13,8.19,'2007-09-05 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440055,13,8.19,'2007-09-05 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440056,13,8.19,'2007-09-05 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440057,13,8.19,'2007-09-05 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440058,13,8.191667,'2007-09-05 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440059,13,8.2,'2007-09-05 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440060,13,8.2,'2007-09-05 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440061,13,8.196666,'2007-09-05 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440062,13,8.196667,'2007-09-05 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440063,13,8.196666,'2007-09-05 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440064,13,8.19,'2007-09-05 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440065,13,8.196667,'2007-09-05 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440066,13,8.2,'2007-09-05 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440067,13,8.2,'2007-09-05 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440068,13,8.2,'2007-09-05 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440069,13,8.205001,'2007-09-05 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440070,13,8.2,'2007-09-05 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440071,13,8.193333,'2007-09-05 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440072,13,8.19,'2007-09-05 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440073,13,8.188333,'2007-09-05 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440074,13,8.18,'2007-09-05 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440075,13,8.18,'2007-09-05 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440076,13,8.169999,'2007-09-05 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440077,13,8.169999,'2007-09-05 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440078,13,8.169999,'2007-09-05 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440079,13,8.169999,'2007-09-05 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440080,13,8.173333,'2007-09-05 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440081,13,8.18,'2007-09-05 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440082,13,8.181666,'2007-09-05 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440083,13,8.19,'2007-09-05 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440084,13,8.19,'2007-09-05 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440085,13,8.198334,'2007-09-05 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440086,13,8.2,'2007-09-06 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440087,13,8.203333,'2007-09-06 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440088,13,8.21,'2007-09-06 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440089,13,8.21,'2007-09-06 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440090,13,8.218334,'2007-09-06 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440091,13,8.22,'2007-09-06 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440092,13,8.22,'2007-09-06 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440093,13,8.22,'2007-09-06 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440094,13,8.22,'2007-09-06 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440095,13,8.22,'2007-09-06 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440096,13,8.22,'2007-09-06 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440097,13,8.22,'2007-09-06 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440098,13,8.214999,'2007-09-06 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440099,13,8.21,'2007-09-06 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440100,13,8.208333,'2007-09-06 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440101,13,8.2,'2007-09-06 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440102,13,8.2,'2007-09-06 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440103,13,8.204999,'2007-09-06 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440104,13,8.21,'2007-09-06 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440105,13,8.22,'2007-09-06 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440106,13,8.233333,'2007-09-06 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440107,13,8.239999,'2007-09-06 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440108,13,8.25,'2007-09-06 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440109,13,8.258334,'2007-09-06 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440110,13,8.263333,'2007-09-06 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440111,13,8.27,'2007-09-06 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440112,13,8.271667,'2007-09-06 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440113,13,8.28,'2007-09-06 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440114,13,8.28,'2007-09-06 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440115,13,8.283334,'2007-09-06 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440116,13,8.29,'2007-09-06 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440117,13,8.293333,'2007-09-06 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440118,13,8.3,'2007-09-06 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440119,13,8.3,'2007-09-06 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440120,13,8.3,'2007-09-06 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440121,13,8.301666,'2007-09-06 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440122,13,8.305,'2007-09-06 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440123,13,8.306666,'2007-09-06 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440124,13,8.3,'2007-09-06 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440125,13,8.293334,'2007-09-06 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440126,13,8.29,'2007-09-06 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440127,13,8.28,'2007-09-06 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440128,13,8.28,'2007-09-06 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440129,13,8.28,'2007-09-06 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440130,13,8.28,'2007-09-06 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440131,13,8.28,'2007-09-06 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440132,13,8.28,'2007-09-06 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440133,13,8.28,'2007-09-06 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440134,13,8.28,'2007-09-07 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440135,13,8.28,'2007-09-07 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440136,13,8.28,'2007-09-07 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440137,13,8.28,'2007-09-07 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440138,13,8.28,'2007-09-07 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440139,13,8.28,'2007-09-07 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440140,13,8.28,'2007-09-07 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440141,13,8.28,'2007-09-07 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440142,13,8.28,'2007-09-07 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440143,13,8.273334,'2007-09-07 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440144,13,8.27,'2007-09-07 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440145,13,8.27,'2007-09-07 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440146,13,8.27,'2007-09-07 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440147,13,8.27,'2007-09-07 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440148,13,8.27,'2007-09-07 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440149,13,8.27,'2007-09-07 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440150,13,8.27,'2007-09-07 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440151,13,8.27,'2007-09-07 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440152,13,8.278333,'2007-09-07 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440153,13,8.283334,'2007-09-07 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440154,13,8.29,'2007-09-07 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440155,13,8.291667,'2007-09-07 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440156,13,8.298333,'2007-09-07 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440157,13,8.291667,'2007-09-07 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440158,13,8.3,'2007-09-07 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440159,13,8.3,'2007-09-07 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440160,13,8.3,'2007-09-07 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440161,13,8.3,'2007-09-07 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440162,13,8.3,'2007-09-07 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440163,13,8.3,'2007-09-07 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440164,13,8.3,'2007-09-07 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440165,13,8.308333,'2007-09-07 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440166,13,8.309999,'2007-09-07 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440167,13,8.309999,'2007-09-07 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440168,13,8.309999,'2007-09-07 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440169,13,8.303333,'2007-09-07 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440170,13,8.3,'2007-09-07 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440171,13,8.291667,'2007-09-07 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440172,13,8.286666,'2007-09-07 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440173,13,8.28,'2007-09-07 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440174,13,8.27,'2007-09-07 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440175,13,8.27,'2007-09-07 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440176,13,8.27,'2007-09-07 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440177,13,8.27,'2007-09-07 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440178,13,8.27,'2007-09-07 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440179,13,8.268333,'2007-09-07 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440180,13,8.27,'2007-09-07 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440181,13,8.27,'2007-09-07 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440182,13,8.27,'2007-09-08 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440183,13,8.27,'2007-09-08 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440184,13,8.27,'2007-09-08 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440185,13,8.27,'2007-09-08 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440186,13,8.27,'2007-09-08 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440187,13,8.273334,'2007-09-08 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440188,13,8.275,'2007-09-08 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440189,13,8.27,'2007-09-08 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440190,13,8.27,'2007-09-08 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440191,13,8.27,'2007-09-08 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440192,13,8.27,'2007-09-08 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440193,13,8.261668,'2007-09-08 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440194,13,8.260001,'2007-09-08 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440195,13,8.260001,'2007-09-08 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440196,13,8.260001,'2007-09-08 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440197,13,8.260001,'2007-09-08 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440198,13,8.256667,'2007-09-08 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440199,13,8.260001,'2007-09-08 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440200,13,8.260001,'2007-09-08 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440201,13,8.268333,'2007-09-08 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440202,13,8.27,'2007-09-08 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440203,13,8.28,'2007-09-08 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440204,13,8.281667,'2007-09-08 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440205,13,8.286667,'2007-09-08 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440206,13,8.29,'2007-09-08 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440207,13,8.29,'2007-09-08 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440208,13,8.29,'2007-09-08 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440209,13,8.29,'2007-09-08 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440210,13,8.29,'2007-09-08 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440211,13,8.29,'2007-09-08 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440212,13,8.29,'2007-09-08 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440213,13,8.288334,'2007-09-08 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440214,13,8.29,'2007-09-08 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440215,13,8.29,'2007-09-08 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440216,13,8.286667,'2007-09-08 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440217,13,8.286667,'2007-09-08 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440218,13,8.28,'2007-09-08 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440219,13,8.28,'2007-09-08 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440220,13,8.27,'2007-09-08 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440221,13,8.268334,'2007-09-08 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440222,13,8.261668,'2007-09-08 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440223,13,8.258334,'2007-09-08 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440224,13,8.255,'2007-09-08 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440225,13,8.255,'2007-09-08 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440226,13,8.255001,'2007-09-08 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440227,13,8.258334,'2007-09-08 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440228,13,8.260001,'2007-09-08 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440229,13,8.260001,'2007-09-08 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440230,13,8.260001,'2007-09-09 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440231,13,8.268333,'2007-09-09 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440232,13,8.268334,'2007-09-09 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440233,13,8.27,'2007-09-09 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440234,13,8.268333,'2007-09-09 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440235,13,8.27,'2007-09-09 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440236,13,8.27,'2007-09-09 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440237,13,8.266667,'2007-09-09 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440238,13,8.260001,'2007-09-09 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440239,13,8.261667,'2007-09-09 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440240,13,8.261668,'2007-09-09 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440241,13,8.260001,'2007-09-09 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440242,13,8.260001,'2007-09-09 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440243,13,8.260001,'2007-09-09 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440244,13,8.256667,'2007-09-09 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440245,13,8.256667,'2007-09-09 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440246,13,8.260001,'2007-09-09 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440247,13,8.261667,'2007-09-09 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440248,13,8.27,'2007-09-09 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440249,13,8.273334,'2007-09-09 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440250,13,8.283334,'2007-09-09 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440251,13,8.291667,'2007-09-09 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440252,13,8.3,'2007-09-09 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440253,13,8.3,'2007-09-09 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440254,13,8.306666,'2007-09-09 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440255,13,8.309999,'2007-09-09 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440256,13,8.309999,'2007-09-09 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440257,13,8.311666,'2007-09-09 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440258,13,8.316667,'2007-09-09 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440259,13,8.32,'2007-09-09 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440260,13,8.326667,'2007-09-09 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440261,13,8.328334,'2007-09-09 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440262,13,8.335,'2007-09-09 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440263,13,8.34,'2007-09-09 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440264,13,8.34,'2007-09-09 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440265,13,8.34,'2007-09-09 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440266,13,8.338333,'2007-09-09 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440267,13,8.330001,'2007-09-09 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440268,13,8.326667,'2007-09-09 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440269,13,8.318333,'2007-09-09 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440270,13,8.309999,'2007-09-09 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440271,13,8.309999,'2007-09-09 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440272,13,8.309999,'2007-09-09 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440273,13,8.309999,'2007-09-09 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440274,13,8.318333,'2007-09-09 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440275,13,8.32,'2007-09-09 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440276,13,8.326667,'2007-09-09 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440277,13,8.330001,'2007-09-09 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440278,13,8.330001,'2007-09-10 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440279,13,8.330001,'2007-09-10 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440280,13,8.333333,'2007-09-10 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440281,13,8.338333,'2007-09-10 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440282,13,8.34,'2007-09-10 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440283,13,8.34,'2007-09-10 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440284,13,8.345,'2007-09-10 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440285,13,8.348332,'2007-09-10 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440286,13,8.345,'2007-09-10 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440287,13,8.343334,'2007-09-10 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440288,13,8.34,'2007-09-10 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440289,13,8.34,'2007-09-10 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440290,13,8.34,'2007-09-10 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440291,13,8.336667,'2007-09-10 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440292,13,8.330001,'2007-09-10 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440293,13,8.330001,'2007-09-10 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440294,13,8.330001,'2007-09-10 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440295,13,8.331666,'2007-09-10 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440296,13,8.34,'2007-09-10 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440297,13,8.345,'2007-09-10 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440298,13,8.351666,'2007-09-10 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440299,13,8.36,'2007-09-10 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440300,13,8.361667,'2007-09-10 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440301,13,8.37,'2007-09-10 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440302,13,8.37,'2007-09-10 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440303,13,8.37,'2007-09-10 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440304,13,8.371667,'2007-09-10 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440305,13,8.38,'2007-09-10 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440306,13,8.38,'2007-09-10 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440307,13,8.378334,'2007-09-10 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440308,13,8.38,'2007-09-10 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440309,13,8.38,'2007-09-10 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440310,13,8.38,'2007-09-10 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440311,13,8.384999,'2007-09-10 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440312,13,8.39,'2007-09-10 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440313,13,8.385,'2007-09-10 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440314,13,8.38,'2007-09-10 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440315,13,8.373333,'2007-09-10 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440316,13,8.368333,'2007-09-10 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440317,13,8.358334,'2007-09-10 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440318,13,8.349999,'2007-09-10 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440319,13,8.34,'2007-09-10 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440320,13,8.34,'2007-09-10 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440321,13,8.338333,'2007-09-10 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440322,13,8.34,'2007-09-10 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440323,13,8.338333,'2007-09-10 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440324,13,8.336667,'2007-09-10 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440325,13,8.34,'2007-09-10 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440326,13,8.34,'2007-09-11 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440327,13,8.34,'2007-09-11 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440328,13,8.338333,'2007-09-11 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440329,13,8.34,'2007-09-11 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440330,13,8.335,'2007-09-11 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440331,13,8.34,'2007-09-11 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440332,13,8.345,'2007-09-11 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440333,13,8.349999,'2007-09-11 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440334,13,8.349999,'2007-09-11 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440335,13,8.348333,'2007-09-11 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440336,13,8.34,'2007-09-11 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440337,13,8.338333,'2007-09-11 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440338,13,8.338333,'2007-09-11 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440339,13,8.331668,'2007-09-11 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440340,13,8.330001,'2007-09-11 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440341,13,8.32,'2007-09-11 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440342,13,8.321667,'2007-09-11 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440343,13,8.32,'2007-09-11 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440344,13,8.32,'2007-09-11 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440345,13,8.323334,'2007-09-11 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440346,13,8.335,'2007-09-11 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440347,13,8.341667,'2007-09-11 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440348,13,8.346667,'2007-09-11 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440349,13,8.349999,'2007-09-11 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440350,13,8.355,'2007-09-11 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440351,13,8.37,'2007-09-11 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440352,13,8.37,'2007-09-11 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440353,13,8.37,'2007-09-11 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440354,13,8.371667,'2007-09-11 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440355,13,8.378334,'2007-09-11 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440356,13,8.38,'2007-09-11 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440357,13,8.38,'2007-09-11 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440358,13,8.378333,'2007-09-11 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440359,13,8.378334,'2007-09-11 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440360,13,8.378333,'2007-09-11 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440361,13,8.37,'2007-09-11 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440362,13,8.368333,'2007-09-11 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440363,13,8.36,'2007-09-11 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440364,13,8.348333,'2007-09-11 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440365,13,8.336667,'2007-09-11 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440366,13,8.321667,'2007-09-11 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440367,13,8.311666,'2007-09-11 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440368,13,8.303332,'2007-09-11 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440369,13,8.3,'2007-09-11 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440370,13,8.3,'2007-09-11 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440371,13,8.3,'2007-09-11 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440372,13,8.3,'2007-09-11 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440373,13,8.3,'2007-09-11 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440374,13,8.3,'2007-09-12 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440375,13,8.301666,'2007-09-12 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440376,13,8.309999,'2007-09-12 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440377,13,8.309999,'2007-09-12 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440378,13,8.309999,'2007-09-12 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440379,13,8.316667,'2007-09-12 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440380,13,8.316666,'2007-09-12 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440381,13,8.315,'2007-09-12 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440382,13,8.318333,'2007-09-12 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440383,13,8.318333,'2007-09-12 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440384,13,8.309999,'2007-09-12 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440385,13,8.309999,'2007-09-12 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440386,13,8.309999,'2007-09-12 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440387,13,8.306666,'2007-09-12 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440388,13,8.301666,'2007-09-12 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440389,13,8.3,'2007-09-12 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440390,13,8.3,'2007-09-12 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440391,13,8.3,'2007-09-12 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440392,13,8.308333,'2007-09-12 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440393,13,8.315,'2007-09-12 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440394,13,8.325001,'2007-09-12 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440395,13,8.333333,'2007-09-12 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440396,13,8.34,'2007-09-12 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440397,13,8.343333,'2007-09-12 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440398,13,8.349999,'2007-09-12 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440399,13,8.349999,'2007-09-12 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440400,13,8.353333,'2007-09-12 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440401,13,8.355,'2007-09-12 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440402,13,8.356668,'2007-09-12 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440403,13,8.361667,'2007-09-12 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440404,13,8.38,'2007-09-12 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440405,13,8.38,'2007-09-12 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440406,13,8.38,'2007-09-12 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440407,13,8.38,'2007-09-12 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440408,13,8.373333,'2007-09-12 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440409,13,8.366667,'2007-09-12 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440410,13,8.355,'2007-09-12 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440411,13,8.345,'2007-09-12 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440412,13,8.326667,'2007-09-12 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440413,13,8.316666,'2007-09-12 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440414,13,8.308333,'2007-09-12 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440415,13,8.3,'2007-09-12 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440416,13,8.3,'2007-09-12 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440417,13,8.3,'2007-09-12 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440418,13,8.3,'2007-09-12 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440419,13,8.3,'2007-09-12 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440420,13,8.3,'2007-09-12 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440421,13,8.3,'2007-09-12 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440422,13,8.298333,'2007-09-13 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440423,13,8.3,'2007-09-13 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440424,13,8.3,'2007-09-13 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440425,13,8.3,'2007-09-13 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440426,13,8.3,'2007-09-13 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440427,13,8.3,'2007-09-13 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440428,13,8.3,'2007-09-13 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440429,13,8.3,'2007-09-13 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440430,13,8.298333,'2007-09-13 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440431,13,8.296667,'2007-09-13 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440432,13,8.29,'2007-09-13 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440433,13,8.29,'2007-09-13 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440434,13,8.286666,'2007-09-13 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440435,13,8.28,'2007-09-13 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440436,13,8.28,'2007-09-13 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440437,13,8.28,'2007-09-13 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440438,13,8.281667,'2007-09-13 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440439,13,8.29,'2007-09-13 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440440,13,8.293333,'2007-09-13 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440441,13,8.306666,'2007-09-13 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440442,13,8.311666,'2007-09-13 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440443,13,8.32,'2007-09-13 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440444,13,8.328334,'2007-09-13 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440445,13,8.335,'2007-09-13 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440446,13,8.34,'2007-09-13 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440447,13,8.349999,'2007-09-13 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440448,13,8.349999,'2007-09-13 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440449,13,8.351666,'2007-09-13 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440450,13,8.36,'2007-09-13 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440451,13,8.36,'2007-09-13 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440452,13,8.36,'2007-09-13 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440453,13,8.36,'2007-09-13 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440454,13,8.36,'2007-09-13 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440455,13,8.36,'2007-09-13 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440456,13,8.351666,'2007-09-13 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440457,13,8.343333,'2007-09-13 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440458,13,8.338333,'2007-09-13 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440459,13,8.328334,'2007-09-13 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440460,13,8.314999,'2007-09-13 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440461,13,8.303332,'2007-09-13 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440462,13,8.296667,'2007-09-13 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440463,13,8.286666,'2007-09-13 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440464,13,8.28,'2007-09-13 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440465,13,8.28,'2007-09-13 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440466,13,8.28,'2007-09-13 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440467,13,8.28,'2007-09-13 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440468,13,8.28,'2007-09-13 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440469,13,8.28,'2007-09-13 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440470,13,8.281667,'2007-09-14 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440471,13,8.288333,'2007-09-14 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440472,13,8.29,'2007-09-14 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440473,13,8.29,'2007-09-14 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440474,13,8.29,'2007-09-14 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440475,13,8.29,'2007-09-14 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440476,13,8.29,'2007-09-14 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440477,13,8.29,'2007-09-14 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440478,13,8.283333,'2007-09-14 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440479,13,8.28,'2007-09-14 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440480,13,8.28,'2007-09-14 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440481,13,8.28,'2007-09-14 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440482,13,8.273334,'2007-09-14 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440483,13,8.27,'2007-09-14 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440484,13,8.27,'2007-09-14 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440485,13,8.27,'2007-09-14 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440486,13,8.27,'2007-09-14 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440487,13,8.005,'2007-09-14 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440488,13,8.14,'2007-09-14 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440489,13,8.163333,'2007-09-14 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440490,13,8.179999,'2007-09-14 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440491,13,8.193334,'2007-09-14 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440492,13,8.204999,'2007-09-14 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440493,13,8.215001,'2007-09-14 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440494,13,8.22,'2007-09-14 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440495,13,8.226666,'2007-09-14 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440496,13,8.228333,'2007-09-14 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440497,13,8.236667,'2007-09-14 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440498,13,8.239999,'2007-09-14 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440499,13,8.239999,'2007-09-14 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440500,13,8.25,'2007-09-14 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440501,13,8.25,'2007-09-14 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440502,13,8.25,'2007-09-14 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440503,13,8.25,'2007-09-14 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440504,13,8.244999,'2007-09-14 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440505,13,8.236667,'2007-09-14 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440506,13,8.221667,'2007-09-14 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440507,13,8.206667,'2007-09-14 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440508,13,8.193333,'2007-09-14 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440509,13,8.178333,'2007-09-14 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440510,13,8.168333,'2007-09-14 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440511,13,8.16,'2007-09-14 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440512,13,8.151668,'2007-09-14 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440513,13,8.150001,'2007-09-14 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440514,13,8.150001,'2007-09-14 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440515,13,8.150001,'2007-09-14 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440516,13,8.150001,'2007-09-14 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440517,13,8.16,'2007-09-14 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440518,13,8.16,'2007-09-15 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440519,13,8.16,'2007-09-15 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440520,13,8.16,'2007-09-15 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440521,13,8.16,'2007-09-15 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440522,13,8.16,'2007-09-15 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440523,13,8.168332,'2007-09-15 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440524,13,8.165,'2007-09-15 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440525,13,8.168332,'2007-09-15 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440526,13,8.169999,'2007-09-15 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440527,13,8.169999,'2007-09-15 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440528,13,8.169999,'2007-09-15 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440529,13,8.169999,'2007-09-15 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440530,13,8.168334,'2007-09-15 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440531,13,8.166667,'2007-09-15 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440532,13,8.161667,'2007-09-15 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440533,13,8.16,'2007-09-15 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440534,13,8.16,'2007-09-15 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440535,13,8.168332,'2007-09-15 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440536,13,8.173333,'2007-09-15 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440537,13,8.184999,'2007-09-15 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440538,13,8.196667,'2007-09-15 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440539,13,8.203333,'2007-09-15 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440540,13,8.213334,'2007-09-15 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440541,13,8.22,'2007-09-15 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440542,13,8.223333,'2007-09-15 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440543,13,8.23,'2007-09-15 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440544,13,8.235,'2007-09-15 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440545,13,8.239999,'2007-09-15 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440546,13,8.243333,'2007-09-15 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440547,13,8.25,'2007-09-15 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440548,13,8.25,'2007-09-15 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440549,13,8.251667,'2007-09-15 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440550,13,8.255,'2007-09-15 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440551,13,8.25,'2007-09-15 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440552,13,8.25,'2007-09-15 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440553,13,8.241666,'2007-09-15 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440554,13,8.233333,'2007-09-15 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440555,13,8.221667,'2007-09-15 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440556,13,8.205001,'2007-09-15 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440557,13,8.194999,'2007-09-15 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440558,13,8.183333,'2007-09-15 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440559,13,8.18,'2007-09-15 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440560,13,8.175,'2007-09-15 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440561,13,8.178333,'2007-09-15 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440562,13,8.175,'2007-09-15 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440563,13,8.178333,'2007-09-15 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440564,13,8.173333,'2007-09-15 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440565,13,8.18,'2007-09-15 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440566,13,8.176666,'2007-09-16 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440567,13,8.173333,'2007-09-16 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440568,13,8.171666,'2007-09-16 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440569,13,8.169999,'2007-09-16 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440570,13,8.169999,'2007-09-16 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440571,13,8.169999,'2007-09-16 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440572,13,8.169999,'2007-09-16 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440573,13,8.169999,'2007-09-16 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440574,13,8.169999,'2007-09-16 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440575,13,8.169999,'2007-09-16 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440576,13,8.161667,'2007-09-16 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440577,13,8.16,'2007-09-16 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440578,13,8.16,'2007-09-16 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440579,13,8.16,'2007-09-16 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440580,13,8.156667,'2007-09-16 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440581,13,8.16,'2007-09-16 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440582,13,8.161667,'2007-09-16 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440583,13,8.169999,'2007-09-16 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440584,13,8.181666,'2007-09-16 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440585,13,8.195001,'2007-09-16 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440586,13,8.213334,'2007-09-16 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440587,13,8.224999,'2007-09-16 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440588,13,8.236667,'2007-09-16 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440589,13,8.246667,'2007-09-16 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440590,13,8.256667,'2007-09-16 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440591,13,8.261667,'2007-09-16 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440592,13,8.271667,'2007-09-16 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440593,13,8.28,'2007-09-16 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440594,13,8.29,'2007-09-16 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440595,13,8.294999,'2007-09-16 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440596,13,8.304999,'2007-09-16 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440597,13,8.309999,'2007-09-16 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440598,13,8.311666,'2007-09-16 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440599,13,8.318333,'2007-09-16 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440600,13,8.311666,'2007-09-16 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440601,13,8.309999,'2007-09-16 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440602,13,8.303332,'2007-09-16 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440603,13,8.293334,'2007-09-16 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440604,13,8.278333,'2007-09-16 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440605,13,8.266667,'2007-09-16 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440606,13,8.253333,'2007-09-16 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440607,13,8.243333,'2007-09-16 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440608,13,8.239999,'2007-09-16 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440609,13,8.239999,'2007-09-16 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440610,13,8.239999,'2007-09-16 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440611,13,8.239999,'2007-09-16 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440612,13,8.239999,'2007-09-16 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440613,13,8.239999,'2007-09-16 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440614,13,8.239999,'2007-09-17 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440615,13,8.239999,'2007-09-17 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440616,13,8.239999,'2007-09-17 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440617,13,8.239999,'2007-09-17 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440618,13,8.239999,'2007-09-17 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440619,13,8.239999,'2007-09-17 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440620,13,8.239999,'2007-09-17 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440621,13,8.239999,'2007-09-17 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440622,13,8.239999,'2007-09-17 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440623,13,8.239999,'2007-09-17 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440624,13,8.243333,'2007-09-17 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440625,13,8.243333,'2007-09-17 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440626,13,8.246666,'2007-09-17 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440627,13,8.241666,'2007-09-17 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440628,13,8.239999,'2007-09-17 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440629,13,8.239999,'2007-09-17 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440630,13,8.25,'2007-09-17 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440631,13,8.251667,'2007-09-17 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440632,13,8.261667,'2007-09-17 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440633,13,8.273334,'2007-09-17 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440634,13,8.286667,'2007-09-17 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440635,13,8.298333,'2007-09-17 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440636,13,8.304999,'2007-09-17 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440637,13,8.313333,'2007-09-17 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440638,13,8.32,'2007-09-17 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440639,13,8.32,'2007-09-17 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440640,13,8.326667,'2007-09-17 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440641,13,8.330001,'2007-09-17 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440642,13,8.330001,'2007-09-17 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440643,13,8.333333,'2007-09-17 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440644,13,8.34,'2007-09-17 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440645,13,8.331668,'2007-09-17 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440646,13,8.338333,'2007-09-17 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440647,13,8.330001,'2007-09-17 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440648,13,8.321667,'2007-09-17 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440649,13,8.32,'2007-09-17 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440650,13,8.311666,'2007-09-17 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440651,13,8.3,'2007-09-17 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440652,13,8.291667,'2007-09-17 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440653,13,8.283333,'2007-09-17 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440654,13,8.278333,'2007-09-17 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440655,13,8.27,'2007-09-17 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440656,13,8.27,'2007-09-17 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440657,13,8.266667,'2007-09-17 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440658,13,8.263333,'2007-09-17 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440659,13,8.268333,'2007-09-17 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440660,13,8.266667,'2007-09-17 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440661,13,8.268333,'2007-09-17 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440662,13,8.27,'2007-09-18 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440663,13,8.27,'2007-09-18 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440664,13,8.27,'2007-09-18 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440665,13,8.27,'2007-09-18 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440666,13,8.27,'2007-09-18 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440667,13,8.27,'2007-09-18 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440668,13,8.27,'2007-09-18 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440669,13,8.27,'2007-09-18 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440670,13,8.27,'2007-09-18 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440671,13,8.265,'2007-09-18 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440672,13,8.265,'2007-09-18 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440673,13,8.260001,'2007-09-18 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440674,13,8.260001,'2007-09-18 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440675,13,8.260001,'2007-09-18 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440676,13,8.260001,'2007-09-18 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440677,13,8.260001,'2007-09-18 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440678,13,8.261667,'2007-09-18 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440679,13,8.27,'2007-09-18 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440680,13,8.278333,'2007-09-18 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440681,13,8.293333,'2007-09-18 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440682,13,8.306666,'2007-09-18 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440683,13,8.318333,'2007-09-18 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440684,13,8.326667,'2007-09-18 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440685,13,8.330001,'2007-09-18 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440686,13,8.330001,'2007-09-18 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440687,13,8.330001,'2007-09-18 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440688,13,8.330001,'2007-09-18 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440689,13,8.330001,'2007-09-18 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440690,13,8.335,'2007-09-18 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440691,13,8.336667,'2007-09-18 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440692,13,8.330001,'2007-09-18 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440693,13,8.330001,'2007-09-18 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440694,13,8.331668,'2007-09-18 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440695,13,8.326667,'2007-09-18 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440696,13,8.32,'2007-09-18 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440697,13,8.309999,'2007-09-18 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440698,13,8.304999,'2007-09-18 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440699,13,8.293334,'2007-09-18 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440700,13,8.28,'2007-09-18 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440701,13,8.27,'2007-09-18 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440702,13,8.256667,'2007-09-18 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440703,13,8.243333,'2007-09-18 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440704,13,8.239999,'2007-09-18 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440705,13,8.23,'2007-09-18 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440706,13,8.23,'2007-09-18 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440707,13,8.23,'2007-09-18 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440708,13,8.236667,'2007-09-18 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440709,13,8.239999,'2007-09-18 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440710,13,8.238333,'2007-09-19 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440711,13,8.231666,'2007-09-19 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440712,13,8.233333,'2007-09-19 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440713,13,8.233334,'2007-09-19 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440714,13,8.23,'2007-09-19 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440715,13,8.23,'2007-09-19 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440716,13,8.23,'2007-09-19 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440717,13,8.23,'2007-09-19 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440718,13,8.23,'2007-09-19 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440719,13,8.23,'2007-09-19 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440720,13,8.23,'2007-09-19 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440721,13,8.23,'2007-09-19 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440722,13,8.228333,'2007-09-19 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440723,13,8.221667,'2007-09-19 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440724,13,8.22,'2007-09-19 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440725,13,8.226666,'2007-09-19 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440726,13,8.23,'2007-09-19 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440727,13,8.23,'2007-09-19 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440728,13,8.243333,'2007-09-19 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440729,13,8.255001,'2007-09-19 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440730,13,8.263333,'2007-09-19 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440731,13,8.275,'2007-09-19 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440732,13,8.28,'2007-09-19 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440733,13,8.29,'2007-09-19 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440734,13,8.29,'2007-09-19 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440735,13,8.29,'2007-09-19 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440736,13,8.29,'2007-09-19 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440737,13,8.293333,'2007-09-19 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440738,13,8.3,'2007-09-19 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440739,13,8.301666,'2007-09-19 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440740,13,8.309999,'2007-09-19 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440741,13,8.308331,'2007-09-19 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440742,13,8.304999,'2007-09-19 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440743,13,8.3,'2007-09-19 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440744,13,8.29,'2007-09-19 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440745,13,8.281666,'2007-09-19 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440746,13,8.273334,'2007-09-19 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440747,13,8.260001,'2007-09-19 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440748,13,8.248333,'2007-09-19 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440749,13,8.238333,'2007-09-19 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440750,13,8.228333,'2007-09-19 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440751,13,8.22,'2007-09-19 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440752,13,8.213333,'2007-09-19 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440753,13,8.21,'2007-09-19 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440754,13,8.21,'2007-09-19 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440755,13,8.21,'2007-09-19 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440756,13,8.215,'2007-09-19 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440757,13,8.21,'2007-09-19 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440758,13,8.21,'2007-09-20 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440759,13,8.21,'2007-09-20 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440760,13,8.21,'2007-09-20 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440761,13,8.211667,'2007-09-20 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440762,13,8.21,'2007-09-20 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440763,13,8.21,'2007-09-20 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440764,13,8.21,'2007-09-20 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440765,13,8.21,'2007-09-20 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440766,13,8.21,'2007-09-20 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440767,13,8.208333,'2007-09-20 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440768,13,8.2,'2007-09-20 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440769,13,8.2,'2007-09-20 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440770,13,8.2,'2007-09-20 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440771,13,8.193333,'2007-09-20 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440772,13,8.19,'2007-09-20 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440773,13,8.19,'2007-09-20 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440774,13,8.195001,'2007-09-20 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440775,13,8.2,'2007-09-20 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440776,13,8.21,'2007-09-20 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440777,13,8.22,'2007-09-20 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440778,13,8.231667,'2007-09-20 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440779,13,8.239999,'2007-09-20 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440780,13,8.248333,'2007-09-20 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440781,13,8.255001,'2007-09-20 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440782,13,8.260001,'2007-09-20 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440783,13,8.260001,'2007-09-20 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440784,13,8.268333,'2007-09-20 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440785,13,8.268333,'2007-09-20 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440786,13,8.261668,'2007-09-20 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440787,13,8.265,'2007-09-20 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440788,13,8.28,'2007-09-20 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440789,13,8.28,'2007-09-20 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440790,13,8.276667,'2007-09-20 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440791,13,8.27,'2007-09-20 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440792,13,8.266667,'2007-09-20 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440793,13,8.256667,'2007-09-20 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440794,13,8.244999,'2007-09-20 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440795,13,8.233333,'2007-09-20 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440796,13,8.216666,'2007-09-20 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440797,13,8.203334,'2007-09-20 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440798,13,8.191666,'2007-09-20 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440799,13,8.185,'2007-09-20 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440800,13,8.18,'2007-09-20 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440801,13,8.18,'2007-09-20 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440802,13,8.18,'2007-09-20 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440803,13,8.18,'2007-09-20 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440804,13,8.18,'2007-09-20 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440805,13,8.18,'2007-09-20 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440806,13,8.18,'2007-09-21 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440807,13,8.18,'2007-09-21 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440808,13,8.184999,'2007-09-21 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440809,13,8.188333,'2007-09-21 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440810,13,8.19,'2007-09-21 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440811,13,8.19,'2007-09-21 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440812,13,8.19,'2007-09-21 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440813,13,8.19,'2007-09-21 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440814,13,8.19,'2007-09-21 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440815,13,8.191667,'2007-09-21 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440816,13,8.198334,'2007-09-21 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440817,13,8.196666,'2007-09-21 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440818,13,8.198333,'2007-09-21 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440819,13,8.191666,'2007-09-21 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440820,13,8.193334,'2007-09-21 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440821,13,8.198333,'2007-09-21 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440822,13,8.2,'2007-09-21 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440823,13,8.204999,'2007-09-21 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440824,13,8.218334,'2007-09-21 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440825,13,8.231667,'2007-09-21 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440826,13,8.246667,'2007-09-21 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440827,13,8.256667,'2007-09-21 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440828,13,8.266667,'2007-09-21 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440829,13,8.27,'2007-09-21 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440830,13,8.273334,'2007-09-21 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440831,13,8.273334,'2007-09-21 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440832,13,8.275,'2007-09-21 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440833,13,8.276666,'2007-09-21 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440834,13,8.28,'2007-09-21 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440835,13,8.28,'2007-09-21 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440836,13,8.28,'2007-09-21 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440837,13,8.28,'2007-09-21 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440838,13,8.271667,'2007-09-21 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440839,13,8.27,'2007-09-21 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440840,13,8.265,'2007-09-21 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440841,13,8.258334,'2007-09-21 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440842,13,8.244999,'2007-09-21 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440843,13,8.233333,'2007-09-21 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440844,13,8.214999,'2007-09-21 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440845,13,8.203334,'2007-09-21 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440846,13,8.191666,'2007-09-21 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440847,13,8.185,'2007-09-21 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440848,13,8.18,'2007-09-21 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440849,13,8.18,'2007-09-21 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440850,13,8.18,'2007-09-21 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440851,13,8.18,'2007-09-21 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440852,13,8.18,'2007-09-21 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440853,13,8.18,'2007-09-21 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440854,13,8.18,'2007-09-22 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440855,13,8.186666,'2007-09-22 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440856,13,8.188333,'2007-09-22 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440857,13,8.19,'2007-09-22 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440858,13,8.19,'2007-09-22 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440859,13,8.19,'2007-09-22 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440860,13,8.19,'2007-09-22 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440861,13,8.19,'2007-09-22 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440862,13,8.19,'2007-09-22 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440863,13,8.19,'2007-09-22 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440864,13,8.19,'2007-09-22 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440865,13,8.188333,'2007-09-22 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440866,13,8.18,'2007-09-22 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440867,13,8.18,'2007-09-22 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440868,13,8.18,'2007-09-22 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440869,13,8.176667,'2007-09-22 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440870,13,8.18,'2007-09-22 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440871,13,8.183333,'2007-09-22 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440872,13,8.191667,'2007-09-22 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440873,13,8.2,'2007-09-22 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440874,13,8.205,'2007-09-22 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440875,13,8.213334,'2007-09-22 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440876,13,8.22,'2007-09-22 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440877,13,8.22,'2007-09-22 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440878,13,8.223333,'2007-09-22 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440879,13,8.23,'2007-09-22 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440880,13,8.233333,'2007-09-22 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440881,13,8.233334,'2007-09-22 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440882,13,8.233333,'2007-09-22 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440883,13,8.23,'2007-09-22 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440884,13,8.218333,'2007-09-22 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440885,13,8.208333,'2007-09-22 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440886,13,8.201667,'2007-09-22 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440887,13,8.198333,'2007-09-22 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440888,13,8.19,'2007-09-22 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440889,13,8.19,'2007-09-22 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440890,13,8.183333,'2007-09-22 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440891,13,8.18,'2007-09-22 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440892,13,8.169999,'2007-09-22 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440893,13,8.166667,'2007-09-22 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440894,13,8.16,'2007-09-22 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440895,13,8.16,'2007-09-22 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440896,13,8.16,'2007-09-22 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440897,13,8.16,'2007-09-22 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440898,13,8.16,'2007-09-22 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440899,13,8.161667,'2007-09-22 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440900,13,8.161666,'2007-09-22 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440901,13,8.166667,'2007-09-22 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440902,13,8.161667,'2007-09-23 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440903,13,8.168333,'2007-09-23 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440904,13,8.169999,'2007-09-23 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440905,13,8.169999,'2007-09-23 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440906,13,8.169999,'2007-09-23 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440907,13,8.169999,'2007-09-23 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440908,13,8.171666,'2007-09-23 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440909,13,8.178333,'2007-09-23 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440910,13,8.18,'2007-09-23 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440911,13,8.18,'2007-09-23 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440912,13,8.18,'2007-09-23 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440913,13,8.18,'2007-09-23 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440914,13,8.18,'2007-09-23 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440915,13,8.173333,'2007-09-23 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440916,13,8.169999,'2007-09-23 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440917,13,8.169999,'2007-09-23 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440918,13,8.169999,'2007-09-23 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440919,13,8.169999,'2007-09-23 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440920,13,8.181666,'2007-09-23 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440921,13,8.188333,'2007-09-23 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440922,13,8.195001,'2007-09-23 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440923,13,8.21,'2007-09-23 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440924,13,8.211667,'2007-09-23 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440925,13,8.22,'2007-09-23 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440926,13,8.213333,'2007-09-23 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440927,13,8.218334,'2007-09-23 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440928,13,8.225,'2007-09-23 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440929,13,8.215,'2007-09-23 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440930,13,8.224999,'2007-09-23 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440931,13,8.23,'2007-09-23 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440932,13,8.228333,'2007-09-23 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440933,13,8.233333,'2007-09-23 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440934,13,8.23,'2007-09-23 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440935,13,8.216667,'2007-09-23 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440936,13,8.214999,'2007-09-23 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440937,13,8.203334,'2007-09-23 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440938,13,8.193333,'2007-09-23 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440939,13,8.19,'2007-09-23 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440940,13,8.183333,'2007-09-23 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440941,13,8.18,'2007-09-23 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440942,13,8.18,'2007-09-23 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440943,13,8.173333,'2007-09-23 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440944,13,8.169999,'2007-09-23 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440945,13,8.171666,'2007-09-23 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440946,13,8.18,'2007-09-23 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440947,13,8.18,'2007-09-23 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440948,13,8.18,'2007-09-23 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440949,13,8.175,'2007-09-23 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440950,13,8.173333,'2007-09-24 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440951,13,8.184999,'2007-09-24 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15440952,13,8.188333,'2007-09-24 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15440953,13,8.19,'2007-09-24 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15440954,13,8.19,'2007-09-24 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15440955,13,8.19,'2007-09-24 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15440956,13,8.196667,'2007-09-24 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15440957,13,8.196667,'2007-09-24 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15440958,13,8.195,'2007-09-24 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15440959,13,8.193333,'2007-09-24 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15440960,13,8.19,'2007-09-24 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15440961,13,8.19,'2007-09-24 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15440962,13,8.186666,'2007-09-24 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15440963,13,8.184999,'2007-09-24 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15440964,13,8.18,'2007-09-24 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15440965,13,8.18,'2007-09-24 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15440966,13,8.181666,'2007-09-24 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15440967,13,8.186666,'2007-09-24 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15440968,13,8.181666,'2007-09-24 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15440969,13,8.186666,'2007-09-24 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15440970,13,8.216667,'2007-09-24 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15440971,13,8.223333,'2007-09-24 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15440972,13,8.231667,'2007-09-24 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15440973,13,8.243333,'2007-09-24 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15440974,13,8.241666,'2007-09-24 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15440975,13,8.245,'2007-09-24 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15440976,13,8.253334,'2007-09-24 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15440977,13,8.256667,'2007-09-24 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15440978,13,8.258334,'2007-09-24 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15440979,13,8.255,'2007-09-24 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15440980,13,8.246666,'2007-09-24 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15440981,13,8.239999,'2007-09-24 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15440982,13,8.233334,'2007-09-24 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15440983,13,8.239999,'2007-09-24 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15440984,13,8.246667,'2007-09-24 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15440985,13,8.251667,'2007-09-24 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15440986,13,8.246666,'2007-09-24 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15440987,13,8.239999,'2007-09-24 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15440988,13,8.231667,'2007-09-24 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15440989,13,8.225,'2007-09-24 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15440990,13,8.22,'2007-09-24 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15440991,13,8.22,'2007-09-24 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15440992,13,8.22,'2007-09-24 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15440993,13,8.22,'2007-09-24 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15440994,13,8.22,'2007-09-24 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15440995,13,8.223334,'2007-09-24 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15440996,13,8.22,'2007-09-24 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15440997,13,8.22,'2007-09-24 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15440998,13,8.22,'2007-09-25 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15440999,13,8.22,'2007-09-25 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15441000,13,8.22,'2007-09-25 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15441001,13,8.223334,'2007-09-25 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15441002,13,8.22,'2007-09-25 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15441003,13,8.22,'2007-09-25 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15441004,13,8.225,'2007-09-25 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15441005,13,8.223333,'2007-09-25 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15441006,13,8.228333,'2007-09-25 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15441007,13,8.224999,'2007-09-25 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15441008,13,8.228333,'2007-09-25 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15441009,13,8.228333,'2007-09-25 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15441010,13,8.225,'2007-09-25 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15441011,13,8.216667,'2007-09-25 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15441012,13,8.221667,'2007-09-25 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15441013,13,8.226666,'2007-09-25 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15441014,13,8.238332,'2007-09-25 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15441015,13,8.25,'2007-09-25 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15441016,13,8.266667,'2007-09-25 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15441017,13,8.283334,'2007-09-25 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15441018,13,8.296666,'2007-09-25 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15441019,13,8.308333,'2007-09-25 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15441020,13,8.316667,'2007-09-25 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15441021,13,8.326667,'2007-09-25 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15441022,13,8.330001,'2007-09-25 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15441023,13,8.330001,'2007-09-25 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15441024,13,8.331667,'2007-09-25 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15441025,13,8.331668,'2007-09-25 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15441026,13,8.330001,'2007-09-25 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15441027,13,8.34,'2007-09-25 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15441028,13,8.34,'2007-09-25 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15441029,13,8.34,'2007-09-25 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15441030,13,8.34,'2007-09-25 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15441031,13,8.34,'2007-09-25 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15441032,13,8.34,'2007-09-25 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15441033,13,8.335,'2007-09-25 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15441034,13,8.326667,'2007-09-25 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15441035,13,8.316666,'2007-09-25 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15441036,13,8.304999,'2007-09-25 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15441037,13,8.293334,'2007-09-25 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15441038,13,8.288333,'2007-09-25 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15441039,13,8.28,'2007-09-25 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15441040,13,8.28,'2007-09-25 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15441041,13,8.28,'2007-09-25 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15441042,13,8.286667,'2007-09-25 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15441043,13,8.286667,'2007-09-25 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15441044,13,8.288334,'2007-09-25 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15441045,13,8.29,'2007-09-25 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15441046,13,8.29,'2007-09-26 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15441047,13,8.29,'2007-09-26 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15441048,13,8.29,'2007-09-26 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15441049,13,8.29,'2007-09-26 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15441050,13,8.291667,'2007-09-26 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15441051,13,8.29,'2007-09-26 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15441052,13,8.29,'2007-09-26 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15441053,13,8.29,'2007-09-26 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15441054,13,8.29,'2007-09-26 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15441055,13,8.286666,'2007-09-26 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15441056,13,8.278333,'2007-09-26 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15441057,13,8.268334,'2007-09-26 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15441058,13,8.268333,'2007-09-26 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15441059,13,8.268333,'2007-09-26 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15441060,13,8.265,'2007-09-26 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15441061,13,8.27,'2007-09-26 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15441062,13,8.275,'2007-09-26 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15441063,13,8.28,'2007-09-26 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15441064,13,8.285001,'2007-09-26 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15441065,13,8.296666,'2007-09-26 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15441066,13,8.308333,'2007-09-26 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15441067,13,8.313333,'2007-09-26 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15441068,13,8.32,'2007-09-26 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15441069,13,8.32,'2007-09-26 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15441070,13,8.32,'2007-09-26 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15441071,13,8.32,'2007-09-26 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15441072,13,8.316667,'2007-09-26 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15441073,13,8.32,'2007-09-26 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15441074,13,8.25,'2007-09-26 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15441075,13,8.258334,'2007-09-26 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15441076,13,8.276666,'2007-09-26 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15441077,13,8.286667,'2007-09-26 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15441078,13,8.29,'2007-09-26 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15441079,13,8.29,'2007-09-26 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15441080,13,8.29,'2007-09-26 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15441081,13,8.28,'2007-09-26 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15441082,13,8.275001,'2007-09-26 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15441083,13,8.265,'2007-09-26 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15441084,13,8.251667,'2007-09-26 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15441085,13,8.246666,'2007-09-26 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15441086,13,8.239999,'2007-09-26 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15441087,13,8.239999,'2007-09-26 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15441088,13,8.239999,'2007-09-26 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15441089,13,8.239999,'2007-09-26 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15441090,13,8.245,'2007-09-26 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15441091,13,8.246667,'2007-09-26 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15441092,13,8.25,'2007-09-26 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15441093,13,8.25,'2007-09-26 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15441094,13,8.251667,'2007-09-27 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15441095,13,8.260001,'2007-09-27 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15441096,13,8.260001,'2007-09-27 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15441097,13,8.260001,'2007-09-27 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15441098,13,8.260001,'2007-09-27 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15441099,13,8.260001,'2007-09-27 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15441100,13,8.260001,'2007-09-27 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15441101,13,8.260001,'2007-09-27 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15441102,13,8.260001,'2007-09-27 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15441103,13,8.260001,'2007-09-27 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15441104,13,8.260001,'2007-09-27 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15441105,13,8.260001,'2007-09-27 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15441106,13,8.260001,'2007-09-27 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15441107,13,8.260001,'2007-09-27 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15441108,13,8.258334,'2007-09-27 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15441109,13,8.25,'2007-09-27 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15441110,13,8.260001,'2007-09-27 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15441111,13,8.263333,'2007-09-27 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15441112,13,8.271667,'2007-09-27 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15441113,13,8.283334,'2007-09-27 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15441114,13,8.294999,'2007-09-27 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15441115,13,8.303333,'2007-09-27 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15441116,13,8.309999,'2007-09-27 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15441117,13,8.311666,'2007-09-27 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15441118,13,8.32,'2007-09-27 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15441119,13,8.32,'2007-09-27 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15441120,13,8.32,'2007-09-27 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15441121,13,8.32,'2007-09-27 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15441122,13,8.32,'2007-09-27 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15441123,13,8.315,'2007-09-27 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15441124,13,8.311666,'2007-09-27 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15441125,13,8.313333,'2007-09-27 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15441126,13,8.309999,'2007-09-27 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15441127,13,8.309999,'2007-09-27 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15441128,13,8.301666,'2007-09-27 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15441129,13,8.295001,'2007-09-27 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15441130,13,8.284999,'2007-09-27 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15441131,13,8.271667,'2007-09-27 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15441132,13,8.258334,'2007-09-27 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15441133,13,8.25,'2007-09-27 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15441134,13,8.241666,'2007-09-27 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15441135,13,8.239999,'2007-09-27 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15441136,13,8.239999,'2007-09-27 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15441137,13,8.239999,'2007-09-27 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15441138,13,8.239999,'2007-09-27 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15441139,13,8.239999,'2007-09-27 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15441140,13,8.239999,'2007-09-27 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15441141,13,8.239999,'2007-09-27 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15441142,13,8.239999,'2007-09-28 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15441143,13,8.239999,'2007-09-28 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15441144,13,8.239999,'2007-09-28 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15441145,13,8.239999,'2007-09-28 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15441146,13,8.239999,'2007-09-28 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15441147,13,8.231667,'2007-09-28 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15441148,13,8.23,'2007-09-28 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15441149,13,8.22,'2007-09-28 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15441150,13,8.22,'2007-09-28 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15441151,13,8.213333,'2007-09-28 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15441152,13,8.211667,'2007-09-28 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15441153,13,8.21,'2007-09-28 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15441154,13,8.21,'2007-09-28 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15441155,13,8.21,'2007-09-28 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15441156,13,8.21,'2007-09-28 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15441157,13,8.21,'2007-09-28 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15441158,13,8.215001,'2007-09-28 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15441159,13,8.223333,'2007-09-28 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15441160,13,8.235,'2007-09-28 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15441161,13,8.246667,'2007-09-28 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15441162,13,8.265,'2007-09-28 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15441163,13,8.285001,'2007-09-28 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15441164,13,8.291667,'2007-09-28 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15441165,13,8.3,'2007-09-28 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15441166,13,8.304999,'2007-09-28 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15441167,13,8.318333,'2007-09-28 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15441168,13,8.326667,'2007-09-28 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15441169,13,8.330001,'2007-09-28 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15441170,13,8.336667,'2007-09-28 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15441171,13,8.34,'2007-09-28 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15441172,13,8.34,'2007-09-28 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15441173,13,8.338333,'2007-09-28 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15441174,13,8.330001,'2007-09-28 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15441175,13,8.330001,'2007-09-28 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15441176,13,8.321667,'2007-09-28 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15441177,13,8.313333,'2007-09-28 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15441178,13,8.303332,'2007-09-28 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15441179,13,8.291667,'2007-09-28 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15441180,13,8.28,'2007-09-28 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15441181,13,8.271667,'2007-09-28 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15441182,13,8.27,'2007-09-28 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15441183,13,8.27,'2007-09-28 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15441184,13,8.27,'2007-09-28 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15441185,13,8.27,'2007-09-28 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15441186,13,8.27,'2007-09-28 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15441187,13,8.268333,'2007-09-28 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15441188,13,8.260001,'2007-09-28 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15441189,13,8.260001,'2007-09-28 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15441190,13,8.260001,'2007-09-29 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15441191,13,8.253333,'2007-09-29 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15441192,13,8.25,'2007-09-29 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15441193,13,8.251667,'2007-09-29 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15441194,13,8.25,'2007-09-29 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15441195,13,8.25,'2007-09-29 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15441196,13,8.241666,'2007-09-29 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15441197,13,8.236667,'2007-09-29 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15441198,13,8.23,'2007-09-29 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15441199,13,8.23,'2007-09-29 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15441200,13,8.23,'2007-09-29 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15441201,13,8.23,'2007-09-29 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15441202,13,8.238332,'2007-09-29 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15441203,13,8.23,'2007-09-29 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15441204,13,8.231667,'2007-09-29 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15441205,13,8.236667,'2007-09-29 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15441206,13,8.236667,'2007-09-29 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15441207,13,8.238332,'2007-09-29 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15441208,13,8.246667,'2007-09-29 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15441209,13,8.255001,'2007-09-29 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15441210,13,8.261667,'2007-09-29 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15441211,13,8.27,'2007-09-29 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15441212,13,8.278333,'2007-09-29 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15441213,13,8.293333,'2007-09-29 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15441214,13,8.3,'2007-09-29 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15441215,13,8.306666,'2007-09-29 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15441216,13,8.316667,'2007-09-29 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15441217,13,8.325,'2007-09-29 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15441218,13,8.32,'2007-09-29 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15441219,13,8.330001,'2007-09-29 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15441220,13,8.330001,'2007-09-29 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15441221,13,8.330001,'2007-09-29 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15441222,13,8.330001,'2007-09-29 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15441223,13,8.328334,'2007-09-29 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15441224,13,8.316666,'2007-09-29 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15441225,13,8.303332,'2007-09-29 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15441226,13,8.293334,'2007-09-29 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15441227,13,8.28,'2007-09-29 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15441228,13,8.27,'2007-09-29 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15441229,13,8.261668,'2007-09-29 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15441230,13,8.260001,'2007-09-29 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15441231,13,8.260001,'2007-09-29 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15441232,13,8.258334,'2007-09-29 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15441233,13,8.258334,'2007-09-29 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15441234,13,8.260001,'2007-09-29 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15441235,13,8.260001,'2007-09-29 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15441236,13,8.260001,'2007-09-29 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15441237,13,8.260001,'2007-09-29 23:30:00.000000',-7,'Not censored','Unknown',30,102),(15441238,13,8.260001,'2007-09-30 00:00:00.000000',-7,'Not censored','Unknown',30,102),(15441239,13,8.268333,'2007-09-30 00:30:00.000000',-7,'Not censored','Unknown',30,102),(15441240,13,8.27,'2007-09-30 01:00:00.000000',-7,'Not censored','Unknown',30,102),(15441241,13,8.27,'2007-09-30 01:30:00.000000',-7,'Not censored','Unknown',30,102),(15441242,13,8.27,'2007-09-30 02:00:00.000000',-7,'Not censored','Unknown',30,102),(15441243,13,8.273334,'2007-09-30 02:30:00.000000',-7,'Not censored','Unknown',30,102),(15441244,13,8.28,'2007-09-30 03:00:00.000000',-7,'Not censored','Unknown',30,102),(15441245,13,8.28,'2007-09-30 03:30:00.000000',-7,'Not censored','Unknown',30,102),(15441246,13,8.28,'2007-09-30 04:00:00.000000',-7,'Not censored','Unknown',30,102),(15441247,13,8.28,'2007-09-30 04:30:00.000000',-7,'Not censored','Unknown',30,102),(15441248,13,8.278333,'2007-09-30 05:00:00.000000',-7,'Not censored','Unknown',30,102),(15441249,13,8.275001,'2007-09-30 05:30:00.000000',-7,'Not censored','Unknown',30,102),(15441250,13,8.27,'2007-09-30 06:00:00.000000',-7,'Not censored','Unknown',30,102),(15441251,13,8.27,'2007-09-30 06:30:00.000000',-7,'Not censored','Unknown',30,102),(15441252,13,8.271667,'2007-09-30 07:00:00.000000',-7,'Not censored','Unknown',30,102),(15441253,13,8.28,'2007-09-30 07:30:00.000000',-7,'Not censored','Unknown',30,102),(15441254,13,8.288334,'2007-09-30 08:00:00.000000',-7,'Not censored','Unknown',30,102),(15441255,13,8.303332,'2007-09-30 08:30:00.000000',-7,'Not censored','Unknown',30,102),(15441256,13,8.325001,'2007-09-30 09:00:00.000000',-7,'Not censored','Unknown',30,102),(15441257,13,8.345,'2007-09-30 09:30:00.000000',-7,'Not censored','Unknown',30,102),(15441258,13,8.358334,'2007-09-30 10:00:00.000000',-7,'Not censored','Unknown',30,102),(15441259,13,8.37,'2007-09-30 10:30:00.000000',-7,'Not censored','Unknown',30,102),(15441260,13,8.38,'2007-09-30 11:00:00.000000',-7,'Not censored','Unknown',30,102),(15441261,13,8.388333,'2007-09-30 11:30:00.000000',-7,'Not censored','Unknown',30,102),(15441262,13,8.39,'2007-09-30 12:00:00.000000',-7,'Not censored','Unknown',30,102),(15441263,13,8.395,'2007-09-30 12:30:00.000000',-7,'Not censored','Unknown',30,102),(15441264,13,8.400001,'2007-09-30 13:00:00.000000',-7,'Not censored','Unknown',30,102),(15441265,13,8.400001,'2007-09-30 13:30:00.000000',-7,'Not censored','Unknown',30,102),(15441266,13,8.400001,'2007-09-30 14:00:00.000000',-7,'Not censored','Unknown',30,102),(15441267,13,8.400001,'2007-09-30 14:30:00.000000',-7,'Not censored','Unknown',30,102),(15441268,13,8.400001,'2007-09-30 15:00:00.000000',-7,'Not censored','Unknown',30,102),(15441269,13,8.401668,'2007-09-30 15:30:00.000000',-7,'Not censored','Unknown',30,102),(15441270,13,8.401668,'2007-09-30 16:00:00.000000',-7,'Not censored','Unknown',30,102),(15441271,13,8.400001,'2007-09-30 16:30:00.000000',-7,'Not censored','Unknown',30,102),(15441272,13,8.396667,'2007-09-30 17:00:00.000000',-7,'Not censored','Unknown',30,102),(15441273,13,8.385001,'2007-09-30 17:30:00.000000',-7,'Not censored','Unknown',30,102),(15441274,13,8.373333,'2007-09-30 18:00:00.000000',-7,'Not censored','Unknown',30,102),(15441275,13,8.356667,'2007-09-30 18:30:00.000000',-7,'Not censored','Unknown',30,102),(15441276,13,8.338334,'2007-09-30 19:00:00.000000',-7,'Not censored','Unknown',30,102),(15441277,13,8.323333,'2007-09-30 19:30:00.000000',-7,'Not censored','Unknown',30,102),(15441278,13,8.311666,'2007-09-30 20:00:00.000000',-7,'Not censored','Unknown',30,102),(15441279,13,8.308332,'2007-09-30 20:30:00.000000',-7,'Not censored','Unknown',30,102),(15441280,13,8.3,'2007-09-30 21:00:00.000000',-7,'Not censored','Unknown',30,102),(15441281,13,8.3,'2007-09-30 21:30:00.000000',-7,'Not censored','Unknown',30,102),(15441282,13,8.3,'2007-09-30 22:00:00.000000',-7,'Not censored','Unknown',30,102),(15441283,13,8.3,'2007-09-30 22:30:00.000000',-7,'Not censored','Unknown',30,102),(15441284,13,8.3,'2007-09-30 23:00:00.000000',-7,'Not censored','Unknown',30,102),(15441285,13,8.3,'2007-09-30 23:30:00.000000',-7,'Not censored','Unknown',30,102); +/*!40000 ALTER TABLE `TimeSeriesResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `TimeSeriesResults` +-- + +DROP TABLE IF EXISTS `TimeSeriesResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TimeSeriesResults` ( + `ResultID` bigint(20) NOT NULL, + `XLocation` double DEFAULT NULL, + `XLocationUnitsID` int(11) DEFAULT NULL, + `YLocation` double DEFAULT NULL, + `YLocationUnitsID` int(11) DEFAULT NULL, + `ZLocation` double DEFAULT NULL, + `ZLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedTimeSpacing` double DEFAULT NULL, + `IntendedTimeSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_TimeSeriesResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_TimeSeriesResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_TimeSeriesResults_TUnits` (`IntendedTimeSpacingUnitsID`), + KEY `fk_TimeSeriesResults_XUnits` (`XLocationUnitsID`), + KEY `fk_TimeSeriesResults_YUnits` (`YLocationUnitsID`), + KEY `fk_TimeSeriesResults_ZUnits` (`ZLocationUnitsID`), + CONSTRAINT `fk_TimeSeriesResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResults_TUnits` FOREIGN KEY (`IntendedTimeSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResults_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResults_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TimeSeriesResults_ZUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TimeSeriesResults` +-- + +/*!40000 ALTER TABLE `TimeSeriesResults` DISABLE KEYS */; +INSERT INTO `TimeSeriesResults` VALUES (1,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(2,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(3,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Variance'),(4,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Median'),(5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Best easy systematic estimator'),(6,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(7,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maximum'),(8,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Continuous'),(9,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(11,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(12,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(13,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(14,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(15,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(22,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(23,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Median'),(24,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Median'),(28,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(29,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Incremental'),(31,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(32,NULL,NULL,NULL,NULL,2,52,229,NULL,NULL,'Average'),(33,NULL,NULL,NULL,NULL,2,52,229,NULL,NULL,'Average'),(34,NULL,NULL,NULL,NULL,2,52,229,NULL,NULL,'Standard deviation'),(35,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Continuous'),(36,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(37,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(38,NULL,NULL,NULL,NULL,2.44,52,229,NULL,NULL,'Average'),(39,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maximum'),(41,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(42,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(43,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(44,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Incremental'),(45,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Incremental'),(46,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(47,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(48,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(49,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(50,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(51,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(52,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(53,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maximum'),(54,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maximum'),(55,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Average'),(56,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Minimum'),(57,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'Maximum'),(58,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(59,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(60,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(61,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(62,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(63,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(64,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(65,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(66,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(67,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(68,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(69,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(70,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(71,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(72,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(73,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(74,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(75,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(76,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(77,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(78,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(79,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(80,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(81,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(82,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(83,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(84,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(85,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(86,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(87,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(88,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(89,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(90,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(91,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(92,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(93,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(94,NULL,NULL,NULL,NULL,2,47,230,NULL,NULL,'Average'),(95,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(96,NULL,NULL,NULL,NULL,4,47,230,NULL,NULL,'Average'),(97,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(98,NULL,NULL,NULL,NULL,8,47,230,NULL,NULL,'Average'),(99,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(100,NULL,NULL,NULL,NULL,20,47,230,NULL,NULL,'Average'),(101,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'),(102,NULL,NULL,NULL,NULL,40,47,230,NULL,NULL,'Average'); +/*!40000 ALTER TABLE `TimeSeriesResults` ENABLE KEYS */; + +-- +-- Table structure for table `TrajectoryResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `TrajectoryResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TrajectoryResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_TrajectoryResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_TrajectoryResultValueAnnotations_TrajectoryResultValues` (`ValueID`), + CONSTRAINT `fk_TrajectoryResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValueAnnotations_TrajectoryResultValues` FOREIGN KEY (`ValueID`) REFERENCES `TrajectoryResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TrajectoryResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `TrajectoryResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `TrajectoryResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `TrajectoryResultValues` +-- + +DROP TABLE IF EXISTS `TrajectoryResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TrajectoryResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` int(11) NOT NULL, + `XLocation` double NOT NULL, + `XLocationUnitsID` int(11) NOT NULL, + `YLocation` double NOT NULL, + `YLocationUnitsID` int(11) NOT NULL, + `ZLocation` double NOT NULL, + `ZLocationUnitsID` int(11) NOT NULL, + `TrajectoryDistance` double NOT NULL, + `TrajectoryDistanceAggregationInterval` double NOT NULL, + `TrajectoryDistanceUnitsID` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_TrajectoryResultValues_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_TrajectoryResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_TrajectoryResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_TrajectoryResultValues_DistanceUnits` (`TrajectoryDistanceUnitsID`), + KEY `fk_TrajectoryResultValues_TrajectoryResults` (`ResultID`), + KEY `fk_TrajectoryResultValues_XUnits` (`XLocationUnitsID`), + KEY `fk_TrajectoryResultValues_YUnits` (`YLocationUnitsID`), + KEY `fk_TrajectoryResultValues_ZUnits` (`ZLocationUnitsID`), + CONSTRAINT `fk_TrajectoryResultValues_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_DistanceUnits` FOREIGN KEY (`TrajectoryDistanceUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_TrajectoryResults` FOREIGN KEY (`ResultID`) REFERENCES `TrajectoryResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResultValues_ZUnits` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TrajectoryResultValues` +-- + +/*!40000 ALTER TABLE `TrajectoryResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `TrajectoryResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `TrajectoryResults` +-- + +DROP TABLE IF EXISTS `TrajectoryResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TrajectoryResults` ( + `ResultID` bigint(20) NOT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedTrajectorySpacing` double DEFAULT NULL, + `IntendedTrajectorySpacingUnitsID` int(11) DEFAULT NULL, + `IntendedTimeSpacing` double DEFAULT NULL, + `IntendedTimeSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_TrajectoryResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_TrajectoryResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_TrajectoryResults_TSUnits` (`IntendedTrajectorySpacingUnitsID`), + KEY `fk_TrajectoryResults_TUnits` (`IntendedTimeSpacingUnitsID`), + CONSTRAINT `fk_TrajectoryResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResults_TSUnits` FOREIGN KEY (`IntendedTrajectorySpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TrajectoryResults_TUnits` FOREIGN KEY (`IntendedTimeSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TrajectoryResults` +-- + +/*!40000 ALTER TABLE `TrajectoryResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `TrajectoryResults` ENABLE KEYS */; + +-- +-- Table structure for table `TransectResultValueAnnotations` +-- + +DROP TABLE IF EXISTS `TransectResultValueAnnotations`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TransectResultValueAnnotations` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `ValueID` bigint(20) NOT NULL, + `AnnotationID` int(11) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_TransectResultValueAnnotations_Annotations` (`AnnotationID`), + KEY `fk_TransectResultValueAnnotations_TransectResultValues` (`ValueID`), + CONSTRAINT `fk_TransectResultValueAnnotations_Annotations` FOREIGN KEY (`AnnotationID`) REFERENCES `Annotations` (`AnnotationID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValueAnnotations_TransectResultValues` FOREIGN KEY (`ValueID`) REFERENCES `TransectResultValues` (`ValueID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TransectResultValueAnnotations` +-- + +/*!40000 ALTER TABLE `TransectResultValueAnnotations` DISABLE KEYS */; +/*!40000 ALTER TABLE `TransectResultValueAnnotations` ENABLE KEYS */; + +-- +-- Table structure for table `TransectResultValues` +-- + +DROP TABLE IF EXISTS `TransectResultValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TransectResultValues` ( + `ValueID` bigint(20) NOT NULL AUTO_INCREMENT, + `ResultID` bigint(20) NOT NULL, + `DataValue` double NOT NULL, + `ValueDateTime` datetime NOT NULL, + `ValueDateTimeUTCOffset` datetime NOT NULL, + `XLocation` double NOT NULL, + `XLocationUnitsID` int(11) NOT NULL, + `YLocation` double NOT NULL, + `YLocationUnitsID` int(11) NOT NULL, + `TransectDistance` double NOT NULL, + `TransectDistanceAggregationInterval` double NOT NULL, + `TransectDistanceUnitsID` int(11) NOT NULL, + `CensorCodeCV` varchar(255) NOT NULL, + `QualityCodeCV` varchar(255) NOT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + `TimeAggregationInterval` double NOT NULL, + `TimeAggregationIntervalUnitsID` int(11) NOT NULL, + PRIMARY KEY (`ValueID`), + KEY `fk_TransectResultValues_AIUnits` (`TimeAggregationIntervalUnitsID`), + KEY `fk_TransectResultValues_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_TransectResultValues_CV_CensorCode` (`CensorCodeCV`), + KEY `fk_TransectResultValues_CV_QualityCode` (`QualityCodeCV`), + KEY `fk_TransectResultValues_DistanceUnits` (`TransectDistanceUnitsID`), + KEY `fk_TransectResultValues_TransectResults` (`ResultID`), + KEY `fk_TransectResultValues_XUnits` (`XLocationUnitsID`), + KEY `fk_TransectResultValues_YUnits` (`YLocationUnitsID`), + CONSTRAINT `fk_TransectResultValues_AIUnits` FOREIGN KEY (`TimeAggregationIntervalUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_CV_CensorCode` FOREIGN KEY (`CensorCodeCV`) REFERENCES `CV_CensorCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_CV_QualityCode` FOREIGN KEY (`QualityCodeCV`) REFERENCES `CV_QualityCode` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_DistanceUnits` FOREIGN KEY (`TransectDistanceUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_TransectResults` FOREIGN KEY (`ResultID`) REFERENCES `TransectResults` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_XUnits` FOREIGN KEY (`XLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResultValues_YUnits` FOREIGN KEY (`YLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TransectResultValues` +-- + +/*!40000 ALTER TABLE `TransectResultValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `TransectResultValues` ENABLE KEYS */; + +-- +-- Table structure for table `TransectResults` +-- + +DROP TABLE IF EXISTS `TransectResults`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `TransectResults` ( + `ResultID` bigint(20) NOT NULL, + `ZLocation` double DEFAULT NULL, + `ZLocationUnitsID` int(11) DEFAULT NULL, + `SpatialReferenceID` int(11) DEFAULT NULL, + `IntendedTransectSpacing` double DEFAULT NULL, + `IntendedTransectSpacingUnitsID` int(11) DEFAULT NULL, + `IntendedTimeSpacing` double DEFAULT NULL, + `IntendedTimeSpacingUnitsID` int(11) DEFAULT NULL, + `AggregationStatisticCV` varchar(255) NOT NULL, + PRIMARY KEY (`ResultID`), + KEY `fk_TransectResults_CV_AggregationStatistic` (`AggregationStatisticCV`), + KEY `fk_TransectResults_SpatialReferences` (`SpatialReferenceID`), + KEY `fk_TransectResults_TMUnits` (`IntendedTimeSpacingUnitsID`), + KEY `fk_TransectResults_TSUnits` (`IntendedTransectSpacingUnitsID`), + KEY `fk_TransectResults_Units` (`ZLocationUnitsID`), + CONSTRAINT `fk_TransectResults_CV_AggregationStatistic` FOREIGN KEY (`AggregationStatisticCV`) REFERENCES `CV_AggregationStatistic` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResults_Results` FOREIGN KEY (`ResultID`) REFERENCES `Results` (`ResultID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResults_SpatialReferences` FOREIGN KEY (`SpatialReferenceID`) REFERENCES `SpatialReferences` (`SpatialReferenceID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResults_TMUnits` FOREIGN KEY (`IntendedTimeSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResults_TSUnits` FOREIGN KEY (`IntendedTransectSpacingUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_TransectResults_Units` FOREIGN KEY (`ZLocationUnitsID`) REFERENCES `Units` (`UnitsID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `TransectResults` +-- + +/*!40000 ALTER TABLE `TransectResults` DISABLE KEYS */; +/*!40000 ALTER TABLE `TransectResults` ENABLE KEYS */; + +-- +-- Table structure for table `Units` +-- + +DROP TABLE IF EXISTS `Units`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Units` ( + `UnitsID` int(11) NOT NULL AUTO_INCREMENT, + `UnitsTypeCV` varchar(255) NOT NULL, + `UnitsAbbreviation` varchar(50) NOT NULL, + `UnitsName` varchar(255) NOT NULL, + `UnitsLink` varchar(255) DEFAULT NULL, + PRIMARY KEY (`UnitsID`), + KEY `fk_Units_CV_UnitsType` (`UnitsTypeCV`), + CONSTRAINT `fk_Units_CV_UnitsType` FOREIGN KEY (`UnitsTypeCV`) REFERENCES `CV_UnitsType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=269 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Units` +-- + +/*!40000 ALTER TABLE `Units` DISABLE KEYS */; +INSERT INTO `Units` VALUES (1,'Dimensionless','%','percent','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(2,'Angle','deg','degree','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(33,'Energy flux','W/m^2','watts per square meter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(35,'Volumetric flow rate','cfs','cubic feet per second','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(47,'Length','cm','centimeter ','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(48,'Length','ft','international foot','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(52,'Length','m','meter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(54,'Length','mm','millimeter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(86,'Pressure or stress','mm Hg','millimeter of mercury','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(96,'Temperature','degC','degree celsius','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(97,'Temperature','degF','degree fahrenheit','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(100,'Time','s','second','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(102,'Time','min','minute','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(103,'Time','hr','hour','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(104,'Time','d','day','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(119,'Linear velocity','m/s','meters per second','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(137,'Dimensionless','-','dimensionless','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(144,'Energy per area','MJ/m^2','megajoules per square meter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(168,'Electromotive force','V','volts','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(192,'Electrical conductivity','uS/cm','microsiemens per centimeter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(199,'Concentration or density mass per volume','mg/L','milligrams per liter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(221,'Turbidity','NTU','nephelometric turbidity units','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'),(268,'Electrical conductivity','S/m','siemens per meter','http://his.cuahsi.org/mastercvreg/edit_cv11.aspx?tbl=Units'); +/*!40000 ALTER TABLE `Units` ENABLE KEYS */; + +-- +-- Table structure for table `VariableExtensionPropertyValues` +-- + +DROP TABLE IF EXISTS `VariableExtensionPropertyValues`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `VariableExtensionPropertyValues` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `VariableID` int(11) NOT NULL, + `PropertyID` int(11) NOT NULL, + `PropertyValue` varchar(255) NOT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_VariableExtensionPropertyValues_ExtensionProperties` (`PropertyID`), + KEY `fk_VariableExtensionPropertyValues_Variables` (`VariableID`), + CONSTRAINT `fk_VariableExtensionPropertyValues_ExtensionProperties` FOREIGN KEY (`PropertyID`) REFERENCES `ExtensionProperties` (`PropertyID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_VariableExtensionPropertyValues_Variables` FOREIGN KEY (`VariableID`) REFERENCES `Variables` (`VariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `VariableExtensionPropertyValues` +-- + +/*!40000 ALTER TABLE `VariableExtensionPropertyValues` DISABLE KEYS */; +/*!40000 ALTER TABLE `VariableExtensionPropertyValues` ENABLE KEYS */; + +-- +-- Table structure for table `VariableExternalIdentifiers` +-- + +DROP TABLE IF EXISTS `VariableExternalIdentifiers`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `VariableExternalIdentifiers` ( + `BridgeID` int(11) NOT NULL AUTO_INCREMENT, + `VariableID` int(11) NOT NULL, + `ExternalIdentifierSystemID` int(11) NOT NULL, + `VariableExternalIdentifer` varchar(255) NOT NULL, + `VariableExternalIdentifierURI` varchar(255) DEFAULT NULL, + PRIMARY KEY (`BridgeID`), + KEY `fk_VariableExternalIdentifiers_ExternalIdentifierSystems` (`ExternalIdentifierSystemID`), + KEY `fk_VariableExternalIdentifiers_Variables` (`VariableID`), + CONSTRAINT `fk_VariableExternalIdentifiers_ExternalIdentifierSystems` FOREIGN KEY (`ExternalIdentifierSystemID`) REFERENCES `ExternalIdentifierSystems` (`ExternalIdentifierSystemID`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_VariableExternalIdentifiers_Variables` FOREIGN KEY (`VariableID`) REFERENCES `Variables` (`VariableID`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `VariableExternalIdentifiers` +-- + +/*!40000 ALTER TABLE `VariableExternalIdentifiers` DISABLE KEYS */; +/*!40000 ALTER TABLE `VariableExternalIdentifiers` ENABLE KEYS */; + +-- +-- Table structure for table `Variables` +-- + +DROP TABLE IF EXISTS `Variables`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `Variables` ( + `VariableID` int(11) NOT NULL AUTO_INCREMENT, + `VariableTypeCV` varchar(255) NOT NULL, + `VariableCode` varchar(50) NOT NULL, + `VariableNameCV` varchar(255) NOT NULL, + `VariableDefinition` varchar(500) DEFAULT NULL, + `SpeciationCV` varchar(255) DEFAULT NULL, + `NoDataValue` double NOT NULL, + PRIMARY KEY (`VariableID`), + KEY `fk_Variables_CV_Speciation` (`SpeciationCV`), + KEY `fk_Variables_CV_VariableName` (`VariableNameCV`), + KEY `fk_Variables_CV_VariableType` (`VariableTypeCV`), + CONSTRAINT `fk_Variables_CV_Speciation` FOREIGN KEY (`SpeciationCV`) REFERENCES `CV_Speciation` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Variables_CV_VariableName` FOREIGN KEY (`VariableNameCV`) REFERENCES `CV_VariableName` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION, + CONSTRAINT `fk_Variables_CV_VariableType` FOREIGN KEY (`VariableTypeCV`) REFERENCES `CV_VariableType` (`Name`) ON DELETE NO ACTION ON UPDATE NO ACTION +) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=latin1; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `Variables` +-- + +/*!40000 ALTER TABLE `Variables` DISABLE KEYS */; +INSERT INTO `Variables` VALUES (3,'Instrumentation','USU3','Battery voltage',NULL,'Not Applicable',-9999),(4,'Water Quality','USU4','Turbidity',NULL,'Not Applicable',-9999),(5,'Water Quality','USU5','Turbidity',NULL,'Not Applicable',-9999),(6,'Water Quality','USU6','Turbidity',NULL,'Not Applicable',-9999),(7,'Water Quality','USU7','Turbidity',NULL,'Not Applicable',-9999),(8,'Water Quality','USU8','Turbidity',NULL,'Not Applicable',-9999),(9,'Water Quality','USU9','Turbidity',NULL,'Not Applicable',-9999),(10,'Water Quality','USU10','Temperature',NULL,'Not Applicable',-9999),(13,'Hydrology','USU13','Gage height',NULL,'Not Applicable',-9999),(14,'Climate','USU14','Temperature',NULL,'Not Applicable',-9999),(15,'Climate','USU15','Relative humidity',NULL,'Not Applicable',-9999),(16,'Climate','USU16','Precipitation',NULL,'Not Applicable',-9999),(17,'Instrumentation','USU17','Battery voltage',NULL,'Not Applicable',-9999),(18,'Climate','USU18','Wind speed',NULL,'Not Applicable',-9999),(19,'Climate','USU19','Wind direction',NULL,'Not Applicable',-9999),(20,'Climate','USU20','Wind direction',NULL,'Not Applicable',-9999),(21,'Climate','USU21','Barometric pressure',NULL,'Not Applicable',-9999),(22,'Climate','USU22','Radiation, incoming shortwave',NULL,'Not Applicable',-9999),(23,'Instrumentation','USU23','Battery voltage',NULL,'Not Applicable',-9999),(24,'Climate','USU24','Wind speed',NULL,'Not Applicable',-9999),(25,'Climate','USU25','Temperature',NULL,'Not Applicable',-9999),(26,'Climate','USU26','Temperature',NULL,'Not Applicable',-9999),(27,'Climate','USU27','Temperature',NULL,'Not Applicable',-9999),(28,'Climate','USU28','Relative humidity',NULL,'Not Applicable',-9999),(29,'Climate','USU29','Barometric pressure',NULL,'Not Applicable',-9999),(30,'Climate','USU30','Precipitation',NULL,'Not Applicable',-9999),(31,'Climate','USU31','Radiation, incoming shortwave',NULL,'Not Applicable',-9999),(32,'Water Quality','USU32','Oxygen, dissolved',NULL,'Not Applicable',-9999),(33,'Water Quality','USU33','Oxygen, dissolved percent of saturation',NULL,'Not Applicable',-9999),(34,'Water Quality','USU34','Specific conductance',NULL,'Not Applicable',-9999),(35,'Water Quality','USU35','pH',NULL,'Not Applicable',-9999),(36,'Water Quality','USU36','Temperature',NULL,'Not Applicable',-9999),(37,'Water Quality','USU37','Turbidity',NULL,'Not Applicable',-9999),(39,'Water Quality','USU39','Phosphorus, total',NULL,'P',-9999),(40,'Water Quality','USU40','Phosphorus, total dissolved',NULL,'P',-9999),(41,'Water Quality','USU41','Solids, total Suspended',NULL,'Not Applicable',-9999),(44,'Hydrology','USU44','Discharge',NULL,'Not Applicable',-9999),(47,'Water Quality','USU47','Solids, total suspended',NULL,'Not Applicable',-9999),(48,'Water Quality','USU48','Phosphorus, total',NULL,'P',-9999),(49,'Climate','USU49','Distance',NULL,'Not Applicable',-9999),(50,'Climate','USU50','Snow Depth',NULL,'Not Applicable',-9999),(51,'Climate','USU51','Distance',NULL,'Not Applicable',-9999),(52,'Climate','USU52','Distance',NULL,'Not Applicable',-9999),(53,'Climate','USU53','Distance',NULL,'Not Applicable',-9999),(54,'Climate','USU54','Snow Depth',NULL,'Not Applicable',-9999),(55,'Climate','USU55','Snow Depth',NULL,'Not Applicable',-9999),(56,'Climate','USU56','Snow Depth',NULL,'Not Applicable',-9999),(57,'Hydrology','USU57','Volumetric water content',NULL,'Not Applicable',-9999),(58,'Hydrology','USU58','Electrical conductivity',NULL,'Not Applicable',-9999),(59,'Hydrology','USU59','Temperature',NULL,'Not Applicable',-9999),(60,'Hydrology','USU60','Temperature',NULL,'Not Applicable',-9999),(61,'Hydrology','USU61','Real dielectric constant',NULL,'Not Applicable',-9999),(62,'Hydrology','USU62','Imaginary dielectric constant',NULL,'Not Applicable',-9999),(63,'Water Quality','USU63','Alkalinity, carbonate plus bicarbonate',NULL,'CaCO3',-9999),(64,'Water Quality','USU64','Nitrogen, total dissolved',NULL,'N',-9999),(65,'Water Quality','USU65','Nitrogen, total',NULL,'N',-9999); +/*!40000 ALTER TABLE `Variables` ENABLE KEYS */; + +-- +-- Dumping routines for database 'ODM2' +-- + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2015-10-09 22:51:14 diff --git a/tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/README.md b/tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/README.md new file mode 100644 index 0000000..d0dce0a --- /dev/null +++ b/tests/usecasesql/littlebearriver/sampledatabases/odm2_mysql/README.md @@ -0,0 +1,15 @@ +Little Bear River MySQL Test Database +===================================== +This folder contains a MySQL dump file for generating a testing ODM2 database containing a subset of data from the Little Bear River data use case. It contains approximately one month of continuous time series data for two monitoring sites, one water quality station in the Little Bear River and one weather station. Also included are a number of water quality samples and associated results from the water quality station. + +To create the new database in MySQL, do the following: + +1. Download the the MySQL dump file +2. Create a new schema in MySQL called "ODM2" +3. Open the MySQL dump file in MySQL workbench or other software and execute it. The dump file is coded to copy all objects and data to a schema named "ODM2". If needed, this can be changed in the first line of the MySQL dump file. + +### Details ### +The MySQL dump file in this folder was produced using the following steps: + +1. Used the MySQL Workbench database migration tool to migrate the testing database from Microsoft SQL Server to a schema called "ODM2" within a MySQL instance. See the readme file in the folder for the SQL Server test database for more details about how that database was created. The Microsoft SQL Server instance was on Windows, and the MySQL instance was on a Mac. I used MySQL Workbench on the Windows machine to push to the MySQL server on the Mac. +2. Used the MySQL Export Data functionality to export the new ODM2 schema to a MySQL dump file. I did this on my Mac. \ No newline at end of file diff --git a/tests/usecasesql/marchantariats/README.md b/tests/usecasesql/marchantariats/README.md new file mode 100644 index 0000000..6fedbd3 --- /dev/null +++ b/tests/usecasesql/marchantariats/README.md @@ -0,0 +1,46 @@ +# Marchantaria Time Series Data Use Case +Contact [Emilio Mayorga](https://github.com/emiliom) for questions. **This is a work in progress!** Some data haven't been loaded yet, and some implementation decisions will likely be changed in the future. + +## Description +A 10 year "time series" (not sensor based) of lots of biogeochemical measurements from a location on the central Amazon mainstem. The data, with some small exceptions, was published 20 years ago: http://dx.doi.org/10.1029/95GB01145. The dataset includes measurements on several physical fractions (dissolved, fine particulates, coarse particulates, and probably "total" or bulk), plus river stage and possibly discharge. + +Here are some important implementation choices and considerations (I will add more over time): +- Actions are highly coarse or aggregated at this time. There's simply one Observation action lumping ALL observations made at the site that day (what could otherwise be called a "sampling event"). These actions are all assigned to the coarse Method: "Aggregated measurements, lumping all observation activities during one site visit" +- In general, each physical fraction sample has been assigned a single specimen SamplingFeature per sampling event. Except, two types of dissolved fractions have been distinguished, based on the collection and filtration sequence. +- Each Result is linked directly with a specimen SamplingFeature (via the FeatureActions table), and only indirectly with the related sites SamplingFeature via the RelatedFeatures table that relates specimens with sites. +- Note that specimen SamplingFeatures are not required to have non-null FeatureGeometry entries, b/c the geometry can be found in the related parent site or parent SamplingFeature. I chose not to populate FeatureGeometry for specimen SamplingFeatures, to avoid the possibility of incorrectly duplicated information. This means that a set of joins us required to bring in the geometry information together with FeatureActions and Results. I've created the convenience `odm2.specimen_site_sf` View to join site attributes and site SamplingFeatures attributes to specimen SamplingFeatureID. This view is included in the database dump file. +- Fow now, all specimens are related to a single site (SamplingFeatureID 1036), but it's best not to hard-wired that assumption in any querie. I may add a second site (SamplingFeatureID 1003 / (SamplingFeatureCode 'Man') in the near future. I loaded many other site SamplingFeatures, but these are not associated with any Actions or Results. All the other sites were loaded because the Marchantaria measurements "time series" is part of a larger database of Amazon biogeochemical data that I want to load into this ODM2 database eventually. All other sites should be ignored at this time. +- Some variables have been created that are specific to each fraction (eg, FSS vs CSS for Fine and Coarse Suspended Sediment, respectively). The use of such variables together with specimens by physical fraction is somewhat redundant, but convenient. +- This dataset was collected and can be viewed as a "time series", though not in the ODM2 "TimeSeries" ResultType sense. For each variable, there's a time series of up to individual 101 measurements, with corresponding individual Results and MeasurementResultValues. + +## IPython (Jupyter) notebook demonstrating access to this data use case via the ODM2 REST API web services +I've created an IPython notebook that shows the use of the [ODM2 REST API's](http://sis-devel.cloudapp.net/docs/) (web services) from Python to acccess the Marchantaria data use case. The notebook can be [viewed as rendered by Github](https://github.com/BiG-CZ/BiG-CZ-Toolbox/blob/master/ipynotebooks/ODM2RESTdemo_MarchantariaUseCase.ipynb), but with the glitch that the interactive, inline map is not rendered; for best results see the notebook as [rendered on nbviewer](http://nbviewer.ipython.org/github/BiG-CZ/BiG-CZ-Toolbox/blob/master/ipynotebooks/ODM2RESTdemo_MarchantariaUseCase.ipynb). It can be downloaded from either system. 8/8/2015. + +## Database loading/mapping status +I've loaded 4 specimen (or fraction) types: fine and coarse particulates, dissolved (filtered) from thorough cross-section composite samples, and dissolved (but unfiltered) constituents collected via Niskin bottles and minimizing aeration (to sample for gases or gas-influenced parameters). I also loaded all ancillary data I'm interested in initially (specimens, sites, dataset, citation, people, organizations, doi externalidentifier, etc), and come up with a template scheme for loading the remaining physical fractions. *I plan to do all remaining measurements (eg, constituent fraction sums, respiration rates, river stage and discharge, etc) in June. I will also revisit some decisions and categorizations made initially.* + +### ODM2 Schema version and tweaks +This database was created using the [ODM2_for_PostgreSQL.sql blank schema DDL script](https://github.com/ODM2/ODM2/blob/master/src/blank_schema_scripts/postgresql/ODM2_for_PostgreSQL.sql) downloaded on May 10, 2015. A few modifications were applied to that standard ODM2 blank script, mostly related to PostGIS usage: +```sql +-- Removed all "CREATE EXTENSION" statements +ALTER TABLE odm2.samplingfeatures ADD CONSTRAINT + enforce_dims_featuregeometry CHECK (st_ndims(featuregeometry) = 2); +CREATE INDEX idx_samplingfeature_featuregeom ON odm2.samplingfeatures USING gist (featuregeometry); +SELECT Populate_Geometry_Columns(); +UPDATE public.geometry_columns SET type = 'GEOMETRY' WHERE f_table_schema = 'odm2' AND f_table_name = 'samplingfeatures'; +``` + +## PostgreSQL Database Dump +I've created a PostgreSQL database dump file ([marchantariats.sql](marchantariats.sql)) using `pg_dump`, with plain-text format. It can be restored using the `postgres` user and the following `psql` (*not pg_restore!*) statement: +``` +psql -h localhost -p 5432 -U postgres -W -f "./marchantariats.sql" template1 +``` +windows. Note, may be issues with latest builds (april 2016): http://www.postgresonline.com/journal/archives/364-PostGIS-2.2-Windows-users-hold-off-on-installing-latest-PostgreSQL-patch-release.html +``` +D:\dev_odm\ODM2PythonAPI>"c:\Program Files\PostgreSQL\9.5\bin\psql.exe" -U postgres -q -f .\tests\usecasesql\marchantariats\marchantariats.sql +``` + +The database and the dump file were created using PostgreSQL 9.3 and PostGIS 2.1, on Ubuntu Linux 14.04. The ODM2 database uses PostGIS geometry objects in the `samplingfeatures` table. The dump file was created with the following `pg_dump` statement (note: the database was originally called "odm2_rivers"): +``` +pg_dump -h localhost -p 5432 -d odm2_rivers --exclude-schema=amz_riverbgc -U "postgres" --role="postgres" -W --no-privileges --no-owner --format=p --create --blobs --verbose --file="./marchantariats.sql" +``` diff --git a/tests/usecasesql/marchantariats/marchantariats.sql b/tests/usecasesql/marchantariats/marchantariats.sql new file mode 100644 index 0000000..ae77737 --- /dev/null +++ b/tests/usecasesql/marchantariats/marchantariats.sql @@ -0,0 +1,24518 @@ +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 9.3.7 +-- Dumped by pg_dump version 9.3.7 +-- Started on 2015-06-11 00:06:53 PDT + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + +-- +-- TOC entry 4968 (class 1262 OID 21975) +-- Name: marchantariats; Type: DATABASE; Schema: -; Owner: - +-- + +CREATE DATABASE marchantariats WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'en_US.UTF-8' LC_CTYPE = 'en_US.UTF-8'; + + +\connect marchantariats + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SET check_function_bodies = false; +SET client_min_messages = warning; + +-- +-- TOC entry 4969 (class 1262 OID 21975) +-- Dependencies: 4968 +-- Name: marchantariats; Type: COMMENT; Schema: -; Owner: - +-- + +COMMENT ON DATABASE marchantariats IS 'ODM2-based database for river biogeochemistry data collections. | 5/10/2015: Retained amz_riverbgc schema but rebuilt odm2 schema(s) with latest, common DDL. | Updated 2/8/2015. First created 8/3/2014.'; + + +-- +-- TOC entry 8 (class 2615 OID 69986) +-- Name: odm2; Type: SCHEMA; Schema: -; Owner: - +-- + +CREATE SCHEMA odm2; + + +-- +-- TOC entry 435 (class 3079 OID 11787) +-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner: - +-- + +CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog; + + +-- +-- TOC entry 4971 (class 0 OID 0) +-- Dependencies: 435 +-- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner: - +-- + +COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language'; + + +-- +-- TOC entry 437 (class 3079 OID 16390) +-- Name: postgis; Type: EXTENSION; Schema: -; Owner: - +-- + +CREATE EXTENSION IF NOT EXISTS postgis WITH SCHEMA public; + + +-- +-- TOC entry 4972 (class 0 OID 0) +-- Dependencies: 437 +-- Name: EXTENSION postgis; Type: COMMENT; Schema: -; Owner: - +-- + +COMMENT ON EXTENSION postgis IS 'PostGIS geometry, geography, and raster spatial types and functions'; + + +-- +-- TOC entry 436 (class 3079 OID 24039) +-- Name: postgres_fdw; Type: EXTENSION; Schema: -; Owner: - +-- + +CREATE EXTENSION IF NOT EXISTS postgres_fdw WITH SCHEMA public; + + +-- +-- TOC entry 4973 (class 0 OID 0) +-- Dependencies: 436 +-- Name: EXTENSION postgres_fdw; Type: COMMENT; Schema: -; Owner: - +-- + +COMMENT ON EXTENSION postgres_fdw IS 'foreign-data wrapper for remote PostgreSQL servers'; + + +-- +-- TOC entry 3587 (class 1417 OID 24049) +-- Name: amazonriverbgc; Type: SERVER; Schema: -; Owner: - +-- + +CREATE SERVER amazonriverbgc FOREIGN DATA WRAPPER postgres_fdw OPTIONS ( + dbname 'amazonriverbgc', + host 'localhost', + port '5432' +); + + +-- +-- TOC entry 4974 (class 0 OID 0) +-- Dependencies: 3587 +-- Name: USER MAPPING public SERVER amazonriverbgc; Type: USER MAPPING; Schema: -; Owner: - +-- + +CREATE USER MAPPING FOR public SERVER amazonriverbgc OPTIONS ( + password '>Xen1aDBAP>', + "user" 'xeniadba' +); + + +SET search_path = odm2, pg_catalog; + +SET default_tablespace = ''; + +SET default_with_oids = false; + +-- +-- TOC entry 211 (class 1259 OID 69989) +-- Name: actionannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE actionannotations ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 210 (class 1259 OID 69987) +-- Name: actionannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE actionannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4975 (class 0 OID 0) +-- Dependencies: 210 +-- Name: actionannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE actionannotations_bridgeid_seq OWNED BY actionannotations.bridgeid; + + +-- +-- TOC entry 241 (class 1259 OID 70112) +-- Name: actionby; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE actionby ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + affiliationid integer NOT NULL, + isactionlead boolean NOT NULL, + roledescription character varying(500) +); + + +-- +-- TOC entry 240 (class 1259 OID 70110) +-- Name: actionby_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE actionby_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4976 (class 0 OID 0) +-- Dependencies: 240 +-- Name: actionby_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE actionby_bridgeid_seq OWNED BY actionby.bridgeid; + + +-- +-- TOC entry 360 (class 1259 OID 70808) +-- Name: actiondirectives; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE actiondirectives ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + directiveid integer NOT NULL +); + + +-- +-- TOC entry 359 (class 1259 OID 70806) +-- Name: actiondirectives_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE actiondirectives_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4977 (class 0 OID 0) +-- Dependencies: 359 +-- Name: actiondirectives_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE actiondirectives_bridgeid_seq OWNED BY actiondirectives.bridgeid; + + +-- +-- TOC entry 329 (class 1259 OID 70653) +-- Name: actionextensionpropertyvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE actionextensionpropertyvalues ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue character varying(255) NOT NULL +); + + +-- +-- TOC entry 328 (class 1259 OID 70651) +-- Name: actionextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE actionextensionpropertyvalues_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4978 (class 0 OID 0) +-- Dependencies: 328 +-- Name: actionextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE actionextensionpropertyvalues_bridgeid_seq OWNED BY actionextensionpropertyvalues.bridgeid; + + +-- +-- TOC entry 243 (class 1259 OID 70123) +-- Name: actions; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE actions ( + actionid integer NOT NULL, + actiontypecv character varying(255) NOT NULL, + methodid integer NOT NULL, + begindatetime timestamp without time zone NOT NULL, + begindatetimeutcoffset integer NOT NULL, + enddatetime timestamp without time zone, + enddatetimeutcoffset integer, + actiondescription character varying(500), + actionfilelink character varying(255) +); + + +-- +-- TOC entry 242 (class 1259 OID 70121) +-- Name: actions_actionid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE actions_actionid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4979 (class 0 OID 0) +-- Dependencies: 242 +-- Name: actions_actionid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE actions_actionid_seq OWNED BY actions.actionid; + + +-- +-- TOC entry 245 (class 1259 OID 70134) +-- Name: affiliations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE affiliations ( + affiliationid integer NOT NULL, + personid integer NOT NULL, + organizationid integer, + isprimaryorganizationcontact boolean, + affiliationstartdate date NOT NULL, + affiliationenddate date, + primaryphone character varying(50), + primaryemail character varying(255) NOT NULL, + primaryaddress character varying(255), + personlink character varying(255) +); + + +-- +-- TOC entry 244 (class 1259 OID 70132) +-- Name: affiliations_affiliationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE affiliations_affiliationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4980 (class 0 OID 0) +-- Dependencies: 244 +-- Name: affiliations_affiliationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE affiliations_affiliationid_seq OWNED BY affiliations.affiliationid; + + +-- +-- TOC entry 213 (class 1259 OID 69997) +-- Name: annotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE annotations ( + annotationid integer NOT NULL, + annotationtypecv character varying(255) NOT NULL, + annotationcode character varying(50), + annotationtext character varying(500) NOT NULL, + annotationdatetime timestamp without time zone, + annotationutcoffset integer, + annotationlink character varying(255), + annotatorid integer, + citationid integer +); + + +-- +-- TOC entry 212 (class 1259 OID 69995) +-- Name: annotations_annotationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE annotations_annotationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4981 (class 0 OID 0) +-- Dependencies: 212 +-- Name: annotations_annotationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE annotations_annotationid_seq OWNED BY annotations.annotationid; + + +-- +-- TOC entry 365 (class 1259 OID 70832) +-- Name: authorlists; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE authorlists ( + bridgeid integer NOT NULL, + citationid integer NOT NULL, + personid integer NOT NULL, + authororder integer NOT NULL +); + + +-- +-- TOC entry 364 (class 1259 OID 70830) +-- Name: authorlists_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE authorlists_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4982 (class 0 OID 0) +-- Dependencies: 364 +-- Name: authorlists_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE authorlists_bridgeid_seq OWNED BY authorlists.bridgeid; + + +-- +-- TOC entry 306 (class 1259 OID 70540) +-- Name: calibrationactions; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE calibrationactions ( + actionid integer NOT NULL, + calibrationcheckvalue double precision, + instrumentoutputvariableid integer NOT NULL, + calibrationequation character varying(255) +); + + +-- +-- TOC entry 308 (class 1259 OID 70547) +-- Name: calibrationreferenceequipment; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE calibrationreferenceequipment ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + equipmentid integer NOT NULL +); + + +-- +-- TOC entry 307 (class 1259 OID 70545) +-- Name: calibrationreferenceequipment_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE calibrationreferenceequipment_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4983 (class 0 OID 0) +-- Dependencies: 307 +-- Name: calibrationreferenceequipment_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE calibrationreferenceequipment_bridgeid_seq OWNED BY calibrationreferenceequipment.bridgeid; + + +-- +-- TOC entry 310 (class 1259 OID 70555) +-- Name: calibrationstandards; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE calibrationstandards ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + referencematerialid integer NOT NULL +); + + +-- +-- TOC entry 309 (class 1259 OID 70553) +-- Name: calibrationstandards_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE calibrationstandards_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4984 (class 0 OID 0) +-- Dependencies: 309 +-- Name: calibrationstandards_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE calibrationstandards_bridgeid_seq OWNED BY calibrationstandards.bridgeid; + + +-- +-- TOC entry 383 (class 1259 OID 70910) +-- Name: categoricalresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE categoricalresults ( + resultid bigint NOT NULL, + xlocation double precision, + xlocationunitsid integer, + ylocation double precision, + ylocationunitsid integer, + zlocation double precision, + zlocationunitsid integer, + spatialreferenceid integer, + qualitycodecv character varying(255) NOT NULL +); + + +-- +-- TOC entry 215 (class 1259 OID 70008) +-- Name: categoricalresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE categoricalresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 214 (class 1259 OID 70006) +-- Name: categoricalresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE categoricalresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4985 (class 0 OID 0) +-- Dependencies: 214 +-- Name: categoricalresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE categoricalresultvalueannotations_bridgeid_seq OWNED BY categoricalresultvalueannotations.bridgeid; + + +-- +-- TOC entry 385 (class 1259 OID 70917) +-- Name: categoricalresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE categoricalresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue character varying(255) NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL +); + + +-- +-- TOC entry 384 (class 1259 OID 70915) +-- Name: categoricalresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE categoricalresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4986 (class 0 OID 0) +-- Dependencies: 384 +-- Name: categoricalresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE categoricalresultvalues_valueid_seq OWNED BY categoricalresultvalues.valueid; + + +-- +-- TOC entry 331 (class 1259 OID 70661) +-- Name: citationextensionpropertyvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE citationextensionpropertyvalues ( + bridgeid integer NOT NULL, + citationid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue character varying(255) NOT NULL +); + + +-- +-- TOC entry 330 (class 1259 OID 70659) +-- Name: citationextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE citationextensionpropertyvalues_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4987 (class 0 OID 0) +-- Dependencies: 330 +-- Name: citationextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE citationextensionpropertyvalues_bridgeid_seq OWNED BY citationextensionpropertyvalues.bridgeid; + + +-- +-- TOC entry 343 (class 1259 OID 70712) +-- Name: citationexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE citationexternalidentifiers ( + bridgeid integer NOT NULL, + citationid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + citationexternalidentifer character varying(255) NOT NULL, + citationexternalidentiferuri character varying(255) +); + + +-- +-- TOC entry 342 (class 1259 OID 70710) +-- Name: citationexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE citationexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4988 (class 0 OID 0) +-- Dependencies: 342 +-- Name: citationexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE citationexternalidentifiers_bridgeid_seq OWNED BY citationexternalidentifiers.bridgeid; + + +-- +-- TOC entry 367 (class 1259 OID 70840) +-- Name: citations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE citations ( + citationid integer NOT NULL, + title character varying(255) NOT NULL, + publisher character varying(255) NOT NULL, + publicationyear integer NOT NULL, + citationlink character varying(255) +); + + +-- +-- TOC entry 366 (class 1259 OID 70838) +-- Name: citations_citationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE citations_citationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4989 (class 0 OID 0) +-- Dependencies: 366 +-- Name: citations_citationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE citations_citationid_seq OWNED BY citations.citationid; + + +-- +-- TOC entry 271 (class 1259 OID 70274) +-- Name: cv_actiontype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_actiontype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 272 (class 1259 OID 70282) +-- Name: cv_aggregationstatistic; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_aggregationstatistic ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 273 (class 1259 OID 70290) +-- Name: cv_annotationtype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_annotationtype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 274 (class 1259 OID 70298) +-- Name: cv_censorcode; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_censorcode ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 275 (class 1259 OID 70306) +-- Name: cv_dataqualitytype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_dataqualitytype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 276 (class 1259 OID 70314) +-- Name: cv_datasettypecv; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_datasettypecv ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 277 (class 1259 OID 70322) +-- Name: cv_directivetype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_directivetype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 278 (class 1259 OID 70330) +-- Name: cv_elevationdatum; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_elevationdatum ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 279 (class 1259 OID 70338) +-- Name: cv_equipmenttype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_equipmenttype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 280 (class 1259 OID 70346) +-- Name: cv_methodtype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_methodtype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 281 (class 1259 OID 70354) +-- Name: cv_organizationtype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_organizationtype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 282 (class 1259 OID 70362) +-- Name: cv_propertydatatype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_propertydatatype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 283 (class 1259 OID 70370) +-- Name: cv_qualitycode; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_qualitycode ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 284 (class 1259 OID 70378) +-- Name: cv_referencematerialmedium; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_referencematerialmedium ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 285 (class 1259 OID 70386) +-- Name: cv_relationshiptype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_relationshiptype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 286 (class 1259 OID 70394) +-- Name: cv_resulttype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_resulttype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 287 (class 1259 OID 70402) +-- Name: cv_sampledmedium; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_sampledmedium ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 288 (class 1259 OID 70410) +-- Name: cv_samplingfeaturegeotype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_samplingfeaturegeotype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 289 (class 1259 OID 70418) +-- Name: cv_samplingfeaturetype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_samplingfeaturetype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 290 (class 1259 OID 70426) +-- Name: cv_sitetype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_sitetype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 291 (class 1259 OID 70434) +-- Name: cv_spatialoffsettype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_spatialoffsettype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 292 (class 1259 OID 70442) +-- Name: cv_speciation; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_speciation ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 293 (class 1259 OID 70450) +-- Name: cv_specimenmedium; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_specimenmedium ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 294 (class 1259 OID 70458) +-- Name: cv_specimentype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_specimentype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 295 (class 1259 OID 70466) +-- Name: cv_status; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_status ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 296 (class 1259 OID 70474) +-- Name: cv_taxonomicclassifiertype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_taxonomicclassifiertype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 297 (class 1259 OID 70482) +-- Name: cv_unitstype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_unitstype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 298 (class 1259 OID 70490) +-- Name: cv_variablename; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_variablename ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 299 (class 1259 OID 70498) +-- Name: cv_variabletype; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE cv_variabletype ( + term character varying(255) NOT NULL, + name character varying(255) NOT NULL, + definition character varying(1000), + category character varying(255), + sourcevocabularyuri character varying(255) +); + + +-- +-- TOC entry 312 (class 1259 OID 70563) +-- Name: dataloggerfilecolumns; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE dataloggerfilecolumns ( + dataloggerfilecolumnid integer NOT NULL, + resultid bigint, + dataloggerfileid integer NOT NULL, + instrumentoutputvariableid integer NOT NULL, + columnlabel character varying(50) NOT NULL, + columndescription character varying(500), + measurementequation character varying(255), + scaninterval double precision, + scanintervalunitsid integer, + recordinginterval double precision, + recordingintervalunitsid integer, + aggregationstatisticcv character varying(255) +); + + +-- +-- TOC entry 311 (class 1259 OID 70561) +-- Name: dataloggerfilecolumns_dataloggerfilecolumnid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE dataloggerfilecolumns_dataloggerfilecolumnid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4990 (class 0 OID 0) +-- Dependencies: 311 +-- Name: dataloggerfilecolumns_dataloggerfilecolumnid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE dataloggerfilecolumns_dataloggerfilecolumnid_seq OWNED BY dataloggerfilecolumns.dataloggerfilecolumnid; + + +-- +-- TOC entry 314 (class 1259 OID 70574) +-- Name: dataloggerfiles; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE dataloggerfiles ( + dataloggerfileid integer NOT NULL, + programid integer NOT NULL, + dataloggerfilename character varying(255) NOT NULL, + dataloggerfiledescription character varying(500), + dataloggerfilelink character varying(255) +); + + +-- +-- TOC entry 313 (class 1259 OID 70572) +-- Name: dataloggerfiles_dataloggerfileid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE dataloggerfiles_dataloggerfileid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4991 (class 0 OID 0) +-- Dependencies: 313 +-- Name: dataloggerfiles_dataloggerfileid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE dataloggerfiles_dataloggerfileid_seq OWNED BY dataloggerfiles.dataloggerfileid; + + +-- +-- TOC entry 316 (class 1259 OID 70585) +-- Name: dataloggerprogramfiles; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE dataloggerprogramfiles ( + programid integer NOT NULL, + affiliationid integer NOT NULL, + programname character varying(255) NOT NULL, + programdescription character varying(500), + programversion character varying(50), + programfilelink character varying(255) +); + + +-- +-- TOC entry 315 (class 1259 OID 70583) +-- Name: dataloggerprogramfiles_programid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE dataloggerprogramfiles_programid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4992 (class 0 OID 0) +-- Dependencies: 315 +-- Name: dataloggerprogramfiles_programid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE dataloggerprogramfiles_programid_seq OWNED BY dataloggerprogramfiles.programid; + + +-- +-- TOC entry 300 (class 1259 OID 70506) +-- Name: dataquality; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE dataquality ( + dataqualityid integer NOT NULL, + dataqualitytypecv character varying(255) NOT NULL, + dataqualitycode character varying(255) NOT NULL, + dataqualityvalue double precision, + dataqualityvalueunitsid integer, + dataqualitydescription character varying(500), + dataqualitylink character varying(255) +); + + +-- +-- TOC entry 369 (class 1259 OID 70851) +-- Name: datasetcitations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE datasetcitations ( + bridgeid integer NOT NULL, + datasetid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + citationid integer NOT NULL +); + + +-- +-- TOC entry 368 (class 1259 OID 70849) +-- Name: datasetcitations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE datasetcitations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4993 (class 0 OID 0) +-- Dependencies: 368 +-- Name: datasetcitations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE datasetcitations_bridgeid_seq OWNED BY datasetcitations.bridgeid; + + +-- +-- TOC entry 247 (class 1259 OID 70145) +-- Name: datasets; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE datasets ( + datasetid integer NOT NULL, + datasetuuid uuid NOT NULL, + datasettypecv character varying(255) NOT NULL, + datasetcode character varying(50) NOT NULL, + datasettitle character varying(255) NOT NULL, + datasetabstract character varying(500) NOT NULL +); + + +-- +-- TOC entry 246 (class 1259 OID 70143) +-- Name: datasets_datasetid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE datasets_datasetid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4994 (class 0 OID 0) +-- Dependencies: 246 +-- Name: datasets_datasetid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE datasets_datasetid_seq OWNED BY datasets.datasetid; + + +-- +-- TOC entry 249 (class 1259 OID 70156) +-- Name: datasetsresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE datasetsresults ( + bridgeid integer NOT NULL, + datasetid integer NOT NULL, + resultid bigint NOT NULL +); + + +-- +-- TOC entry 248 (class 1259 OID 70154) +-- Name: datasetsresults_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE datasetsresults_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4995 (class 0 OID 0) +-- Dependencies: 248 +-- Name: datasetsresults_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE datasetsresults_bridgeid_seq OWNED BY datasetsresults.bridgeid; + + +-- +-- TOC entry 371 (class 1259 OID 70859) +-- Name: derivationequations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE derivationequations ( + derivationequationid integer NOT NULL, + derivationequation character varying(255) NOT NULL +); + + +-- +-- TOC entry 370 (class 1259 OID 70857) +-- Name: derivationequations_derivationequationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE derivationequations_derivationequationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4996 (class 0 OID 0) +-- Dependencies: 370 +-- Name: derivationequations_derivationequationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE derivationequations_derivationequationid_seq OWNED BY derivationequations.derivationequationid; + + +-- +-- TOC entry 362 (class 1259 OID 70816) +-- Name: directives; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE directives ( + directiveid integer NOT NULL, + directivetypecv character varying(255) NOT NULL, + directivedescription character varying(500) NOT NULL +); + + +-- +-- TOC entry 361 (class 1259 OID 70814) +-- Name: directives_directiveid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE directives_directiveid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4997 (class 0 OID 0) +-- Dependencies: 361 +-- Name: directives_directiveid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE directives_directiveid_seq OWNED BY directives.directiveid; + + +-- +-- TOC entry 318 (class 1259 OID 70596) +-- Name: equipment; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE equipment ( + equipmentid integer NOT NULL, + equipmentcode character varying(50) NOT NULL, + equipmentname character varying(255) NOT NULL, + equipmenttypecv character varying(255) NOT NULL, + equipmentmodelid integer NOT NULL, + equipmentserialnumber character varying(50) NOT NULL, + equipmentownerid integer NOT NULL, + equipmentvendorid integer NOT NULL, + equipmentpurchasedate timestamp without time zone NOT NULL, + equipmentpurchaseordernumber character varying(50), + equipmentdescription character varying(500), + equipmentdocumentationlink character varying(255) +); + + +-- +-- TOC entry 317 (class 1259 OID 70594) +-- Name: equipment_equipmentid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE equipment_equipmentid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4998 (class 0 OID 0) +-- Dependencies: 317 +-- Name: equipment_equipmentid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE equipment_equipmentid_seq OWNED BY equipment.equipmentid; + + +-- +-- TOC entry 217 (class 1259 OID 70016) +-- Name: equipmentannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE equipmentannotations ( + bridgeid integer NOT NULL, + equipmentid integer NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 216 (class 1259 OID 70014) +-- Name: equipmentannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE equipmentannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 4999 (class 0 OID 0) +-- Dependencies: 216 +-- Name: equipmentannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE equipmentannotations_bridgeid_seq OWNED BY equipmentannotations.bridgeid; + + +-- +-- TOC entry 320 (class 1259 OID 70607) +-- Name: equipmentmodels; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE equipmentmodels ( + equipmentmodelid integer NOT NULL, + modelmanufacturerid integer NOT NULL, + modelpartnumber character varying(50), + modelname character varying(255) NOT NULL, + modeldescription character varying(500), + isinstrument boolean NOT NULL, + modelspecificationsfilelink character varying(255), + modellink character varying(255) +); + + +-- +-- TOC entry 319 (class 1259 OID 70605) +-- Name: equipmentmodels_equipmentmodelid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE equipmentmodels_equipmentmodelid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5000 (class 0 OID 0) +-- Dependencies: 319 +-- Name: equipmentmodels_equipmentmodelid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE equipmentmodels_equipmentmodelid_seq OWNED BY equipmentmodels.equipmentmodelid; + + +-- +-- TOC entry 322 (class 1259 OID 70618) +-- Name: equipmentused; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE equipmentused ( + bridgeid integer NOT NULL, + actionid integer NOT NULL, + equipmentid integer NOT NULL +); + + +-- +-- TOC entry 321 (class 1259 OID 70616) +-- Name: equipmentused_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE equipmentused_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5001 (class 0 OID 0) +-- Dependencies: 321 +-- Name: equipmentused_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE equipmentused_bridgeid_seq OWNED BY equipmentused.bridgeid; + + +-- +-- TOC entry 333 (class 1259 OID 70669) +-- Name: extensionproperties; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE extensionproperties ( + propertyid integer NOT NULL, + propertyname character varying(255) NOT NULL, + propertydescription character varying(500), + propertydatatypecv character varying(255) NOT NULL, + propertyunitsid integer +); + + +-- +-- TOC entry 332 (class 1259 OID 70667) +-- Name: extensionproperties_propertyid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE extensionproperties_propertyid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5002 (class 0 OID 0) +-- Dependencies: 332 +-- Name: extensionproperties_propertyid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE extensionproperties_propertyid_seq OWNED BY extensionproperties.propertyid; + + +-- +-- TOC entry 344 (class 1259 OID 70721) +-- Name: externalidentifiersystems; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE externalidentifiersystems ( + externalidentifiersystemid integer NOT NULL, + externalidentifiersystemname character varying(255) NOT NULL, + identifiersystemorganizationid integer NOT NULL, + externalidentifiersystemdescription character varying(500), + externalidentifiersystemurl character varying(255) +); + + +-- +-- TOC entry 251 (class 1259 OID 70164) +-- Name: featureactions; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE featureactions ( + featureactionid integer NOT NULL, + samplingfeatureid integer NOT NULL, + actionid integer NOT NULL +); + + +-- +-- TOC entry 250 (class 1259 OID 70162) +-- Name: featureactions_featureactionid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE featureactions_featureactionid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5003 (class 0 OID 0) +-- Dependencies: 250 +-- Name: featureactions_featureactionid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE featureactions_featureactionid_seq OWNED BY featureactions.featureactionid; + + +-- +-- TOC entry 324 (class 1259 OID 70626) +-- Name: instrumentoutputvariables; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE instrumentoutputvariables ( + instrumentoutputvariableid integer NOT NULL, + modelid integer NOT NULL, + variableid integer NOT NULL, + instrumentmethodid integer NOT NULL, + instrumentresolution character varying(255), + instrumentaccuracy character varying(255), + instrumentrawoutputunitsid integer NOT NULL +); + + +-- +-- TOC entry 323 (class 1259 OID 70624) +-- Name: instrumentoutputvariables_instrumentoutputvariableid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE instrumentoutputvariables_instrumentoutputvariableid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5004 (class 0 OID 0) +-- Dependencies: 323 +-- Name: instrumentoutputvariables_instrumentoutputvariableid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE instrumentoutputvariables_instrumentoutputvariableid_seq OWNED BY instrumentoutputvariables.instrumentoutputvariableid; + + +-- +-- TOC entry 325 (class 1259 OID 70635) +-- Name: maintenanceactions; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE maintenanceactions ( + actionid integer NOT NULL, + isfactoryservice boolean NOT NULL, + maintenancecode character varying(50), + maintenancereason character varying(500) +); + + +-- +-- TOC entry 265 (class 1259 OID 70235) +-- Name: samplingfeatures; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE samplingfeatures ( + samplingfeatureid integer NOT NULL, + samplingfeatureuuid uuid NOT NULL, + samplingfeaturetypecv character varying(255) NOT NULL, + samplingfeaturecode character varying(50) NOT NULL, + samplingfeaturename character varying(255), + samplingfeaturedescription character varying(500), + samplingfeaturegeotypecv character varying(255), + featuregeometry public.geometry, + elevation_m double precision, + elevationdatumcv character varying(255), + CONSTRAINT enforce_dims_featuregeometry CHECK ((public.st_ndims(featuregeometry) = 2)) +); + + +-- +-- TOC entry 431 (class 1259 OID 77406) +-- Name: mappings_results_coarse_particulates; Type: VIEW; Schema: odm2; Owner: - +-- + +CREATE VIEW mappings_results_coarse_particulates AS + SELECT fa.featureactionid, + fa.samplingfeatureid, + fa.actionid, + arvuom.odm2_variableid AS variableid, + arvuom.odm2_unitsid AS unitsid, + act.begindatetime AS resultdatetime, + act.begindatetimeutcoffset AS resultdatetimeutcoffset, + arbgcfr.sampleid AS arbgcfr_sampleid, + arbgcfr.variable AS arbgcfr_variable, + arbgcfr.units AS arbgcfr_units, + arbgcfr.value AS arbgcfr_value + FROM ((((actions act + JOIN ( SELECT samplingfeatures.samplingfeatureid, + samplingfeatures.samplingfeatureuuid, + samplingfeatures.samplingfeaturetypecv, + samplingfeatures.samplingfeaturecode, + samplingfeatures.samplingfeaturename, + samplingfeatures.samplingfeaturedescription, + samplingfeatures.samplingfeaturegeotypecv, + samplingfeatures.featuregeometry, + samplingfeatures.elevation_m, + samplingfeatures.elevationdatumcv, + ((regexp_matches((samplingfeatures.samplingfeaturecode)::text, 'smp(\d+)_cp'::text))[1])::integer AS sampleid + FROM samplingfeatures + WHERE (((samplingfeatures.samplingfeaturetypecv)::text = 'Specimen'::text) AND ((samplingfeatures.samplingfeaturecode)::text ~~ '%_cp'::text))) sfspec ON ((act.actionid = sfspec.sampleid))) + JOIN featureactions fa ON (((act.actionid = fa.actionid) AND (sfspec.samplingfeatureid = fa.samplingfeatureid)))) + JOIN amz_riverbgc.coarse_particulates arbgcfr ON ((act.actionid = arbgcfr.sampleid))) + JOIN amz_riverbgc.variable_units_odm2mapping arvuom ON ((arbgcfr.variable = (arvuom.variable)::text))) + ORDER BY act.begindatetime, fa.actionid, arbgcfr.variable; + + +-- +-- TOC entry 433 (class 1259 OID 84922) +-- Name: mappings_results_dissolved; Type: VIEW; Schema: odm2; Owner: - +-- + +CREATE VIEW mappings_results_dissolved AS + SELECT fa.featureactionid, + fa.samplingfeatureid, + fa.actionid, + arvuom.odm2_variableid AS variableid, + arvuom.odm2_unitsid AS unitsid, + act.begindatetime AS resultdatetime, + act.begindatetimeutcoffset AS resultdatetimeutcoffset, + arbgcfr.sampleid AS arbgcfr_sampleid, + arbgcfr.variable AS arbgcfr_variable, + arbgcfr.units AS arbgcfr_units, + arbgcfr.value AS arbgcfr_value + FROM ((((actions act + JOIN ( SELECT samplingfeatures.samplingfeatureid, + samplingfeatures.samplingfeatureuuid, + samplingfeatures.samplingfeaturetypecv, + samplingfeatures.samplingfeaturecode, + samplingfeatures.samplingfeaturename, + samplingfeatures.samplingfeaturedescription, + samplingfeatures.samplingfeaturegeotypecv, + samplingfeatures.featuregeometry, + samplingfeatures.elevation_m, + samplingfeatures.elevationdatumcv, + ((regexp_matches((samplingfeatures.samplingfeaturecode)::text, 'smp(\d+)_diss'::text))[1])::integer AS sampleid + FROM samplingfeatures + WHERE (((samplingfeatures.samplingfeaturetypecv)::text = 'Specimen'::text) AND ((samplingfeatures.samplingfeaturecode)::text ~~ '%_diss%'::text))) sfspec ON ((act.actionid = sfspec.sampleid))) + JOIN featureactions fa ON (((act.actionid = fa.actionid) AND (sfspec.samplingfeatureid = fa.samplingfeatureid)))) + JOIN amz_riverbgc.dissolved arbgcfr ON ((act.actionid = arbgcfr.sampleid))) + JOIN amz_riverbgc.variable_units_odm2mapping arvuom ON ((arbgcfr.variable = (arvuom.variable)::text))) + ORDER BY act.begindatetime, fa.actionid, arbgcfr.variable; + + +-- +-- TOC entry 429 (class 1259 OID 75253) +-- Name: mappings_results_fine_particulates; Type: VIEW; Schema: odm2; Owner: - +-- + +CREATE VIEW mappings_results_fine_particulates AS + SELECT fa.featureactionid, + fa.samplingfeatureid, + fa.actionid, + arvuom.odm2_variableid AS variableid, + arvuom.odm2_unitsid AS unitsid, + act.begindatetime AS resultdatetime, + act.begindatetimeutcoffset AS resultdatetimeutcoffset, + arbgcfr.sampleid AS arbgcfr_sampleid, + arbgcfr.variable AS arbgcfr_variable, + arbgcfr.units AS arbgcfr_units, + arbgcfr.value AS arbgcfr_value + FROM ((((actions act + JOIN ( SELECT samplingfeatures.samplingfeatureid, + samplingfeatures.samplingfeatureuuid, + samplingfeatures.samplingfeaturetypecv, + samplingfeatures.samplingfeaturecode, + samplingfeatures.samplingfeaturename, + samplingfeatures.samplingfeaturedescription, + samplingfeatures.samplingfeaturegeotypecv, + samplingfeatures.featuregeometry, + samplingfeatures.elevation_m, + samplingfeatures.elevationdatumcv, + ((regexp_matches((samplingfeatures.samplingfeaturecode)::text, 'smp(\d+)_fp'::text))[1])::integer AS sampleid + FROM samplingfeatures + WHERE (((samplingfeatures.samplingfeaturetypecv)::text = 'Specimen'::text) AND ((samplingfeatures.samplingfeaturecode)::text ~~ '%_fp'::text))) sfspec ON ((act.actionid = sfspec.sampleid))) + JOIN featureactions fa ON (((act.actionid = fa.actionid) AND (sfspec.samplingfeatureid = fa.samplingfeatureid)))) + JOIN amz_riverbgc.fine_particulates arbgcfr ON ((act.actionid = arbgcfr.sampleid))) + JOIN amz_riverbgc.variable_units_odm2mapping arvuom ON ((arbgcfr.variable = (arvuom.variable)::text))) + ORDER BY act.begindatetime, fa.actionid, arbgcfr.variable; + + +-- +-- TOC entry 386 (class 1259 OID 70923) +-- Name: measurementresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE measurementresults ( + resultid bigint NOT NULL, + xlocation double precision, + xlocationunitsid integer, + ylocation double precision, + ylocationunitsid integer, + zlocation double precision, + zlocationunitsid integer, + spatialreferenceid integer, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + aggregationstatisticcv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 219 (class 1259 OID 70024) +-- Name: measurementresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE measurementresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 218 (class 1259 OID 70022) +-- Name: measurementresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE measurementresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5005 (class 0 OID 0) +-- Dependencies: 218 +-- Name: measurementresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE measurementresultvalueannotations_bridgeid_seq OWNED BY measurementresultvalueannotations.bridgeid; + + +-- +-- TOC entry 388 (class 1259 OID 70933) +-- Name: measurementresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE measurementresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL +); + + +-- +-- TOC entry 387 (class 1259 OID 70931) +-- Name: measurementresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE measurementresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5006 (class 0 OID 0) +-- Dependencies: 387 +-- Name: measurementresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE measurementresultvalues_valueid_seq OWNED BY measurementresultvalues.valueid; + + +-- +-- TOC entry 221 (class 1259 OID 70032) +-- Name: methodannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE methodannotations ( + bridgeid integer NOT NULL, + methodid integer NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 220 (class 1259 OID 70030) +-- Name: methodannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE methodannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5007 (class 0 OID 0) +-- Dependencies: 220 +-- Name: methodannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE methodannotations_bridgeid_seq OWNED BY methodannotations.bridgeid; + + +-- +-- TOC entry 373 (class 1259 OID 70867) +-- Name: methodcitations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE methodcitations ( + bridgeid integer NOT NULL, + methodid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + citationid integer NOT NULL +); + + +-- +-- TOC entry 372 (class 1259 OID 70865) +-- Name: methodcitations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE methodcitations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5008 (class 0 OID 0) +-- Dependencies: 372 +-- Name: methodcitations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE methodcitations_bridgeid_seq OWNED BY methodcitations.bridgeid; + + +-- +-- TOC entry 335 (class 1259 OID 70680) +-- Name: methodextensionpropertyvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE methodextensionpropertyvalues ( + bridgeid integer NOT NULL, + methodid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue character varying(255) NOT NULL +); + + +-- +-- TOC entry 334 (class 1259 OID 70678) +-- Name: methodextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE methodextensionpropertyvalues_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5009 (class 0 OID 0) +-- Dependencies: 334 +-- Name: methodextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE methodextensionpropertyvalues_bridgeid_seq OWNED BY methodextensionpropertyvalues.bridgeid; + + +-- +-- TOC entry 346 (class 1259 OID 70731) +-- Name: methodexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE methodexternalidentifiers ( + bridgeid integer NOT NULL, + methodid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + methodexternalidentifier character varying(255) NOT NULL, + methodexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 345 (class 1259 OID 70729) +-- Name: methodexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE methodexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5010 (class 0 OID 0) +-- Dependencies: 345 +-- Name: methodexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE methodexternalidentifiers_bridgeid_seq OWNED BY methodexternalidentifiers.bridgeid; + + +-- +-- TOC entry 253 (class 1259 OID 70172) +-- Name: methods; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE methods ( + methodid integer NOT NULL, + methodtypecv character varying(255) NOT NULL, + methodcode character varying(50) NOT NULL, + methodname character varying(255) NOT NULL, + methoddescription character varying(500), + methodlink character varying(255), + organizationid integer +); + + +-- +-- TOC entry 252 (class 1259 OID 70170) +-- Name: methods_methodid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE methods_methodid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5011 (class 0 OID 0) +-- Dependencies: 252 +-- Name: methods_methodid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE methods_methodid_seq OWNED BY methods.methodid; + + +-- +-- TOC entry 420 (class 1259 OID 71098) +-- Name: modelaffiliations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE modelaffiliations ( + bridgeid integer NOT NULL, + modelid integer NOT NULL, + affiliationid integer NOT NULL, + isprimary boolean NOT NULL, + roledescription character varying(500) +); + + +-- +-- TOC entry 419 (class 1259 OID 71096) +-- Name: modelaffiliations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE modelaffiliations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5012 (class 0 OID 0) +-- Dependencies: 419 +-- Name: modelaffiliations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE modelaffiliations_bridgeid_seq OWNED BY modelaffiliations.bridgeid; + + +-- +-- TOC entry 422 (class 1259 OID 71109) +-- Name: models; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE models ( + modelid integer NOT NULL, + modelcode character varying(50) NOT NULL, + modelname character varying(255) NOT NULL, + modeldescription character varying(500), + version character varying(255), + modellink character varying(255) +); + + +-- +-- TOC entry 421 (class 1259 OID 71107) +-- Name: models_modelid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE models_modelid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5013 (class 0 OID 0) +-- Dependencies: 421 +-- Name: models_modelid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE models_modelid_seq OWNED BY models.modelid; + + +-- +-- TOC entry 255 (class 1259 OID 70183) +-- Name: organizations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE organizations ( + organizationid integer NOT NULL, + organizationtypecv character varying(255) NOT NULL, + organizationcode character varying(50) NOT NULL, + organizationname character varying(255) NOT NULL, + organizationdescription character varying(500), + organizationlink character varying(255), + parentorganizationid integer +); + + +-- +-- TOC entry 254 (class 1259 OID 70181) +-- Name: organizations_organizationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE organizations_organizationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5014 (class 0 OID 0) +-- Dependencies: 254 +-- Name: organizations_organizationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE organizations_organizationid_seq OWNED BY organizations.organizationid; + + +-- +-- TOC entry 257 (class 1259 OID 70194) +-- Name: people; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE people ( + personid integer NOT NULL, + personfirstname character varying(255) NOT NULL, + personmiddlename character varying(255), + personlastname character varying(255) NOT NULL +); + + +-- +-- TOC entry 256 (class 1259 OID 70192) +-- Name: people_personid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE people_personid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5015 (class 0 OID 0) +-- Dependencies: 256 +-- Name: people_personid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE people_personid_seq OWNED BY people.personid; + + +-- +-- TOC entry 348 (class 1259 OID 70742) +-- Name: personexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE personexternalidentifiers ( + bridgeid integer NOT NULL, + personid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + personexternalidentifier character varying(255) NOT NULL, + personexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 347 (class 1259 OID 70740) +-- Name: personexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE personexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5016 (class 0 OID 0) +-- Dependencies: 347 +-- Name: personexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE personexternalidentifiers_bridgeid_seq OWNED BY personexternalidentifiers.bridgeid; + + +-- +-- TOC entry 389 (class 1259 OID 70939) +-- Name: pointcoverageresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE pointcoverageresults ( + resultid bigint NOT NULL, + zlocation double precision, + zlocationunitsid integer, + spatialreferenceid integer, + intendedxspacing double precision, + intendedxspacingunitsid integer, + intendedyspacing double precision, + intendedyspacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 223 (class 1259 OID 70040) +-- Name: pointcoverageresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE pointcoverageresultvalueannotations ( + bridgeid bigint NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 222 (class 1259 OID 70038) +-- Name: pointcoverageresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE pointcoverageresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5017 (class 0 OID 0) +-- Dependencies: 222 +-- Name: pointcoverageresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE pointcoverageresultvalueannotations_bridgeid_seq OWNED BY pointcoverageresultvalueannotations.bridgeid; + + +-- +-- TOC entry 391 (class 1259 OID 70946) +-- Name: pointcoverageresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE pointcoverageresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue bigint NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + xlocation double precision NOT NULL, + xlocationunitsid integer NOT NULL, + ylocation double precision NOT NULL, + ylocationunitsid integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL +); + + +-- +-- TOC entry 390 (class 1259 OID 70944) +-- Name: pointcoverageresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE pointcoverageresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5018 (class 0 OID 0) +-- Dependencies: 390 +-- Name: pointcoverageresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE pointcoverageresultvalues_valueid_seq OWNED BY pointcoverageresultvalues.valueid; + + +-- +-- TOC entry 259 (class 1259 OID 70205) +-- Name: processinglevels; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE processinglevels ( + processinglevelid integer NOT NULL, + processinglevelcode character varying(50) NOT NULL, + definition character varying(500), + explanation character varying(500) +); + + +-- +-- TOC entry 258 (class 1259 OID 70203) +-- Name: processinglevels_processinglevelid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE processinglevels_processinglevelid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5019 (class 0 OID 0) +-- Dependencies: 258 +-- Name: processinglevels_processinglevelid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE processinglevels_processinglevelid_seq OWNED BY processinglevels.processinglevelid; + + +-- +-- TOC entry 392 (class 1259 OID 70955) +-- Name: profileresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE profileresults ( + resultid bigint NOT NULL, + xlocation double precision, + xlocationunitsid integer, + ylocation double precision, + ylocationunitsid integer, + spatialreferenceid integer, + intendedzspacing double precision, + intendedzspacingunitsid integer, + intendedtimespacing double precision, + intendedtimespacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL +); + + +-- +-- TOC entry 225 (class 1259 OID 70048) +-- Name: profileresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE profileresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 224 (class 1259 OID 70046) +-- Name: profileresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE profileresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5020 (class 0 OID 0) +-- Dependencies: 224 +-- Name: profileresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE profileresultvalueannotations_bridgeid_seq OWNED BY profileresultvalueannotations.bridgeid; + + +-- +-- TOC entry 394 (class 1259 OID 70962) +-- Name: profileresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE profileresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + zlocation double precision NOT NULL, + zaggregationinterval double precision NOT NULL, + zlocationunitsid integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 393 (class 1259 OID 70960) +-- Name: profileresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE profileresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5021 (class 0 OID 0) +-- Dependencies: 393 +-- Name: profileresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE profileresultvalues_valueid_seq OWNED BY profileresultvalues.valueid; + + +-- +-- TOC entry 350 (class 1259 OID 70753) +-- Name: referencematerialexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE referencematerialexternalidentifiers ( + bridgeid integer NOT NULL, + referencematerialid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + referencematerialexternalidentifier character varying(255) NOT NULL, + referencematerialexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 349 (class 1259 OID 70751) +-- Name: referencematerialexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE referencematerialexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5022 (class 0 OID 0) +-- Dependencies: 349 +-- Name: referencematerialexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE referencematerialexternalidentifiers_bridgeid_seq OWNED BY referencematerialexternalidentifiers.bridgeid; + + +-- +-- TOC entry 301 (class 1259 OID 70514) +-- Name: referencematerials; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE referencematerials ( + referencematerialid integer NOT NULL, + referencematerialmediumcv character varying(255) NOT NULL, + referencematerialorganizationid integer NOT NULL, + referencematerialcode character varying(50) NOT NULL, + referencemateriallotcode character varying(255), + referencematerialpurchasedate timestamp without time zone, + referencematerialexpirationdate timestamp without time zone, + referencematerialcertificatelink character varying(255), + samplingfeatureid integer +); + + +-- +-- TOC entry 302 (class 1259 OID 70522) +-- Name: referencematerialvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE referencematerialvalues ( + referencematerialvalueid integer NOT NULL, + referencematerialid integer NOT NULL, + referencematerialvalue double precision NOT NULL, + referencematerialaccuracy double precision, + variableid integer NOT NULL, + unitsid integer NOT NULL, + citationid integer NOT NULL +); + + +-- +-- TOC entry 261 (class 1259 OID 70216) +-- Name: relatedactions; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedactions ( + relationid integer NOT NULL, + actionid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedactionid integer NOT NULL +); + + +-- +-- TOC entry 260 (class 1259 OID 70214) +-- Name: relatedactions_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedactions_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5023 (class 0 OID 0) +-- Dependencies: 260 +-- Name: relatedactions_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedactions_relationid_seq OWNED BY relatedactions.relationid; + + +-- +-- TOC entry 375 (class 1259 OID 70875) +-- Name: relatedannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedannotations ( + relationid integer NOT NULL, + annotationid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedannotationid integer NOT NULL +); + + +-- +-- TOC entry 374 (class 1259 OID 70873) +-- Name: relatedannotations_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedannotations_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5024 (class 0 OID 0) +-- Dependencies: 374 +-- Name: relatedannotations_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedannotations_relationid_seq OWNED BY relatedannotations.relationid; + + +-- +-- TOC entry 377 (class 1259 OID 70883) +-- Name: relatedcitations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedcitations ( + relationid integer NOT NULL, + citationid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedcitationid integer NOT NULL +); + + +-- +-- TOC entry 376 (class 1259 OID 70881) +-- Name: relatedcitations_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedcitations_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5025 (class 0 OID 0) +-- Dependencies: 376 +-- Name: relatedcitations_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedcitations_relationid_seq OWNED BY relatedcitations.relationid; + + +-- +-- TOC entry 379 (class 1259 OID 70891) +-- Name: relateddatasets; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relateddatasets ( + relationid integer NOT NULL, + datasetid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relateddatasetid integer NOT NULL, + versioncode character varying(50) +); + + +-- +-- TOC entry 378 (class 1259 OID 70889) +-- Name: relateddatasets_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relateddatasets_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5026 (class 0 OID 0) +-- Dependencies: 378 +-- Name: relateddatasets_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relateddatasets_relationid_seq OWNED BY relateddatasets.relationid; + + +-- +-- TOC entry 327 (class 1259 OID 70645) +-- Name: relatedequipment; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedequipment ( + relationid integer NOT NULL, + equipmentid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedequipmentid integer NOT NULL, + relationshipstartdatetime timestamp without time zone NOT NULL, + relationshipstartdatetimeutcoffset integer NOT NULL, + relationshipenddatetime timestamp without time zone, + relationshipenddatetimeutcoffset integer +); + + +-- +-- TOC entry 326 (class 1259 OID 70643) +-- Name: relatedequipment_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedequipment_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5027 (class 0 OID 0) +-- Dependencies: 326 +-- Name: relatedequipment_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedequipment_relationid_seq OWNED BY relatedequipment.relationid; + + +-- +-- TOC entry 411 (class 1259 OID 71053) +-- Name: relatedfeatures; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedfeatures ( + relationid integer NOT NULL, + samplingfeatureid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedfeatureid integer NOT NULL, + spatialoffsetid integer +); + + +-- +-- TOC entry 410 (class 1259 OID 71051) +-- Name: relatedfeatures_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedfeatures_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5028 (class 0 OID 0) +-- Dependencies: 410 +-- Name: relatedfeatures_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedfeatures_relationid_seq OWNED BY relatedfeatures.relationid; + + +-- +-- TOC entry 424 (class 1259 OID 71120) +-- Name: relatedmodels; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedmodels ( + relatedid integer NOT NULL, + modelid integer NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedmodelid integer NOT NULL +); + + +-- +-- TOC entry 423 (class 1259 OID 71118) +-- Name: relatedmodels_relatedid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedmodels_relatedid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5029 (class 0 OID 0) +-- Dependencies: 423 +-- Name: relatedmodels_relatedid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedmodels_relatedid_seq OWNED BY relatedmodels.relatedid; + + +-- +-- TOC entry 381 (class 1259 OID 70899) +-- Name: relatedresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE relatedresults ( + relationid integer NOT NULL, + resultid bigint NOT NULL, + relationshiptypecv character varying(255) NOT NULL, + relatedresultid bigint NOT NULL, + versioncode character varying(50), + relatedresultsequencenumber integer +); + + +-- +-- TOC entry 380 (class 1259 OID 70897) +-- Name: relatedresults_relationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE relatedresults_relationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5030 (class 0 OID 0) +-- Dependencies: 380 +-- Name: relatedresults_relationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE relatedresults_relationid_seq OWNED BY relatedresults.relationid; + + +-- +-- TOC entry 227 (class 1259 OID 70056) +-- Name: resultannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE resultannotations ( + bridgeid integer NOT NULL, + resultid bigint NOT NULL, + annotationid integer NOT NULL, + begindatetime timestamp without time zone NOT NULL, + enddatetime timestamp without time zone NOT NULL +); + + +-- +-- TOC entry 226 (class 1259 OID 70054) +-- Name: resultannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE resultannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5031 (class 0 OID 0) +-- Dependencies: 226 +-- Name: resultannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE resultannotations_bridgeid_seq OWNED BY resultannotations.bridgeid; + + +-- +-- TOC entry 382 (class 1259 OID 70905) +-- Name: resultderivationequations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE resultderivationequations ( + resultid bigint NOT NULL, + derivationequationid integer NOT NULL +); + + +-- +-- TOC entry 337 (class 1259 OID 70688) +-- Name: resultextensionpropertyvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE resultextensionpropertyvalues ( + bridgeid integer NOT NULL, + resultid bigint NOT NULL, + propertyid integer NOT NULL, + propertyvalue character varying(255) NOT NULL +); + + +-- +-- TOC entry 336 (class 1259 OID 70686) +-- Name: resultextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE resultextensionpropertyvalues_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5032 (class 0 OID 0) +-- Dependencies: 336 +-- Name: resultextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE resultextensionpropertyvalues_bridgeid_seq OWNED BY resultextensionpropertyvalues.bridgeid; + + +-- +-- TOC entry 303 (class 1259 OID 70527) +-- Name: resultnormalizationvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE resultnormalizationvalues ( + resultid bigint NOT NULL, + normalizedbyreferencematerialvalueid integer NOT NULL +); + + +-- +-- TOC entry 263 (class 1259 OID 70224) +-- Name: results; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE results ( + resultid bigint NOT NULL, + resultuuid uuid NOT NULL, + featureactionid integer NOT NULL, + resulttypecv character varying(255) NOT NULL, + variableid integer NOT NULL, + unitsid integer NOT NULL, + taxonomicclassifierid integer, + processinglevelid integer NOT NULL, + resultdatetime timestamp without time zone, + resultdatetimeutcoffset bigint, + validdatetime timestamp without time zone, + validdatetimeutcoffset bigint, + statuscv character varying(255), + sampledmediumcv character varying(255) NOT NULL, + valuecount integer NOT NULL +); + + +-- +-- TOC entry 262 (class 1259 OID 70222) +-- Name: results_resultid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE results_resultid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5033 (class 0 OID 0) +-- Dependencies: 262 +-- Name: results_resultid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE results_resultid_seq OWNED BY results.resultid; + + +-- +-- TOC entry 305 (class 1259 OID 70534) +-- Name: resultsdataquality; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE resultsdataquality ( + bridgeid integer NOT NULL, + resultid bigint NOT NULL, + dataqualityid integer NOT NULL +); + + +-- +-- TOC entry 304 (class 1259 OID 70532) +-- Name: resultsdataquality_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE resultsdataquality_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5034 (class 0 OID 0) +-- Dependencies: 304 +-- Name: resultsdataquality_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE resultsdataquality_bridgeid_seq OWNED BY resultsdataquality.bridgeid; + + +-- +-- TOC entry 229 (class 1259 OID 70064) +-- Name: samplingfeatureannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE samplingfeatureannotations ( + bridgeid integer NOT NULL, + samplingfeatureid integer NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 228 (class 1259 OID 70062) +-- Name: samplingfeatureannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE samplingfeatureannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5035 (class 0 OID 0) +-- Dependencies: 228 +-- Name: samplingfeatureannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE samplingfeatureannotations_bridgeid_seq OWNED BY samplingfeatureannotations.bridgeid; + + +-- +-- TOC entry 339 (class 1259 OID 70696) +-- Name: samplingfeatureextensionpropertyvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE samplingfeatureextensionpropertyvalues ( + bridgeid integer NOT NULL, + samplingfeatureid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue character varying(255) NOT NULL +); + + +-- +-- TOC entry 338 (class 1259 OID 70694) +-- Name: samplingfeatureextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE samplingfeatureextensionpropertyvalues_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5036 (class 0 OID 0) +-- Dependencies: 338 +-- Name: samplingfeatureextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE samplingfeatureextensionpropertyvalues_bridgeid_seq OWNED BY samplingfeatureextensionpropertyvalues.bridgeid; + + +-- +-- TOC entry 352 (class 1259 OID 70764) +-- Name: samplingfeatureexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE samplingfeatureexternalidentifiers ( + bridgeid integer NOT NULL, + samplingfeatureid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + samplingfeatureexternalidentifier character varying(255) NOT NULL, + samplingfeatureexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 351 (class 1259 OID 70762) +-- Name: samplingfeatureexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE samplingfeatureexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5037 (class 0 OID 0) +-- Dependencies: 351 +-- Name: samplingfeatureexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE samplingfeatureexternalidentifiers_bridgeid_seq OWNED BY samplingfeatureexternalidentifiers.bridgeid; + + +-- +-- TOC entry 264 (class 1259 OID 70233) +-- Name: samplingfeatures_samplingfeatureid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE samplingfeatures_samplingfeatureid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5038 (class 0 OID 0) +-- Dependencies: 264 +-- Name: samplingfeatures_samplingfeatureid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE samplingfeatures_samplingfeatureid_seq OWNED BY samplingfeatures.samplingfeatureid; + + +-- +-- TOC entry 395 (class 1259 OID 70971) +-- Name: sectionresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE sectionresults ( + resultid bigint NOT NULL, + ylocation double precision, + ylocationunitsid integer, + spatialreferenceid integer, + intendedxspacing double precision, + intendedxspacingunitsid integer, + intendedzspacing double precision, + intendedzspacingunitsid integer, + intendedtimespacing double precision, + intendedtimespacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL +); + + +-- +-- TOC entry 231 (class 1259 OID 70072) +-- Name: sectionresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE sectionresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 230 (class 1259 OID 70070) +-- Name: sectionresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE sectionresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5039 (class 0 OID 0) +-- Dependencies: 230 +-- Name: sectionresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE sectionresultvalueannotations_bridgeid_seq OWNED BY sectionresultvalueannotations.bridgeid; + + +-- +-- TOC entry 397 (class 1259 OID 70978) +-- Name: sectionresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE sectionresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime bigint NOT NULL, + valuedatetimeutcoffset bigint NOT NULL, + xlocation double precision NOT NULL, + xaggregationinterval double precision NOT NULL, + xlocationunitsid integer NOT NULL, + zlocation bigint NOT NULL, + zaggregationinterval double precision NOT NULL, + zlocationunitsid integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + aggregationstatisticcv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 396 (class 1259 OID 70976) +-- Name: sectionresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE sectionresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5040 (class 0 OID 0) +-- Dependencies: 396 +-- Name: sectionresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE sectionresultvalues_valueid_seq OWNED BY sectionresultvalues.valueid; + + +-- +-- TOC entry 426 (class 1259 OID 71128) +-- Name: simulations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE simulations ( + simulationid integer NOT NULL, + actionid integer NOT NULL, + simulationname character varying(255) NOT NULL, + simulationdescription character varying(500), + simulationstartdatetime timestamp without time zone NOT NULL, + simulationstartdatetimeutcoffset integer NOT NULL, + simulationenddatetime timestamp without time zone NOT NULL, + simulationenddatetimeutcoffset integer NOT NULL, + timestepvalue double precision NOT NULL, + timestepunitsid integer NOT NULL, + inputdatasetid integer, + modelid integer NOT NULL +); + + +-- +-- TOC entry 425 (class 1259 OID 71126) +-- Name: simulations_simulationid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE simulations_simulationid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5041 (class 0 OID 0) +-- Dependencies: 425 +-- Name: simulations_simulationid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE simulations_simulationid_seq OWNED BY simulations.simulationid; + + +-- +-- TOC entry 412 (class 1259 OID 71059) +-- Name: sites; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE sites ( + samplingfeatureid integer NOT NULL, + sitetypecv character varying(255) NOT NULL, + latitude double precision NOT NULL, + longitude double precision NOT NULL, + spatialreferenceid integer NOT NULL +); + + +-- +-- TOC entry 413 (class 1259 OID 71064) +-- Name: spatialoffsets; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE spatialoffsets ( + spatialoffsetid integer NOT NULL, + spatialoffsettypecv character varying(255) NOT NULL, + offset1value double precision NOT NULL, + offset1unitid integer NOT NULL, + offset2value double precision, + offset2unitid integer, + offset3value double precision, + offset3unitid integer +); + + +-- +-- TOC entry 354 (class 1259 OID 70775) +-- Name: spatialreferenceexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE spatialreferenceexternalidentifiers ( + bridgeid integer NOT NULL, + spatialreferenceid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + spatialreferenceexternalidentifier character varying(255) NOT NULL, + spatialreferenceexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 353 (class 1259 OID 70773) +-- Name: spatialreferenceexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE spatialreferenceexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5042 (class 0 OID 0) +-- Dependencies: 353 +-- Name: spatialreferenceexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE spatialreferenceexternalidentifiers_bridgeid_seq OWNED BY spatialreferenceexternalidentifiers.bridgeid; + + +-- +-- TOC entry 415 (class 1259 OID 71071) +-- Name: spatialreferences; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE spatialreferences ( + spatialreferenceid integer NOT NULL, + srscode character varying(50), + srsname character varying(255) NOT NULL, + srsdescription character varying(500), + srslink character varying(255) +); + + +-- +-- TOC entry 414 (class 1259 OID 71069) +-- Name: spatialreferences_spatialreferenceid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE spatialreferences_spatialreferenceid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5043 (class 0 OID 0) +-- Dependencies: 414 +-- Name: spatialreferences_spatialreferenceid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE spatialreferences_spatialreferenceid_seq OWNED BY spatialreferences.spatialreferenceid; + + +-- +-- TOC entry 434 (class 1259 OID 84932) +-- Name: specimen_site_sf; Type: VIEW; Schema: odm2; Owner: - +-- + +CREATE VIEW specimen_site_sf AS + SELECT sfsp.samplingfeatureid AS sp_samplingfeatureid, + sfst.samplingfeatureid AS st_samplingfeatureid, + sfst.samplingfeaturetypecv AS st_samplingfeaturetypecv, + sfst.samplingfeaturecode AS st_samplingfeaturecode, + sfst.samplingfeaturename AS st_samplingfeaturename, + sfst.samplingfeaturedescription AS st_samplingfeaturedescription, + sfst.samplingfeaturegeotypecv AS st_samplingfeaturegeotypecv, + sfst.featuregeometry AS st_featuregeometry, + site.sitetypecv, + site.latitude, + site.longitude, + site.spatialreferenceid + FROM samplingfeatures sfsp, + samplingfeatures sfst, + sites site, + relatedfeatures rf + WHERE (((sfsp.samplingfeatureid = rf.samplingfeatureid) AND (sfst.samplingfeatureid = rf.relatedfeatureid)) AND (sfst.samplingfeatureid = site.samplingfeatureid)) + ORDER BY sfsp.samplingfeatureid; + + +-- +-- TOC entry 363 (class 1259 OID 70825) +-- Name: specimenbatchpostions; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE specimenbatchpostions ( + featureactionid integer NOT NULL, + batchpositionnumber integer NOT NULL, + batchpositionlabel character varying(255) +); + + +-- +-- TOC entry 416 (class 1259 OID 71080) +-- Name: specimens; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE specimens ( + samplingfeatureid integer NOT NULL, + specimentypecv character varying(255) NOT NULL, + specimenmediumcv character varying(255) NOT NULL, + isfieldspecimen boolean NOT NULL +); + + +-- +-- TOC entry 418 (class 1259 OID 71090) +-- Name: specimentaxonomicclassifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE specimentaxonomicclassifiers ( + bridgeid integer NOT NULL, + samplingfeatureid integer NOT NULL, + taxonomicclassifierid integer NOT NULL, + citationid integer +); + + +-- +-- TOC entry 417 (class 1259 OID 71088) +-- Name: specimentaxonomicclassifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE specimentaxonomicclassifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5044 (class 0 OID 0) +-- Dependencies: 417 +-- Name: specimentaxonomicclassifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE specimentaxonomicclassifiers_bridgeid_seq OWNED BY specimentaxonomicclassifiers.bridgeid; + + +-- +-- TOC entry 398 (class 1259 OID 70987) +-- Name: spectraresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE spectraresults ( + resultid bigint NOT NULL, + xlocation double precision, + xlocationunitsid integer, + ylocation double precision, + ylocationunitsid integer, + zlocation double precision, + zlocationunitsid integer, + spatialreferenceid integer, + intendedwavelengthspacing double precision, + intendedwavelengthspacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL +); + + +-- +-- TOC entry 233 (class 1259 OID 70080) +-- Name: spectraresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE spectraresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 232 (class 1259 OID 70078) +-- Name: spectraresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE spectraresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5045 (class 0 OID 0) +-- Dependencies: 232 +-- Name: spectraresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE spectraresultvalueannotations_bridgeid_seq OWNED BY spectraresultvalueannotations.bridgeid; + + +-- +-- TOC entry 400 (class 1259 OID 70994) +-- Name: spectraresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE spectraresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + excitationwavelength double precision NOT NULL, + emissionwavelength double precision NOT NULL, + wavelengthunitsid integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 399 (class 1259 OID 70992) +-- Name: spectraresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE spectraresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5046 (class 0 OID 0) +-- Dependencies: 399 +-- Name: spectraresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE spectraresultvalues_valueid_seq OWNED BY spectraresultvalues.valueid; + + +-- +-- TOC entry 356 (class 1259 OID 70786) +-- Name: taxonomicclassifierexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE taxonomicclassifierexternalidentifiers ( + bridgeid integer NOT NULL, + taxonomicclassifierid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + taxonomicclassifierexternalidentifier character varying(255) NOT NULL, + taxonomicclassifierexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 355 (class 1259 OID 70784) +-- Name: taxonomicclassifierexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE taxonomicclassifierexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5047 (class 0 OID 0) +-- Dependencies: 355 +-- Name: taxonomicclassifierexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE taxonomicclassifierexternalidentifiers_bridgeid_seq OWNED BY taxonomicclassifierexternalidentifiers.bridgeid; + + +-- +-- TOC entry 266 (class 1259 OID 70244) +-- Name: taxonomicclassifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE taxonomicclassifiers ( + taxonomicclassifierid integer NOT NULL, + taxonomicclassifiertypecv character varying(255) NOT NULL, + taxonomicclassifiername character varying(255) NOT NULL, + taxonomicclassifiercommonname character varying(255), + taxonomicclassifierdescription character varying(500), + parenttaxonomicclassifierid integer +); + + +-- +-- TOC entry 401 (class 1259 OID 71003) +-- Name: timeseriesresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE timeseriesresults ( + resultid bigint NOT NULL, + xlocation double precision, + xlocationunitsid integer, + ylocation double precision, + ylocationunitsid integer, + zlocation double precision, + zlocationunitsid integer, + spatialreferenceid integer, + intendedtimespacing double precision, + intendedtimespacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL +); + + +-- +-- TOC entry 235 (class 1259 OID 70088) +-- Name: timeseriesresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE timeseriesresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 234 (class 1259 OID 70086) +-- Name: timeseriesresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE timeseriesresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5048 (class 0 OID 0) +-- Dependencies: 234 +-- Name: timeseriesresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE timeseriesresultvalueannotations_bridgeid_seq OWNED BY timeseriesresultvalueannotations.bridgeid; + + +-- +-- TOC entry 403 (class 1259 OID 71010) +-- Name: timeseriesresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE timeseriesresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 402 (class 1259 OID 71008) +-- Name: timeseriesresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE timeseriesresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5049 (class 0 OID 0) +-- Dependencies: 402 +-- Name: timeseriesresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE timeseriesresultvalues_valueid_seq OWNED BY timeseriesresultvalues.valueid; + + +-- +-- TOC entry 404 (class 1259 OID 71019) +-- Name: trajectoryresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE trajectoryresults ( + resultid bigint NOT NULL, + spatialreferenceid integer, + intendedtrajectoryspacing double precision, + intendedtrajectoryspacingunitsid integer, + intendedtimespacing double precision, + intendedtimespacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL +); + + +-- +-- TOC entry 237 (class 1259 OID 70096) +-- Name: trajectoryresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE trajectoryresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 236 (class 1259 OID 70094) +-- Name: trajectoryresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE trajectoryresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5050 (class 0 OID 0) +-- Dependencies: 236 +-- Name: trajectoryresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE trajectoryresultvalueannotations_bridgeid_seq OWNED BY trajectoryresultvalueannotations.bridgeid; + + +-- +-- TOC entry 406 (class 1259 OID 71026) +-- Name: trajectoryresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE trajectoryresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset integer NOT NULL, + xlocation double precision NOT NULL, + xlocationunitsid integer NOT NULL, + ylocation double precision NOT NULL, + ylocationunitsid integer NOT NULL, + zlocation double precision NOT NULL, + zlocationunitsid integer NOT NULL, + trajectorydistance double precision NOT NULL, + trajectorydistanceaggregationinterval double precision NOT NULL, + trajectorydistanceunitsid integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 405 (class 1259 OID 71024) +-- Name: trajectoryresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE trajectoryresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5051 (class 0 OID 0) +-- Dependencies: 405 +-- Name: trajectoryresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE trajectoryresultvalues_valueid_seq OWNED BY trajectoryresultvalues.valueid; + + +-- +-- TOC entry 407 (class 1259 OID 71035) +-- Name: transectresults; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE transectresults ( + resultid bigint NOT NULL, + zlocation double precision, + zlocationunitsid integer, + spatialreferenceid integer, + intendedtransectspacing double precision, + intendedtransectspacingunitsid integer, + intendedtimespacing double precision, + intendedtimespacingunitsid integer, + aggregationstatisticcv character varying(255) NOT NULL +); + + +-- +-- TOC entry 239 (class 1259 OID 70104) +-- Name: transectresultvalueannotations; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE transectresultvalueannotations ( + bridgeid integer NOT NULL, + valueid bigint NOT NULL, + annotationid integer NOT NULL +); + + +-- +-- TOC entry 238 (class 1259 OID 70102) +-- Name: transectresultvalueannotations_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE transectresultvalueannotations_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5052 (class 0 OID 0) +-- Dependencies: 238 +-- Name: transectresultvalueannotations_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE transectresultvalueannotations_bridgeid_seq OWNED BY transectresultvalueannotations.bridgeid; + + +-- +-- TOC entry 409 (class 1259 OID 71042) +-- Name: transectresultvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE transectresultvalues ( + valueid bigint NOT NULL, + resultid bigint NOT NULL, + datavalue double precision NOT NULL, + valuedatetime timestamp without time zone NOT NULL, + valuedatetimeutcoffset timestamp without time zone NOT NULL, + xlocation double precision NOT NULL, + xlocationunitsid integer NOT NULL, + ylocation double precision NOT NULL, + ylocationunitsid integer NOT NULL, + transectdistance double precision NOT NULL, + transectdistanceaggregationinterval double precision NOT NULL, + transectdistanceunitsid integer NOT NULL, + censorcodecv character varying(255) NOT NULL, + qualitycodecv character varying(255) NOT NULL, + aggregationstatisticcv character varying(255) NOT NULL, + timeaggregationinterval double precision NOT NULL, + timeaggregationintervalunitsid integer NOT NULL +); + + +-- +-- TOC entry 408 (class 1259 OID 71040) +-- Name: transectresultvalues_valueid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE transectresultvalues_valueid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5053 (class 0 OID 0) +-- Dependencies: 408 +-- Name: transectresultvalues_valueid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE transectresultvalues_valueid_seq OWNED BY transectresultvalues.valueid; + + +-- +-- TOC entry 268 (class 1259 OID 70254) +-- Name: units; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE units ( + unitsid integer NOT NULL, + unitstypecv character varying(255) NOT NULL, + unitsabbreviation character varying(50) NOT NULL, + unitsname character varying(255) NOT NULL, + unitslink character varying(255) +); + + +-- +-- TOC entry 267 (class 1259 OID 70252) +-- Name: units_unitsid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE units_unitsid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5054 (class 0 OID 0) +-- Dependencies: 267 +-- Name: units_unitsid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE units_unitsid_seq OWNED BY units.unitsid; + + +-- +-- TOC entry 341 (class 1259 OID 70704) +-- Name: variableextensionpropertyvalues; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE variableextensionpropertyvalues ( + bridgeid integer NOT NULL, + variableid integer NOT NULL, + propertyid integer NOT NULL, + propertyvalue character varying(255) NOT NULL +); + + +-- +-- TOC entry 340 (class 1259 OID 70702) +-- Name: variableextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE variableextensionpropertyvalues_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5055 (class 0 OID 0) +-- Dependencies: 340 +-- Name: variableextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE variableextensionpropertyvalues_bridgeid_seq OWNED BY variableextensionpropertyvalues.bridgeid; + + +-- +-- TOC entry 358 (class 1259 OID 70797) +-- Name: variableexternalidentifiers; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE variableexternalidentifiers ( + bridgeid integer NOT NULL, + variableid integer NOT NULL, + externalidentifiersystemid integer NOT NULL, + variableexternalidentifer character varying(255) NOT NULL, + variableexternalidentifieruri character varying(255) +); + + +-- +-- TOC entry 357 (class 1259 OID 70795) +-- Name: variableexternalidentifiers_bridgeid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE variableexternalidentifiers_bridgeid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5056 (class 0 OID 0) +-- Dependencies: 357 +-- Name: variableexternalidentifiers_bridgeid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE variableexternalidentifiers_bridgeid_seq OWNED BY variableexternalidentifiers.bridgeid; + + +-- +-- TOC entry 270 (class 1259 OID 70265) +-- Name: variables; Type: TABLE; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE TABLE variables ( + variableid integer NOT NULL, + variabletypecv character varying(255) NOT NULL, + variablecode character varying(50) NOT NULL, + variablenamecv character varying(255) NOT NULL, + variabledefinition character varying(500), + speciationcv character varying(255), + nodatavalue double precision NOT NULL +); + + +-- +-- TOC entry 269 (class 1259 OID 70263) +-- Name: variables_variableid_seq; Type: SEQUENCE; Schema: odm2; Owner: - +-- + +CREATE SEQUENCE variables_variableid_seq + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +-- +-- TOC entry 5057 (class 0 OID 0) +-- Dependencies: 269 +-- Name: variables_variableid_seq; Type: SEQUENCE OWNED BY; Schema: odm2; Owner: - +-- + +ALTER SEQUENCE variables_variableid_seq OWNED BY variables.variableid; + + +-- +-- TOC entry 3984 (class 2604 OID 69992) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionannotations ALTER COLUMN bridgeid SET DEFAULT nextval('actionannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 3999 (class 2604 OID 70115) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionby ALTER COLUMN bridgeid SET DEFAULT nextval('actionby_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4041 (class 2604 OID 70811) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actiondirectives ALTER COLUMN bridgeid SET DEFAULT nextval('actiondirectives_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4026 (class 2604 OID 70656) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionextensionpropertyvalues ALTER COLUMN bridgeid SET DEFAULT nextval('actionextensionpropertyvalues_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4000 (class 2604 OID 70126) +-- Name: actionid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actions ALTER COLUMN actionid SET DEFAULT nextval('actions_actionid_seq'::regclass); + + +-- +-- TOC entry 4001 (class 2604 OID 70137) +-- Name: affiliationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY affiliations ALTER COLUMN affiliationid SET DEFAULT nextval('affiliations_affiliationid_seq'::regclass); + + +-- +-- TOC entry 3985 (class 2604 OID 70000) +-- Name: annotationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY annotations ALTER COLUMN annotationid SET DEFAULT nextval('annotations_annotationid_seq'::regclass); + + +-- +-- TOC entry 4043 (class 2604 OID 70835) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY authorlists ALTER COLUMN bridgeid SET DEFAULT nextval('authorlists_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4016 (class 2604 OID 70550) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationreferenceequipment ALTER COLUMN bridgeid SET DEFAULT nextval('calibrationreferenceequipment_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4017 (class 2604 OID 70558) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationstandards ALTER COLUMN bridgeid SET DEFAULT nextval('calibrationstandards_bridgeid_seq'::regclass); + + +-- +-- TOC entry 3986 (class 2604 OID 70011) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('categoricalresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4052 (class 2604 OID 70920) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresultvalues ALTER COLUMN valueid SET DEFAULT nextval('categoricalresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 4027 (class 2604 OID 70664) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citationextensionpropertyvalues ALTER COLUMN bridgeid SET DEFAULT nextval('citationextensionpropertyvalues_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4033 (class 2604 OID 70715) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citationexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('citationexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4044 (class 2604 OID 70843) +-- Name: citationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citations ALTER COLUMN citationid SET DEFAULT nextval('citations_citationid_seq'::regclass); + + +-- +-- TOC entry 4018 (class 2604 OID 70566) +-- Name: dataloggerfilecolumnid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns ALTER COLUMN dataloggerfilecolumnid SET DEFAULT nextval('dataloggerfilecolumns_dataloggerfilecolumnid_seq'::regclass); + + +-- +-- TOC entry 4019 (class 2604 OID 70577) +-- Name: dataloggerfileid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfiles ALTER COLUMN dataloggerfileid SET DEFAULT nextval('dataloggerfiles_dataloggerfileid_seq'::regclass); + + +-- +-- TOC entry 4020 (class 2604 OID 70588) +-- Name: programid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerprogramfiles ALTER COLUMN programid SET DEFAULT nextval('dataloggerprogramfiles_programid_seq'::regclass); + + +-- +-- TOC entry 4045 (class 2604 OID 70854) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetcitations ALTER COLUMN bridgeid SET DEFAULT nextval('datasetcitations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4002 (class 2604 OID 70148) +-- Name: datasetid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasets ALTER COLUMN datasetid SET DEFAULT nextval('datasets_datasetid_seq'::regclass); + + +-- +-- TOC entry 4003 (class 2604 OID 70159) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetsresults ALTER COLUMN bridgeid SET DEFAULT nextval('datasetsresults_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4046 (class 2604 OID 70862) +-- Name: derivationequationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY derivationequations ALTER COLUMN derivationequationid SET DEFAULT nextval('derivationequations_derivationequationid_seq'::regclass); + + +-- +-- TOC entry 4042 (class 2604 OID 70819) +-- Name: directiveid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY directives ALTER COLUMN directiveid SET DEFAULT nextval('directives_directiveid_seq'::regclass); + + +-- +-- TOC entry 4021 (class 2604 OID 70599) +-- Name: equipmentid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipment ALTER COLUMN equipmentid SET DEFAULT nextval('equipment_equipmentid_seq'::regclass); + + +-- +-- TOC entry 3987 (class 2604 OID 70019) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentannotations ALTER COLUMN bridgeid SET DEFAULT nextval('equipmentannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4022 (class 2604 OID 70610) +-- Name: equipmentmodelid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentmodels ALTER COLUMN equipmentmodelid SET DEFAULT nextval('equipmentmodels_equipmentmodelid_seq'::regclass); + + +-- +-- TOC entry 4023 (class 2604 OID 70621) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentused ALTER COLUMN bridgeid SET DEFAULT nextval('equipmentused_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4028 (class 2604 OID 70672) +-- Name: propertyid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY extensionproperties ALTER COLUMN propertyid SET DEFAULT nextval('extensionproperties_propertyid_seq'::regclass); + + +-- +-- TOC entry 4004 (class 2604 OID 70167) +-- Name: featureactionid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY featureactions ALTER COLUMN featureactionid SET DEFAULT nextval('featureactions_featureactionid_seq'::regclass); + + +-- +-- TOC entry 4024 (class 2604 OID 70629) +-- Name: instrumentoutputvariableid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY instrumentoutputvariables ALTER COLUMN instrumentoutputvariableid SET DEFAULT nextval('instrumentoutputvariables_instrumentoutputvariableid_seq'::regclass); + + +-- +-- TOC entry 3988 (class 2604 OID 70027) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('measurementresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4053 (class 2604 OID 70936) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresultvalues ALTER COLUMN valueid SET DEFAULT nextval('measurementresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 3989 (class 2604 OID 70035) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodannotations ALTER COLUMN bridgeid SET DEFAULT nextval('methodannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4047 (class 2604 OID 70870) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodcitations ALTER COLUMN bridgeid SET DEFAULT nextval('methodcitations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4029 (class 2604 OID 70683) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodextensionpropertyvalues ALTER COLUMN bridgeid SET DEFAULT nextval('methodextensionpropertyvalues_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4034 (class 2604 OID 70734) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('methodexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4005 (class 2604 OID 70175) +-- Name: methodid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methods ALTER COLUMN methodid SET DEFAULT nextval('methods_methodid_seq'::regclass); + + +-- +-- TOC entry 4064 (class 2604 OID 71101) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY modelaffiliations ALTER COLUMN bridgeid SET DEFAULT nextval('modelaffiliations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4065 (class 2604 OID 71112) +-- Name: modelid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY models ALTER COLUMN modelid SET DEFAULT nextval('models_modelid_seq'::regclass); + + +-- +-- TOC entry 4006 (class 2604 OID 70186) +-- Name: organizationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY organizations ALTER COLUMN organizationid SET DEFAULT nextval('organizations_organizationid_seq'::regclass); + + +-- +-- TOC entry 4007 (class 2604 OID 70197) +-- Name: personid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY people ALTER COLUMN personid SET DEFAULT nextval('people_personid_seq'::regclass); + + +-- +-- TOC entry 4035 (class 2604 OID 70745) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY personexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('personexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 3990 (class 2604 OID 70043) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('pointcoverageresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4054 (class 2604 OID 70949) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalues ALTER COLUMN valueid SET DEFAULT nextval('pointcoverageresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 4008 (class 2604 OID 70208) +-- Name: processinglevelid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY processinglevels ALTER COLUMN processinglevelid SET DEFAULT nextval('processinglevels_processinglevelid_seq'::regclass); + + +-- +-- TOC entry 3991 (class 2604 OID 70051) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('profileresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4055 (class 2604 OID 70965) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalues ALTER COLUMN valueid SET DEFAULT nextval('profileresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 4036 (class 2604 OID 70756) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('referencematerialexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4009 (class 2604 OID 70219) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedactions ALTER COLUMN relationid SET DEFAULT nextval('relatedactions_relationid_seq'::regclass); + + +-- +-- TOC entry 4048 (class 2604 OID 70878) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedannotations ALTER COLUMN relationid SET DEFAULT nextval('relatedannotations_relationid_seq'::regclass); + + +-- +-- TOC entry 4049 (class 2604 OID 70886) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedcitations ALTER COLUMN relationid SET DEFAULT nextval('relatedcitations_relationid_seq'::regclass); + + +-- +-- TOC entry 4050 (class 2604 OID 70894) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relateddatasets ALTER COLUMN relationid SET DEFAULT nextval('relateddatasets_relationid_seq'::regclass); + + +-- +-- TOC entry 4025 (class 2604 OID 70648) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedequipment ALTER COLUMN relationid SET DEFAULT nextval('relatedequipment_relationid_seq'::regclass); + + +-- +-- TOC entry 4061 (class 2604 OID 71056) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedfeatures ALTER COLUMN relationid SET DEFAULT nextval('relatedfeatures_relationid_seq'::regclass); + + +-- +-- TOC entry 4066 (class 2604 OID 71123) +-- Name: relatedid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedmodels ALTER COLUMN relatedid SET DEFAULT nextval('relatedmodels_relatedid_seq'::regclass); + + +-- +-- TOC entry 4051 (class 2604 OID 70902) +-- Name: relationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedresults ALTER COLUMN relationid SET DEFAULT nextval('relatedresults_relationid_seq'::regclass); + + +-- +-- TOC entry 3992 (class 2604 OID 70059) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultannotations ALTER COLUMN bridgeid SET DEFAULT nextval('resultannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4030 (class 2604 OID 70691) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultextensionpropertyvalues ALTER COLUMN bridgeid SET DEFAULT nextval('resultextensionpropertyvalues_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4010 (class 2604 OID 70227) +-- Name: resultid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results ALTER COLUMN resultid SET DEFAULT nextval('results_resultid_seq'::regclass); + + +-- +-- TOC entry 4015 (class 2604 OID 70537) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultsdataquality ALTER COLUMN bridgeid SET DEFAULT nextval('resultsdataquality_bridgeid_seq'::regclass); + + +-- +-- TOC entry 3993 (class 2604 OID 70067) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureannotations ALTER COLUMN bridgeid SET DEFAULT nextval('samplingfeatureannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4031 (class 2604 OID 70699) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureextensionpropertyvalues ALTER COLUMN bridgeid SET DEFAULT nextval('samplingfeatureextensionpropertyvalues_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4037 (class 2604 OID 70767) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('samplingfeatureexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4011 (class 2604 OID 70238) +-- Name: samplingfeatureid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatures ALTER COLUMN samplingfeatureid SET DEFAULT nextval('samplingfeatures_samplingfeatureid_seq'::regclass); + + +-- +-- TOC entry 3994 (class 2604 OID 70075) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('sectionresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4056 (class 2604 OID 70981) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues ALTER COLUMN valueid SET DEFAULT nextval('sectionresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 4067 (class 2604 OID 71131) +-- Name: simulationid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY simulations ALTER COLUMN simulationid SET DEFAULT nextval('simulations_simulationid_seq'::regclass); + + +-- +-- TOC entry 4038 (class 2604 OID 70778) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialreferenceexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('spatialreferenceexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4062 (class 2604 OID 71074) +-- Name: spatialreferenceid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialreferences ALTER COLUMN spatialreferenceid SET DEFAULT nextval('spatialreferences_spatialreferenceid_seq'::regclass); + + +-- +-- TOC entry 4063 (class 2604 OID 71093) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimentaxonomicclassifiers ALTER COLUMN bridgeid SET DEFAULT nextval('specimentaxonomicclassifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 3995 (class 2604 OID 70083) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('spectraresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4057 (class 2604 OID 70997) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalues ALTER COLUMN valueid SET DEFAULT nextval('spectraresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 4039 (class 2604 OID 70789) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY taxonomicclassifierexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('taxonomicclassifierexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 3996 (class 2604 OID 70091) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('timeseriesresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4058 (class 2604 OID 71013) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalues ALTER COLUMN valueid SET DEFAULT nextval('timeseriesresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 3997 (class 2604 OID 70099) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('trajectoryresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4059 (class 2604 OID 71029) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues ALTER COLUMN valueid SET DEFAULT nextval('trajectoryresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 3998 (class 2604 OID 70107) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalueannotations ALTER COLUMN bridgeid SET DEFAULT nextval('transectresultvalueannotations_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4060 (class 2604 OID 71045) +-- Name: valueid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues ALTER COLUMN valueid SET DEFAULT nextval('transectresultvalues_valueid_seq'::regclass); + + +-- +-- TOC entry 4013 (class 2604 OID 70257) +-- Name: unitsid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY units ALTER COLUMN unitsid SET DEFAULT nextval('units_unitsid_seq'::regclass); + + +-- +-- TOC entry 4032 (class 2604 OID 70707) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variableextensionpropertyvalues ALTER COLUMN bridgeid SET DEFAULT nextval('variableextensionpropertyvalues_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4040 (class 2604 OID 70800) +-- Name: bridgeid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variableexternalidentifiers ALTER COLUMN bridgeid SET DEFAULT nextval('variableexternalidentifiers_bridgeid_seq'::regclass); + + +-- +-- TOC entry 4014 (class 2604 OID 70268) +-- Name: variableid; Type: DEFAULT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variables ALTER COLUMN variableid SET DEFAULT nextval('variables_variableid_seq'::regclass); + + +-- +-- TOC entry 4748 (class 0 OID 69989) +-- Dependencies: 211 +-- Data for Name: actionannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY actionannotations (bridgeid, actionid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5058 (class 0 OID 0) +-- Dependencies: 210 +-- Name: actionannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('actionannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4778 (class 0 OID 70112) +-- Dependencies: 241 +-- Data for Name: actionby; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY actionby (bridgeid, actionid, affiliationid, isactionlead, roledescription) FROM stdin; +1 1 1 f Loaded data into ODM2 database +\. + + +-- +-- TOC entry 5059 (class 0 OID 0) +-- Dependencies: 240 +-- Name: actionby_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('actionby_bridgeid_seq', 1, true); + + +-- +-- TOC entry 4897 (class 0 OID 70808) +-- Dependencies: 360 +-- Data for Name: actiondirectives; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY actiondirectives (bridgeid, actionid, directiveid) FROM stdin; +\. + + +-- +-- TOC entry 5060 (class 0 OID 0) +-- Dependencies: 359 +-- Name: actiondirectives_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('actiondirectives_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4866 (class 0 OID 70653) +-- Dependencies: 329 +-- Data for Name: actionextensionpropertyvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY actionextensionpropertyvalues (bridgeid, actionid, propertyid, propertyvalue) FROM stdin; +\. + + +-- +-- TOC entry 5061 (class 0 OID 0) +-- Dependencies: 328 +-- Name: actionextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('actionextensionpropertyvalues_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4780 (class 0 OID 70123) +-- Dependencies: 243 +-- Data for Name: actions; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY actions (actionid, actiontypecv, methodid, begindatetime, begindatetimeutcoffset, enddatetime, enddatetimeutcoffset, actiondescription, actionfilelink) FROM stdin; +1 Generic non-observation 1 1983-01-17 00:00:00 -5 1993-08-24 00:00:00 -5 Marchantaria Time Series CAMREX sub-project \N +336 Observation 2 1983-01-17 00:00:00 -5 1983-01-17 00:00:00 -5 Sample ID 336 - Marchantaria Time Series site visit, measurements and specimen collection \N +337 Observation 2 1983-01-27 00:00:00 -5 1983-01-27 00:00:00 -5 Sample ID 337 - Marchantaria Time Series site visit, measurements and specimen collection \N +338 Observation 2 1983-02-08 00:00:00 -5 1983-02-08 00:00:00 -5 Sample ID 338 - Marchantaria Time Series site visit, measurements and specimen collection \N +339 Observation 2 1983-02-21 00:00:00 -5 1983-02-21 00:00:00 -5 Sample ID 339 - Marchantaria Time Series site visit, measurements and specimen collection \N +340 Observation 2 1983-03-03 00:00:00 -5 1983-03-03 00:00:00 -5 Sample ID 340 - Marchantaria Time Series site visit, measurements and specimen collection \N +341 Observation 2 1983-06-07 00:00:00 -5 1983-06-07 00:00:00 -5 Sample ID 341 - Marchantaria Time Series site visit, measurements and specimen collection \N +342 Observation 2 1983-07-21 00:00:00 -5 1983-07-21 00:00:00 -5 Sample ID 342 - Marchantaria Time Series site visit, measurements and specimen collection \N +343 Observation 2 1983-08-11 00:00:00 -5 1983-08-11 00:00:00 -5 Sample ID 343 - Marchantaria Time Series site visit, measurements and specimen collection \N +344 Observation 2 1983-09-10 00:00:00 -5 1983-09-10 00:00:00 -5 Sample ID 344 - Marchantaria Time Series site visit, measurements and specimen collection \N +345 Observation 2 1983-09-20 00:00:00 -5 1983-09-20 00:00:00 -5 Sample ID 345 - Marchantaria Time Series site visit, measurements and specimen collection \N +346 Observation 2 1983-09-30 00:00:00 -5 1983-09-30 00:00:00 -5 Sample ID 346 - Marchantaria Time Series site visit, measurements and specimen collection \N +347 Observation 2 1983-12-16 00:00:00 -5 1983-12-16 00:00:00 -5 Sample ID 347 - Marchantaria Time Series site visit, measurements and specimen collection \N +348 Observation 2 1984-01-03 00:00:00 -5 1984-01-03 00:00:00 -5 Sample ID 348 - Marchantaria Time Series site visit, measurements and specimen collection \N +349 Observation 2 1984-01-19 00:00:00 -5 1984-01-19 00:00:00 -5 Sample ID 349 - Marchantaria Time Series site visit, measurements and specimen collection \N +350 Observation 2 1984-03-20 00:00:00 -5 1984-03-20 00:00:00 -5 Sample ID 350 - Marchantaria Time Series site visit, measurements and specimen collection \N +351 Observation 2 1984-04-05 00:00:00 -5 1984-04-05 00:00:00 -5 Sample ID 351 - Marchantaria Time Series site visit, measurements and specimen collection \N +352 Observation 2 1984-09-13 00:00:00 -5 1984-09-13 00:00:00 -5 Sample ID 352 - Marchantaria Time Series site visit, measurements and specimen collection \N +353 Observation 2 1984-09-27 00:00:00 -5 1984-09-27 00:00:00 -5 Sample ID 353 - Marchantaria Time Series site visit, measurements and specimen collection \N +354 Observation 2 1984-10-10 00:00:00 -5 1984-10-10 00:00:00 -5 Sample ID 354 - Marchantaria Time Series site visit, measurements and specimen collection \N +355 Observation 2 1984-10-25 00:00:00 -5 1984-10-25 00:00:00 -5 Sample ID 355 - Marchantaria Time Series site visit, measurements and specimen collection \N +356 Observation 2 1984-11-07 00:00:00 -5 1984-11-07 00:00:00 -5 Sample ID 356 - Marchantaria Time Series site visit, measurements and specimen collection \N +357 Observation 2 1984-11-23 00:00:00 -5 1984-11-23 00:00:00 -5 Sample ID 357 - Marchantaria Time Series site visit, measurements and specimen collection \N +358 Observation 2 1984-12-05 00:00:00 -5 1984-12-05 00:00:00 -5 Sample ID 358 - Marchantaria Time Series site visit, measurements and specimen collection \N +359 Observation 2 1984-12-18 00:00:00 -5 1984-12-18 00:00:00 -5 Sample ID 359 - Marchantaria Time Series site visit, measurements and specimen collection \N +360 Observation 2 1985-02-13 00:00:00 -5 1985-02-13 00:00:00 -5 Sample ID 360 - Marchantaria Time Series site visit, measurements and specimen collection \N +361 Observation 2 1985-03-06 00:00:00 -5 1985-03-06 00:00:00 -5 Sample ID 361 - Marchantaria Time Series site visit, measurements and specimen collection \N +362 Observation 2 1985-03-20 00:00:00 -5 1985-03-20 00:00:00 -5 Sample ID 362 - Marchantaria Time Series site visit, measurements and specimen collection \N +363 Observation 2 1985-04-03 00:00:00 -5 1985-04-03 00:00:00 -5 Sample ID 363 - Marchantaria Time Series site visit, measurements and specimen collection \N +364 Observation 2 1985-04-17 00:00:00 -5 1985-04-17 00:00:00 -5 Sample ID 364 - Marchantaria Time Series site visit, measurements and specimen collection \N +365 Observation 2 1985-05-02 00:00:00 -5 1985-05-02 00:00:00 -5 Sample ID 365 - Marchantaria Time Series site visit, measurements and specimen collection \N +366 Observation 2 1985-05-15 00:00:00 -5 1985-05-15 00:00:00 -5 Sample ID 366 - Marchantaria Time Series site visit, measurements and specimen collection \N +367 Observation 2 1985-05-29 00:00:00 -5 1985-05-29 00:00:00 -5 Sample ID 367 - Marchantaria Time Series site visit, measurements and specimen collection \N +368 Observation 2 1985-06-12 00:00:00 -5 1985-06-12 00:00:00 -5 Sample ID 368 - Marchantaria Time Series site visit, measurements and specimen collection \N +369 Observation 2 1985-06-26 00:00:00 -5 1985-06-26 00:00:00 -5 Sample ID 369 - Marchantaria Time Series site visit, measurements and specimen collection \N +370 Observation 2 1985-07-10 00:00:00 -5 1985-07-10 00:00:00 -5 Sample ID 370 - Marchantaria Time Series site visit, measurements and specimen collection \N +371 Observation 2 1985-07-21 00:00:00 -5 1985-07-21 00:00:00 -5 Sample ID 371 - Marchantaria Time Series site visit, measurements and specimen collection \N +372 Observation 2 1985-10-10 00:00:00 -5 1985-10-10 00:00:00 -5 Sample ID 372 - Marchantaria Time Series site visit, measurements and specimen collection \N +373 Observation 2 1985-10-30 00:00:00 -5 1985-10-30 00:00:00 -5 Sample ID 373 - Marchantaria Time Series site visit, measurements and specimen collection \N +374 Observation 2 1985-11-13 00:00:00 -5 1985-11-13 00:00:00 -5 Sample ID 374 - Marchantaria Time Series site visit, measurements and specimen collection \N +375 Observation 2 1985-11-27 00:00:00 -5 1985-11-27 00:00:00 -5 Sample ID 375 - Marchantaria Time Series site visit, measurements and specimen collection \N +376 Observation 2 1985-12-12 00:00:00 -5 1985-12-12 00:00:00 -5 Sample ID 376 - Marchantaria Time Series site visit, measurements and specimen collection \N +377 Observation 2 1985-12-26 00:00:00 -5 1985-12-26 00:00:00 -5 Sample ID 377 - Marchantaria Time Series site visit, measurements and specimen collection \N +378 Observation 2 1986-01-10 00:00:00 -5 1986-01-10 00:00:00 -5 Sample ID 378 - Marchantaria Time Series site visit, measurements and specimen collection \N +379 Observation 2 1986-01-30 00:00:00 -5 1986-01-30 00:00:00 -5 Sample ID 379 - Marchantaria Time Series site visit, measurements and specimen collection \N +380 Observation 2 1986-02-14 00:00:00 -5 1986-02-14 00:00:00 -5 Sample ID 380 - Marchantaria Time Series site visit, measurements and specimen collection \N +381 Observation 2 1986-03-04 00:00:00 -5 1986-03-04 00:00:00 -5 Sample ID 381 - Marchantaria Time Series site visit, measurements and specimen collection \N +382 Observation 2 1986-03-21 00:00:00 -5 1986-03-21 00:00:00 -5 Sample ID 382 - Marchantaria Time Series site visit, measurements and specimen collection \N +383 Observation 2 1986-04-12 00:00:00 -5 1986-04-12 00:00:00 -5 Sample ID 383 - Marchantaria Time Series site visit, measurements and specimen collection \N +384 Observation 2 1986-04-28 00:00:00 -5 1986-04-28 00:00:00 -5 Sample ID 384 - Marchantaria Time Series site visit, measurements and specimen collection \N +385 Observation 2 1986-05-21 00:00:00 -5 1986-05-21 00:00:00 -5 Sample ID 385 - Marchantaria Time Series site visit, measurements and specimen collection \N +386 Observation 2 1986-06-17 00:00:00 -5 1986-06-17 00:00:00 -5 Sample ID 386 - Marchantaria Time Series site visit, measurements and specimen collection \N +387 Observation 2 1986-07-02 00:00:00 -5 1986-07-02 00:00:00 -5 Sample ID 387 - Marchantaria Time Series site visit, measurements and specimen collection \N +388 Observation 2 1986-08-20 00:00:00 -5 1986-08-20 00:00:00 -5 Sample ID 388 - Marchantaria Time Series site visit, measurements and specimen collection \N +389 Observation 2 1986-09-12 00:00:00 -5 1986-09-12 00:00:00 -5 Sample ID 389 - Marchantaria Time Series site visit, measurements and specimen collection \N +390 Observation 2 1986-10-21 00:00:00 -5 1986-10-21 00:00:00 -5 Sample ID 390 - Marchantaria Time Series site visit, measurements and specimen collection \N +391 Observation 2 1986-11-05 00:00:00 -5 1986-11-05 00:00:00 -5 Sample ID 391 - Marchantaria Time Series site visit, measurements and specimen collection \N +392 Observation 2 1986-11-19 00:00:00 -5 1986-11-19 00:00:00 -5 Sample ID 392 - Marchantaria Time Series site visit, measurements and specimen collection \N +411 Observation 2 1987-06-05 00:00:00 -5 1987-06-05 00:00:00 -5 Sample ID 411 - Marchantaria Time Series site visit, measurements and specimen collection \N +412 Observation 2 1987-06-28 00:00:00 -5 1987-06-28 00:00:00 -5 Sample ID 412 - Marchantaria Time Series site visit, measurements and specimen collection \N +393 Observation 2 1987-08-25 00:00:00 -5 1987-08-25 00:00:00 -5 Sample ID 393 - Marchantaria Time Series site visit, measurements and specimen collection \N +394 Observation 2 1987-09-30 00:00:00 -5 1987-09-30 00:00:00 -5 Sample ID 394 - Marchantaria Time Series site visit, measurements and specimen collection \N +395 Observation 2 1987-12-07 00:00:00 -5 1987-12-07 00:00:00 -5 Sample ID 395 - Marchantaria Time Series site visit, measurements and specimen collection \N +396 Observation 2 1988-01-08 00:00:00 -5 1988-01-08 00:00:00 -5 Sample ID 396 - Marchantaria Time Series site visit, measurements and specimen collection \N +397 Observation 2 1988-02-05 00:00:00 -5 1988-02-05 00:00:00 -5 Sample ID 397 - Marchantaria Time Series site visit, measurements and specimen collection \N +398 Observation 2 1988-04-21 00:00:00 -5 1988-04-21 00:00:00 -5 Sample ID 398 - Marchantaria Time Series site visit, measurements and specimen collection \N +399 Observation 2 1988-05-20 00:00:00 -5 1988-05-20 00:00:00 -5 Sample ID 399 - Marchantaria Time Series site visit, measurements and specimen collection \N +400 Observation 2 1988-06-29 00:00:00 -5 1988-06-29 00:00:00 -5 Sample ID 400 - Marchantaria Time Series site visit, measurements and specimen collection \N +401 Observation 2 1988-07-18 00:00:00 -5 1988-07-18 00:00:00 -5 Sample ID 401 - Marchantaria Time Series site visit, measurements and specimen collection \N +402 Observation 2 1988-08-28 00:00:00 -5 1988-08-28 00:00:00 -5 Sample ID 402 - Marchantaria Time Series site visit, measurements and specimen collection \N +403 Observation 2 1988-09-23 00:00:00 -5 1988-09-23 00:00:00 -5 Sample ID 403 - Marchantaria Time Series site visit, measurements and specimen collection \N +404 Observation 2 1989-02-01 00:00:00 -5 1989-02-01 00:00:00 -5 Sample ID 404 - Marchantaria Time Series site visit, measurements and specimen collection \N +405 Observation 2 1989-03-12 00:00:00 -5 1989-03-12 00:00:00 -5 Sample ID 405 - Marchantaria Time Series site visit, measurements and specimen collection \N +406 Observation 2 1989-07-11 00:00:00 -5 1989-07-11 00:00:00 -5 Sample ID 406 - Marchantaria Time Series site visit, measurements and specimen collection \N +407 Observation 2 1989-08-10 00:00:00 -5 1989-08-10 00:00:00 -5 Sample ID 407 - Marchantaria Time Series site visit, measurements and specimen collection \N +408 Observation 2 1989-10-17 00:00:00 -5 1989-10-17 00:00:00 -5 Sample ID 408 - Marchantaria Time Series site visit, measurements and specimen collection \N +409 Observation 2 1989-11-19 00:00:00 -5 1989-11-19 00:00:00 -5 Sample ID 409 - Marchantaria Time Series site visit, measurements and specimen collection \N +410 Observation 2 1989-12-12 00:00:00 -5 1989-12-12 00:00:00 -5 Sample ID 410 - Marchantaria Time Series site visit, measurements and specimen collection \N +413 Observation 2 1990-03-13 00:00:00 -5 1990-03-13 00:00:00 -5 Sample ID 413 - Marchantaria Time Series site visit, measurements and specimen collection \N +414 Observation 2 1990-05-02 00:00:00 -5 1990-05-02 00:00:00 -5 Sample ID 414 - Marchantaria Time Series site visit, measurements and specimen collection \N +415 Observation 2 1990-06-11 00:00:00 -5 1990-06-11 00:00:00 -5 Sample ID 415 - Marchantaria Time Series site visit, measurements and specimen collection \N +416 Observation 2 1990-09-14 00:00:00 -5 1990-09-14 00:00:00 -5 Sample ID 416 - Marchantaria Time Series site visit, measurements and specimen collection \N +417 Observation 2 1990-10-17 00:00:00 -5 1990-10-17 00:00:00 -5 Sample ID 417 - Marchantaria Time Series site visit, measurements and specimen collection \N +418 Observation 2 1990-12-01 00:00:00 -5 1990-12-01 00:00:00 -5 Sample ID 418 - Marchantaria Time Series site visit, measurements and specimen collection \N +419 Observation 2 1991-01-15 00:00:00 -5 1991-01-15 00:00:00 -5 Sample ID 419 - Marchantaria Time Series site visit, measurements and specimen collection \N +420 Observation 2 1991-02-08 00:00:00 -5 1991-02-08 00:00:00 -5 Sample ID 420 - Marchantaria Time Series site visit, measurements and specimen collection \N +421 Observation 2 1991-03-25 00:00:00 -5 1991-03-25 00:00:00 -5 Sample ID 421 - Marchantaria Time Series site visit, measurements and specimen collection \N +422 Observation 2 1991-06-28 00:00:00 -5 1991-06-28 00:00:00 -5 Sample ID 422 - Marchantaria Time Series site visit, measurements and specimen collection \N +423 Observation 2 1991-08-01 00:00:00 -5 1991-08-01 00:00:00 -5 Sample ID 423 - Marchantaria Time Series site visit, measurements and specimen collection \N +424 Observation 2 1991-10-05 00:00:00 -5 1991-10-05 00:00:00 -5 Sample ID 424 - Marchantaria Time Series site visit, measurements and specimen collection \N +425 Observation 2 1991-10-29 00:00:00 -5 1991-10-29 00:00:00 -5 Sample ID 425 - Marchantaria Time Series site visit, measurements and specimen collection \N +426 Observation 2 1991-12-06 00:00:00 -5 1991-12-06 00:00:00 -5 Sample ID 426 - Marchantaria Time Series site visit, measurements and specimen collection \N +427 Observation 2 1992-01-18 00:00:00 -5 1992-01-18 00:00:00 -5 Sample ID 427 - Marchantaria Time Series site visit, measurements and specimen collection \N +428 Observation 2 1992-02-22 00:00:00 -5 1992-02-22 00:00:00 -5 Sample ID 428 - Marchantaria Time Series site visit, measurements and specimen collection \N +429 Observation 2 1992-03-24 00:00:00 -5 1992-03-24 00:00:00 -5 Sample ID 429 - Marchantaria Time Series site visit, measurements and specimen collection \N +430 Observation 2 1992-04-24 00:00:00 -5 1992-04-24 00:00:00 -5 Sample ID 430 - Marchantaria Time Series site visit, measurements and specimen collection \N +431 Observation 2 1992-05-14 00:00:00 -5 1992-05-14 00:00:00 -5 Sample ID 431 - Marchantaria Time Series site visit, measurements and specimen collection \N +432 Observation 2 1992-06-16 00:00:00 -5 1992-06-16 00:00:00 -5 Sample ID 432 - Marchantaria Time Series site visit, measurements and specimen collection \N +433 Observation 2 1993-03-24 00:00:00 -5 1993-03-24 00:00:00 -5 Sample ID 433 - Marchantaria Time Series site visit, measurements and specimen collection \N +434 Observation 2 1993-04-17 00:00:00 -5 1993-04-17 00:00:00 -5 Sample ID 434 - Marchantaria Time Series site visit, measurements and specimen collection \N +435 Observation 2 1993-06-20 00:00:00 -5 1993-06-20 00:00:00 -5 Sample ID 435 - Marchantaria Time Series site visit, measurements and specimen collection \N +436 Observation 2 1993-08-24 00:00:00 -5 1993-08-24 00:00:00 -5 Sample ID 436 - Marchantaria Time Series site visit, measurements and specimen collection \N +\. + + +-- +-- TOC entry 5062 (class 0 OID 0) +-- Dependencies: 242 +-- Name: actions_actionid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('actions_actionid_seq', 1, false); + + +-- +-- TOC entry 4782 (class 0 OID 70134) +-- Dependencies: 245 +-- Data for Name: affiliations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY affiliations (affiliationid, personid, organizationid, isprimaryorganizationcontact, affiliationstartdate, affiliationenddate, primaryphone, primaryemail, primaryaddress, personlink) FROM stdin; +1 1 1 f 1993-03-01 \N \N emiliom@uw.edu \N http://staff.washington.edu/emiliom/ +\. + + +-- +-- TOC entry 5063 (class 0 OID 0) +-- Dependencies: 244 +-- Name: affiliations_affiliationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('affiliations_affiliationid_seq', 1, false); + + +-- +-- TOC entry 4750 (class 0 OID 69997) +-- Dependencies: 213 +-- Data for Name: annotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY annotations (annotationid, annotationtypecv, annotationcode, annotationtext, annotationdatetime, annotationutcoffset, annotationlink, annotatorid, citationid) FROM stdin; +\. + + +-- +-- TOC entry 5064 (class 0 OID 0) +-- Dependencies: 212 +-- Name: annotations_annotationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('annotations_annotationid_seq', 1, false); + + +-- +-- TOC entry 4902 (class 0 OID 70832) +-- Dependencies: 365 +-- Data for Name: authorlists; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY authorlists (bridgeid, citationid, personid, authororder) FROM stdin; +1 1 2 1 +2 1 3 2 +3 1 4 3 +4 1 5 4 +\. + + +-- +-- TOC entry 5065 (class 0 OID 0) +-- Dependencies: 364 +-- Name: authorlists_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('authorlists_bridgeid_seq', 4, true); + + +-- +-- TOC entry 4843 (class 0 OID 70540) +-- Dependencies: 306 +-- Data for Name: calibrationactions; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY calibrationactions (actionid, calibrationcheckvalue, instrumentoutputvariableid, calibrationequation) FROM stdin; +\. + + +-- +-- TOC entry 4845 (class 0 OID 70547) +-- Dependencies: 308 +-- Data for Name: calibrationreferenceequipment; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY calibrationreferenceequipment (bridgeid, actionid, equipmentid) FROM stdin; +\. + + +-- +-- TOC entry 5066 (class 0 OID 0) +-- Dependencies: 307 +-- Name: calibrationreferenceequipment_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('calibrationreferenceequipment_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4847 (class 0 OID 70555) +-- Dependencies: 310 +-- Data for Name: calibrationstandards; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY calibrationstandards (bridgeid, actionid, referencematerialid) FROM stdin; +\. + + +-- +-- TOC entry 5067 (class 0 OID 0) +-- Dependencies: 309 +-- Name: calibrationstandards_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('calibrationstandards_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4920 (class 0 OID 70910) +-- Dependencies: 383 +-- Data for Name: categoricalresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY categoricalresults (resultid, xlocation, xlocationunitsid, ylocation, ylocationunitsid, zlocation, zlocationunitsid, spatialreferenceid, qualitycodecv) FROM stdin; +\. + + +-- +-- TOC entry 4752 (class 0 OID 70008) +-- Dependencies: 215 +-- Data for Name: categoricalresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY categoricalresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5068 (class 0 OID 0) +-- Dependencies: 214 +-- Name: categoricalresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('categoricalresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4922 (class 0 OID 70917) +-- Dependencies: 385 +-- Data for Name: categoricalresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY categoricalresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset) FROM stdin; +\. + + +-- +-- TOC entry 5069 (class 0 OID 0) +-- Dependencies: 384 +-- Name: categoricalresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('categoricalresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4868 (class 0 OID 70661) +-- Dependencies: 331 +-- Data for Name: citationextensionpropertyvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY citationextensionpropertyvalues (bridgeid, citationid, propertyid, propertyvalue) FROM stdin; +\. + + +-- +-- TOC entry 5070 (class 0 OID 0) +-- Dependencies: 330 +-- Name: citationextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('citationextensionpropertyvalues_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4880 (class 0 OID 70712) +-- Dependencies: 343 +-- Data for Name: citationexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY citationexternalidentifiers (bridgeid, citationid, externalidentifiersystemid, citationexternalidentifer, citationexternalidentiferuri) FROM stdin; +1 1 1 10.1029/95GB01145 http://dx.doi.org/10.1029/95GB01145 +\. + + +-- +-- TOC entry 5071 (class 0 OID 0) +-- Dependencies: 342 +-- Name: citationexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('citationexternalidentifiers_bridgeid_seq', 1, true); + + +-- +-- TOC entry 4904 (class 0 OID 70840) +-- Dependencies: 367 +-- Data for Name: citations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY citations (citationid, title, publisher, publicationyear, citationlink) FROM stdin; +1 Seasonal variation in chemical distributions in the Amazon (Solimoes) River: A multiyear time series Global Biogeochemical Cycles 1995 http://dx.doi.org/10.1029/95GB01145 +\. + + +-- +-- TOC entry 5072 (class 0 OID 0) +-- Dependencies: 366 +-- Name: citations_citationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('citations_citationid_seq', 1, true); + + +-- +-- TOC entry 4808 (class 0 OID 70274) +-- Dependencies: 271 +-- Data for Name: cv_actiontype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_actiontype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +estimation Estimation The act of creating results by estimation or professional judgement. Observation http://vocabulary.odm2.org/actiontype/estimation +dataRetrieval Data retrieval The act of retrieving data from a datalogger deployed at a monitoring site. Equipment http://vocabulary.odm2.org/actiontype/dataRetrieval +derivation Derivation The act of creating results by deriving them from other results. Observation http://vocabulary.odm2.org/actiontype/derivation +instrumentRetrieval Instrument retrieval The act of recovering an in situ instrument (which made observations) from a sampling feature. This action ends an instrument deployment action. Equipment http://vocabulary.odm2.org/actiontype/instrumentRetrieval +cruise Cruise A specialized form of an expedition action that involves an ocean-going vessel. Cruise actions are typically parents to other related Actions. FieldActivity http://vocabulary.odm2.org/actiontype/cruise +equipmentProgramming Equipment programming The act of creating or modifying the data collection program running on a datalogger or other equipment deployed at a monitoring site. Equipment http://vocabulary.odm2.org/actiontype/equipmentProgramming +siteVisit Site visit A field visit action in which a single site is visited for one or more other possible actions (i.e., specimen collection, equipment maintenance, etc.). Site visit actions are typically parents to other related actions. FieldActivity http://vocabulary.odm2.org/actiontype/siteVisit +simulation Simulation The act of calculating results through the use of a simulation model. Observation http://vocabulary.odm2.org/actiontype/simulation +specimenAnalysis Specimen analysis The analysis of a specimen ex situ using an instrument, typically in a laboratory, for the purpose of measuring properties of that specimen. Observation http://vocabulary.odm2.org/actiontype/specimenAnalysis +specimenPreservation Specimen preservation The act of preserving a specimen collected in the field to produce a sample suitable for analysis using a particular analytical procedure. SamplingFeature http://vocabulary.odm2.org/actiontype/specimenPreservation +equipmentMaintenance Equipment maintenance The act of performing regular or periodic upkeep or servicing of field or laboratory equipment. Maintenance may be performed in the field, in a laboratory, or at a factory maintenance center. Equipment http://vocabulary.odm2.org/actiontype/equipmentMaintenance +equipmentRetrieval Equipment retrieval The act of recovering a piece of equipment that made no observations from a deployment at a sampling feature or other location. For instruments, the more specific term Instrument retrieval should be used. Equipment http://vocabulary.odm2.org/actiontype/equipmentRetrieval +genericNonObservation Generic non-observation A generic, non-specific action type that does not produce a result. Other http://vocabulary.odm2.org/actiontype/genericNonObservation +specimenPreparation Specimen preparation The processing of a specimen collected in the field to produce a sample suitable for analysis using a particular analytical procedure. SamplingFeature http://vocabulary.odm2.org/actiontype/specimenPreparation +specimenCollection Specimen collection The collection of a specimen in the field. SamplingFeature http://vocabulary.odm2.org/actiontype/specimenCollection +instrumentCalibration Instrument calibration The act of calibrating an instrument either in the field or in a laboratory. The instrument may be an in situ field sensor or a laboratory instrument. An instrument is the subclass of equipment that is capable of making an observation to produce a result. Equipment http://vocabulary.odm2.org/actiontype/instrumentCalibration +expedition Expedition A field visit action in which many sites are visited over a continguous period of time, often involving serveral investigators, and typically having a specific purpose. Expedition actions are typically parents to other related Actions. FieldActivity http://vocabulary.odm2.org/actiontype/expedition +fieldActivity Field activity A generic, non-specific action type performed in the field at or on a sampling feature. FieldActivity http://vocabulary.odm2.org/actiontype/fieldActivity +instrumentDeployment Instrument deployment The act of deploying an in situ instrument or sensor that creates an observation result. This term is a specific form of the Observation actions category of actions, which is the only category of actions that can produce observation results. Observation http://vocabulary.odm2.org/actiontype/instrumentDeployment +specimenFractionation Specimen fractionation The process of separating a specimen into multiple different fractions or size classes. SamplingFeature http://vocabulary.odm2.org/actiontype/specimenFractionation +observation Observation The general act of making an observation. This term should be used when a Result is generated but the more specific terms of Instrument deployment or Specimen analysis are not applicable. Observation http://vocabulary.odm2.org/actiontype/observation +submersibleLaunch Submersible launch The act of deploying a submersible from a vessel or ship. FieldActivity http://vocabulary.odm2.org/actiontype/submersibleLaunch +equipmentDeployment Equipment deployment The act of placing equipment that will not make observations at or within a sampling feature. Actions involving the deployment of instruments should use the more specific term Instrument deployment. Equipment http://vocabulary.odm2.org/actiontype/equipmentDeployment +\. + + +-- +-- TOC entry 4809 (class 0 OID 70282) +-- Dependencies: 272 +-- Data for Name: cv_aggregationstatistic; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_aggregationstatistic (term, name, definition, category, sourcevocabularyuri) FROM stdin; +continuous Continuous A quantity specified at a particular instant in time measured with sufficient frequency (small spacing) to be interpreted as a continuous record of the phenomenon. \N http://vocabulary.odm2.org/aggregationstatistic/continuous +cumulative Cumulative The values represent the cumulative value of a variable measured or calculated up to a given instant of time, such as cumulative volume of flow or cumulative precipitation. \N http://vocabulary.odm2.org/aggregationstatistic/cumulative +average Average The values represent the average over a time interval, such as daily mean discharge or daily mean temperature. \N http://vocabulary.odm2.org/aggregationstatistic/average +constantOverInterval Constant over interval The values are quantities that can be interpreted as constant for all time, or over the time interval to a subsequent measurement of the same variable at the same site. \N http://vocabulary.odm2.org/aggregationstatistic/constantOverInterval +standardDeviation Standard deviation The values represent the standard deviation of a set of observations made over a time interval. Standard deviation computed using the unbiased formula SQRT(SUM((Xi-mean)^2)/(n-1)) are preferred. The specific formula used to compute variance can be noted in the methods description. \N http://vocabulary.odm2.org/aggregationstatistic/standardDeviation +bestEasySystematicEstimator Best easy systematic estimator Best Easy Systematic Estimator BES = (Q1 +2Q2 +Q3)/4. Q1, Q2, and Q3 are first, second, and third quartiles. See Woodcock, F. and Engel, C., 2005: Operational Consensus Forecasts.Weather and Forecasting, 20, 101-111. (http://www.bom.gov.au/nmoc/bulletins/60/article_by_Woodcock_in_Weather_and_Forecasting.pdf) and Wonnacott, T. H., and R. J. Wonnacott, 1972: Introductory Statistics. Wiley, 510 pp. \N http://vocabulary.odm2.org/aggregationstatistic/bestEasySystematicEstimator +unknown Unknown The aggregation statistic is unknown. \N http://vocabulary.odm2.org/aggregationstatistic/unknown +categorical Categorical The values are categorical rather than continuous valued quantities. \N http://vocabulary.odm2.org/aggregationstatistic/categorical +sporadic Sporadic The phenomenon is sampled at a particular instant in time but with a frequency that is too coarse for interpreting the record as continuous. This would be the case when the spacing is significantly larger than the support and the time scale of fluctuation of the phenomenon, such as for example infrequent water quality samples. \N http://vocabulary.odm2.org/aggregationstatistic/sporadic +maximum Maximum The values are the maximum values occurring at some time during a time interval, such as annual maximum discharge or a daily maximum air temperature. \N http://vocabulary.odm2.org/aggregationstatistic/maximum +mode Mode The values are the most frequent values occurring at some time during a time interval, such as annual most frequent wind direction. \N http://vocabulary.odm2.org/aggregationstatistic/mode +minimum Minimum The values are the minimum values occurring at some time during a time interval, such as 7-day low flow for a year or the daily minimum temperature. \N http://vocabulary.odm2.org/aggregationstatistic/minimum +variance Variance The values represent the variance of a set of observations made over a time interval. Variance computed using the unbiased formula SUM((Xi-mean)^2)/(n-1) are preferred. The specific formula used to compute variance can be noted in the methods description. \N http://vocabulary.odm2.org/aggregationstatistic/variance +incremental Incremental The values represent the incremental value of a variable over a time interval, such as the incremental volume of flow or incremental precipitation. \N http://vocabulary.odm2.org/aggregationstatistic/incremental +median Median The values represent the median over a time interval, such as daily median discharge or daily median temperature. \N http://vocabulary.odm2.org/aggregationstatistic/median +\. + + +-- +-- TOC entry 4810 (class 0 OID 70290) +-- Dependencies: 273 +-- Data for Name: cv_annotationtype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_annotationtype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +siteGroup Site group A group of sites such as a transect, station, observatory, monitoring collection, etc. Group http://vocabulary.odm2.org/annotationtype/siteGroup +categoricalResultValueAnnotation Categorical result value annotation An annotation or data qualifying comment applied to a data value from a categorical Result Annotation http://vocabulary.odm2.org/annotationtype/categoricalResultValueAnnotation +timeSeriesResultValueAnnotation Time series result value annotation An annotation or data qualifying comment applied to a data value from a time series Result Annotation http://vocabulary.odm2.org/annotationtype/timeSeriesResultValueAnnotation +equipmentAnnotation Equipment annotation An annotation or qualifying comment about a piece of Equipment Annotation http://vocabulary.odm2.org/annotationtype/equipmentAnnotation +methodAnnotation Method annotation An annotation or qualifiying comment about a Method Annotation http://vocabulary.odm2.org/annotationtype/methodAnnotation +profileResultValueAnnotation Profile result value annotation An annotation or data qualifying comment applied to a data value from a profile Result Annotation http://vocabulary.odm2.org/annotationtype/profileResultValueAnnotation +organizationAnnotation Organization annotation An annotation or qualifiying comment about an Organization Annotation http://vocabulary.odm2.org/annotationtype/organizationAnnotation +pointCoverageResultValueAnnotation Point coverage result value annotation An annotation or data qualifying comment applied to a data value from a point coverage Result Annotation http://vocabulary.odm2.org/annotationtype/pointCoverageResultValueAnnotation +trajectoryResultValueAnnotation Trajectory result value annotation An annotation or data qualifying comment applied to a data value from a trajectory Result Annotation http://vocabulary.odm2.org/annotationtype/trajectoryResultValueAnnotation +resultAnnotation Result annotation An annotation or qualifying comment about a Result Annotation http://vocabulary.odm2.org/annotationtype/resultAnnotation +sectionResultValueAnnotation Section result value annotation An annotation or data qualifying comment applied to a data value from a section Result Annotation http://vocabulary.odm2.org/annotationtype/sectionResultValueAnnotation +personAnnotation Person annotation An annotation or qualifying comment about a Person Annotation http://vocabulary.odm2.org/annotationtype/personAnnotation +valueGroup Value group A group of data values such as those from a profile, analysis, spectra, publication table, dataset, incident reports, etc. Group http://vocabulary.odm2.org/annotationtype/valueGroup +spectraResultValueAnnotation Spectra result value annotation An annotation or data qualifying comment applied to a data value from a spectra Result Annotation http://vocabulary.odm2.org/annotationtype/spectraResultValueAnnotation +specimenGroup Specimen group A group of specimens such as an analysis batch, profile, experiment, etc. Group http://vocabulary.odm2.org/annotationtype/specimenGroup +actionGroup Action group A group of actions such as those that are part of a cruise, expedition, experiment, project, etc. Group http://vocabulary.odm2.org/annotationtype/actionGroup +personGroup Person group A group of people such as a research team, project team, etc. Group http://vocabulary.odm2.org/annotationtype/personGroup +measurementResultValueAnnotation Measurement result value annotation An annotation or data qualifying comment applied to a data value from a measurement Result Annotation http://vocabulary.odm2.org/annotationtype/measurementResultValueAnnotation +dataSetAnnotation Dataset annotation An annotation or qualifying comment about a DataSet Annotation http://vocabulary.odm2.org/annotationtype/dataSetAnnotation +actionAnnotation Action annotation An annotation or qualifying comment about an Action Annotation http://vocabulary.odm2.org/annotationtype/actionAnnotation +siteAnnotation Site annotation An annotation or qualifying comment about a Site Annotation http://vocabulary.odm2.org/annotationtype/siteAnnotation +specimenAnnotation Specimen annotation An annotation or qualifying comment about a Specimen Annotation http://vocabulary.odm2.org/annotationtype/specimenAnnotation +transectResultValueAnnotation Transect result value annotation An annotation or data qualifying comment applied to a data value from a transect Result Annotation http://vocabulary.odm2.org/annotationtype/transectResultValueAnnotation +variableAnnotation Variable annotation An annotation or qualifying comment about a Variable Annotation http://vocabulary.odm2.org/annotationtype/variableAnnotation +samplingFeatureAnnotation Sampling feature annotation An annotation or qualifiying comment about a SamplingFeature Annotation http://vocabulary.odm2.org/annotationtype/samplingFeatureAnnotation +\. + + +-- +-- TOC entry 4811 (class 0 OID 70298) +-- Dependencies: 274 +-- Data for Name: cv_censorcode; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_censorcode (term, name, definition, category, sourcevocabularyuri) FROM stdin; +lessThan Less than The value is known to be less than the recorded value. \N http://vocabulary.odm2.org/censorcode/lessThan +notCensored Not censored The reported value is not censored. \N http://vocabulary.odm2.org/censorcode/notCensored +presentButNotQuantified Present but not quantified The anlayte is known to be present, but was not quantified. The recorded value represents the level below which the analyte can no longer be quantified. \N http://vocabulary.odm2.org/censorcode/presentButNotQuantified +nonDetect Non-detect The value was reported as a non-detect. The recorded value represents the level at which the anlalyte can be detected. \N http://vocabulary.odm2.org/censorcode/nonDetect +greaterThan Greater than The value is known to be greater than the recorded value. \N http://vocabulary.odm2.org/censorcode/greaterThan +\. + + +-- +-- TOC entry 4812 (class 0 OID 70306) +-- Dependencies: 275 +-- Data for Name: cv_dataqualitytype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_dataqualitytype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +\. + + +-- +-- TOC entry 4813 (class 0 OID 70314) +-- Dependencies: 276 +-- Data for Name: cv_datasettypecv; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_datasettypecv (term, name, definition, category, sourcevocabularyuri) FROM stdin; +specimenTimeSeries Specimen time series A dataset that contains multiple measurement Results derived from Specimens. This corresponds to the YAML Observations Data Archive (YODA) specimen time series profile. \N http://vocabulary.odm2.org/datasettype/specimenTimeSeries +singleTimeSeries Single time series A Dataset that contains a single time series Result. This corresponds to the YAML Observations Data Archive (YODA) singe time series profile. \N http://vocabulary.odm2.org/datasettype/singleTimeSeries +multiTimeSeries Multi-time series A Dataset that contains multiple time series Results. This corresponds to the YAML Observations Data Archive (YODA) multi-time series profile. \N http://vocabulary.odm2.org/datasettype/multiTimeSeries +multiVariableSpecimenMeasurements Multi-variable specimen measurements A dataset that contains multiple measurement Results derived from Specimens. This corresponds to the YAML Observations Data Archive (YODA) specimen time series profile. \N http://vocabulary.odm2.org/datasettype/multiVariableSpecimenMeasurements +other Other A set of Results that has been grouped into a Dataset because they are logically related. The group does not conform to any particular profile. \N http://vocabulary.odm2.org/datasettype/other +\. + + +-- +-- TOC entry 4814 (class 0 OID 70322) +-- Dependencies: 277 +-- Data for Name: cv_directivetype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_directivetype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +monitoringProgram Monitoring program Environmental monitoring that is conducted according to a formal plan that may reflect the overall objectives of an organization, references specific strategies that help deliver the objectives and details of specific projects or tasks, and that contains a listing of what is being monitored, how that monitoring is taking place, and the time-scale over which monitoring should take place. \N http://vocabulary.odm2.org/directivetype/monitoringProgram +project Project A collaborative enterprise, involving research or design, the is carefully planned to achieve a particular aim. \N http://vocabulary.odm2.org/directivetype/project +fieldCampaign Field campaign A sampling event conducted in the field during which instruments may be deployed and during which samples may be collected. Field campaigns typically have a focus such as characterizing a particular environment, quantifying a particular phenomenon, answering a particular research question, etc. and may last for hours, days, weeks, months, or even longer. \N http://vocabulary.odm2.org/directivetype/fieldCampaign +\. + + +-- +-- TOC entry 4815 (class 0 OID 70330) +-- Dependencies: 278 +-- Data for Name: cv_elevationdatum; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_elevationdatum (term, name, definition, category, sourcevocabularyuri) FROM stdin; +NGVD29 NGVD29 National Geodetic Vertical Datum of 1929 \N http://vocabulary.odm2.org/elevationdatum/NGVD29 +MSL MSL Mean Sea Level \N http://vocabulary.odm2.org/elevationdatum/MSL +NAVD88 NAVD88 North American Vertical Datum of 1988 \N http://vocabulary.odm2.org/elevationdatum/NAVD88 +Unknown Unknown The vertical datum is unknown \N http://vocabulary.odm2.org/elevationdatum/Unknown +\. + + +-- +-- TOC entry 4816 (class 0 OID 70338) +-- Dependencies: 279 +-- Data for Name: cv_equipmenttype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_equipmenttype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +pressureTransducer Pressure transducer A sensor that measures pressure, typically of gases or liquids. Sensor http://vocabulary.odm2.org/equipmenttype/pressureTransducer +chargeRegulator Charge regulator An electroinic device that limits the rate at which electric current is added to or drawn from electric batteries. Power component http://vocabulary.odm2.org/equipmenttype/chargeRegulator +fluorometer Fluorometer A device used to measure paramters of flouroescence, including its intensity and wavelength distribution of emission spectrum after excitation by a certain spectrum of light. Sensor http://vocabulary.odm2.org/equipmenttype/fluorometer +turbidimeter Turbidimeter A water quality sensor that monitors light reflected off the particles suspended in water. Sensor http://vocabulary.odm2.org/equipmenttype/turbidimeter +enclosure Enclosure A cabinet or box within which electrical or electronic equipment are mounted to protect them from the environment. Platform http://vocabulary.odm2.org/equipmenttype/enclosure +laboratoryInstrument Laboratory instrument Any type of equipment, apparatus or device designed, constructed and refined to use well proven physical principles, relationships or technology to facilitate or enable the pursuit, acquisition, transduction and storage of repeatable, verifiable data, usually consisting of sets numerical measurements made upon otherwise unknown, unproven quantities, properties, phenomena, materials, forces or etc. Instrument http://vocabulary.odm2.org/equipmenttype/laboratoryInstrument +measurementTower Measurement tower A free standing tower that supports measuring instruments or sensors. Observation platform http://vocabulary.odm2.org/equipmenttype/measurementTower +stormBox Storm box An enclosure used to protect electronic equipment used for stormwater sampling. Platform http://vocabulary.odm2.org/equipmenttype/stormBox +levelStaff Level staff A graduate wooden, fiberglass, or aluminum rod used to determine differences in elevation. Instrument http://vocabulary.odm2.org/equipmenttype/levelStaff +antenna Antenna An electrical device that converts electric power into radio waves and vice versa. Communications component http://vocabulary.odm2.org/equipmenttype/antenna +cable Cable Two or more wires running side by side and bonded, twisted, or braided together to form a single assembly. Peripheral component http://vocabulary.odm2.org/equipmenttype/cable +mast Mast A pole that supports sensors, instruments, or measurement peripherals. Observation platform http://vocabulary.odm2.org/equipmenttype/mast +sensor Sensor A device that detects events or changes in quantities and provides a corresponding output, generally as an electrical or optical signal. Sensor http://vocabulary.odm2.org/equipmenttype/sensor +totalStation Total station An electronic and optical instrument used in modern surveying and building construction. A total station is an electronic theodoloite integrated with an electronic distance meter to read slope distances from the instrument to a particular point. Instrument http://vocabulary.odm2.org/equipmenttype/totalStation +battery Battery A device consisting of one or more electrochemical cells that convert stored chemical energy into electrical energy. Power component http://vocabulary.odm2.org/equipmenttype/battery +tripod Tripod A portable, three-legged frame used as a platform for supporting the weight and maintaining the stability of some other object. Typically used as a data collection platform to which sensors are attached. Observation platform http://vocabulary.odm2.org/equipmenttype/tripod +waterQualitySonde Water quality sonde A water quality monitoring instrument having multiple attached sensors. Sensor http://vocabulary.odm2.org/equipmenttype/waterQualitySonde +automaticLevel Automatic level A survey level that makes use of a compensator that ensures the line of sight remains horizontal once the operator has roughly leveled the instrument. Instrument http://vocabulary.odm2.org/equipmenttype/automaticLevel +solarPanel Solar panel A photovoltaic module that is electrically connected and mounted on a supporting structure. Used to generate and supply electricity. Power component http://vocabulary.odm2.org/equipmenttype/solarPanel +powerSupply Power supply An electronic device that supplies electric energy to an electrical load. The primary function of a power supply is to convert one form of electrical energy to another (e.g., solar to chemical). Power component http://vocabulary.odm2.org/equipmenttype/powerSupply +radio Radio A device that transfers information via electromagnetic signals through the atmosphere or free space. Communications component http://vocabulary.odm2.org/equipmenttype/radio +globalPositioningSystemReceiver Global positioning system receiver A device that accurately calculates geographical location by receiving information from Global Positioning System satellites. Sensor http://vocabulary.odm2.org/equipmenttype/globalPositioningSystemReceiver +sampler Sampler A device used to collect specimens for later ex situ analysis. Sampling device http://vocabulary.odm2.org/equipmenttype/sampler +datalogger Datalogger An electronic device that records data over time or in relation to location either with a built in instrument or sensor or via external instruments and sensors. Datalogger http://vocabulary.odm2.org/equipmenttype/datalogger +\. + + +-- +-- TOC entry 4817 (class 0 OID 70346) +-- Dependencies: 280 +-- Data for Name: cv_methodtype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_methodtype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +submersibleLaunch Submersible launch A method for launching a submersible from a vessel or ship. FieldActivity http://vocabulary.odm2.org/methodtype/submersibleLaunch +equipmentDeployment Equipment deployment A method for deploying a piece of equipment that will not make observations at a sampling feature. Observation http://vocabulary.odm2.org/methodtype/equipmentDeployment +instrumentCalibration Instrument calibration A method for calibrating an instrument either in the field or in the laboratory. Equipment http://vocabulary.odm2.org/methodtype/instrumentCalibration +expedition Expedition A method for performing an expedition action. FieldActivity http://vocabulary.odm2.org/methodtype/expedition +derivation Derivation A method for creating results by deriving them from other results. Observation http://vocabulary.odm2.org/methodtype/derivation +specimenFractionation Specimen fractionation A method for separating a specimen into multiple different fractions or size classes. SamplingFeature http://vocabulary.odm2.org/methodtype/specimenFractionation +instrumentRetrieval Instrument retrieval A method for retrieving or recovering an instrument that has been deployed at a smpling feature. Equipment http://vocabulary.odm2.org/methodtype/instrumentRetrieval +simulation Simulation A method for creating results by running a simulation model. Observation http://vocabulary.odm2.org/methodtype/simulation +siteVisit Site visit A method for performing a site visit action. FieldActivity http://vocabulary.odm2.org/methodtype/siteVisit +specimenPreservation Specimen preservation A method for preserving a specimen either in the field or in a laboratory prior to ex situ analysis. SamplingFeature http://vocabulary.odm2.org/methodtype/specimenPreservation +genericNonObservation Generic non-observation A method for completing a non-specific action that does not produce a result. Other http://vocabulary.odm2.org/methodtype/genericNonObservation +unknown Unknown The method type is unknown. Other http://vocabulary.odm2.org/methodtype/unknown +observation Observation A method for creating observation results. This term should be used when a Result is generated but the more specific terms of Instrument deployment or Specimen analysis are not applicable. Observation http://vocabulary.odm2.org/methodtype/observation +fieldActivity Field activity A method for performing an activity in the field at or on a sampling feature. FieldActivity http://vocabulary.odm2.org/methodtype/fieldActivity +cruise Cruise A method for performing a cruise action. FieldActivity http://vocabulary.odm2.org/methodtype/cruise +equipmentProgramming Equipment programming A method for creating or modifying the data collection program running on a datalogger or other equipment deployed at a monitoring site. \N http://vocabulary.odm2.org/methodtype/equipmentProgramming +instrumentDeployment Instrument deployment A method for deploying an instrument to make observations at a sampling feature. Observation http://vocabulary.odm2.org/methodtype/instrumentDeployment +dataRetrieval Data retrieval A method for retrieving data from a datalogger deployed at a monitoring site. Equipment http://vocabulary.odm2.org/methodtype/dataRetrieval +specimenCollection Specimen collection A method for collecting a specimen for ex situ analysis. SamplingFeature http://vocabulary.odm2.org/methodtype/specimenCollection +specimenAnalysis Specimen analysis A method for ex situ analysis of a specimen using an instrument, typically in a laboratory, for the purpose of measuring properties of a specimen. Observation http://vocabulary.odm2.org/methodtype/specimenAnalysis +equipmentMaintenance Equipment maintenance A method for performing periodic upkeep or servicing of field or laboratory equipment. Maintenance may be performed in the field, in a laboratory, or at a factory maintenance center. Equipment http://vocabulary.odm2.org/methodtype/equipmentMaintenance +estimation Estimation A method for creating results by estimation or professional judgement. Observation http://vocabulary.odm2.org/methodtype/estimation +specimenPreparation Specimen preparation A method for processing a specimen collected in the field to produce a sample suitable for analysis using a particular analytical procedure. SamplingFeature http://vocabulary.odm2.org/methodtype/specimenPreparation +equipmentRetrieval Equipment retrieval A method for retrieving equipment from a sampling feature at which or on which it was deployed. Equipment http://vocabulary.odm2.org/methodtype/equipmentRetrieval +\. + + +-- +-- TOC entry 4818 (class 0 OID 70354) +-- Dependencies: 281 +-- Data for Name: cv_organizationtype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_organizationtype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +center Center A place where some function or activity occurs. \N http://vocabulary.odm2.org/organizationtype/center +library Library An institution that holds books and or other forms of stored information for use by the public or other experts. \N http://vocabulary.odm2.org/organizationtype/library +analyticalLaboratory Analytical laboratory A laboratory within which ex situ analysis of of environmental samples is performed. \N http://vocabulary.odm2.org/organizationtype/analyticalLaboratory +researchOrganization Research organization A group of cooperating researchers. \N http://vocabulary.odm2.org/organizationtype/researchOrganization +college College An institution of higher education. \N http://vocabulary.odm2.org/organizationtype/college +museum Museum A building or institution dedicated to the acquisition, conservation, study, exhibition, and educational interpretation of objects having scientific, historical, cultural, or artistic value. \N http://vocabulary.odm2.org/organizationtype/museum +institute Institute An organization founded to promote a cause. \N http://vocabulary.odm2.org/organizationtype/institute +publisher Publisher An organization that publishes data. \N http://vocabulary.odm2.org/organizationtype/publisher +university University An institution of higher education. \N http://vocabulary.odm2.org/organizationtype/university +governmentAgency Government agency A department or other administrative unit of a government. \N http://vocabulary.odm2.org/organizationtype/governmentAgency +company Company An business entity that provides services. \N http://vocabulary.odm2.org/organizationtype/company +studentOrganization Student organization A group of students who associate for a particular purpose. \N http://vocabulary.odm2.org/organizationtype/studentOrganization +consortium Consortium An association of individuals or organizations for the purpose of engaging in a joint venture. \N http://vocabulary.odm2.org/organizationtype/consortium +manufacturer Manufacturer A person or company that makes a product. \N http://vocabulary.odm2.org/organizationtype/manufacturer +laboratory Laboratory A room, building, or institution equipped for scientific research, experimentation, or analysis. \N http://vocabulary.odm2.org/organizationtype/laboratory +association Association A group of persons associated for a common purpose. \N http://vocabulary.odm2.org/organizationtype/association +school School An educational institution providing primary or secondary education. \N http://vocabulary.odm2.org/organizationtype/school +program Program A set of structured activities. \N http://vocabulary.odm2.org/organizationtype/program +foundation Foundation An institution or organization supported by a donation or legacy appropriation. \N http://vocabulary.odm2.org/organizationtype/foundation +department Department A subdivision or unit within a university, institution, or agency. \N http://vocabulary.odm2.org/organizationtype/department +fundingOrganization Funding organization An organization that funds research or creative works. \N http://vocabulary.odm2.org/organizationtype/fundingOrganization +researchInstitute Research institute An organization founded to conduct research. \N http://vocabulary.odm2.org/organizationtype/researchInstitute +vendor Vendor A person or company that sells a product. \N http://vocabulary.odm2.org/organizationtype/vendor +division Division A section of a large company, agency, or organization. \N http://vocabulary.odm2.org/organizationtype/division +unknown Unknown The organization type is unknown. \N http://vocabulary.odm2.org/organizationtype/unknown +researchAgency Research agency A department or other administrative unit of a government with the express purpose of conducting research. \N http://vocabulary.odm2.org/organizationtype/researchAgency +\. + + +-- +-- TOC entry 4819 (class 0 OID 70362) +-- Dependencies: 282 +-- Data for Name: cv_propertydatatype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_propertydatatype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +integer Integer An integer data type can hold a whole number, but no fraction. Integers may be either signed (allowing negative values) or unsigned (nonnegative values only). \N http://vocabulary.odm2.org/propertydatatype/integer +string String An array of characters including letters, digits, punctuation marks, symbols, etc. \N http://vocabulary.odm2.org/propertydatatype/string +boolean Boolean A boolean type is typically a logical type that can be either "true" or "false". \N http://vocabulary.odm2.org/propertydatatype/boolean +floatingPointNumber Floading point number A floating-point number represents a limited-precision rational number that may have a fractional part. \N http://vocabulary.odm2.org/propertydatatype/floatingPointNumber +\. + + +-- +-- TOC entry 4820 (class 0 OID 70370) +-- Dependencies: 283 +-- Data for Name: cv_qualitycode; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_qualitycode (term, name, definition, category, sourcevocabularyuri) FROM stdin; +bad Bad A quality assessment has been made and enough of the data quality objectives have not been met that the observation has been assessed to be of bad quality. \N http://vocabulary.odm2.org/qualitycode/bad +none None No data quality assessment has been made. \N http://vocabulary.odm2.org/qualitycode/none +unknown Unknown The quality of the observation is unknown. \N http://vocabulary.odm2.org/qualitycode/unknown +good Good A quality assessment has been made and all data quality objectives have been met. \N http://vocabulary.odm2.org/qualitycode/good +marginal Marginal A quality assessment has been made and one or more data quality objectives has not been met. The observation may be suspect and has been assessed to be of marginal quality. \N http://vocabulary.odm2.org/qualitycode/marginal +\. + + +-- +-- TOC entry 4821 (class 0 OID 70378) +-- Dependencies: 284 +-- Data for Name: cv_referencematerialmedium; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_referencematerialmedium (term, name, definition, category, sourcevocabularyuri) FROM stdin; +other Other Other. \N http://vocabulary.odm2.org/referencematerialmedium/other +particulate Particulate Reference material consisting of particulates suspended in a paticulate-fluid mixture. Examples include particulates in water or air. \N http://vocabulary.odm2.org/referencematerialmedium/particulate +ice Ice Reference material consisting of frozen water. \N http://vocabulary.odm2.org/referencematerialmedium/ice +liquidAqueous Liquid aqueous Reference material consisting of liquid water. \N http://vocabulary.odm2.org/referencematerialmedium/liquidAqueous +liquidOrganic Liquid organic Reference material consisting of an organic liquid. \N http://vocabulary.odm2.org/referencematerialmedium/liquidOrganic +gas Gas Reference material consisting of a gas. \N http://vocabulary.odm2.org/referencematerialmedium/gas +rock Rock Reference material consisting of a naturally occuring solid aggregate of one or more minerals. \N http://vocabulary.odm2.org/referencematerialmedium/rock +unknown Unknown The reference material medium is unknown. \N http://vocabulary.odm2.org/referencematerialmedium/unknown +snow Snow Reference material consisting of snow. \N http://vocabulary.odm2.org/referencematerialmedium/snow +notApplicable Not applicable There is no applicable reference material medium. \N http://vocabulary.odm2.org/referencematerialmedium/notApplicable +soil Soil Reference material consisting of a specimen collected from soil or sensor emplaced to measure properties of soil. Soil includes the mixture of minerals, organic matter, gasses, liquids, and organisms that make up the upper layer of earth in which plants grow. \N http://vocabulary.odm2.org/referencematerialmedium/soil +mineral Mineral Reference material consisting of a mineral. \N http://vocabulary.odm2.org/referencematerialmedium/mineral +tissue Tissue Reference material consisting of a living organism's tissue. \N http://vocabulary.odm2.org/referencematerialmedium/tissue +sediment Sediment Reference material consisting of a specimen collected from material broken down by processes of weathering and erosion and subsequently transported by the action of wind, water, or ice, and/or by the force of gravity acting on the particles. Sensors may also be emplaced to measure sediment properties. \N http://vocabulary.odm2.org/referencematerialmedium/sediment +organism Organism Reference material consisting of a species at organism level. \N http://vocabulary.odm2.org/referencematerialmedium/organism +\. + + +-- +-- TOC entry 4822 (class 0 OID 70386) +-- Dependencies: 285 +-- Data for Name: cv_relationshiptype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_relationshiptype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +isChildOf Is child of Used to indicate that one entity is an immediate child of another entity. For example, this term can be used to express the fact that an instrument deployment Action is the child of a site visit Action. \N http://vocabulary.odm2.org/relationshiptype/isChildOf +cites Cites Use to indicate a relation to the work that the resource is citing/quoting. \N http://vocabulary.odm2.org/relationshiptype/cites +compiles Compiles Use to indicate the resource is used for creating another resource or dataset. \N http://vocabulary.odm2.org/relationshiptype/compiles +continues Continues Use to indicate the resource is a continuation of the work referenced by the related identifier. \N http://vocabulary.odm2.org/relationshiptype/continues +documents Documents Use to indicate the relation to the work which is documentation. \N http://vocabulary.odm2.org/relationshiptype/documents +hasPart Has part Use to indicate the resource is a container of another resource. \N http://vocabulary.odm2.org/relationshiptype/hasPart +isAttachedTo Is attached to Used to indicate that one entity is attached to another. For example this term can be used to express the fact that a piece of equipment is attached to a related piece of equipment. \N http://vocabulary.odm2.org/relationshiptype/isAttachedTo +isCitationFor Is citation for Used to indicate the relationship between a Citation and the entity for which it is the Citation. \N http://vocabulary.odm2.org/relationshiptype/isCitationFor +isCitedBy Is cited by Use to indicate the relation to a work that cites/quotes this data. \N http://vocabulary.odm2.org/relationshiptype/isCitedBy +isCompiledBy Is compiled by Use to indicate the resource or data is compiled/created by using another resource or dataset. \N http://vocabulary.odm2.org/relationshiptype/isCompiledBy +isContinuedBy Is continued by Use to indicate the resource is continued by the work referenced by the related identifier. \N http://vocabulary.odm2.org/relationshiptype/isContinuedBy +isDerivedFrom Is derived from Used to indicate the relation to the works from which the resource was derived. \N http://vocabulary.odm2.org/relationshiptype/isDerivedFrom +isDocumentedBy Is documented by Use to indicate the work is documentation about/explaining the resource referenced by the related identifier. \N http://vocabulary.odm2.org/relationshiptype/isDocumentedBy +isIdenticalTo Is identical to Used to indicate the relation to a work that is identical to the resource. \N http://vocabulary.odm2.org/relationshiptype/isIdenticalTo +isNewVersionOf Is new version of Use to indicate the resource is a new edition of an old resource, where the new edition has been modified or updated. \N http://vocabulary.odm2.org/relationshiptype/isNewVersionOf +isOriginalFormOf Is original form of Use to indicate the relation to the works which are variant or different forms of the resource. \N http://vocabulary.odm2.org/relationshiptype/isOriginalFormOf +isPartOf Is part of Use to indicate the resource is a portion of another resource. \N http://vocabulary.odm2.org/relationshiptype/isPartOf +isPreviousVersionOf Is previous version of Use to indicate the resource is a previous edition of a newer resource. \N http://vocabulary.odm2.org/relationshiptype/isPreviousVersionOf +isReferencedBy Is referenced by Use to indicate the resource is used as a source of information by another resource. \N http://vocabulary.odm2.org/relationshiptype/isReferencedBy +isRelatedTo Is related to Used to indicate that one entity has a complex relationship with another entity that is not a simple, hierarchical parent-child relationship. For example, this term can be used to express the fact that an instrument cleaning Action is related to an instrument deployment action even though it may be performed as part of a separate site visit. \N http://vocabulary.odm2.org/relationshiptype/isRelatedTo +isReviewedBy Is reviewed by Used to indicate that the work is reviewed by another resource. \N http://vocabulary.odm2.org/relationshiptype/isReviewedBy +isSourceOf Is source of Used to indicate the relation to the works that were the source of the resource. \N http://vocabulary.odm2.org/relationshiptype/isSourceOf +isSupplementedBy Is supplemented by Use to indicate the relation to the work(s) which are supplements of the resource. \N http://vocabulary.odm2.org/relationshiptype/isSupplementedBy +isSupplementTo Is supplement to Use to indicate the relation to the work to which the resource is a supplement. \N http://vocabulary.odm2.org/relationshiptype/isSupplementTo +isVariantFormOf Is variant form of Use to indicate the resource is a variant or different form of another resource, e.g. calculated or calibrated form or different packaging. \N http://vocabulary.odm2.org/relationshiptype/isVariantFormOf +references References Use to indicate the relation to the work which is used as a source of information of the resource. \N http://vocabulary.odm2.org/relationshiptype/references +Reviews Reviews Used to indicate that the work reviews another resource. \N http://vocabulary.odm2.org/relationshiptype/Reviews +wasCollectedAt Was collected at Used to indicate that one entity was collected at the location of another entity. For example, thirs term can be used to express the fact that a specimen SamplingFeature was collected at a site SamplingFeature. \N http://vocabulary.odm2.org/relationshiptype/wasCollectedAt +\. + + +-- +-- TOC entry 4823 (class 0 OID 70394) +-- Dependencies: 286 +-- Data for Name: cv_resulttype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_resulttype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +categoryObservation Category observation A single ResultValue for a single Variable, measured on or at a single SamplingFeature, using a single Method. Measurement http://vocabulary.odm2.org/resulttype/categoryObservation +transectCoverage Transect coverage A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over multiple locations along a transect having varying location dimensions (e.g., X and/or Y, where X and Y are horizontal coordintes). ValueDateTime may be fixed or controlled. Coverage http://vocabulary.odm2.org/resulttype/transectCoverage +countObservation Count observation A single ResultValue for a single Variable, counted on or at a single SamplingFeature, using a single Method, and having a specific ProcessingLevel. Measurement http://vocabulary.odm2.org/resulttype/countObservation +measurement Measurement A single ResultValue for a single Variable, measured on or at a SamplingFeature, using a single Method, with specific Units, and having a specific ProcessingLevel. Measurement http://vocabulary.odm2.org/resulttype/measurement +timeSeriesCoverage Time series coverage A series of ResultValues for a single Variable, measured on or at a single SamplingFeature of fixed location, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over time. Coverage http://vocabulary.odm2.org/resulttype/timeSeriesCoverage +temporalObservation Temporal observation A single ResultValue for a single Variable, measured on or at a SamplingFeature, using a single Method, with specific Units, and having a specific ProcessingLevel. Measurement http://vocabulary.odm2.org/resulttype/temporalObservation +pointCoverage Point coverage A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, with a fixed ValueDateTime, but measured over varying X,Y locations, where X and Y are horizontal coordinates. Coverage http://vocabulary.odm2.org/resulttype/pointCoverage +spectraCoverage Spectra coverage A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over multiple wavelengths of light. ValueDateTime may be fixed or controlled. Coverage http://vocabulary.odm2.org/resulttype/spectraCoverage +truthObservation Truth observation A single ResultValue for a single Variable, measured on or at a single SamplingFeature, using a single Method. Measurement http://vocabulary.odm2.org/resulttype/truthObservation +sectionCoverage Section coverage A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over varying X (horizontal) and Z (depth) coordinates. ValueDateTime may be fixed or controlled. Coverage http://vocabulary.odm2.org/resulttype/sectionCoverage +profileCoverage Profile coverage A series of ResultValues for a single Variable, measured on or at a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over multiple locations along a depth profile with only one varying location dimension (e.g., Z, where Z is depth). ValueDateTime may be fixed or controlled. Coverage http://vocabulary.odm2.org/resulttype/profileCoverage +trajectoryCoverage Trajectory coverage A series of ResultValues for a single Variable, measured on a single SamplingFeature, using a single Method, with specific Units, having a specific ProcessingLevel, but measured over varying X,Y, Z, and D locations, where X and Y are horizontal coordinates, Z is a vertical coordinate, and D is the distance along the trajectory. ValueDateTime may be fixed (DTS Temperature) or controlled (glider). Coverage http://vocabulary.odm2.org/resulttype/trajectoryCoverage +\. + + +-- +-- TOC entry 4824 (class 0 OID 70402) +-- Dependencies: 287 +-- Data for Name: cv_sampledmedium; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_sampledmedium (term, name, definition, category, sourcevocabularyuri) FROM stdin; +gas Gas Gas phase specimen or sensor emplaced to measure properties of a gas. \N http://vocabulary.odm2.org/sampledmedium/gas +liquidAqueous Liquid aqueous Specimen collected as liquid water or sensor emplaced to measure properties of water in sampled environment. \N http://vocabulary.odm2.org/sampledmedium/liquidAqueous +particulate Particulate Specimen collected from particulates suspended in a paticulate-fluid mixture. Examples include particulates in water or air. \N http://vocabulary.odm2.org/sampledmedium/particulate +soil Soil Specimen collected from soil or sensor emplaced to measure properties of soil. Soil includes the mixture of minerals, organic matter, gasses, liquids, and organisms that make up the upper layer of earth in which plants grow. \N http://vocabulary.odm2.org/sampledmedium/soil +mineral Mineral Specimen collected as a mineral. \N http://vocabulary.odm2.org/sampledmedium/mineral +ice Ice Sample collected as frozen water or sensor emplaced to measure properties of ice. \N http://vocabulary.odm2.org/sampledmedium/ice +unknown Unknown The sampled medium is unknown. \N http://vocabulary.odm2.org/sampledmedium/unknown +tissue Tissue Sample of a living organism's tissue or sensor emplaced to measure property of tissue. \N http://vocabulary.odm2.org/sampledmedium/tissue +rock Rock Specimen collected from a naturally occuring solid aggregate of one or more minerals. \N http://vocabulary.odm2.org/sampledmedium/rock +sediment Sediment Specimen collected from material broken down by processes of weathering and erosion and subsequently transported by the action of wind, water, or ice, and/or by the force of gravity acting on the particles. Sensors may also be emplaced to measure sediment properties. \N http://vocabulary.odm2.org/sampledmedium/sediment +notApplicable Not applicable There is no applicable sampled medium. \N http://vocabulary.odm2.org/sampledmedium/notApplicable +liquidOrganic Liquid organic Specimen collected as an organic liquid. \N http://vocabulary.odm2.org/sampledmedium/liquidOrganic +snow Snow Observation in, of or sample taken from snow. \N http://vocabulary.odm2.org/sampledmedium/snow +organism Organism Data collected about a species at organism level. \N http://vocabulary.odm2.org/sampledmedium/organism +other Other Other. \N http://vocabulary.odm2.org/sampledmedium/other +\. + + +-- +-- TOC entry 4825 (class 0 OID 70410) +-- Dependencies: 288 +-- Data for Name: cv_samplingfeaturegeotype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_samplingfeaturegeotype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +lineString Line string A subclass of a Curve using linear interpolation between points. A Curve is a 1-dimensional geometric object usually stored as a sequence of Points. Represented in 2D coordinates by FeatureGeometry. 2D http://vocabulary.odm2.org/samplingfeaturegeotype/lineString +point Point Topological 0-dimensional geometric primitive representing a position. Represented in 2D coordinates by FeatureGeometry. 2D http://vocabulary.odm2.org/samplingfeaturegeotype/point +multiPolygon Multi polygon A collection of individual polygons, used as a single feature. Represented in 2D coordinates by FeatureGeometry. 2D http://vocabulary.odm2.org/samplingfeaturegeotype/multiPolygon +multiPoint Multi point A collection of individual points, used as a single feature. Represented in 2D coordinates by FeatureGeometry. 2D http://vocabulary.odm2.org/samplingfeaturegeotype/multiPoint +volume Volume A three dimensional space enclosed by some closed boundary. 3D http://vocabulary.odm2.org/samplingfeaturegeotype/volume +polygon Polygon A planar Surface defined by 1 exterior boundary and 0 or more interior boundaries. Each interior boundary defines a hole in the Polygon. Polygons are topologically closed. Polygons are a subclass of Surface that is planar. A Surface is a 2-dimensonal geometric object. Represented in 2D coordinates by FeatureGeometry. 2D http://vocabulary.odm2.org/samplingfeaturegeotype/polygon +notApplicable Not applicable The sampling feature has no applicable geospatial feature type Non-spatial http://vocabulary.odm2.org/samplingfeaturegeotype/notApplicable +multiLineString Multi line string A collection of individual lines, used as a single feature. Represented in 2D coordinates by FeatureGeometry. 2D http://vocabulary.odm2.org/samplingfeaturegeotype/multiLineString +\. + + +-- +-- TOC entry 4826 (class 0 OID 70418) +-- Dependencies: 289 +-- Data for Name: cv_samplingfeaturetype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_samplingfeaturetype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +trajectory Trajectory The path that a moving object follows through space as a function of time. A trajectory can be described by the geometry of the path or as the position of the object over time. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/trajectory +excavation Excavation An artificially constructed cavity in the earth that is deeper than the soil, larger than a well bore, and substantially open to the atmosphere. The diameter of an excavation is typically similar or larger than the depth. Excavations include building-foundation diggings, roadway cuts, and surface mines. SamplingSolid http://vocabulary.odm2.org/samplingfeaturetype/excavation +observationWell Observation well A hole or shaft constructed in the earth intended to be used to locate, sample, or develop groundwater, oil, gas, or some other subsurface material. The diameter of a well is typically much smaller than the depth. Wells are also used to artificially recharge groundwater or to pressurize oil and gas production zones. Specific kinds of wells should be specified in the SamplingFeature description. For example, underground waste-disposal wells should be classified as waste injection wells. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/observationWell +interval Interval A discrete segment along a longer path in which an observation or specimen is collected over the distance between the upper and lower bounds of the interval. A Depth Interval is a sub-type of Interval. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/interval +specimen Specimen A physical sample (object or entity) obtained for observations, typically performed ex situ, often in a laboratory. Specimen http://vocabulary.odm2.org/samplingfeaturetype/specimen +fieldArea Field area A location at which field experiments or observations of ambient conditions are conducted. A field area may contain many sites and has a geographical footprint that can be represented by a polygon. SamplingSurface http://vocabulary.odm2.org/samplingfeaturetype/fieldArea +depthInterval Depth interval A discrete segment along a longer vertical path, such as a borehole, soil profile or other depth profile, in which an observation or specimen is collected over the distance between the upper and lower depth limits of the interval. A Depth Interval is a sub-type of Interval. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/depthInterval +quadrat Quadrat A small plot used to isolate a standard unit of area for study of the distribution of an item over a large area. SamplingSurface http://vocabulary.odm2.org/samplingfeaturetype/quadrat +weatherStation Weather station A facility, either on land or sea, with instruments and equipment for measuring atmospheric conditions to provide information for weather forecasts and to study weather and climate. SamplingPoint http://vocabulary.odm2.org/samplingfeaturetype/weatherStation +crossSection Cross section The intersection of a body in three-dimensional space with a plane. Represented as a polygon. SamplingSurface http://vocabulary.odm2.org/samplingfeaturetype/crossSection +shipsTrack Ships track A path along which a ship or vessel travels while measuring a phenomena of study. Represented as a line connecting the ship's consecutive positions on the surface of the earth. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/shipsTrack +scene Scene A two-dimensional visual extent within a physical environment. SamplingSurface http://vocabulary.odm2.org/samplingfeaturetype/scene +flightline Flightline A path along which an aircraft travels while measuring a phenomena of study. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/flightline +CTD CTD A CTD (Conductivity, Temperature, and Depth) cast is a water column depth profile collected over a specific and relatively short date-time range, that can be considered as a parent specimen. Specimen http://vocabulary.odm2.org/samplingfeaturetype/CTD +borehole Borehole A narrow shaft bored into the ground, either vertically or horizontally. A borehole includes the hole cavity and walls surrounding that cavity. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/borehole +waterQualityStation Water quality station A location used to monitor and test the quality of terrestrial bodies of water. Water quality stations may be locations at which physical water samples are collected for ex situ analysis. Water qulaity stations may also have instruments and equipment for continuous, in situ measurement of water quality variables. SamplingPoint http://vocabulary.odm2.org/samplingfeaturetype/waterQualityStation +traverse Traverse A field control network consisting of survey stations placed along a line or path of travel. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/traverse +streamGage Stream gage A location used to monitor and test terrestrial bodies of water. Hydrometric measurements of water level, surface elevation ("stage") and/or volumetric discharge (flow) are generally taken, and observations of biota and water quality may also be made. SamplingPoint http://vocabulary.odm2.org/samplingfeaturetype/streamGage +soilPitSection Soil pit section Two-dimensional vertical face of a soil pit that is described and sampled. SamplingSurface http://vocabulary.odm2.org/samplingfeaturetype/soilPitSection +profile Profile A one-dimensional grid at fixed (x, y, t) coordinates within a four-dimensional (x, y, z, t) coordinate reference system. The grid axis is aligned with the coordinate reference system z-axis. Typically used to characterize or measure phenomena as a function of depth. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/profile +transect Transect A path along which ocurrences of a phenomena of study are counted or measured. SamplingCurve http://vocabulary.odm2.org/samplingfeaturetype/transect +site Site A facility or location at which observations have been collected. A site may have instruments or equipment installed and may contain multiple other sampling features (e.g., a stream gage, weather station, observation well, etc.). Additionally, many specimen sampling features may be collected at a site. Sites are also often referred to as stations. A site is represented as a point, but it may have a geographical footprint that is not a point. The site coordinates serve as a reference for the site and offsets may be specified from this reference location. SamplingPoint http://vocabulary.odm2.org/samplingfeaturetype/site +\. + + +-- +-- TOC entry 4827 (class 0 OID 70426) +-- Dependencies: 290 +-- Data for Name: cv_sitetype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_sitetype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +unsaturatedZone Unsaturated zone A site equipped to measure conditions in the subsurface deeper than a soil hole, but above the water table or other zone of saturation. Groundwater Sites http://vocabulary.odm2.org/sitetype/unsaturatedZone +outcrop Outcrop The part of a rock formation that appears at the surface of the surrounding land. Land Sites http://vocabulary.odm2.org/sitetype/outcrop +unknown Unknown Site type is unknown. Unknown http://vocabulary.odm2.org/sitetype/unknown +tunnelShaftMine Tunnel, shaft, or mine A constructed subsurface open space large enough to accommodate a human that is not substantially open to the atmosphere and is not a well. The excavation may have been for minerals, transportation, or other purposes. See also: Excavation. Groundwater Sites http://vocabulary.odm2.org/sitetype/tunnelShaftMine +networkInfrastructure Network infrastructure A site that is primarily associated with monitoring or telemetry network infrastructure. For example a radio repeater or remote radio base station. infrastructure http://vocabulary.odm2.org/sitetype/networkInfrastructure +coastal Coastal An oceanic site that is located off-shore beyond the tidal mixing zone (estuary) but close enough to the shore that the investigator considers the presence of the coast to be important. Coastal sites typically are within three nautical miles of the shore. Surface Water Sites http://vocabulary.odm2.org/sitetype/coastal +wastewaterLandApplication Wastewater land application A site where the disposal of waste water on land occurs. Use "waste-injection well" for underground waste-disposal sites. Land Sites http://vocabulary.odm2.org/sitetype/wastewaterLandApplication +shore Shore The land along the edge of the sea, a lake, or a wide river where the investigator considers the proximity of the water body to be important. Land adjacent to a reservoir, lake, impoundment, or oceanic site type is considered part of the shore when it includes a beach or bank between the high and low water marks. Land Sites http://vocabulary.odm2.org/sitetype/shore +estuary Estuary A coastal inlet of the sea or ocean; esp. the mouth of a river, where tide water normally mixes with stream water (modified, Webster). Salinity in estuaries typically ranges from 1 to 25 Practical Salinity Units (psu), as compared oceanic values around 35-psu. See also: tidal stream and coastal. Surface Water Sites http://vocabulary.odm2.org/sitetype/estuary +stormSewer Storm sewer An underground conduit created to convey storm drainage into a stream channel or reservoir. If the sewer also conveys liquid waste products, then the "combined sewer" secondary site type should be used. Water Infrastructure Sites http://vocabulary.odm2.org/sitetype/stormSewer +stream Stream A body of running water moving under gravity flow in a defined channel. The channel may be entirely natural, or altered by engineering practices through straightening, dredging, and (or) lining. An entirely artificial channel should be qualified with the "canal" or "ditch" secondary site type. Surface Water Sites http://vocabulary.odm2.org/sitetype/stream +land Land A location on the surface of the earth that is not normally saturated with water. Land sites are appropriate for sampling vegetation, overland flow of water, or measuring land-surface properties such as temperature. (See also: Wetland). Land Sites http://vocabulary.odm2.org/sitetype/land +thermoelectricPlant Thermoelectric plant A facility that uses water in the generation of electricity from heat. Typically turbine generators are driven by steam. The heat may be caused by various means, including combustion, nuclear reactions, and geothermal processes. Facility Sites http://vocabulary.odm2.org/sitetype/thermoelectricPlant +wetland Wetland Land where saturation with water is the dominant factor determining the nature of soil development and the types of plant and animal communities living in the soil and on its surface (Cowardin, December 1979). Wetlands are found from the tundra to the tropics and on every continent except Antarctica. Wetlands are areas that are inundated or saturated by surface or groundwater at a frequency and duration sufficient to support, and that under normal circumstances do support, a prevalence of vegetation typically adapted for life in saturated soil conditions. Wetlands generally include swamps, marshes, bogs and similar areas. Wetlands may be forested or unforested, and naturally or artificially created. Surface Water Sites http://vocabulary.odm2.org/sitetype/wetland +pavement Pavement A surface site where the land surface is covered by a relatively impermeable material, such as concrete or asphalt. Pavement sites are typically part of transportation infrastructure, such as roadways, parking lots, or runways. Land Sites http://vocabulary.odm2.org/sitetype/pavement +cistern Cistern An artificial, non-pressurized reservoir filled by gravity flow and used for water storage. The reservoir may be located above, at, or below ground level. The water may be supplied from diversion of precipitation, surface, or groundwater sources. Water Infrastructure Sites http://vocabulary.odm2.org/sitetype/cistern +aggregateSurfaceWaterUse Aggregate surface-water-use An Aggregate Surface-Water Diversion/Return site represents an aggregate of specific sites where surface water is diverted or returned which is defined by a geographic area or some other common characteristic. An aggregate surface-water site type is used when it is not possible or practical to describe the specific sites as diversions, outfalls, or land application sites, or when water-use information is only available for the aggregate. Aggregated Use Sites http://vocabulary.odm2.org/sitetype/aggregateSurfaceWaterUse +lakeReservoirImpoundment Lake, Reservoir, Impoundment An inland body of standing fresh or saline water that is generally too deep to permit submerged aquatic vegetation to take root across the entire body (cf: wetland). This site type includes an expanded part of a river, a reservoir behind a dam, and a natural or excavated depression containing a water body without surface-water inlet and/or outlet. Surface Water Sites http://vocabulary.odm2.org/sitetype/lakeReservoirImpoundment +playa Playa A dried-up, vegetation-free, flat-floored area composed of thin, evenly stratified sheets of fine clay, silt or sand, and represents the bottom part of a shallow, completely closed or undrained desert lake basin in which water accumulates and is quickly evaporated, usually leaving deposits of soluble salts. Land Sites http://vocabulary.odm2.org/sitetype/playa +volcanicVent Volcanic vent Vent from which volcanic gases escape to the atmosphere. Also known as fumarole. Geologic Sites http://vocabulary.odm2.org/sitetype/volcanicVent +wastewaterSewer Wastewater sewer An underground conduit created to convey liquid and semisolid domestic, commercial, or industrial waste into a treatment plant, stream, reservoir, or disposal site. If the sewer also conveys storm water, then the "combined sewer" secondary site type should be used. Water Infrastructure Sites http://vocabulary.odm2.org/sitetype/wastewaterSewer +sinkhole Sinkhole A crater formed when the roof of a cavern collapses; usually found in limestone areas. Surface water and precipitation that enters a sinkhole usually evaporates or infiltrates into the ground, rather than draining into a stream. Land Sites http://vocabulary.odm2.org/sitetype/sinkhole +tidalStream Tidal stream A stream reach where the flow is influenced by the tide, but where the water chemistry is not normally influenced. A site where ocean water typically mixes with stream water should be coded as an estuary. Surface Water Sites http://vocabulary.odm2.org/sitetype/tidalStream +facility Facility A non-ambient location where environmental measurements are expected to be strongly influenced by current or previous activities of humans. *Sites identified with a "facility" primary site type must be further classified with one of the applicable secondary site types. Facility Sites http://vocabulary.odm2.org/sitetype/facility +hydroelectricPlant Hydroelectric plant A facility that generates electric power by converting potential energy of water into kinetic energy. Typically, turbine generators are turned by falling water. Facility Sites http://vocabulary.odm2.org/sitetype/hydroelectricPlant +animalWasteLagoon Animal waste lagoon A facility for storage and/or biological treatment of wastes from livestock operations. Animal-waste lagoons are earthen structures ranging from pits to large ponds, and contain manure which has been diluted with building washwater, rainfall, and surface runoff. In treatment lagoons, the waste becomes partially liquefied and stabilized by bacterial action before the waste is disposed of on the land and the water is discharged or re-used. Facility Sites http://vocabulary.odm2.org/sitetype/animalWasteLagoon +spring Spring A location at which the water table intersects the land surface, resulting in a natural flow of groundwater to the surface. Springs may be perennial, intermittent, or ephemeral. Spring Sites http://vocabulary.odm2.org/sitetype/spring +waterUseEstablishment Water-use establishment A place-of-use (a water using facility that is associated with a specific geographical point location, such as a business or industrial user) that cannot be specified with any other facility secondary type. Water-use place-of-use sites are establishments such as a factory, mill, store, warehouse, farm, ranch, or bank. See also: Aggregate water-use-establishment. Facility Sites http://vocabulary.odm2.org/sitetype/waterUseEstablishment +groundwaterDrain Groundwater drain An underground pipe or tunnel through which groundwater is artificially diverted to surface water for the purpose of reducing erosion or lowering the water table. A drain is typically open to the atmosphere at the lowest elevation, in contrast to a well which is open at the highest point. Groundwater Sites http://vocabulary.odm2.org/sitetype/groundwaterDrain +waterDistributionSystem Water-distribution system A site located somewhere on a networked infrastructure that distributes treated or untreated water to multiple domestic, industrial, institutional, and (or) commercial users. May be owned by a municipality or community, a water district, or a private concern. Water Infrastructure Sites http://vocabulary.odm2.org/sitetype/waterDistributionSystem +golfCourse Golf course A place-of-use, either public or private, where the game of golf is played. A golf course typically uses water for irrigation purposes. Should not be used if the site is a specific hydrologic feature or facility; but can be used especially for the water-use sites. Facility Sites http://vocabulary.odm2.org/sitetype/golfCourse +diversion Diversion A site where water is withdrawn or diverted from a surface-water body (e.g. the point where the upstream end of a canal intersects a stream, or point where water is withdrawn from a reservoir). Includes sites where water is pumped for use elsewhere. Surface Water Sites http://vocabulary.odm2.org/sitetype/diversion +outfall Outfall A site where water or wastewater is returned to a surface-water body, e.g. the point where wastewater is returned to a stream. Typically, the discharge end of an effluent pipe. Facility Sites http://vocabulary.odm2.org/sitetype/outfall +laboratoryOrSamplePreparationArea Laboratory or sample-preparation area A site where some types of quality-control samples are collected, and where equipment and supplies for environmental sampling are prepared. Equipment blank samples are commonly collected at this site type, as are samples of locally produced deionized water. This site type is typically used when the data are either not associated with a unique environmental data-collection site, or where blank water supplies are designated by Center offices with unique station IDs. Facility Sites http://vocabulary.odm2.org/sitetype/laboratoryOrSamplePreparationArea +glacier Glacier Body of land ice that consists of recrystallized snow accumulated on the surface of the ground and moves slowly downslope (WSP-1541A) over a period of years or centuries. Since glacial sites move, the lat-long precision for these sites is usually coarse. Glacier Sites http://vocabulary.odm2.org/sitetype/glacier +aggregateWaterUseEstablishment Aggregate water-use establishment An Aggregate Water-Use Establishment represents an aggregate class of water-using establishments or individuals that are associated with a specific geographic location and water-use category, such as all the industrial users located within a county or all self-supplied domestic users in a county. An aggregate water-use establishment site type is used when specific information needed to create sites for the individual facilities or users is not available or when it is not desirable to store the site-specific information in the database. Aggregated Use Sites http://vocabulary.odm2.org/sitetype/aggregateWaterUseEstablishment +waterSupplyTreatmentPlant Water-supply treatment plant A facility where water is treated prior to use for consumption or other purpose. Facility Sites http://vocabulary.odm2.org/sitetype/waterSupplyTreatmentPlant +composite Composite A Composite site represents an aggregation of specific sites defined by a geographic location at which multiple sampling features have been installed. For example, a composite site might consist of a location on a stream where a streamflow gage, weather station, and shallow groundwater well have been installed. Composite Sites http://vocabulary.odm2.org/sitetype/composite +septicSystem Septic system A site within or in close proximity to a subsurface sewage disposal system that generally consists of: (1) a septic tank where settling of solid material occurs, (2) a distribution system that transfers fluid from the tank to (3) a leaching system that disperses the effluent into the ground. Water Infrastructure Sites http://vocabulary.odm2.org/sitetype/septicSystem +combinedSewer Combined sewer An underground conduit created to convey storm drainage and waste products into a wastewater-treatment plant, stream, reservoir, or disposal site. Water Infrastructure Sites http://vocabulary.odm2.org/sitetype/combinedSewer +ocean Ocean Site in the open ocean, gulf, or sea. (See also: Coastal, Estuary, and Tidal stream). Surface Water Sites http://vocabulary.odm2.org/sitetype/ocean +cave Cave A natural open space within a rock formation large enough to accommodate a human. A cave may have an opening to the outside, is always underground, and sometimes submerged. Caves commonly occur by the dissolution of soluble rocks, generally limestone, but may also be created within the voids of large-rock aggregations, in openings along seismic faults, and in lava formations. Groundwater Sites http://vocabulary.odm2.org/sitetype/cave +fieldPastureOrchardOrNursery Field, Pasture, Orchard, or Nursery A water-using facility characterized by an area where plants are grown for transplanting, for use as stocks for budding and grafting, or for sale. Irrigation water may or may not be applied. Facility Sites http://vocabulary.odm2.org/sitetype/fieldPastureOrchardOrNursery +subsurface Subsurface A location below the land surface, but not a well, soil hole, or excavation. Groundwater Sites http://vocabulary.odm2.org/sitetype/subsurface +canal Canal An artificial watercourse designed for navigation, drainage, or irrigation by connecting two or more bodies of water; it is larger than a ditch. Surface Water Sites http://vocabulary.odm2.org/sitetype/canal +landfill Landfill A typically dry location on the surface of the land where primarily solid waste products are currently, or previously have been, aggregated and sometimes covered with a veneer of soil. See also: Wastewater disposal and waste-injection well. Facility Sites http://vocabulary.odm2.org/sitetype/landfill +wastewaterTreatmentPlant Wastewater-treatment plant A facility where wastewater is treated to reduce concentrations of dissolved and (or) suspended materials prior to discharge or reuse. Facility Sites http://vocabulary.odm2.org/sitetype/wastewaterTreatmentPlant +atmosphere Atmosphere A site established primarily to measure meteorological properties or atmospheric deposition. Atmospheric Sites http://vocabulary.odm2.org/sitetype/atmosphere +ditch Ditch An excavation artificially dug in the ground, either lined or unlined, for conveying water for drainage or irrigation; it is smaller than a canal. Surface Water Sites http://vocabulary.odm2.org/sitetype/ditch +soilHole Soil hole A small excavation into soil at the top few meters of earth surface. Soil generally includes some organic matter derived from plants. Soil holes are created to measure soil composition and properties. Sometimes electronic probes are inserted into soil holes to measure physical properties, and (or) the extracted soil is analyzed. Land Sites http://vocabulary.odm2.org/sitetype/soilHole +aggregateGroundwaterUse Aggregate groundwater use An Aggregate Groundwater Withdrawal/Return site represents an aggregate of specific sites where groundwater is withdrawn or returned which is defined by a geographic area or some other common characteristic. An aggregate groundwater site type is used when it is not possible or practical to describe the specific sites as springs or as any type of well including 'multiple wells', or when water-use information is only available for the aggregate. Aggregated Use Sites http://vocabulary.odm2.org/sitetype/aggregateGroundwaterUse +\. + + +-- +-- TOC entry 4828 (class 0 OID 70434) +-- Dependencies: 291 +-- Data for Name: cv_spatialoffsettype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_spatialoffsettype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +depth Depth Depth below the earth or water surface. Values are expressed as negative numbers and become more negative in the downward direction. 1D http://vocabulary.odm2.org/spatialoffsettype/depth +cartesianOffset Cartesian offset Offset expressed using cartesian coordinates where X is distance along axis aligned with true north, Y is distace aligned with true east, and Z is distance aligned straight up. Depths are expressed a negative numbers. The origin of the coordinate system is typically defined in the site description. 3D http://vocabulary.odm2.org/spatialoffsettype/cartesianOffset +heightDirectional Height, directional Height above the earth or water surface along a non-vertical line. The first coordinate is the angle of the ray from north expressed in degrees. The second coordinate is the angle of the ray from horizontal expressed in positive degrees. The distance along the ray is expressed as a positive number that increases with distance along the ray. 3D http://vocabulary.odm2.org/spatialoffsettype/heightDirectional +depthInterval Depth interval Depth interval below the earth or water surface. The mininum depth value is expressed first and then maximum depth value. Values are expresssed as negative numbers and become more negative in the downward direction. 2D http://vocabulary.odm2.org/spatialoffsettype/depthInterval +heightInterval Height interval Height interval above the earth or water surface. The minimum height value is expressed first and then the maximum height value. Values increase in the upward direction. 2D http://vocabulary.odm2.org/spatialoffsettype/heightInterval +radialHorizontalOffsetWithHeight Radial horizontal offset with height Offset expressed as a distance along a ray that originates from a central point with a third coordinate that indicates the height above the earth or water surface. The angle of the ray is expressed as the first offset coordinate in degrees. The distance along the ray is expressed as the second offset coordinate. The height above the earth or water surface is expressed as the third coordinate. 3D http://vocabulary.odm2.org/spatialoffsettype/radialHorizontalOffsetWithHeight +radialHorizontalOffsetWithDepth Radial horizontal offset with depth Offset expressed as a distance along a ray that originates from a central point with a third coordinate that indicates the depth below the earth or water surface. The angle of the ray is expressed as the first offset coordinate in degrees. The distance along the ray is expressed as the second offset coordinate. The depth below the earth or water surface is expressed as the third coordinate. 3D http://vocabulary.odm2.org/spatialoffsettype/radialHorizontalOffsetWithDepth +longitudinalInterval Longitudinal interval Interval along a horizontal or longitudinal ray. The first coordinate is the angle from north expressed in degrees of the longitudinal array. The second coordinate is the minimum distance along the ray at which the longitudinal interval begins. The third coordinate is the maximium distance along the ray at which the longitudinal interval ends. 3D http://vocabulary.odm2.org/spatialoffsettype/longitudinalInterval +radialHorizontalOffset Radial horizontal offset Offset expressed as a distance along a ray that originates from a central point. The angle of the ray is expressed as the first offset coordinate in degrees. The distance along the ray is expressed as the second offset coordinate. 2D http://vocabulary.odm2.org/spatialoffsettype/radialHorizontalOffset +height Height Height above the earth or water surface. Values are positive and increase in the upward direction. 1D http://vocabulary.odm2.org/spatialoffsettype/height +depthDirectional Depth, directional Depth below the earth or water surface along a non-vertical line. The first coordinate is the angle of the ray from north expressed in degrees. The second coordinate is the angle of the ray from horizontal expressed in negative degrees. The distance along the ray is expressed as a positive number that increases with distance along the ray. 3D http://vocabulary.odm2.org/spatialoffsettype/depthDirectional +\. + + +-- +-- TOC entry 4829 (class 0 OID 70442) +-- Dependencies: 292 +-- Data for Name: cv_speciation; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_speciation (term, name, definition, category, sourcevocabularyuri) FROM stdin; +P P Expressed as phosphorus \N http://vocabulary.odm2.org/speciation/P +C16H34 C16H34 Expressed as C16 n-alkane \N http://vocabulary.odm2.org/speciation/C16H34 +C4Cl6 C4Cl6 Expressed as hexchlorobutadiene \N http://vocabulary.odm2.org/speciation/C4Cl6 +C15H12 C15H12 Expressed as C15H12, e.g., methylphenanthrene, Methylanthracene \N http://vocabulary.odm2.org/speciation/C15H12 +CO2 CO2 Expressed as carbon dioxide \N http://vocabulary.odm2.org/speciation/CO2 +CH4 CH4 Expressed as methane \N http://vocabulary.odm2.org/speciation/CH4 +Si Si Expressed as silicon \N http://vocabulary.odm2.org/speciation/Si +pH pH Expressed as pH \N http://vocabulary.odm2.org/speciation/pH +C2H5Cl C2H5Cl Expressed as chloroethane \N http://vocabulary.odm2.org/speciation/C2H5Cl +C12H9N C12H9N Expressed as carbazole \N http://vocabulary.odm2.org/speciation/C12H9N +deltaN15 delta N15 Expressed as nitrogen-15 \N http://vocabulary.odm2.org/speciation/deltaN15 +C18H38 C18H38 Expressed as C18 n-alkane \N http://vocabulary.odm2.org/speciation/C18H38 +C2Cl4 C2Cl4 Expressed as tetrachloroethylene \N http://vocabulary.odm2.org/speciation/C2Cl4 +C12H10 C12H10 Expressed as C12H10, e.g., acenaphthene, biphenyl \N http://vocabulary.odm2.org/speciation/C12H10 +C20H42 C20H42 Expressed as C20 n-alkane \N http://vocabulary.odm2.org/speciation/C20H42 +C27H56 C27H56 Expressed as C27 n-alkane \N http://vocabulary.odm2.org/speciation/C27H56 +unknown Unknown Speciation is unknown \N http://vocabulary.odm2.org/speciation/unknown +SO4 SO4 Expressed as Sulfate \N http://vocabulary.odm2.org/speciation/SO4 +Ba Ba Expressed as barium \N http://vocabulary.odm2.org/speciation/Ba +C6H5NO2 C6H5NO2 Expressed as nitrobenzene \N http://vocabulary.odm2.org/speciation/C6H5NO2 +CHCl3 CHCl3 Expressed as chloroform \N http://vocabulary.odm2.org/speciation/CHCl3 +HCO3 HCO3 Expressed as hydrogen carbonate \N http://vocabulary.odm2.org/speciation/HCO3 +C6HCl5O C6HCl5O Expressed as pentachlorophenol \N http://vocabulary.odm2.org/speciation/C6HCl5O +CH3Hg CH3Hg Expressed at methylmercury \N http://vocabulary.odm2.org/speciation/CH3Hg +C12H14O4 C12H14O4 Expressed as diethyl phthalate \N http://vocabulary.odm2.org/speciation/C12H14O4 +Sb Sb Expressed as antimony \N http://vocabulary.odm2.org/speciation/Sb +C12H8S C12H8S Expressed as dibenzothiophene \N http://vocabulary.odm2.org/speciation/C12H8S +C20H12 C20H12 Expressed as C20H12, e.g., benzo(b)fluoranthene, benzo(e)pyrene, perylene \N http://vocabulary.odm2.org/speciation/C20H12 +C2H3Cl3 C2H3Cl3 Expressed as trichloroethane \N http://vocabulary.odm2.org/speciation/C2H3Cl3 +Cl Cl Expressed as chlorine \N http://vocabulary.odm2.org/speciation/Cl +C18H18 C18H18 Expressed as retene \N http://vocabulary.odm2.org/speciation/C18H18 +C2H6 C2H6 Expressed as ethane \N http://vocabulary.odm2.org/speciation/C2H6 +deltaO18 delta O18 Expressed as oxygen-18 \N http://vocabulary.odm2.org/speciation/deltaO18 +C13H10S C13H10S Expressed as methyldibenzothiophene \N http://vocabulary.odm2.org/speciation/C13H10S +CN- CN- Expressed as cyanide \N http://vocabulary.odm2.org/speciation/CN- +CHBr3 CHBr3 Expressed as bromoform \N http://vocabulary.odm2.org/speciation/CHBr3 +C2Cl6 C2Cl6 Expressed as hexachloroethane \N http://vocabulary.odm2.org/speciation/C2Cl6 +C17H12 C17H12 Expressed as C17H12, e.g., benzo(a)fluorene, methylfluoranthene, methylpyrene \N http://vocabulary.odm2.org/speciation/C17H12 +C6H5OH C6H5OH Expressed as phenol \N http://vocabulary.odm2.org/speciation/C6H5OH +C31H64 C31H64 Expressed as C31 n-alkane \N http://vocabulary.odm2.org/speciation/C31H64 +C10H7C2H5 C10H7C2H5 Expressed as ethylnaphthalene \N http://vocabulary.odm2.org/speciation/C10H7C2H5 +C12H8 C12H8 Expressed as acenaphthylene \N http://vocabulary.odm2.org/speciation/C12H8 +S S Expressed as Sulfur \N http://vocabulary.odm2.org/speciation/S +C19H40 C19H40 Expressed as C19 n-alkane \N http://vocabulary.odm2.org/speciation/C19H40 +NO2 NO2 Expressed as nitrite \N http://vocabulary.odm2.org/speciation/NO2 +C10H10O4 C10H10O4 Expressed as dimethyl terephthalate \N http://vocabulary.odm2.org/speciation/C10H10O4 +C6H3Cl3 C6H3Cl3 Expressed as trichlorobenzene \N http://vocabulary.odm2.org/speciation/C6H3Cl3 +C6H4_CH3_2 C6H4(CH3)2 Expressed as xylenes \N http://vocabulary.odm2.org/speciation/C6H4_CH3_2 +C6H5Cl C6H5Cl Expressed as chlorobenzene \N http://vocabulary.odm2.org/speciation/C6H5Cl +CHBr2Cl CHBr2Cl Expressed as dibromochloromethane \N http://vocabulary.odm2.org/speciation/CHBr2Cl +C10H4_CH3_4 C10H4(CH3)4 Expressed as tetramethylnaphthalene \N http://vocabulary.odm2.org/speciation/C10H4_CH3_4 +Ni Ni Expressed as nickel \N http://vocabulary.odm2.org/speciation/Ni +C14H10 C14H10 Expressed as phenanthrene \N http://vocabulary.odm2.org/speciation/C14H10 +O2 O2 Expressed as oxygen (O2) \N http://vocabulary.odm2.org/speciation/O2 +C17H36 C17H36 Expressed as C17 n-alkane \N http://vocabulary.odm2.org/speciation/C17H36 +CO3 CO3 Expressed as carbonate \N http://vocabulary.odm2.org/speciation/CO3 +C22H14 C22H14 Expressed as Dibenz(a,h)anthracene \N http://vocabulary.odm2.org/speciation/C22H14 +C8H10 C8H10 Expressed as ethylbenzene \N http://vocabulary.odm2.org/speciation/C8H10 +Ca Ca Expressed as calcium \N http://vocabulary.odm2.org/speciation/Ca +Na Na Expressed as sodium \N http://vocabulary.odm2.org/speciation/Na +C6H4Cl2 C6H4Cl2 Expressed as dichlorobenzene \N http://vocabulary.odm2.org/speciation/C6H4Cl2 +CaCO3 CaCO3 Expressed as calcium carbonate \N http://vocabulary.odm2.org/speciation/CaCO3 +Zr Zr Expressed as zirconium \N http://vocabulary.odm2.org/speciation/Zr +C7H6N2O4 C7H6N2O4 Expressed as dinitrotoluene \N http://vocabulary.odm2.org/speciation/C7H6N2O4 +As As Expressed as arsenic \N http://vocabulary.odm2.org/speciation/As +C8H8 C8H8 Expressed as styrene \N http://vocabulary.odm2.org/speciation/C8H8 +Tl Tl Expressed as thallium \N http://vocabulary.odm2.org/speciation/Tl +C7H8 C7H8 Expressed as Toluene \N http://vocabulary.odm2.org/speciation/C7H8 +C12H8O C12H8O Expressed as dibenzofuran \N http://vocabulary.odm2.org/speciation/C12H8O +C14H12 C14H12 Expressed as methylfluorene \N http://vocabulary.odm2.org/speciation/C14H12 +C10H6_CH3_2 C10H6(CH3)2 Expressed as dimethylnaphthalene \N http://vocabulary.odm2.org/speciation/C10H6_CH3_2 +C5Cl6 C5Cl6 Expressed as hexachlorocyclopentadiene \N http://vocabulary.odm2.org/speciation/C5Cl6 +C25H52 C25H52 Expressed as C25 n-alkane \N http://vocabulary.odm2.org/speciation/C25H52 +Ag Ag Expressed as silver \N http://vocabulary.odm2.org/speciation/Ag +CHBrCl2 CHBrCl2 Expressed as bromodichloromethane \N http://vocabulary.odm2.org/speciation/CHBrCl2 +CH3Br CH3Br Expressed as bromomethane \N http://vocabulary.odm2.org/speciation/CH3Br +Mn Mn Expressed as manganese \N http://vocabulary.odm2.org/speciation/Mn +K K Expressed as potassium \N http://vocabulary.odm2.org/speciation/K +C16H10 C16H10 Expressed as C16H10, e.g., fluoranthene, pyrene \N http://vocabulary.odm2.org/speciation/C16H10 +C21H44 C21H44 Expressed as C21 n-alkane \N http://vocabulary.odm2.org/speciation/C21H44 +EC EC Expressed as electrical conductivity \N http://vocabulary.odm2.org/speciation/EC +NO3 NO3 Expressed as nitrate \N http://vocabulary.odm2.org/speciation/NO3 +PO4 PO4 Expressed as phosphate \N http://vocabulary.odm2.org/speciation/PO4 +C6H6 C6H6 Expressed as benzene \N http://vocabulary.odm2.org/speciation/C6H6 +C2H6O2 C2H6O2 Expressed as Ethylene glycol \N http://vocabulary.odm2.org/speciation/C2H6O2 +Mo Mo Expressed as molybdenum \N http://vocabulary.odm2.org/speciation/Mo +Br Br Expressed as bromine \N http://vocabulary.odm2.org/speciation/Br +Re Re Expressed as rhenium \N http://vocabulary.odm2.org/speciation/Re +C2H4Cl2 C2H4Cl2 Expressed as dichloroethane \N http://vocabulary.odm2.org/speciation/C2H4Cl2 +C2H2Cl4 C2H2Cl4 Expressed as tetrachloroethane \N http://vocabulary.odm2.org/speciation/C2H2Cl4 +C23H48 C23H48 Expressed as C23 n-alkane \N http://vocabulary.odm2.org/speciation/C23H48 +Hg Hg Expressed as mercury \N http://vocabulary.odm2.org/speciation/Hg +C26H54 C26H54 Expressed as C26 n-alkane \N http://vocabulary.odm2.org/speciation/C26H54 +Be Be Expressed as beryllium \N http://vocabulary.odm2.org/speciation/Be +CH2Cl2 CH2Cl2 Expressed as dichloromethane \N http://vocabulary.odm2.org/speciation/CH2Cl2 +C6Cl6 C6Cl6 Expressed as hexachlorobenzene \N http://vocabulary.odm2.org/speciation/C6Cl6 +H2O H2O Expressed as water \N http://vocabulary.odm2.org/speciation/H2O +TA TA Expressed as total alkalinity \N http://vocabulary.odm2.org/speciation/TA +C2H3Cl C2H3Cl Expressed as vinyl chloride \N http://vocabulary.odm2.org/speciation/C2H3Cl +C4H8Cl2O C4H8Cl2O Expressed as bis(chloroethyl) ether \N http://vocabulary.odm2.org/speciation/C4H8Cl2O +C18H12 C18H12 Expressed as C18H12, e.g., benz(a)anthracene, chrysene, triphenylene \N http://vocabulary.odm2.org/speciation/C18H12 +C19H20O4 C19H20O4 Expressed as benzyl butyl pththalate \N http://vocabulary.odm2.org/speciation/C19H20O4 +delta2H delta 2H Expressed as deuterium \N http://vocabulary.odm2.org/speciation/delta2H +NH4 NH4 Expressed as ammonium \N http://vocabulary.odm2.org/speciation/NH4 +B B Expressed as boron \N http://vocabulary.odm2.org/speciation/B +C C Expressed as carbon \N http://vocabulary.odm2.org/speciation/C +Al Al Expressed as aluminium \N http://vocabulary.odm2.org/speciation/Al +C10H5_CH3_3 C10H5(CH3)3 Expressed as trimethylnaphthalene \N http://vocabulary.odm2.org/speciation/C10H5_CH3_3 +C10H7CH3 C10H7CH3 Expressed as methylnaphthalene \N http://vocabulary.odm2.org/speciation/C10H7CH3 +C6H4N2O5 C6H4N2O5 Expressed as dinitrophenol \N http://vocabulary.odm2.org/speciation/C6H4N2O5 +C16H14 C16H14 Expressed as dimethylphenanthrene \N http://vocabulary.odm2.org/speciation/C16H14 +CH3Cl CH3Cl Expressed as chloromethane \N http://vocabulary.odm2.org/speciation/CH3Cl +C29H60 C29H60 Expressed as C29 n-alkane \N http://vocabulary.odm2.org/speciation/C29H60 +Ra Ra Expressed as Radium. Also known as "radium equivalent." The radium equivalent concept allows a single index or number to describe the gamma output from different mixtures of uranium (i.e., radium), thorium, and 40K in a material. \N http://vocabulary.odm2.org/speciation/Ra +Th Th Expressed as thorium \N http://vocabulary.odm2.org/speciation/Th +Se Se Expressed as selenium \N http://vocabulary.odm2.org/speciation/Se +Co Co Expressed as cobalt \N http://vocabulary.odm2.org/speciation/Co +Cd Cd Expressed as cadmium \N http://vocabulary.odm2.org/speciation/Cd +C15H32 C15H32 Expressed as C15 n-alkane \N http://vocabulary.odm2.org/speciation/C15H32 +C9H14O C9H14O Expressed as isophorone \N http://vocabulary.odm2.org/speciation/C9H14O +C2HCl3 C2HCl3 Expressed as trichloroethylene \N http://vocabulary.odm2.org/speciation/C2HCl3 +C28H58 C28H58 Expressed as C28 n-alkane \N http://vocabulary.odm2.org/speciation/C28H58 +Cu Cu Expressed as copper \N http://vocabulary.odm2.org/speciation/Cu +Sr Sr Expressed as strontium \N http://vocabulary.odm2.org/speciation/Sr +SiO2 SiO2 Expressed as silicate \N http://vocabulary.odm2.org/speciation/SiO2 +C19H14 C19H14 Expressed as methylchrysene \N http://vocabulary.odm2.org/speciation/C19H14 +C13H10 C13H10 Expressed as fluorene \N http://vocabulary.odm2.org/speciation/C13H10 +Sn Sn Expressed as tin \N http://vocabulary.odm2.org/speciation/Sn +V V Expressed as vanadium \N http://vocabulary.odm2.org/speciation/V +C4H8O C4H8O Expressed as butanone \N http://vocabulary.odm2.org/speciation/C4H8O +U U Expressed as uranium \N http://vocabulary.odm2.org/speciation/U +Cr Cr Expressed as chromium \N http://vocabulary.odm2.org/speciation/Cr +Mg Mg Expressed as magnesium \N http://vocabulary.odm2.org/speciation/Mg +Fe Fe Expressed as iron \N http://vocabulary.odm2.org/speciation/Fe +Zn Zn Expressed as zinc \N http://vocabulary.odm2.org/speciation/Zn +C22H46 C22H46 Expressed as C22 n-alkane \N http://vocabulary.odm2.org/speciation/C22H46 +C3H6O C3H6O Expressed as acetone \N http://vocabulary.odm2.org/speciation/C3H6O +Pb Pb Expressed as lead \N http://vocabulary.odm2.org/speciation/Pb +C10H8 C10H8 Expressed as naphthalene \N http://vocabulary.odm2.org/speciation/C10H8 +N N Expressed as nitrogen \N http://vocabulary.odm2.org/speciation/N +C24H50 C24H50 Expressed as C24 n-alkane \N http://vocabulary.odm2.org/speciation/C24H50 +C6H5NH2 C6H5NH2 Expressed as aniline \N http://vocabulary.odm2.org/speciation/C6H5NH2 +Ti Ti Expressed as titanium \N http://vocabulary.odm2.org/speciation/Ti +F F Expressed as fluorine \N http://vocabulary.odm2.org/speciation/F +notApplicable Not Applicable Speciation is not applicable \N http://vocabulary.odm2.org/speciation/notApplicable +\. + + +-- +-- TOC entry 4830 (class 0 OID 70450) +-- Dependencies: 293 +-- Data for Name: cv_specimenmedium; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_specimenmedium (term, name, definition, category, sourcevocabularyuri) FROM stdin; +unknown Unknown The specimen medium is unknown. \N http://vocabulary.odm2.org/specimenmedium/unknown +soil Soil Specimen collected from soil. Soil includes the mixture of minerals, organic matter, gasses, liquids, and organisms that make up the upper layer of earth in which plants grow. \N http://vocabulary.odm2.org/specimenmedium/soil +notApplicable Not applicable There is no applicable specimen medium. \N http://vocabulary.odm2.org/specimenmedium/notApplicable +sediment Sediment Specimen collected from material broken down by processes of weathering and erosion and subsequently transported by the action of wind, water, or ice, and/or by the force of gravity acting on the particles. \N http://vocabulary.odm2.org/specimenmedium/sediment +ice Ice Sample collected as frozen water. \N http://vocabulary.odm2.org/specimenmedium/ice +liquidAqueous Liquid aqueous Specimen collected as liquid water. \N http://vocabulary.odm2.org/specimenmedium/liquidAqueous +gas Gas Gas phase specimen. \N http://vocabulary.odm2.org/specimenmedium/gas +rock Rock Specimen collected from a naturally occuring solid aggregate of one or more minerals. \N http://vocabulary.odm2.org/specimenmedium/rock +organism Organism Specimen of an entire organism. \N http://vocabulary.odm2.org/specimenmedium/organism +other Other Other. \N http://vocabulary.odm2.org/specimenmedium/other +particulate Particulate Specimen collected from particulates suspended in a paticulate-fluid mixture. Examples include particulates in water or air. \N http://vocabulary.odm2.org/specimenmedium/particulate +liquidOrganic Liquid organic Specimen collected as an organic liquid. \N http://vocabulary.odm2.org/specimenmedium/liquidOrganic +snow Snow Sample collected from snow. \N http://vocabulary.odm2.org/specimenmedium/snow +mineral Mineral Specimen collected as a mineral. \N http://vocabulary.odm2.org/specimenmedium/mineral +tissue Tissue Sample of a living organism's tissue. \N http://vocabulary.odm2.org/specimenmedium/tissue +\. + + +-- +-- TOC entry 4831 (class 0 OID 70458) +-- Dependencies: 294 +-- Data for Name: cv_specimentype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_specimentype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +forestFloorDigestion Forest floor digestion Sample that consists of a digestion of forest floor material \N http://vocabulary.odm2.org/specimentype/forestFloorDigestion +standardReferenceSpecimen Standard reference specimen Standard reference specimen \N http://vocabulary.odm2.org/specimentype/standardReferenceSpecimen +automated Automated Sample collected using an automated sampler. \N http://vocabulary.odm2.org/specimentype/automated +core Core Long cylindrical cores \N http://vocabulary.odm2.org/specimentype/core +coreSub-Piece Core sub-piece Unambiguously mated portion of a larger piece noted for curatorial management of the material. \N http://vocabulary.odm2.org/specimentype/coreSub-Piece +cuttings Cuttings Loose, coarse, unconsolidated material suspended in drilling fluid. \N http://vocabulary.odm2.org/specimentype/cuttings +coreHalfRound Core half round Half-cylindrical products of along-axis split of a whole round \N http://vocabulary.odm2.org/specimentype/coreHalfRound +coreQuarterRound Core quarter round Quarter-cylindrical products of along-axis split of a half round. \N http://vocabulary.odm2.org/specimentype/coreQuarterRound +precipitationBulk Precipitation bulk Sample from bulk precipitation \N http://vocabulary.odm2.org/specimentype/precipitationBulk +thinSection Thin section Thin section \N http://vocabulary.odm2.org/specimentype/thinSection +grab Grab A sample (sometimes mechanically collected) from a deposit or area, not intended to be representative of the deposit or area. \N http://vocabulary.odm2.org/specimentype/grab +foliageDigestion Foliage digestion Sample that consists of a digestion of plant foliage \N http://vocabulary.odm2.org/specimentype/foliageDigestion +rockPowder Rock powder A sample created from pulverizing a rock to powder. \N http://vocabulary.odm2.org/specimentype/rockPowder +corePiece Core piece Material occurring between unambiguous [as curated] breaks in recovery. \N http://vocabulary.odm2.org/specimentype/corePiece +coreWholeRound Core whole round Cylindrical segments of core or core section material. \N http://vocabulary.odm2.org/specimentype/coreWholeRound +dredge Dredge A group of rocks collected by dragging a dredge along the seafloor. \N http://vocabulary.odm2.org/specimentype/dredge +individualSample Individual sample A sample that is an individual unit, including rock hand samples, a biological specimen, or a bottle of fluid. \N http://vocabulary.odm2.org/specimentype/individualSample +litterFallDigestion Litter fall digestion Sample that consists of a digestion of litter fall \N http://vocabulary.odm2.org/specimentype/litterFallDigestion +coreSectionHalf Core section half Half-cylindrical products of along-axis split of a section or its component fragments through a selected diameter. \N http://vocabulary.odm2.org/specimentype/coreSectionHalf +coreSection Core section Arbitrarily cut segments of a "core" \N http://vocabulary.odm2.org/specimentype/coreSection +petriDishDryDeposition Petri dish (dry deposition) Sample from dry deposition in a petri dish \N http://vocabulary.odm2.org/specimentype/petriDishDryDeposition +theSpecimenTypeIsUnknown The specimen type is unknown The specimen type is unknown \N http://vocabulary.odm2.org/specimentype/theSpecimenTypeIsUnknown +terrestrialSection Terrestrial section A sample of a section of the near-surface Earth, generally in the critical zone. \N http://vocabulary.odm2.org/specimentype/terrestrialSection +orientedCore Oriented core Core that can be positioned on the surface in the same way that it was arranged in the borehole before extraction. \N http://vocabulary.odm2.org/specimentype/orientedCore +other Other Sample does not fit any of the existing type designations. It is expected that further detailed description of the particular sample be provided. \N http://vocabulary.odm2.org/specimentype/other +foliageLeaching Foliage leaching Sample that consists of leachate from foliage \N http://vocabulary.odm2.org/specimentype/foliageLeaching +\. + + +-- +-- TOC entry 4832 (class 0 OID 70466) +-- Dependencies: 295 +-- Data for Name: cv_status; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_status (term, name, definition, category, sourcevocabularyuri) FROM stdin; +planned Planned Data collection is planned. Resulting data values do not yet exist, but will eventually. \N http://vocabulary.odm2.org/status/planned +complete Complete Data collection is complete. No new data values will be added. \N http://vocabulary.odm2.org/status/complete +ongoing Ongoing Data collection is ongoing. New data values will be added periodically. \N http://vocabulary.odm2.org/status/ongoing +\. + + +-- +-- TOC entry 4833 (class 0 OID 70474) +-- Dependencies: 296 +-- Data for Name: cv_taxonomicclassifiertype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_taxonomicclassifiertype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +soilHorizon Soil horizon A taxonomy containing terms describing soil horizons. Soil http://vocabulary.odm2.org/taxonomicclassifiertype/soilHorizon +chemistry Chemistry A taxonomy containing terms associated with chemistry, chemical analysis or processes. \N http://vocabulary.odm2.org/taxonomicclassifiertype/chemistry +hydrology Hydrology A taxonomy containing terms associated with hydrologic variables or processes. \N http://vocabulary.odm2.org/taxonomicclassifiertype/hydrology +climate Climate A taxonomy containing terms associated with the climate, weather, or atmospheric processes. \N http://vocabulary.odm2.org/taxonomicclassifiertype/climate +geology Geology A taxonomy containing terms associated with geology or geological processes. \N http://vocabulary.odm2.org/taxonomicclassifiertype/geology +biology Biology A taxonomy containing terms associated with biological organisms. \N http://vocabulary.odm2.org/taxonomicclassifiertype/biology +instrumentation Instrumentation A taxonomy containing terms associated with instrumentation and instrument properties such as battery voltages, data logger temperatures, often useful for diagnosis. \N http://vocabulary.odm2.org/taxonomicclassifiertype/instrumentation +soilTexture Soil texture A taxonomy containing terms describing soil texture. Soil http://vocabulary.odm2.org/taxonomicclassifiertype/soilTexture +soil Soil A taxonomy containing terms associated with soil variables or processes \N http://vocabulary.odm2.org/taxonomicclassifiertype/soil +rock Rock A taxonomy containing terms describing rocks. \N http://vocabulary.odm2.org/taxonomicclassifiertype/rock +waterQuality Water quality A taxonomy containing terms associated with water quality variables or processes. \N http://vocabulary.odm2.org/taxonomicclassifiertype/waterQuality +lithology Lithology A taxonomy containing terms associated with lithology. \N http://vocabulary.odm2.org/taxonomicclassifiertype/lithology +soilStructure Soil structure A taxonomy containing terms describing soil structure. Soil http://vocabulary.odm2.org/taxonomicclassifiertype/soilStructure +soilColor Soil color A taxonomy containing terms describing soil color. Soil http://vocabulary.odm2.org/taxonomicclassifiertype/soilColor +\. + + +-- +-- TOC entry 4834 (class 0 OID 70482) +-- Dependencies: 297 +-- Data for Name: cv_unitstype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_unitstype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +arealDensity Areal density Areal density \N emilio +chargeConcentration Charge concentration Charge concentration \N emilio +Dimensionless Dimensionless Dimensionless \N emilio +electricalConductivity Electrical conductivity Electrical conductivity \N emilio +massConcentration Mass concentration Mass concentration \N emilio +massFraction Mass fraction Mass fraction \N emilio +molarConcentration Molar concentration Molar concentration \N emilio +specificSurfaceArea Specific surface area Specific surface area \N emilio +temperature Temperature Temperature \N emilio +molarFraction Molar fraction Molar fraction \N emilio +time Time Time \N emilio +\. + + +-- +-- TOC entry 4835 (class 0 OID 70490) +-- Dependencies: 298 +-- Data for Name: cv_variablename; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_variablename (term, name, definition, category, sourcevocabularyuri) FROM stdin; +hydrogenSulfide Hydrogen sulfide Hydrogen sulfide (H2S) \N http://vocabulary.odm2.org/variablename/hydrogenSulfide +1_4_5_Trimethylnaphthalene 1,4,5-Trimethylnaphthalene 1,4,5-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_4_5_Trimethylnaphthalene +BOD20 BOD20 20-day Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD20 +copperDistributionCoefficient Copper, distribution coefficient Ratio of concentrations of copper in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/copperDistributionCoefficient +biphenyl Biphenyl Biphenyl ((C6H5)2), a polycyclic aromatic hydrocarbon (PAH), also known as diphenyl or phenylbenzene or 1,1'-biphenyl or lemonene \N http://vocabulary.odm2.org/variablename/biphenyl +tableOverrunErrorCount Table overrun error count A counter which counts the number of datalogger table overrun errors \N http://vocabulary.odm2.org/variablename/tableOverrunErrorCount +n_Alkane_C32 n-alkane, C32 C32 alkane, normal (i.e. straight-chain) isomer, common name: n-Dotriacontane, formula : C32H66, Synonym: dicetyl \N http://vocabulary.odm2.org/variablename/n_Alkane_C32 +radiationTotalOutgoing Radiation, total outgoing Total amount of outgoing radiation from all frequencies \N http://vocabulary.odm2.org/variablename/radiationTotalOutgoing +hexachlorobenzene Hexachlorobenzene Hexachlorobenzene (C6Cl6) \N http://vocabulary.odm2.org/variablename/hexachlorobenzene +nitrogenTotal Nitrogen, total Total Nitrogen (NO3+NO2+NH4+NH3+Organic) \N http://vocabulary.odm2.org/variablename/nitrogenTotal +suaedaMaritimaCoverage Suaeda maritima coverage Areal coverage of the plant Suaeda maritima \N http://vocabulary.odm2.org/variablename/suaedaMaritimaCoverage +BOD7Carbonaceous BOD7, carbonaceous 7-day Carbonaceous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD7Carbonaceous +benzo_k_fluoranthene Benzo(k)fluoranthene Benzo(k)fluoranthene (C20H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benzo_k_fluoranthene +bromideTotal Bromide, total Total Bromide (Br-) \N http://vocabulary.odm2.org/variablename/bromideTotal +TDRWaveformRelativeLength TDR waveform relative length Time domain reflextometry, apparent length divided by probe length. Square root of dielectric \N http://vocabulary.odm2.org/variablename/TDRWaveformRelativeLength +retene Retene Retene (C18H18), a polycyclic aromatic hydrocarbon (PAH), also known as methyl isopropyl phenanthrene or 1-methyl-7-isopropyl phenanthrene \N http://vocabulary.odm2.org/variablename/retene +temperatureSensor Temperature, sensor Temperature, raw data from sensor \N http://vocabulary.odm2.org/variablename/temperatureSensor +dieldrin Dieldrin Dieldrin (C12H8Cl6O) \N http://vocabulary.odm2.org/variablename/dieldrin +oxygenDissolvedTransducerSignal Oxygen, dissolved, transducer signal Dissolved oxygen, raw data from sensor \N http://vocabulary.odm2.org/variablename/oxygenDissolvedTransducerSignal +cadmiumTotal Cadmium, total Total Cadmium (Cd). For chemical terms, "total" indciates an unfiltered sample. \N http://vocabulary.odm2.org/variablename/cadmiumTotal +coliformFecal Coliform, fecal Fecal Coliform \N http://vocabulary.odm2.org/variablename/coliformFecal +chlorophyll_a_Allomer Chlorophyll a allomer The phytoplankton pigment Chlorophyll a allomer \N http://vocabulary.odm2.org/variablename/chlorophyll_a_Allomer +fluoride Fluoride Fluoride (F-) \N http://vocabulary.odm2.org/variablename/fluoride +1_2_3_Trimethylbenzene 1,2,3-Trimethylbenzene 1,2,3-Trimethylbenzene (C9H12) \N http://vocabulary.odm2.org/variablename/1_2_3_Trimethylbenzene +copperParticulate Copper, particulate Particulate copper (Cu) in suspension \N http://vocabulary.odm2.org/variablename/copperParticulate +ethane Ethane Ethane \N http://vocabulary.odm2.org/variablename/ethane +phenanthrene Phenanthrene Phenanthrene (C14H10), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/phenanthrene +1_1_Dichloroethane 1,1-Dichloroethane 1,1-Dichloroethane (C2H4Cl2) \N http://vocabulary.odm2.org/variablename/1_1_Dichloroethane +triphenylene Triphenylene Triphenylene (C18H12) \N http://vocabulary.odm2.org/variablename/triphenylene +benzoicAcid Benzoic acid Benzoic acid (C7H6O2) \N http://vocabulary.odm2.org/variablename/benzoicAcid +2_6_Dichlorophenol 2,6-Dichlorophenol 2,6-Dichlorophenol (C6H4Cl2O) \N http://vocabulary.odm2.org/variablename/2_6_Dichlorophenol +chromiumTotal Chromium, total Total chromium (Cr). Total indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/chromiumTotal +uranium_234 Uranium-234 An isotope of uranium in the uranium-238 decay series \N http://vocabulary.odm2.org/variablename/uranium_234 +ethylTert_ButylEther Ethyl tert-Butyl Ether Ethyl tert-Butyl Ether (C6H14O) \N http://vocabulary.odm2.org/variablename/ethylTert_ButylEther +cytochromeP450Family1SubfamilyAPolypeptide1DeltaCycleThreshold Cytochrome P450, family 1, subfamily A, polypeptide 1, delta cycle threshold Delta cycle threshold for Cytochrome P450, family 1, subfamily A, polypeptide 1 (cyp1a1). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for cyp1a1 is the difference between the cycle threshold (Ct) of cyp1a1 gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin). \N http://vocabulary.odm2.org/variablename/cytochromeP450Family1SubfamilyAPolypeptide1DeltaCycleThreshold +fluorine Fluorine Fluorine (F2) \N http://vocabulary.odm2.org/variablename/fluorine +trans_1_3_Dichloropropene trans-1,3-Dichloropropene trans-1,3-Dichloropropene (C3H4Cl2) \N http://vocabulary.odm2.org/variablename/trans_1_3_Dichloropropene +cadmiumDistributionCoefficient Cadmium, distribution coefficient Ratio of concentrations of cadmium in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/cadmiumDistributionCoefficient +BOD5Carbonaceous BOD5, carbonaceous 5-day Carbonaceous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD5Carbonaceous +potassiumTotal Potassium, total Total Potassium (K) \N http://vocabulary.odm2.org/variablename/potassiumTotal +thalliumParticulate Thallium, particulate Particulate thallium (Tl) in suspension \N http://vocabulary.odm2.org/variablename/thalliumParticulate +chlorophyll_b Chlorophyll b Chlorophyll b \N http://vocabulary.odm2.org/variablename/chlorophyll_b +n_AlkaneLongChain n-alkane, long-chain long-chain alkanes, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified) \N http://vocabulary.odm2.org/variablename/n_AlkaneLongChain +radiationTotalIncoming Radiation, total incoming Total amount of incoming radiation from all frequencies \N http://vocabulary.odm2.org/variablename/radiationTotalIncoming +calciumTotal Calcium, total Total Calcium (Ca) \N http://vocabulary.odm2.org/variablename/calciumTotal +waterUseRecreation Water Use, Recreation Recreational water use, for example golf courses. \N http://vocabulary.odm2.org/variablename/waterUseRecreation +bariumDistributionCoefficient Barium, distribution coefficient Ratio of concentrations of barium in two phases in equilibrium with each other. Phases must be specified \N http://vocabulary.odm2.org/variablename/bariumDistributionCoefficient +limoniumNashiiCoverage Limonium nashii Coverage Areal coverage of the plant Limonium nashii \N http://vocabulary.odm2.org/variablename/limoniumNashiiCoverage +bulkDensity Bulk density The mass of many particles of the material divided by the total volume they occupy. The total volume includes particle volume, inter-particle void volume and internal pore volume. \N http://vocabulary.odm2.org/variablename/bulkDensity +sulfateTotal Sulfate, total Total Sulfate (SO4) \N http://vocabulary.odm2.org/variablename/sulfateTotal +thorium_228 Thorium-228 An isotope of thorium in the thorium-232 decay series \N http://vocabulary.odm2.org/variablename/thorium_228 +2_4_6_Trichlorophenol 2,4,6-Trichlorophenol 2,4,6-Trichlorophenol (TCP) (C6H2Cl3OH) \N http://vocabulary.odm2.org/variablename/2_4_6_Trichlorophenol +latitude Latitude Latitude as a variable measurement or observation (Spatial reference to be designated in methods). This is distinct from the latitude of a site which is a site attribute. \N http://vocabulary.odm2.org/variablename/latitude +sedimentRetainedOnSieve Sediment, retained on sieve The amount of sediment retained on a sieve in a gradation test \N http://vocabulary.odm2.org/variablename/sedimentRetainedOnSieve +absorbance Absorbance The amount of radiation absorbed by a material \N http://vocabulary.odm2.org/variablename/absorbance +distichlisSpicataCoverage Distichlis spicata Coverage Areal coverage of the plant Distichlis spicata \N http://vocabulary.odm2.org/variablename/distichlisSpicataCoverage +1_2_4_5_Tetrachlorobenzene 1,2,4,5-tetrachlorobenzene 1,2,4,5-tetrachlorobenzene (C6H2Cl4) \N http://vocabulary.odm2.org/variablename/1_2_4_5_Tetrachlorobenzene +slope Slope Ratio between two variables in a linear relationship. \N http://vocabulary.odm2.org/variablename/slope +batteryVoltage Battery voltage The battery voltage of a datalogger or sensing system, often recorded as an indicator of data reliability \N http://vocabulary.odm2.org/variablename/batteryVoltage +chlorophyll_a Chlorophyll a Chlorophyll a \N http://vocabulary.odm2.org/variablename/chlorophyll_a +1_2_4_Trimethylbenzene 1,2,4-Trimethylbenzene 1,2,4-Trimethylbenzene \N http://vocabulary.odm2.org/variablename/1_2_4_Trimethylbenzene +fluoranthene Fluoranthene Fluoranthene (C16H10), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/fluoranthene +windChill Wind chill The effect of wind on the temperature felt on human skin. \N http://vocabulary.odm2.org/variablename/windChill +leadDistributionCoefficient Lead, distribution coefficient Ratio of concentrations of lead in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/leadDistributionCoefficient +acetone Acetone Acetone (C3H6O) \N http://vocabulary.odm2.org/variablename/acetone +carbon_14 Carbon-14 A radioactive isotope of carbon which undergoes beta decay \N http://vocabulary.odm2.org/variablename/carbon_14 +ethoxyresorufin_O_DeethylaseActivity Ethoxyresorufin O-deethylase, activity Ethoxyresorufin O-deethylase (EROD) activity \N http://vocabulary.odm2.org/variablename/ethoxyresorufin_O_DeethylaseActivity +19_Hexanoyloxyfucoxanthin 19-Hexanoyloxyfucoxanthin The phytoplankton pigment 19-Hexanoyloxyfucoxanthin \N http://vocabulary.odm2.org/variablename/19_Hexanoyloxyfucoxanthin +cesiumDissolved Cesium, dissolved Dissolved Cesium (Cs) \N http://vocabulary.odm2.org/variablename/cesiumDissolved +carbonParticulateOrganic Carbon, particulate organic Particulate organic carbon in suspension \N http://vocabulary.odm2.org/variablename/carbonParticulateOrganic +leadDissolved Lead, dissolved Dissolved Lead (Pb). For chemical terms, dissolved indicates a filtered sample \N http://vocabulary.odm2.org/variablename/leadDissolved +chlorophyll_c1_And_c2 Chlorophyll c1 and c2 Chlorophyll c1 and c2 \N http://vocabulary.odm2.org/variablename/chlorophyll_c1_And_c2 +benz_a_anthracene Benz(a)anthracene Benz(a)anthracene (C18H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benz_a_anthracene +intercept Intercept The point at which one of the variables in a function equals 0. \N http://vocabulary.odm2.org/variablename/intercept +antimonyDistributionCoefficient Antimony, distribution coefficient Ratio of concentrations of antimony in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/antimonyDistributionCoefficient +diadinoxanthin Diadinoxanthin The phytoplankton pigment Diadinoxanthin \N http://vocabulary.odm2.org/variablename/diadinoxanthin +momentumFlux Momentum flux Momentum flux \N http://vocabulary.odm2.org/variablename/momentumFlux +n_Alkane_C16 n-alkane, C16 C16 alkane, normal (i.e. straight-chain) isomer, common name: n-Hexadecane, formula: C16H34. Synonym: cetane \N http://vocabulary.odm2.org/variablename/n_Alkane_C16 +2_3_6_Trimethylnaphthalene 2,3,6-Trimethylnaphthalene 2,3,6-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_3_6_Trimethylnaphthalene +silverDissolved Silver, dissolved Dissolved silver (Ag). For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/silverDissolved +n_Alkane_C31 n-alkane, C31 C31 alkane,normal (i.e. straight-chain) isomer, common name: n-Hentriacontane, formula : C31H64, Synonym: untriacontane \N http://vocabulary.odm2.org/variablename/n_Alkane_C31 +delta_13COfCO2 delta-13C of CO2 Isotope 13C of carbon dioxide \N http://vocabulary.odm2.org/variablename/delta_13COfCO2 +methylfluoranthene Methylfluoranthene Methylfluoranthene (C17H12) \N http://vocabulary.odm2.org/variablename/methylfluoranthene +benzylAlcohol Benzyl alcohol Benzyl alcohol (C7H8O) \N http://vocabulary.odm2.org/variablename/benzylAlcohol +phosphorusOrthophosphate Phosphorus, orthophosphate Orthophosphate Phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusOrthophosphate +delta_13COfCH4 delta-13C of CH4 Isotope 13C of methane \N http://vocabulary.odm2.org/variablename/delta_13COfCH4 +salicorniaVirginicaCoverage Salicornia virginica coverage Areal coverage of the plant Salicornia virginica \N http://vocabulary.odm2.org/variablename/salicorniaVirginicaCoverage +BOD20Carbonaceous BOD20, carbonaceous 20-day Carbonaceous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD20Carbonaceous +radiationNet Radiation, net Net Radiation \N http://vocabulary.odm2.org/variablename/radiationNet +methaneDissolved Methane, dissolved Dissolved Methane (CH4) \N http://vocabulary.odm2.org/variablename/methaneDissolved +chromium_VI Chromium (VI) Hexavalent Chromium \N http://vocabulary.odm2.org/variablename/chromium_VI +tetrachloroethene Tetrachloroethene Tetrachloroethene (C2Cl4) \N http://vocabulary.odm2.org/variablename/tetrachloroethene +2_Methylanthracene 2-Methylanthracene 2-Methylanthracene (C15H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_Methylanthracene +ethyne Ethyne Ethyne (C2H2) \N http://vocabulary.odm2.org/variablename/ethyne +volumetricWaterContent Volumetric water content Volume of liquid water relative to bulk volume. Used for example to quantify soil moisture \N http://vocabulary.odm2.org/variablename/volumetricWaterContent +carbonate Carbonate Carbonate ion (CO3-2) concentration \N http://vocabulary.odm2.org/variablename/carbonate +zeaxanthin Zeaxanthin The phytoplankton pigment Zeaxanthin \N http://vocabulary.odm2.org/variablename/zeaxanthin +benzo_g_h_i_perylene Benzo(g,h,i)perylene Benzo(g,h,i)perylene (C22H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benzo_g_h_i_perylene +propane Propane Propane \N http://vocabulary.odm2.org/variablename/propane +liverMass Liver, mass Mass of the sample of liver tissue used for analyses \N http://vocabulary.odm2.org/variablename/liverMass +lightAttenuationCoefficient Light attenuation coefficient Light attenuation coefficient \N http://vocabulary.odm2.org/variablename/lightAttenuationCoefficient +triethyleneGlycol Triethylene glycol Triethylene glycol (C6H14O4) \N http://vocabulary.odm2.org/variablename/triethyleneGlycol +2_Butanone_MEK 2-Butanone (MEK) 2-Butanone (MEK) (C4H8O) \N http://vocabulary.odm2.org/variablename/2_Butanone_MEK +4_Methyldibenzothiophene 4-Methyldibenzothiophene 4-Methyldibenzothiophene (C13H10S), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/4_Methyldibenzothiophene +cobalt_60 Cobalt-60 A synthetic radioactive isotope of cobalt with a half-life of 5.27 years. \N http://vocabulary.odm2.org/variablename/cobalt_60 +ethanol Ethanol Ethanol (C2H6O) \N http://vocabulary.odm2.org/variablename/ethanol +bromodichloromethane Bromodichloromethane Bromodichloromethane (CHBrCl2) \N http://vocabulary.odm2.org/variablename/bromodichloromethane +hardnessCalcium Hardness, Calcium Hardness of calcium \N http://vocabulary.odm2.org/variablename/hardnessCalcium +aceticAcid Acetic Acid Acetic Acid (C2H4O2) \N http://vocabulary.odm2.org/variablename/aceticAcid +zirconDissolved Zircon, dissolved Dissolved Zircon (Zr) \N http://vocabulary.odm2.org/variablename/zirconDissolved +1_8_Dimethylnaphthalene 1,8-Dimethylnaphthalene 1,8-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_8_Dimethylnaphthalene +aroclor_1260 Aroclor-1260 Aroclor-1260 (C12H3Cl7), a PCB mixture \N http://vocabulary.odm2.org/variablename/aroclor_1260 +acetate Acetate Acetate \N http://vocabulary.odm2.org/variablename/acetate +2_Chloronaphthalene 2-Chloronaphthalene 2-Chloronaphthalene (C10H7Cl) \N http://vocabulary.odm2.org/variablename/2_Chloronaphthalene +solidsVolatileSuspended Solids, volatile suspended Volatile Suspended Solids \N http://vocabulary.odm2.org/variablename/solidsVolatileSuspended +hexachloroethane Hexachloroethane Hexachloroethane (C2Cl6) \N http://vocabulary.odm2.org/variablename/hexachloroethane +snowDepth Snow depth Snow depth \N http://vocabulary.odm2.org/variablename/snowDepth +delta_18OOfH2O delta-18O of H2O Isotope 18O of water \N http://vocabulary.odm2.org/variablename/delta_18OOfH2O +temperature Temperature Temperature \N http://vocabulary.odm2.org/variablename/temperature +nitrogen_NH3 Nitrogen, NH3 Free Ammonia (NH3) \N http://vocabulary.odm2.org/variablename/nitrogen_NH3 +wellFlowRate Well flow rate Flow rate from well while pumping \N http://vocabulary.odm2.org/variablename/wellFlowRate +bulkElectricalConductivity Bulk electrical conductivity Bulk electrical conductivity of a medium measured using a sensor such as time domain reflectometry (TDR), as a raw sensor response in the measurement of a quantity like soil moisture. \N http://vocabulary.odm2.org/variablename/bulkElectricalConductivity +thorium Thorium Thorium (Th) \N http://vocabulary.odm2.org/variablename/thorium +longitude Longitude Longitude as a variable measurement or observation (Spatial reference to be designated in methods). This is distinct from the longitude of a site which is a site attribute. \N http://vocabulary.odm2.org/variablename/longitude +radiationTotalShortwave Radiation, total shortwave Total Shortwave Radiation \N http://vocabulary.odm2.org/variablename/radiationTotalShortwave +vanadiumParticulate Vanadium, particulate Particulate vanadium (V) in suspension \N http://vocabulary.odm2.org/variablename/vanadiumParticulate +BOD1 BOD1 1-day Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD1 +windStress Wind stress Drag or trangential force per unit area exerted on a surface by the adjacent layer of moving air \N http://vocabulary.odm2.org/variablename/windStress +titanium Titanium Titanium (Ti) \N http://vocabulary.odm2.org/variablename/titanium +heliumDissolved Helium, dissolved Dissolved Helium (He) \N http://vocabulary.odm2.org/variablename/heliumDissolved +1_3_Dichlorobenzene 1,3-Dichlorobenzene 1,3-Dichlorobenzene (C6H4Cl2) \N http://vocabulary.odm2.org/variablename/1_3_Dichlorobenzene +relativeHumidity Relative humidity Relative humidity \N http://vocabulary.odm2.org/variablename/relativeHumidity +bromomethane_MethylBromide Bromomethane (Methyl bromide) Bromomethane (Methyl bromide) (CH3Br) \N http://vocabulary.odm2.org/variablename/bromomethane_MethylBromide +wellheadPressure Wellhead pressure The pressure exerted by the fluid at the wellhead or casinghead after the well has been shut off for a period of time, typically 24 hours \N http://vocabulary.odm2.org/variablename/wellheadPressure +carbonSuspendedInorganic Carbon, suspended inorganic Suspended Inorganic Carbon \N http://vocabulary.odm2.org/variablename/carbonSuspendedInorganic +transpiration Transpiration Transpiration \N http://vocabulary.odm2.org/variablename/transpiration +radon_222 Radon-222 An isotope of radon \N http://vocabulary.odm2.org/variablename/radon_222 +endrinKetone Endrin Ketone Endrin Ketone (C12H9Cl5O) \N http://vocabulary.odm2.org/variablename/endrinKetone +dibenz_a_h_anthracene Dibenz(a,h)anthracene Dibenz(a,h)anthracene (C22H14), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/dibenz_a_h_anthracene +phosphorusDissolvedOrganic Phosphorus, dissolved organic Dissolved organic phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusDissolvedOrganic +acidityExchange Acidity, exchange The total amount of the Cation Exchange Capacity (CEC) of a soil that is due to H+ and Al3+ ions. It is a proportion of the total acidity and it is dependent on the type of soil and the percentage of the CEC that is composed of exchangeable bases (Ca2+, Mg2+, K+). \N http://vocabulary.odm2.org/variablename/acidityExchange +bodyLength Body length Length of the body of an organism \N http://vocabulary.odm2.org/variablename/bodyLength +chlorophyll_a_UncorrectedForPheophytin Chlorophyll a, uncorrected for pheophytin Chlorophyll a uncorrected for pheophytin \N http://vocabulary.odm2.org/variablename/chlorophyll_a_UncorrectedForPheophytin +methylchrysene Methylchrysene Methylchrysene (C19H14) \N http://vocabulary.odm2.org/variablename/methylchrysene +visibility Visibility Visibility \N http://vocabulary.odm2.org/variablename/visibility +1_2_Dichloropropane 1,2-Dichloropropane 1,2-Dichloropropane (C3H6Cl2) \N http://vocabulary.odm2.org/variablename/1_2_Dichloropropane +benzo_e_pyrene Benzo(e)pyrene Benzo(e)pyrene (C20H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benzo_e_pyrene +2_4_Dichlorophenol 2,4-Dichlorophenol 2,4-Dichlorophenol (C6H4Cl2O) \N http://vocabulary.odm2.org/variablename/2_4_Dichlorophenol +chromium_VI_Dissolved Chromium (VI), dissolved Dissolved Hexavalent Chromium \N http://vocabulary.odm2.org/variablename/chromium_VI_Dissolved +tideStage Tide stage Tidal stage \N http://vocabulary.odm2.org/variablename/tideStage +n_Alkane_C23 n-alkane, C23 C23 alkane, normal (i.e. straight-chain) isomer, common name: n-Tricosane, formula : C23H48 \N http://vocabulary.odm2.org/variablename/n_Alkane_C23 +cadmiumParticulate Cadmium, particulate Particulate cadmium (Cd) in suspension \N http://vocabulary.odm2.org/variablename/cadmiumParticulate +density Density Density \N http://vocabulary.odm2.org/variablename/density +instrumentStatusCode Instrument status code Code value recorded by instrument indicating some information regarding the status of the instrument \N http://vocabulary.odm2.org/variablename/instrumentStatusCode +gageHeight Gage height Water level with regard to an arbitrary gage datum (also see Water depth for comparison) \N http://vocabulary.odm2.org/variablename/gageHeight +oilAndGrease Oil and grease Oil and grease \N http://vocabulary.odm2.org/variablename/oilAndGrease +area Area Area of a measurement location \N http://vocabulary.odm2.org/variablename/area +carbonDioxideFlux Carbon dioxide flux Carbon dioxide (CO2) flux \N http://vocabulary.odm2.org/variablename/carbonDioxideFlux +2_Butoxyethanol 2-Butoxyethanol 2-Butoxyethanol (CH3(CH2)2CH2OCH2OH) \N http://vocabulary.odm2.org/variablename/2_Butoxyethanol +asteridaeCoverage Asteridae coverage Areal coverage of the plant Asteridae \N http://vocabulary.odm2.org/variablename/asteridaeCoverage +dataShuttleAttached Data shuttle attached A categorical variable marking the attachment of a coupler or data shuttle to a logger. This is used for quality control. \N http://vocabulary.odm2.org/variablename/dataShuttleAttached +endosulfanSulfate Endosulfan Sulfate Endosulfan Sulfate (C9H6Cl6O4S) \N http://vocabulary.odm2.org/variablename/endosulfanSulfate +benzene Benzene Benzene (C6H6) \N http://vocabulary.odm2.org/variablename/benzene +chlorobenzene Chlorobenzene Chlorobenzene (C6H5Cl) \N http://vocabulary.odm2.org/variablename/chlorobenzene +n_Alkane_C30 n-alkane, C30 C30 alkane, normal (i.e. straight-chain) isomer, common name: n-Triacontane, formula : C30H62 \N http://vocabulary.odm2.org/variablename/n_Alkane_C30 +phosphorusTotal Phosphorus, total Total Phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusTotal +zincDissolved Zinc, dissolved Dissolved Zinc (Zn) \N http://vocabulary.odm2.org/variablename/zincDissolved +ureaFlux Urea flux Urea ((NH2)2CO) flux \N http://vocabulary.odm2.org/variablename/ureaFlux +BOD3Carbonaceous BOD3, carbonaceous 3-day Carbonaceous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD3Carbonaceous +silica Silica Silica (SiO2) \N http://vocabulary.odm2.org/variablename/silica +terpineol Terpineol Terpineol (C10H18O) \N http://vocabulary.odm2.org/variablename/terpineol +lithiumTotal Lithium, total Total Lithium (Li). For chemical terms, total indicates an unfiltered sample. \N http://vocabulary.odm2.org/variablename/lithiumTotal +tertAmylMethylEther Tert-Amyl Methyl Ether Tert-Amyl Methyl Ether (C6H14O) \N http://vocabulary.odm2.org/variablename/tertAmylMethylEther +tetracene Tetracene Tetracene (C18H12), a polycyclic aromatic hydrocarbon (PAH), also known as naphthacene or benz[b]anthracene \N http://vocabulary.odm2.org/variablename/tetracene +aldrin Aldrin Aldrin (C12H8Cl6) \N http://vocabulary.odm2.org/variablename/aldrin +solidsFixedSuspended Solids, fixed suspended Fixed Suspended Solids \N http://vocabulary.odm2.org/variablename/solidsFixedSuspended +odor Odor Odor \N http://vocabulary.odm2.org/variablename/odor +hardnessTotal Hardness, total Total hardness \N http://vocabulary.odm2.org/variablename/hardnessTotal +n_Alkane_C15 n-alkane, C15 C15 alkane, normal (i.e. straight-chain) isomer, common name: n-Pentadecane, formula : C15H32 \N http://vocabulary.odm2.org/variablename/n_Alkane_C15 +naphthalene Naphthalene Naphthalene (C10H8) \N http://vocabulary.odm2.org/variablename/naphthalene +bis_2_Chloroethyl_Ether bis(2-Chloroethyl)ether bis(2-Chloroethyl)ether (C4H8Cl2O) \N http://vocabulary.odm2.org/variablename/bis_2_Chloroethyl_Ether +discharge Discharge Discharge \N http://vocabulary.odm2.org/variablename/discharge +arsenicTotal Arsenic, total Total arsenic (As). Total indicates was measured on a whole water sample. \N http://vocabulary.odm2.org/variablename/arsenicTotal +chlorophyll_a_b_c Chlorophyll (a+b+c) Chlorophyll (a+b+c) \N http://vocabulary.odm2.org/variablename/chlorophyll_a_b_c +carbonDisulfide Carbon disulfide Carbon disulfide (CS2) \N http://vocabulary.odm2.org/variablename/carbonDisulfide +canthaxanthin Canthaxanthin The phytoplankton pigment Canthaxanthin \N http://vocabulary.odm2.org/variablename/canthaxanthin +acenaphthene Acenaphthene Acenaphthene (C12H10) \N http://vocabulary.odm2.org/variablename/acenaphthene +methyleneChloride_Dichloromethane Methylene chloride (Dichloromethane) Methylene chloride (Dichloromethane) (CH2Cl2) \N http://vocabulary.odm2.org/variablename/methyleneChloride_Dichloromethane +1_Methylnaphthalene 1-Methylnaphthalene 1-Methylnaphthalene (C10H7CH3), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_Methylnaphthalene +phosphorusParticulate Phosphorus, particulate Particulate phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusParticulate +containerNumber Container number The identifying number for a water sampler container. \N http://vocabulary.odm2.org/variablename/containerNumber +2_3_4_6_Tetrachlorophenol 2,3,4,6-Tetrachlorophenol 2,3,4,6-Tetrachlorophenol (C6H2Cl4O) \N http://vocabulary.odm2.org/variablename/2_3_4_6_Tetrachlorophenol +1_3_5_Trimethylbenzene 1,3,5-Trimethylbenzene 1,3,5-Trimethylbenzene (C6H3(CH3)3) \N http://vocabulary.odm2.org/variablename/1_3_5_Trimethylbenzene +mercuryTotal Mercury, total Total Mercury (Hg). For chemical terms, total represents an unfiltered sample. \N http://vocabulary.odm2.org/variablename/mercuryTotal +bicarbonate Bicarbonate Bicarbonate (HCO3-) \N http://vocabulary.odm2.org/variablename/bicarbonate +abundance Abundance The relative representation of a species in a particular ecosystem. If this generic term is used, the publisher should specify/qualify the species, class, etc. being measured in the method, qualifier, or other appropriate field. \N http://vocabulary.odm2.org/variablename/abundance +heptachlorEpoxide Heptachlor epoxide Heptachlor epoxide (C10H5Cl7O) \N http://vocabulary.odm2.org/variablename/heptachlorEpoxide +nickelTotal Nickel, total Total Nickel (Ni). "Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/nickelTotal +4_4_Methylenebis_N_N_Dimethylaniline 4,4-Methylenebis(N,N-dimethylaniline) 4,4'-Methylenebis(N,N-dimethylaniline) (C17H22N2) \N http://vocabulary.odm2.org/variablename/4_4_Methylenebis_N_N_Dimethylaniline +COD COD Chemical oxygen demand \N http://vocabulary.odm2.org/variablename/COD +hostConnected Host connected A categorical variable marking the attachment of a host computer to a logger. This is used for quality control. \N http://vocabulary.odm2.org/variablename/hostConnected +carbonSuspendedTotal Carbon, suspended total Suspended Total (Organic+Inorganic) Carbon \N http://vocabulary.odm2.org/variablename/carbonSuspendedTotal +waterLevel Water level Water level relative to datum. The datum may be local or global such as NGVD 1929 and should be specified in the method description for associated data values. \N http://vocabulary.odm2.org/variablename/waterLevel +e_coli E-coli Escherichia coli \N http://vocabulary.odm2.org/variablename/e_coli +netHeatFlux Net heat flux Outgoing rate of heat energy transfer minus the incoming rate of heat energy transfer through a given area \N http://vocabulary.odm2.org/variablename/netHeatFlux +chloroform Chloroform Chloroform (CHCl3), a haloform \N http://vocabulary.odm2.org/variablename/chloroform +cis_1_3_Dichloropropene cis-1,3-Dichloropropene cis-1,3-Dichloropropene (C3H4Cl2) \N http://vocabulary.odm2.org/variablename/cis_1_3_Dichloropropene +propanoicAcid Propanoic acid Propanoic acid (C3H6O2) \N http://vocabulary.odm2.org/variablename/propanoicAcid +magnesiumDissolved Magnesium, dissolved Dissolved Magnesium (Mg) \N http://vocabulary.odm2.org/variablename/magnesiumDissolved +1_2_Dibromo_3_Chloropropane 1,2-Dibromo-3-chloropropane 1,2-Dibromo-3-chloropropane (C3H5Br2Cl) \N http://vocabulary.odm2.org/variablename/1_2_Dibromo_3_Chloropropane +noVegetationCoverage No vegetation coverage Areal coverage of no vegetation \N http://vocabulary.odm2.org/variablename/noVegetationCoverage +sodiumTotal Sodium, total Total Sodium (Na) \N http://vocabulary.odm2.org/variablename/sodiumTotal +solidsTotal Solids, total Total Solids \N http://vocabulary.odm2.org/variablename/solidsTotal +chloride Chloride Chloride (Cl-) \N http://vocabulary.odm2.org/variablename/chloride +carbonToNitrogenMolarRatio Carbon to nitrogen molar ratio Carbon to nitrogen (C:N) molar ratio \N http://vocabulary.odm2.org/variablename/carbonToNitrogenMolarRatio +N_Nitrosodiphenylamine N-Nitrosodiphenylamine N-Nitrosodiphenylamine (C12H10N2O) \N http://vocabulary.odm2.org/variablename/N_Nitrosodiphenylamine +sodiumAdsorptionRatio Sodium adsorption ratio Sodium adsorption ratio \N http://vocabulary.odm2.org/variablename/sodiumAdsorptionRatio +nitrogenDissolvedNitrite_NO2_Nitrate_NO3 Nitrogen, dissolved nitrite (NO2) + nitrate (NO3) Dissolved nitrite (NO2) + nitrate (NO3) nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenDissolvedNitrite_NO2_Nitrate_NO3 +evapotranspiration Evapotranspiration Evapotranspiration \N http://vocabulary.odm2.org/variablename/evapotranspiration +calciumDissolved Calcium, dissolved Dissolved Calcium (Ca) \N http://vocabulary.odm2.org/variablename/calciumDissolved +1_Chloronaphthalene 1-Chloronaphthalene 1-Chloronaphthalene (C10H7Cl) \N http://vocabulary.odm2.org/variablename/1_Chloronaphthalene +counter Counter The total number of events within the measurement period \N http://vocabulary.odm2.org/variablename/counter +groundwaterDepth Groundwater Depth Groundwater depth is the distance between the water surface and the ground surface at a specific location specified by the site location and offset. \N http://vocabulary.odm2.org/variablename/groundwaterDepth +1_Methylphenanthrene 1-Methylphenanthrene 1-Methylphenanthrene (C15H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_Methylphenanthrene +parameter Parameter Parameter related to a hydrologic process. An example usage would be for a starge-discharge relation parameter. \N http://vocabulary.odm2.org/variablename/parameter +grossAlphaRadionuclides Gross alpha radionuclides Gross Alpha Radionuclides \N http://vocabulary.odm2.org/variablename/grossAlphaRadionuclides +isophorone Isophorone Isophorone (C9H14O) \N http://vocabulary.odm2.org/variablename/isophorone +coliformTotal Coliform, total Total Coliform \N http://vocabulary.odm2.org/variablename/coliformTotal +chloromethane Chloromethane Chloromethane (CH3Cl) \N http://vocabulary.odm2.org/variablename/chloromethane +1_3_Dinitrobenzene 1,3-Dinitrobenzene 1,3-Dinitrobenzene (C6H4N2O4) \N http://vocabulary.odm2.org/variablename/1_3_Dinitrobenzene +cuscutaSppCoverage Cuscuta spp. coverage Areal coverage of the plant Cuscuta spp. \N http://vocabulary.odm2.org/variablename/cuscutaSppCoverage +1_Methyldibenzothiophene 1-Methyldibenzothiophene 1-Methyldibenzothiophene (C13H10S) \N http://vocabulary.odm2.org/variablename/1_Methyldibenzothiophene +radiationNetPAR Radiation, net PAR Net Photosynthetically-Active Radiation \N http://vocabulary.odm2.org/variablename/radiationNetPAR +alkalinityHydroxide Alkalinity, hydroxide Hydroxide Alkalinity \N http://vocabulary.odm2.org/variablename/alkalinityHydroxide +evapotranspirationPotential Evapotranspiration, potential The amount of water that could be evaporated and transpired if there was sufficient water available. \N http://vocabulary.odm2.org/variablename/evapotranspirationPotential +BODu BODu Ultimate Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BODu +pyrene Pyrene Pyrene (C16H10), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/pyrene +seleniumDissolved Selenium, dissolved Dissolved selenium (Se). For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/seleniumDissolved +1_4_Dimethylnaphthalene 1,4-Dimethylnaphthalene 1,4-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_4_Dimethylnaphthalene +hexane Hexane Hexane \N http://vocabulary.odm2.org/variablename/hexane +shannonDiversityIndex Shannon diversity index A diversity index that is based on the number of taxa, and the proportion of individuals in each taxa relative to the entire community, evaluated as entropy. Also known as Shannon-Weaver diversity index, the Shannon-Wiener index, the Shannon index and the Shannon entropy. \N http://vocabulary.odm2.org/variablename/shannonDiversityIndex +alkalinityTotal Alkalinity, total Total Alkalinity \N http://vocabulary.odm2.org/variablename/alkalinityTotal +1_3_Dimethylnaphthalene 1,3-Dimethylnaphthalene 1,3-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_3_Dimethylnaphthalene +hardnessNonCarbonate Hardness, non-carbonate Non-carbonate hardness \N http://vocabulary.odm2.org/variablename/hardnessNonCarbonate +BODuCarbonaceous BODu, carbonaceous Carbonaceous Ultimate Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BODuCarbonaceous +potassiumDissolved Potassium, dissolved Dissolved Potassium (K) \N http://vocabulary.odm2.org/variablename/potassiumDissolved +nitrogenNitrite_NO2 Nitrogen, nitrite (NO2) Nitrite (NO2) Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenNitrite_NO2 +shannonEvennessIndex Shannon evenness index A dimensionless diversity index, calculated as a ratio of the Shannon diversity index over its maximum. Also known as the Shannon Weaver evenness index \N http://vocabulary.odm2.org/variablename/shannonEvennessIndex +temperatureDewPoint Temperature, dew point Dew point temperature \N http://vocabulary.odm2.org/variablename/temperatureDewPoint +DNADamageOliveDailMoment DNA damage, olive tail moment In a single cell gel electrophoresis assay (comet assay), olive tail moment is the product of the percentage of DNA in the tail and the distance between the intesity centroids of the head and tail along the x-axis (Olive, et al., 1990) \N http://vocabulary.odm2.org/variablename/DNADamageOliveDailMoment +boronDissolved Boron, dissolved dissolved boron \N http://vocabulary.odm2.org/variablename/boronDissolved +ammoniumFlux Ammonium flux Ammonium (NH4) flux \N http://vocabulary.odm2.org/variablename/ammoniumFlux +carbonDioxideTransducerSignal Carbon dioxide, transducer signal Carbon dioxide (CO2), raw data from sensor \N http://vocabulary.odm2.org/variablename/carbonDioxideTransducerSignal +cis_1_2_Dichloroethene cis-1,2-Dichloroethene cis-1,2-Dichloroethene (C2H2Cl2) \N http://vocabulary.odm2.org/variablename/cis_1_2_Dichloroethene +4_Methylphenol 4-Methylphenol 4-Methylphenol (C7H8O) \N http://vocabulary.odm2.org/variablename/4_Methylphenol +waterDepthAveraged Water depth, averaged Water depth averaged over a channel cross-section or water body. Averaging method to be specified in methods. \N http://vocabulary.odm2.org/variablename/waterDepthAveraged +THWIndex THW Index The THW Index uses temperature, humidity, and wind speed to calculate an apparent temperature. \N http://vocabulary.odm2.org/variablename/THWIndex +sodiumDissolved Sodium, dissolved Dissolved Sodium (Na) \N http://vocabulary.odm2.org/variablename/sodiumDissolved +nitrogenOrganicKjeldahl Nitrogen, organic kjeldahl Organic Kjeldahl (organic nitrogen + ammonia (NH3) + ammonium (NH4)) nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenOrganicKjeldahl +pH pH pH is the measure of the acidity or alkalinity of a solution. pH is formally a measure of the activity of dissolved hydrogen ions (H+). Solutions in which the concentration of H+ exceeds that of OH- have a pH value lower than 7.0 and are known as acids. \N http://vocabulary.odm2.org/variablename/pH +1_2_Dimethylnaphthalene 1,2-Dimethylnaphthalene 1,2-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_2_Dimethylnaphthalene +9_cis_Neoxanthin 9 cis-Neoxanthin The phytoplankton pigment 9 cis-Neoxanthin \N http://vocabulary.odm2.org/variablename/9_cis_Neoxanthin +biomassTotal Biomass, total Total biomass \N http://vocabulary.odm2.org/variablename/biomassTotal +methylpyrene Methylpyrene Methylpyrene (C17H12) \N http://vocabulary.odm2.org/variablename/methylpyrene +delta_13COfC4H10 delta-13C of C4H10 Isotope 13C of butane \N http://vocabulary.odm2.org/variablename/delta_13COfC4H10 +2_Methyldibenzothiophene 2-Methyldibenzothiophene 2-Methyldibenzothiophene (C13H10S), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_Methyldibenzothiophene +fluorene Fluorene Fluorene (C13H10), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/fluorene +chlorine Chlorine Chlorine (Cl2) \N http://vocabulary.odm2.org/variablename/chlorine +mercuryDissolved Mercury, dissolved Dissolved Mercury (Hg). For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/mercuryDissolved +salinity Salinity Salinity \N http://vocabulary.odm2.org/variablename/salinity +nitrogenDissolved_Free_Ionized_Ammonia_NH3_NH4 Nitrogen, dissolved (free+ionized) Ammonia (NH3) + (NH4) Dissolved (free+ionized) Ammonia \N http://vocabulary.odm2.org/variablename/nitrogenDissolved_Free_Ionized_Ammonia_NH3_NH4 +flashMemoryErrorCount Flash memory error count A counter which counts the number of datalogger flash memory errors \N http://vocabulary.odm2.org/variablename/flashMemoryErrorCount +solidsVolatileDissolved Solids, volatile dissolved Volatile Dissolved Solids \N http://vocabulary.odm2.org/variablename/solidsVolatileDissolved +N_Nitrosodi_n_Propylamine N-Nitrosodi-n-propylamine N-Nitrosodi-n-propylamine (C6H14N2O) \N http://vocabulary.odm2.org/variablename/N_Nitrosodi_n_Propylamine +ivaFrutescenscoverage Iva frutescens coverage Areal coverage of the plant Iva frutescens \N http://vocabulary.odm2.org/variablename/ivaFrutescenscoverage +2_2_DichlorovinylDimethylPhosphate 2,2-dichlorovinyl dimethyl phosphate 2,2-dichlorovinyl dimethyl phosphate (C4H7Cl2O4P) \N http://vocabulary.odm2.org/variablename/2_2_DichlorovinylDimethylPhosphate +glutathione_S_TransferaseActivity Glutathione S-transferase, activity Glutathione S-transferase (GST) activity \N http://vocabulary.odm2.org/variablename/glutathione_S_TransferaseActivity +squalene Squalene Squalene (C30H50) \N http://vocabulary.odm2.org/variablename/squalene +superoxideDismutaseDeltaCycleThreshold Superoxide dismutase, delta cycle threshold Delta cycle threshold for superoxide dismutase (sod). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for sod is the difference between the cycle threshold (Ct) of sod gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin). \N http://vocabulary.odm2.org/variablename/superoxideDismutaseDeltaCycleThreshold +carbonTotalInorganic Carbon, total inorganic Total (Dissolved+Particulate) Inorganic Carbon \N http://vocabulary.odm2.org/variablename/carbonTotalInorganic +acidNeutralizingCapacity Acid neutralizing capacity Acid neutralizing capacity \N http://vocabulary.odm2.org/variablename/acidNeutralizingCapacity +1_4_Dichlorobenzene 1,4-Dichlorobenzene 1,4-Dichlorobenzene (C6H4Cl2) \N http://vocabulary.odm2.org/variablename/1_4_Dichlorobenzene +iodideDissolved Iodide, dissolved Dissolved Iodide (I-) \N http://vocabulary.odm2.org/variablename/iodideDissolved +endrinAldehyde Endrin aldehyde Endrin aldehyde (C12H8Cl6O) \N http://vocabulary.odm2.org/variablename/endrinAldehyde +2_Chlorophenol 2-Chlorophenol 2-Chlorophenol (C6H5ClO) \N http://vocabulary.odm2.org/variablename/2_Chlorophenol +n_AlkaneShortChain n-alkane, short-chain short-chain alkanes, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified) \N http://vocabulary.odm2.org/variablename/n_AlkaneShortChain +n_Alkane_C20 n-alkane, C20 C20 alkane, normal (i.e. straight-chain) isomer, common name: n-Icosane, formula : C20H42. Synonyms: didecyl, eicosane. \N http://vocabulary.odm2.org/variablename/n_Alkane_C20 +timeElapsed Time, elapsed Time elapsed since an event occurred \N http://vocabulary.odm2.org/variablename/timeElapsed +sedimentSuspended Sediment, suspended Suspended Sediment \N http://vocabulary.odm2.org/variablename/sedimentSuspended +oxygen Oxygen Oxygen \N http://vocabulary.odm2.org/variablename/oxygen +biogenicSilica Biogenic silica Hydrated silica (SiO2 nH20) \N http://vocabulary.odm2.org/variablename/biogenicSilica +oxygenDissolved Oxygen, dissolved Dissolved oxygen \N http://vocabulary.odm2.org/variablename/oxygenDissolved +1_2_Dichloroethane 1,2-Dichloroethane 1,2-Dichloroethane (C2H4Cl2) \N http://vocabulary.odm2.org/variablename/1_2_Dichloroethane +TSI TSI Carlson Trophic State Index is a measurement of eutrophication based on Secchi depth \N http://vocabulary.odm2.org/variablename/TSI +radiationOutgoingPAR Radiation, outgoing PAR Outgoing Photosynthetically-Active Radiation \N http://vocabulary.odm2.org/variablename/radiationOutgoingPAR +DNADamagePercentTailDNA DNA damage, percent tail DNA In a single cell gel electrophoresis assay (comet assay), percent tail DNA is the ratio of fluorescent intensity of the tail over the total fluorescent intensity of the head (nuclear core) and tail multiplied by 100. \N http://vocabulary.odm2.org/variablename/DNADamagePercentTailDNA +dataShuttleDetached Data shuttle detached A categorical variable marking the detatchment of a coupler or data shuttle to a logger. This is used for quality control. \N http://vocabulary.odm2.org/variablename/dataShuttleDetached +biomass Biomass Mass of living biological organisms in a given area or ecosystem at a given time. If this generic term is used, the publisher should specify/qualify the species, class, etc. being measured in the method, qualifier, or other appropriate field. \N http://vocabulary.odm2.org/variablename/biomass +globalRadiation Global Radiation Solar radiation, direct and diffuse, received from a solid angle of 2p steradians on a horizontal surface. Source: World Meteorological Organization, Meteoterm \N http://vocabulary.odm2.org/variablename/globalRadiation +waterColumnEquivalentHeightBarometric Water column equivalent height, barometric Barometric pressure expressed as an equivalent height of water over the sensor. \N http://vocabulary.odm2.org/variablename/waterColumnEquivalentHeightBarometric +position Position Position of an element that interacts with water such as reservoir gates \N http://vocabulary.odm2.org/variablename/position +chloroethene Chloroethene Chloroethene (C2H3Cl) \N http://vocabulary.odm2.org/variablename/chloroethene +nitrobenzene Nitrobenzene Nitrobenzene (C6H5NO2) \N http://vocabulary.odm2.org/variablename/nitrobenzene +n_Alkane_C22 n-alkane, C22 C22 alkane, normal (i.e. straight-chain) isomer, common name: n-Docosane, formula : C22H46 \N http://vocabulary.odm2.org/variablename/n_Alkane_C22 +berylliumTotal Beryllium, total Total Beryllium (Be). For chemical terms, "total" indicates an unfiltered sample. \N http://vocabulary.odm2.org/variablename/berylliumTotal +BOD20Nitrogenous BOD20, nitrogenous 20-day Nitrogenous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD20Nitrogenous +chromiumDissolved Chromium, dissolved Dissolved Chromium \N http://vocabulary.odm2.org/variablename/chromiumDissolved +2_Methylphenol 2-Methylphenol 2-Methylphenol (C7H8O) \N http://vocabulary.odm2.org/variablename/2_Methylphenol +n_Alkane_C29 n-alkane, C29 C29 alkane, normal (i.e. straight-chain) isomer, common name: n-Nonacosane, formula : C29H60 \N http://vocabulary.odm2.org/variablename/n_Alkane_C29 +BOD6Carbonaceous BOD6, carbonaceous 6-day Carbonaceous Biological Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD6Carbonaceous +acidityCO2Acidity Acidity, CO2 acidity CO2 acidity \N http://vocabulary.odm2.org/variablename/acidityCO2Acidity +nitrogenDissolvedInorganic Nitrogen, dissolved inorganic Dissolved inorganic nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenDissolvedInorganic +BOD5Nitrogenous BOD5, nitrogenous 5-day Nitrogenous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD5Nitrogenous +ironFerrous Iron, ferrous Ferrous Iron (Fe+2) \N http://vocabulary.odm2.org/variablename/ironFerrous +ethaneDissolved Ethane, dissolved Dissolved Ethane (C2H6) \N http://vocabulary.odm2.org/variablename/ethaneDissolved +1_2_Diphenylhydrazine 1,2-Diphenylhydrazine 1,2-Diphenylhydrazine (C12H12N2) \N http://vocabulary.odm2.org/variablename/1_2_Diphenylhydrazine +toluene Toluene Toluene (C6H5CH3) \N http://vocabulary.odm2.org/variablename/toluene +radiationIncoming Radiation, incoming Incoming radiation \N http://vocabulary.odm2.org/variablename/radiationIncoming +chloroethane Chloroethane Chloroethane (C2H5Cl) \N http://vocabulary.odm2.org/variablename/chloroethane +2_4_Dimethylphenol 2,4-Dimethylphenol 2,4-Dimethylphenol (C8H10O) \N http://vocabulary.odm2.org/variablename/2_4_Dimethylphenol +phosphorusPhosphate_PO4 Phosphorus, phosphate (PO4) Phosphate phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusPhosphate_PO4 +methyleneBlueActiveSubstances Methylene blue active substances Methylene Blue Active Substances (MBAS) \N http://vocabulary.odm2.org/variablename/methyleneBlueActiveSubstances +parathion_Ethyl Parathion-ethyl Parathion-ethyl (C10H14NO5PS) \N http://vocabulary.odm2.org/variablename/parathion_Ethyl +helium Helium Helium \N http://vocabulary.odm2.org/variablename/helium +1_1_Dichloroethene 1,1-Dichloroethene 1,1-Dichloroethene (C2H2Cl2) \N http://vocabulary.odm2.org/variablename/1_1_Dichloroethene +voltage Voltage Voltage or Electrical Potential \N http://vocabulary.odm2.org/variablename/voltage +windGustSpeed Wind gust speed Speed of gusts of wind \N http://vocabulary.odm2.org/variablename/windGustSpeed +1_1_1_Trichloroethane 1,1,1-Trichloroethane 1,1,1-Trichloroethane (C2H3Cl3) \N http://vocabulary.odm2.org/variablename/1_1_1_Trichloroethane +seleniumParticulate Selenium, particulate Particulate selenium (Se) in suspension \N http://vocabulary.odm2.org/variablename/seleniumParticulate +cobaltDissolved Cobalt, dissolved Dissolved Cobalt (Co) \N http://vocabulary.odm2.org/variablename/cobaltDissolved +weatherConditions Weather conditions Weather conditions \N http://vocabulary.odm2.org/variablename/weatherConditions +radiationIncomingShortwave Radiation, incoming shortwave Incoming Shortwave Radiation \N http://vocabulary.odm2.org/variablename/radiationIncomingShortwave +dibromochloromethane Dibromochloromethane Dibromochloromethane (CHBr2Cl) \N http://vocabulary.odm2.org/variablename/dibromochloromethane +thalliumDissolved Thallium, dissolved Dissolved thallium (Tl). "dissolved" indicates measurement was made on a filtered sample. \N http://vocabulary.odm2.org/variablename/thalliumDissolved +alkalinityCarbonatePlusBicarbonate Alkalinity, carbonate plus bicarbonate Alkalinity, carbonate plus bicarbonate \N http://vocabulary.odm2.org/variablename/alkalinityCarbonatePlusBicarbonate +diisopropylEther Diisopropyl Ether Diisopropyl Ether (C6H14O) \N http://vocabulary.odm2.org/variablename/diisopropylEther +precipitation Precipitation Precipitation such as rainfall. Should not be confused with settling. \N http://vocabulary.odm2.org/variablename/precipitation +lyciumCarolinianumCoverage Lycium carolinianum Coverage Areal coverage of the plant Lycium carolinianum \N http://vocabulary.odm2.org/variablename/lyciumCarolinianumCoverage +2_Hexanone 2-Hexanone 2-Hexanone (C6H12O) \N http://vocabulary.odm2.org/variablename/2_Hexanone +bis_2_Ethylhexyl_Phthalate Bis-(2-ethylhexyl) phthalate Bis-(2-ethylhexyl) phthalate (C6H4(C8H17COO)2) \N http://vocabulary.odm2.org/variablename/bis_2_Ethylhexyl_Phthalate +carbaryl Carbaryl Carbaryl (C12H11NO2) \N http://vocabulary.odm2.org/variablename/carbaryl +2_4_Dinitrophenol 2,4-Dinitrophenol 2,4-Dinitrophenol (C6H4N2O5) \N http://vocabulary.odm2.org/variablename/2_4_Dinitrophenol +1_Methylanthracene 1-Methylanthracene 1-Methylanthracene (C15H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_Methylanthracene +streptococciFecal Streptococci, fecal Fecal Streptococci \N http://vocabulary.odm2.org/variablename/streptococciFecal +indeno_1_2_3_cd_Pyrene Indeno(1,2,3-cd)pyrene Indeno(1,2,3-cd)pyrene (C22H12) \N http://vocabulary.odm2.org/variablename/indeno_1_2_3_cd_Pyrene +waterFlux Water flux Water Flux \N http://vocabulary.odm2.org/variablename/waterFlux +phorate Phorate Phorate (C7H17O2PS3) \N http://vocabulary.odm2.org/variablename/phorate +cesiumTotal Cesium, total Total Cesium (Cs) \N http://vocabulary.odm2.org/variablename/cesiumTotal +carbon_13StableIsotopeRatioDelta Carbon-13, stable isotope ratio delta Difference in the 13C:12C ratio between the sample and standard (del C 13) \N http://vocabulary.odm2.org/variablename/carbon_13StableIsotopeRatioDelta +ironDissolved Iron, dissolved Dissolved Iron (Fe) \N http://vocabulary.odm2.org/variablename/ironDissolved +aroclor_1242 Aroclor-1242 Aroclor-1242 (C12H6Cl4), a PCB mixture \N http://vocabulary.odm2.org/variablename/aroclor_1242 +chromiumParticulate Chromium, particulate Particulate chromium (Cr) in suspension \N http://vocabulary.odm2.org/variablename/chromiumParticulate +nitrogenDissolvedNitrite_NO2 Nitrogen, dissolved nitrite (NO2) Dissolved nitrite (NO2) nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenDissolvedNitrite_NO2 +nitrogenDissolvedKjeldahl Nitrogen, dissolved Kjeldahl Dissolved Kjeldahl (organic nitrogen + ammonia (NH3) + ammonium (NH4))nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenDissolvedKjeldahl +nitrousOxide Nitrous oxide Nitrous oxide (N2O) \N http://vocabulary.odm2.org/variablename/nitrousOxide +radiationIncomingUV_B Radiation, incoming UV-B Incoming Ultraviolet B Radiation \N http://vocabulary.odm2.org/variablename/radiationIncomingUV_B +arsenicParticulate Arsenic, particulate Particulate arsenic (As) in suspension \N http://vocabulary.odm2.org/variablename/arsenicParticulate +2_3_Dimethylnaphthalene 2,3-Dimethylnaphthalene 2,3-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_3_Dimethylnaphthalene +signalToNoiseRatio Signal-to-noise ratio Signal-to-noise ratio (often abbreviated SNR or S/N) is defined as the ratio of a signal power to the noise power corrupting the signal. The higher the ratio, the less obtrusive the background noise is. \N http://vocabulary.odm2.org/variablename/signalToNoiseRatio +di_n_Butylphthalate Di-n-butylphthalate Di-n-butylphthalate (C16H22O4) \N http://vocabulary.odm2.org/variablename/di_n_Butylphthalate +4_Nitroaniline 4-Nitroaniline 4-Nitroaniline (C6H6N2O2) \N http://vocabulary.odm2.org/variablename/4_Nitroaniline +n_Alkane_C18 n-alkane, C18 C18 alkane, normal (i.e. straight-chain) isomer, common name: n-Octadecane, formula : C18H38 \N http://vocabulary.odm2.org/variablename/n_Alkane_C18 +radiationOutgoingShortwave Radiation, outgoing shortwave Outgoing Shortwave Radiation \N http://vocabulary.odm2.org/variablename/radiationOutgoingShortwave +antimonyTotal Antimony, total Total antimony (Sb). "Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/antimonyTotal +pheophytin Pheophytin Pheophytin (Chlorophyll which has lost the central Mg ion) is a degradation product of Chlorophyll \N http://vocabulary.odm2.org/variablename/pheophytin +strontiumTotal Strontium, total Total Strontium (Sr) \N http://vocabulary.odm2.org/variablename/strontiumTotal +argonDissolved Argon, dissolved Dissolved Argon \N http://vocabulary.odm2.org/variablename/argonDissolved +boreholeLogMaterialClassification Borehole log material classification Classification of material encountered by a driller at various depths during the drilling of a well and recorded in the borehole log. \N http://vocabulary.odm2.org/variablename/boreholeLogMaterialClassification +bromine Bromine Bromine (Br2) \N http://vocabulary.odm2.org/variablename/bromine +acidityMineralAcidity Acidity, mineral acidity Mineral Acidity \N http://vocabulary.odm2.org/variablename/acidityMineralAcidity +thoriumDissolved Thorium, dissolved Dissolved thorium. For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/thoriumDissolved +formicAcid Formic acid Formic acid (CH2O2) \N http://vocabulary.odm2.org/variablename/formicAcid +albedo Albedo The ratio of reflected to incident light. \N http://vocabulary.odm2.org/variablename/albedo +butyricAcid Butyric Acid Butyric Acid (C4H8O2) \N http://vocabulary.odm2.org/variablename/butyricAcid +electricCurrent Electric Current A flow of electric charge \N http://vocabulary.odm2.org/variablename/electricCurrent +N_Nitrosomethylethylamine N-Nitrosomethylethylamine N-Nitrosomethylethylamine (C3H8N2O) \N http://vocabulary.odm2.org/variablename/N_Nitrosomethylethylamine +4_4_DDT 4,4-DDT Dichlorodiphenyltrichloroethane (C14H9Cl5) \N http://vocabulary.odm2.org/variablename/4_4_DDT +nitrogenTotalOrganic Nitrogen, total organic Total (dissolved + particulate) organic nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenTotalOrganic +chlorineDissolved Chlorine, dissolved Dissolved Chlorine (Cl2) \N http://vocabulary.odm2.org/variablename/chlorineDissolved +phosphorusTotalDissolved Phosphorus, total dissolved Total dissolved phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusTotalDissolved +bifenthrin Bifenthrin Bifenthrin (C23H22ClF3O2) \N http://vocabulary.odm2.org/variablename/bifenthrin +orientation Orientation Azimuth orientation of sensor platform \N http://vocabulary.odm2.org/variablename/orientation +heightAboveSeaFloor height, above sea floor Vertical distance from the sea floor to a point. \N http://vocabulary.odm2.org/variablename/heightAboveSeaFloor +carbonTetrachloride Carbon tetrachloride Carbon tetrachloride (CCl4) \N http://vocabulary.odm2.org/variablename/carbonTetrachloride +rainfallRate Rainfall rate A measure of the intensity of rainfall, calculated as the depth of water to fall over a given time period if the intensity were to remain constant over that time interval (in/hr, mm/hr, etc) \N http://vocabulary.odm2.org/variablename/rainfallRate +pentachlorobenzene Pentachlorobenzene Pentachlorobenzene (C6HCl5) \N http://vocabulary.odm2.org/variablename/pentachlorobenzene +nitrogenNitrite_NO2_Nitrate_NO3 Nitrogen, nitrite (NO2) + nitrate (NO3) Nitrite (NO2) + Nitrate (NO3) Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenNitrite_NO2_Nitrate_NO3 +zincTotal Zinc, total Total zinc (Zn)."Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/zincTotal +electricalConductivity Electrical conductivity Electrical conductivity \N http://vocabulary.odm2.org/variablename/electricalConductivity +copperTotal Copper, total Total copper (Cu). "Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/copperTotal +1_5_Dimethylnaphthalene 1,5-Dimethylnaphthalene 1,5-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_5_Dimethylnaphthalene +chromiumDistributionCoefficient Chromium, distribution coefficient Ratio of concentrations of chromium in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/chromiumDistributionCoefficient +respirationEcosystem Respiration, ecosystem Gross carbon dioxide production by all organisms in an ecosystem. Ecosystem respiration is the sum of all respiration occurring by the living organisms in a specific ecosystem. \N http://vocabulary.odm2.org/variablename/respirationEcosystem +radiationIncomingPAR Radiation, incoming PAR Incoming Photosynthetically-Active Radiation \N http://vocabulary.odm2.org/variablename/radiationIncomingPAR +leadParticulate Lead, particulate Particulate lead (Pb) in suspension \N http://vocabulary.odm2.org/variablename/leadParticulate +leadTotal Lead, total Total Lead (Pb). For chemical terms, total indicates an unfiltered sample. \N http://vocabulary.odm2.org/variablename/leadTotal +silicate Silicate Silicate. Chemical compound containing silicon, oxygen, and one or more metals, e.g., aluminum, barium, beryllium, calcium, iron, magnesium, manganese, potassium, sodium, or zirconium. \N http://vocabulary.odm2.org/variablename/silicate +cytosolicProtein Cytosolic protein The total protein concentration within the cytosolic fraction of cells. The cytosol refers to the intracellular fluid or cytoplasmic matrix of a eukaryotic cell. \N http://vocabulary.odm2.org/variablename/cytosolicProtein +dimethylPhthalate Dimethyl Phthalate Dimethyl Phthalate (C10H10O4) \N http://vocabulary.odm2.org/variablename/dimethylPhthalate +nitrogenDissolvedOrganic Nitrogen, dissolved organic Dissolved Organic Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenDissolvedOrganic +n_Alkane_C27 n-alkane, C27 C27 alkane, normal (i.e. straight-chain) isomer, common name: n-Heptacosane, formula : C27H56 \N http://vocabulary.odm2.org/variablename/n_Alkane_C27 +methylfluorene Methylfluorene Methylfluorene (C14H12) \N http://vocabulary.odm2.org/variablename/methylfluorene +BOD4Carbonaceous BOD4, carbonaceous 4-day Carbonaceous Biological Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD4Carbonaceous +hexachlorocyclopentadiene Hexachlorocyclopentadiene Hexachlorocyclopentadiene (C5Cl6) \N http://vocabulary.odm2.org/variablename/hexachlorocyclopentadiene +2_4_5_Trichlorophenol 2,4,5-Trichlorophenol 2,4,5-Trichlorophenol (C6H3Cl3O) \N http://vocabulary.odm2.org/variablename/2_4_5_Trichlorophenol +LSI LSI Langelier Saturation Index is an indicator of the degree of saturation of water with respect to calcium carbonate \N http://vocabulary.odm2.org/variablename/LSI +1_2_Dinitrobenzene 1,2-Dinitrobenzene 1,2-Dinitrobenzene (C6H4N2O4) \N http://vocabulary.odm2.org/variablename/1_2_Dinitrobenzene +n_AlkaneTotal n-alkane, total Total alkane, normal (i.e. straight chain) isomer (isomer range of alkanes measured should be specified) \N http://vocabulary.odm2.org/variablename/n_AlkaneTotal +d_Limonene d-Limonene d-Limonene (C10H16) \N http://vocabulary.odm2.org/variablename/d_Limonene +temperatureTransducerSignal Temperature, transducer signal Temperature, raw data from sensor \N http://vocabulary.odm2.org/variablename/temperatureTransducerSignal +adamantane Adamantane Adamantane (C10H16) \N http://vocabulary.odm2.org/variablename/adamantane +coloredDissolvedOrganicMatter Colored dissolved organic matter The concentration of colored dissolved organic matter (humic substances) \N http://vocabulary.odm2.org/variablename/coloredDissolvedOrganicMatter +uraniumDissolved Uranium, dissolved Dissolved Uranium. For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/uraniumDissolved +3_6_Dimethylphenanthrene 3,6-Dimethylphenanthrene 3,6-Dimethylphenanthrene (C16H14), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/3_6_Dimethylphenanthrene +n_Alkane_C25 n-alkane, C25 C25 alkane, normal (i.e. straight-chain) isomer, common name: n-Pentacosane, formula : C25H52 \N http://vocabulary.odm2.org/variablename/n_Alkane_C25 +radiationNetLongwave Radiation, net longwave Net Longwave Radiation \N http://vocabulary.odm2.org/variablename/radiationNetLongwave +arsenicDistributionCoefficient Arsenic, distribution coefficient Ratio of concentrations of arsenic in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/arsenicDistributionCoefficient +primaryProductivity Primary productivity Primary Productivity \N http://vocabulary.odm2.org/variablename/primaryProductivity +aluminumTotal Aluminum, total Aluminum (Al). Total indicates was measured on a whole water sample. \N http://vocabulary.odm2.org/variablename/aluminumTotal +chlorophyll_a_CorrectedForPheophytin Chlorophyll a, corrected for pheophytin Chlorphyll a corrected for pheophytin \N http://vocabulary.odm2.org/variablename/chlorophyll_a_CorrectedForPheophytin +waterColumnEquivalentHeightAbsolute Water column equivalent height, absolute The absolute pressure (combined water + barometric) on a sensor expressed as the height of an equivalent column of water. \N http://vocabulary.odm2.org/variablename/waterColumnEquivalentHeightAbsolute +benzo_a_pyrene Benzo(a)pyrene Benzo(a)pyrene (C20H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benzo_a_pyrene +tetramethylnaphthalene Tetramethylnaphthalene Tetramethylnaphthalene (C10H4(CH3)4), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/tetramethylnaphthalene +sequenceNumber Sequence number A counter of events in a sequence \N http://vocabulary.odm2.org/variablename/sequenceNumber +polycyclicAromaticHydrocarbonParent Polycyclic aromatic hydrocarbon, parent Unsubstituted (i.e., non-alkylated) polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/polycyclicAromaticHydrocarbonParent +mevinphos Mevinphos Mevinphos (C7H13O6P) \N http://vocabulary.odm2.org/variablename/mevinphos +di_n_OctylPhthalate Di-n-octyl phthalate Di-n-octyl phthalate (C24H38O4) \N http://vocabulary.odm2.org/variablename/di_n_OctylPhthalate +timeStamp Time Stamp The time at which a sensor produces output \N http://vocabulary.odm2.org/variablename/timeStamp +silicon Silicon Silicon (Si) \N http://vocabulary.odm2.org/variablename/silicon +aluminumDissolved Aluminum, dissolved Dissolved Aluminum (Al) \N http://vocabulary.odm2.org/variablename/aluminumDissolved +tinDissolved Tin, dissolved Dissolved tin (Sn). "Dissolved " indicates a the measurement was made on a filtered sample. \N http://vocabulary.odm2.org/variablename/tinDissolved +nitrogenNitrate_NO3 Nitrogen, nitrate (NO3) Nitrate (NO3) Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenNitrate_NO3 +spartinaAlternifloraCoverage Spartina alterniflora coverage Areal coverage of the plant Spartina alterniflora \N http://vocabulary.odm2.org/variablename/spartinaAlternifloraCoverage +endosulfan_I_Alpha Endosulfan I (alpha) Endosulfan I (alpha) (C9H6Cl6O3S) \N http://vocabulary.odm2.org/variablename/endosulfan_I_Alpha +1_2_Dichlorobenzene 1,2-Dichlorobenzene 1,2-Dichlorobenzene (C6H4Cl2) \N http://vocabulary.odm2.org/variablename/1_2_Dichlorobenzene +1_Ethylnaphthalene 1-Ethylnaphthalene 1-Ethylnaphthalene (C10H7C2H5), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_Ethylnaphthalene +temperatureInitial Temperature, initial initial temperature before heating \N http://vocabulary.odm2.org/variablename/temperatureInitial +streamflow Streamflow The volume of water flowing past a fixed point. Equivalent to discharge \N http://vocabulary.odm2.org/variablename/streamflow +dibenzofuran Dibenzofuran Dibenzofuran (C12H8O) \N http://vocabulary.odm2.org/variablename/dibenzofuran +aniline Aniline Aniline (C6H7N) \N http://vocabulary.odm2.org/variablename/aniline +molybdenumTotal Molybdenum, total total Molybdenum (Mo). For chemical terms, total represents an unfiltered sample. \N http://vocabulary.odm2.org/variablename/molybdenumTotal +hardnessCarbonate Hardness, carbonate Carbonate hardness also known as temporary hardness \N http://vocabulary.odm2.org/variablename/hardnessCarbonate +magnesiumTotal Magnesium, total Total Magnesium (Mg) \N http://vocabulary.odm2.org/variablename/magnesiumTotal +bromideDissolved Bromide, dissolved Dissolved Bromide (Br-) \N http://vocabulary.odm2.org/variablename/bromideDissolved +bariumDissolved Barium, dissolved Dissolved Barium (Ba) \N http://vocabulary.odm2.org/variablename/bariumDissolved +tritium_3H_DeltaTOfH2O Tritium (3H), Delta T of H2O Isotope 3H of water \N http://vocabulary.odm2.org/variablename/tritium_3H_DeltaTOfH2O +suaedaLinearisCoverage Suaeda linearis coverage Areal coverage of the plant Suaeda linearis \N http://vocabulary.odm2.org/variablename/suaedaLinearisCoverage +anthracene Anthracene Anthracene (C14H10), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/anthracene +nitrogenNH3_NH4 Nitrogen, NH3 + NH4 Total (free+ionized) Ammonia \N http://vocabulary.odm2.org/variablename/nitrogenNH3_NH4 +electricPower Electric Power Electric Power \N http://vocabulary.odm2.org/variablename/electricPower +arsenicDissolved Arsenic, dissolved Dissolved Arsenic. For chemical terms, dissolved represents a filtered sample. \N http://vocabulary.odm2.org/variablename/arsenicDissolved +glutaraldehyde Glutaraldehyde Glutaraldehyde (C5H8O2) \N http://vocabulary.odm2.org/variablename/glutaraldehyde +indicator Indicator Binary status to indicate the status of an instrument or other piece of equipment. \N http://vocabulary.odm2.org/variablename/indicator +superoxideDismutaseActivity Superoxide dismutase, activity Superoxide dismutase (SOD) activity \N http://vocabulary.odm2.org/variablename/superoxideDismutaseActivity +cryptophytes Cryptophytes The chlorophyll a concentration contributed by cryptophytes \N http://vocabulary.odm2.org/variablename/cryptophytes +sulfurDissolved Sulfur, dissolved Dissolved Sulfur (S) \N http://vocabulary.odm2.org/variablename/sulfurDissolved +leafWetness Leaf wetness The effect of moisture settling on the surface of a leaf as a result of either condensation or rainfall. \N http://vocabulary.odm2.org/variablename/leafWetness +benzo_b_fluoranthene Benzo(b)fluoranthene Benzo(b)fluoranthene (C20H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benzo_b_fluoranthene +sodiumFractionOfCations Sodium, fraction of cations Sodium, fraction of cations \N http://vocabulary.odm2.org/variablename/sodiumFractionOfCations +benthos Benthos Benthic species \N http://vocabulary.odm2.org/variablename/benthos +cobaltTotal Cobalt, total Total Cobalt (Co) \N http://vocabulary.odm2.org/variablename/cobaltTotal +radium_228 Radium-228 An isotope of radium in the thorium-232 decay series \N http://vocabulary.odm2.org/variablename/radium_228 +permittivity Permittivity Permittivity is a physical quantity that describes how an electric field affects, and is affected by a dielectric medium, and is determined by the ability of a material to polarize in response to the field, and thereby reduce the total electric field inside the material. Thus, permittivity relates to a material's ability to transmit (or "permit") an electric field. \N http://vocabulary.odm2.org/variablename/permittivity +vaporPressureDeficit Vapor pressure deficit The difference between the actual water vapor pressure and the saturation of water vapor pressure at a particular temperature. \N http://vocabulary.odm2.org/variablename/vaporPressureDeficit +zincDistributionCoefficient Zinc, distribution coefficient Ratio of concentrations of zinc in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/zincDistributionCoefficient +biomassPhytoplankton Biomass, phytoplankton Total mass of phytoplankton, per unit area or volume \N http://vocabulary.odm2.org/variablename/biomassPhytoplankton +pyridine Pyridine Pyridine (C5H5N) \N http://vocabulary.odm2.org/variablename/pyridine +silverTotal Silver, total Total Silver (Ag). For chemical terms, total represents an unfiltered sample. \N http://vocabulary.odm2.org/variablename/silverTotal +respirationNet Respiration, net Net respiration \N http://vocabulary.odm2.org/variablename/respirationNet +fishDetections Fish detections The number of fish identified by the detection equipment \N http://vocabulary.odm2.org/variablename/fishDetections +nitrogen_15 Nitrogen-15 15 Nitrogen, Delta Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogen_15 +tinTotal Tin, total Total tin (Sn)."Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/tinTotal +pressureGauge Pressure, gauge Pressure relative to the local atmospheric or ambient pressure \N http://vocabulary.odm2.org/variablename/pressureGauge +temperatureChange Temperature change temperature change \N http://vocabulary.odm2.org/variablename/temperatureChange +batisMaritimaCoverage Batis maritima Coverage Areal coverage of the plant Batis maritima \N http://vocabulary.odm2.org/variablename/batisMaritimaCoverage +chrysene Chrysene Chrysene (C18H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/chrysene +transientSpeciesCoverage Transient species coverage Areal coverage of transient species \N http://vocabulary.odm2.org/variablename/transientSpeciesCoverage +secchiDepth Secchi depth Secchi depth \N http://vocabulary.odm2.org/variablename/secchiDepth +manganeseParticulate Manganese, particulate Particulate manganese (Mn) in suspension \N http://vocabulary.odm2.org/variablename/manganeseParticulate +isopentane Isopentane Isopentane \N http://vocabulary.odm2.org/variablename/isopentane +ethylbenzene Ethylbenzene Ethylbenzene (C8H10) \N http://vocabulary.odm2.org/variablename/ethylbenzene +methoxychlor Methoxychlor Methoxychlor (C16H15Cl3O2) \N http://vocabulary.odm2.org/variablename/methoxychlor +2_Nitrophenol 2-Nitrophenol 2-Nitrophenol (C6H5NO3) \N http://vocabulary.odm2.org/variablename/2_Nitrophenol +benzo_b_fluorene Benzo(b)fluorene Benzo(b)fluorene (C17H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/benzo_b_fluorene +barometricPressure Barometric pressure Barometric pressure \N http://vocabulary.odm2.org/variablename/barometricPressure +n_Alkane_C17 n-alkane, C17 C17 alkane, normal (i.e. straight-chain) isomer, common name: n-Heptadecane, formula : C17H36 \N http://vocabulary.odm2.org/variablename/n_Alkane_C17 +malathion Malathion Butanedioic acid, [(dimethoxyphosphinothioyl)thio]-, diethyl ester (C10H19O6PS2) \N http://vocabulary.odm2.org/variablename/malathion +bariumParticulate Barium, particulate Particulate barium (Ba) in suspension \N http://vocabulary.odm2.org/variablename/bariumParticulate +volume Volume Volume. To quantify discharge or hydrograph volume or some other volume measurement. \N http://vocabulary.odm2.org/variablename/volume +nitrogenTotalDissolved Nitrogen, total dissolved Total dissolved nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenTotalDissolved +silicicAcidFlux Silicic acid flux Silicate acid (H4SiO4) flux \N http://vocabulary.odm2.org/variablename/silicicAcidFlux +waterUseDomesticWells Water Use, Domestic wells Water pumped by domestic wells; residents and landowners not using public supply. Nonagriculture wells. \N http://vocabulary.odm2.org/variablename/waterUseDomesticWells +siliconDissolved Silicon, dissolved Dissolved Silicon (Si) \N http://vocabulary.odm2.org/variablename/siliconDissolved +electricEnergy Electric Energy Electric Energy \N http://vocabulary.odm2.org/variablename/electricEnergy +windRun Wind Run The length of flow of air past a point over a time interval. Windspeed times the interval of time. \N http://vocabulary.odm2.org/variablename/windRun +lacticAcid Lactic Acid Lactic Acid (C3H6O3) \N http://vocabulary.odm2.org/variablename/lacticAcid +radiationOutgoingLongwave Radiation, outgoing longwave Outgoing Longwave Radiation \N http://vocabulary.odm2.org/variablename/radiationOutgoingLongwave +oxygen_18 Oxygen-18 18 O, Delta O \N http://vocabulary.odm2.org/variablename/oxygen_18 +sulfurPyritic Sulfur, pyritic Pyritic Sulfur \N http://vocabulary.odm2.org/variablename/sulfurPyritic +isobutane Isobutane Isobutane \N http://vocabulary.odm2.org/variablename/isobutane +phosphorusParticulateOrganic Phosphorus, particulate organic Particulate organic phosphorus in suspension \N http://vocabulary.odm2.org/variablename/phosphorusParticulateOrganic +thalliumTotal Thallium, total Total thallium (Tl). "Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/thalliumTotal +chlorideDissolved Chloride, dissolved Dissolved Chloride (Cl-) \N http://vocabulary.odm2.org/variablename/chlorideDissolved +offset Offset Constant to be added as an offset to a variable of interest. \N http://vocabulary.odm2.org/variablename/offset +nickelParticulate Nickel, particulate Particulate nickel (Ni) in suspension \N http://vocabulary.odm2.org/variablename/nickelParticulate +wrackCoverage Wrack coverage Areal coverage of dead vegetation \N http://vocabulary.odm2.org/variablename/wrackCoverage +sunshineDuration Sunshine duration Sunshine duration \N http://vocabulary.odm2.org/variablename/sunshineDuration +1_1_2_Trichloroethane 1,1,2-Trichloroethane 1,1,2-Trichloroethane (C2H3Cl3) \N http://vocabulary.odm2.org/variablename/1_1_2_Trichloroethane +cesium_137 Cesium-137 A radioactive isotope of cesium which is formed as a fission product by nuclear fission of uranium or plutonium. \N http://vocabulary.odm2.org/variablename/cesium_137 +windGustDirection Wind gust direction Direction of gusts of wind \N http://vocabulary.odm2.org/variablename/windGustDirection +endosulfan_II_Beta Endosulfan II (beta) Endosulfan II (beta) (C9H6Cl6O3S) \N http://vocabulary.odm2.org/variablename/endosulfan_II_Beta +phosphorusOrganic Phosphorus, organic Organic Phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusOrganic +bromineDissolved Bromine, dissolved Dissolved Bromine (Br2) \N http://vocabulary.odm2.org/variablename/bromineDissolved +cyanide Cyanide Cyanide (CN) \N http://vocabulary.odm2.org/variablename/cyanide +percentFullScale Percent full scale The percent of full scale for an instrument \N http://vocabulary.odm2.org/variablename/percentFullScale +carbonDioxideDissolved Carbon Dioxide, dissolved Dissolved Carbon dioxide (CO2) \N http://vocabulary.odm2.org/variablename/carbonDioxideDissolved +uranium Uranium Uranium (U) \N http://vocabulary.odm2.org/variablename/uranium +phosphorusOrthophosphateTotal Phosphorus, orthophosphate total Total orthophosphate phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusOrthophosphateTotal +1_4_6_Trimethylnaphthalene 1,4,6-Trimethylnaphthalene 1,4,6-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_4_6_Trimethylnaphthalene +titaniumDissolved Titanium, dissolved Dissolved Titanium \N http://vocabulary.odm2.org/variablename/titaniumDissolved +acidityHot Acidity, hot Hot Acidity \N http://vocabulary.odm2.org/variablename/acidityHot +acetophenone Acetophenone Acetophenone (C6H5C(O)CH3) \N http://vocabulary.odm2.org/variablename/acetophenone +tertiaryButylAlcohol Tertiary Butyl Alcohol Tertiary Butyl Alcohol (C4H10O) \N http://vocabulary.odm2.org/variablename/tertiaryButylAlcohol +aroclor_1254 Aroclor-1254 Aroclor-1254 (C12H5Cl5), a PCB mixture \N http://vocabulary.odm2.org/variablename/aroclor_1254 +fluorideDissolved Fluoride, dissolved Dissolved Fluoride (F-) \N http://vocabulary.odm2.org/variablename/fluorideDissolved +enterococci Enterococci Enterococcal bacteria \N http://vocabulary.odm2.org/variablename/enterococci +2_Methylnaphthalene 2-Methylnaphthalene 2-Methylnaphthalene (C10H7CH3), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_Methylnaphthalene +4_Chloroaniline 4-Chloroaniline 4-Chloroaniline (C6H6ClN) \N http://vocabulary.odm2.org/variablename/4_Chloroaniline +peridinin Peridinin The phytoplankton pigment Peridinin \N http://vocabulary.odm2.org/variablename/peridinin +nickelDistributionCoefficient Nickel, distribution coefficient Ratio of concentrations of nickel in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/nickelDistributionCoefficient +spartinaSpartineaCoverage Spartina spartinea coverage Areal coverage of the plant Spartina spartinea \N http://vocabulary.odm2.org/variablename/spartinaSpartineaCoverage +threshold Threshold A level above or below which an action is performed. \N http://vocabulary.odm2.org/variablename/threshold +1_2_4_Trichlorobenzene 1,2,4-Trichlorobenzene 1,2,4-Trichlorobenzene (C6H3Cl3) \N http://vocabulary.odm2.org/variablename/1_2_4_Trichlorobenzene +bis_2_Chloroethoxy_Methane Bis(2-chloroethoxy)methane Bis(2-chloroethoxy)methane (C5H10Cl2O2) \N http://vocabulary.odm2.org/variablename/bis_2_Chloroethoxy_Methane +delta_13COfDIC delta-13C of DIC Isotope 13C of dissolved inorganic carbon (DIC) \N http://vocabulary.odm2.org/variablename/delta_13COfDIC +color Color Color in quantified in color units \N http://vocabulary.odm2.org/variablename/color +propyleneGlycol Propylene glycol Propylene glycol (C3H8O2) \N http://vocabulary.odm2.org/variablename/propyleneGlycol +1_NaphthalenolMethylcarbamate 1-Naphthalenol methylcarbamate 1-Naphthalenol methylcarbamate (C12H11NO2) \N http://vocabulary.odm2.org/variablename/1_NaphthalenolMethylcarbamate +strontiumDissolved Strontium, dissolved Dissolved Strontium (Sr) \N http://vocabulary.odm2.org/variablename/strontiumDissolved +pentane Pentane Pentane \N http://vocabulary.odm2.org/variablename/pentane +loggerStopped Logger stopped A categorical variable indicating that a logger was told to stop recording data. This is used for quality control. \N http://vocabulary.odm2.org/variablename/loggerStopped +radiationIncomingUV_A Radiation, incoming UV-A Incoming Ultraviolet A Radiation \N http://vocabulary.odm2.org/variablename/radiationIncomingUV_A +carbonTotal Carbon, total Total (Dissolved+Particulate) Carbon \N http://vocabulary.odm2.org/variablename/carbonTotal +carbonToNitrogenMassRatio Carbon to nitrogen mass ratio Carbon to nitrogen (C:N) mass ratio \N http://vocabulary.odm2.org/variablename/carbonToNitrogenMassRatio +waterVaporConcentration Water vapor concentration Water vapor concentration \N http://vocabulary.odm2.org/variablename/waterVaporConcentration +ironSulfide Iron sulfide Iron sulfide (FeS2) \N http://vocabulary.odm2.org/variablename/ironSulfide +nitrogenOrganic Nitrogen, organic Organic Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenOrganic +batteryTemperature Battery temperature The battery temperature of a datalogger or sensing system \N http://vocabulary.odm2.org/variablename/batteryTemperature +primaryProductivityGross Primary productivity, gross Rate at which an ecosystem accumulates energy by fixation of sunlight, including that consumed by the ecosystem. \N http://vocabulary.odm2.org/variablename/primaryProductivityGross +oxygenUptake Oxygen uptake Consumption of oxygen by biological and/or chemical processes \N http://vocabulary.odm2.org/variablename/oxygenUptake +1_6_7_Trimethylnaphthalene 1,6,7-Trimethylnaphthalene 1,6,7-Trimethylnaphthalene (C10H5(CH3)3), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_6_7_Trimethylnaphthalene +alkalinityCarbonate Alkalinity, carbonate Carbonate Alkalinity \N http://vocabulary.odm2.org/variablename/alkalinityCarbonate +fluorineDissolved Fluorine, dissolved Dissolved Fluorine (F2) \N http://vocabulary.odm2.org/variablename/fluorineDissolved +trans_1_2_Dichloroethene trans-1,2-Dichloroethene trans-1,2-Dichloroethene (C2H2Cl2) \N http://vocabulary.odm2.org/variablename/trans_1_2_Dichloroethene +reservoirStorage Reservoir storage Reservoir water volume \N http://vocabulary.odm2.org/variablename/reservoirStorage +diallate_CisOrTrans Diallate (cis or trans) Diallate (cis or trans) (C10H17Cl2NOS) \N http://vocabulary.odm2.org/variablename/diallate_CisOrTrans +2_4_Dinitrotoluene 2,4-Dinitrotoluene 2,4-Dinitrotoluene (C7H6N2O4) \N http://vocabulary.odm2.org/variablename/2_4_Dinitrotoluene +9_10_Dimethylanthracene 9,10-Dimethylanthracene 9,10-Dimethylanthracene (C16H14), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/9_10_Dimethylanthracene +methanol Methanol Methanol (CH3OH) \N http://vocabulary.odm2.org/variablename/methanol +sodiumPlusPotassium Sodium plus potassium Sodium plus potassium \N http://vocabulary.odm2.org/variablename/sodiumPlusPotassium +ironFerric Iron, ferric Ferric Iron (Fe+3) \N http://vocabulary.odm2.org/variablename/ironFerric +perylene Perylene Perylene (C20H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/perylene +diethyleneGlycol Diethylene glycol Diethylene glycol (C4H10O3) \N http://vocabulary.odm2.org/variablename/diethyleneGlycol +nitrogenTotalNitrite Nitrogen, total nitrite Total nitrite (NO2) \N http://vocabulary.odm2.org/variablename/nitrogenTotalNitrite +N_Nitrosodiethylamine N-Nitrosodiethylamine N-Nitrosodiethylamine (C4H10N2O) \N http://vocabulary.odm2.org/variablename/N_Nitrosodiethylamine +diethylPhthalate Diethyl phthalate Diethyl phthalate (C12H14O4) \N http://vocabulary.odm2.org/variablename/diethylPhthalate +methylmercury Methylmercury Methylmercury (CH3Hg) \N http://vocabulary.odm2.org/variablename/methylmercury +sigma_t Sigma-t Density of seawater calculated with in situ salinity and temperature, but pressure equal to zero, rather than the in situ pressure, and 1000 kg/m^3 is subtracted. Defined as (S,T)-1000 kg m-3, where (S,T) is the density of a sample of seawater at temperature T and salinity S, measured in kg m-3, at standard atmospheric pressure. \N http://vocabulary.odm2.org/variablename/sigma_t +urea Urea Urea ((NH2)2CO) \N http://vocabulary.odm2.org/variablename/urea +thorium_230 Thorium-230 An isotope of thorium in the thorium-232 decay series \N http://vocabulary.odm2.org/variablename/thorium_230 +carbonSuspendedOrganic Carbon, suspended organic DEPRECATED -- The use of this term is discouraged in favor of the use of the synonymous term "Carbon, particulate organic". \N http://vocabulary.odm2.org/variablename/carbonSuspendedOrganic +cadmiumDissolved Cadmium, dissolved Dissolved Cadmium. For chemical terms, "dissolved" indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/cadmiumDissolved +blue_GreenAlgae_Cyanobacteria_Phycocyanin Blue-green algae (cyanobacteria), phycocyanin Blue-green algae (cyanobacteria) with phycocyanin pigments \N http://vocabulary.odm2.org/variablename/blue_GreenAlgae_Cyanobacteria_Phycocyanin +waterUseAgriculture Water Use, Agriculture Water pumped for Agriculture \N http://vocabulary.odm2.org/variablename/waterUseAgriculture +distance Distance Distance measured from a sensor to a target object such as the surface of a water body or snow surface. \N http://vocabulary.odm2.org/variablename/distance +cyclohexane Cyclohexane Cyclohexane (C6H6Cl6) \N http://vocabulary.odm2.org/variablename/cyclohexane +manganeseTotal Manganese, total Total manganese (Mn). "Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/manganeseTotal +sulfideDissolved Sulfide, dissolved Dissolved Sulfide \N http://vocabulary.odm2.org/variablename/sulfideDissolved +sulfur Sulfur Sulfur (S) \N http://vocabulary.odm2.org/variablename/sulfur +monanthochloeLittoralisCoverage Monanthochloe littoralis Coverage Areal coverage of the plant Monanthochloe littoralis \N http://vocabulary.odm2.org/variablename/monanthochloeLittoralisCoverage +3_Nitroaniline 3-Nitroaniline 3-Nitroaniline (C6H6N2O2) \N http://vocabulary.odm2.org/variablename/3_Nitroaniline +4_Chloro_3_Methylphenol 4-Chloro-3-methylphenol 4-Chloro-3-methylphenol (C7H7ClO) \N http://vocabulary.odm2.org/variablename/4_Chloro_3_Methylphenol +2_Methylphenanthrene 2-Methylphenanthrene 2-Methylphenanthrene (C15H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_Methylphenanthrene +2_6_Dinitrotoluene 2,6-Dinitrotoluene 2,6-Dinitrotoluene (C7H6N2O4) \N http://vocabulary.odm2.org/variablename/2_6_Dinitrotoluene +piperonylButoxide Piperonyl Butoxide Piperonyl Butoxide (C19H30O5) \N http://vocabulary.odm2.org/variablename/piperonylButoxide +remark Remark Manually added comment field to provide additional information about a particular record. \N http://vocabulary.odm2.org/variablename/remark +alkalinityBicarbonate Alkalinity, bicarbonate Bicarbonate Alkalinity \N http://vocabulary.odm2.org/variablename/alkalinityBicarbonate +isopropylbenzene Isopropylbenzene Isopropylbenzene (C9H12) \N http://vocabulary.odm2.org/variablename/isopropylbenzene +butane Butane Butane \N http://vocabulary.odm2.org/variablename/butane +1_3_Dimethyladamantane 1,3-Dimethyladamantane 1,3-Dimethyladamantane (C12H20). \N http://vocabulary.odm2.org/variablename/1_3_Dimethyladamantane +temperatureDatalogger Temperature, datalogger Temperature, raw data from datalogger \N http://vocabulary.odm2.org/variablename/temperatureDatalogger +carbonDissolvedInorganic Carbon, dissolved inorganic Dissolved Inorganic Carbon \N http://vocabulary.odm2.org/variablename/carbonDissolvedInorganic +4_6_Dinitro_2_Methylphenol 4,6-Dinitro-2-methylphenol 4,6-Dinitro-2-methylphenol (C7H6N2O5) \N http://vocabulary.odm2.org/variablename/4_6_Dinitro_2_Methylphenol +phosphorodithioicAcid Phosphorodithioic acid Phosphorodithioic acid (C10N12N3O3PS2) \N http://vocabulary.odm2.org/variablename/phosphorodithioicAcid +alloxanthin Alloxanthin The phytoplankton pigment Alloxanthin \N http://vocabulary.odm2.org/variablename/alloxanthin +berylliumDissolved Beryllium, dissolved Dissolved Beryllium (Be) . For chemical terms, "dissolved"indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/berylliumDissolved +ruthenium_106 Ruthenium-106 The most stable isotope of ruthenium with a half life of 373.59 days. \N http://vocabulary.odm2.org/variablename/ruthenium_106 +carbonDioxideStorageFlux Carbon dioxide storage flux Carbon dioxide (CO2) storage flux \N http://vocabulary.odm2.org/variablename/carbonDioxideStorageFlux +nitrogenParticulateOrganic Nitrogen, particulate organic Particulate Organic Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenParticulateOrganic +1_4_5_8_Tetramethylnaphthalene 1,4,5,8-Tetramethylnaphthalene 1,4,5,8-Tetramethylnaphthalene (C14H16), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_4_5_8_Tetramethylnaphthalene +heatIndex Heat index The combination effect of heat and humidity on the temperature felt by people. \N http://vocabulary.odm2.org/variablename/heatIndex +evaporation Evaporation Evaporation \N http://vocabulary.odm2.org/variablename/evaporation +n_Alkane_C24 n-alkane, C24 C24 alkane, normal (i.e. straight-chain) isomer, common name: n-Tetracosane, formula : C24H50 \N http://vocabulary.odm2.org/variablename/n_Alkane_C24 +acenaphthylene Acenaphthylene Acenaphthylene (C12H8), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/acenaphthylene +ironTotal Iron, total Total Iron (Fe) \N http://vocabulary.odm2.org/variablename/ironTotal +1_4_Dinitrobenzene 1,4-Dinitrobenzene 1,4-Dinitrobenzene (C6H4N2O4) \N http://vocabulary.odm2.org/variablename/1_4_Dinitrobenzene +ethylene Ethylene Ethylene (C2H4) \N http://vocabulary.odm2.org/variablename/ethylene +tetrahydrofuran Tetrahydrofuran Tetrahydrofuran (C4H8O) \N http://vocabulary.odm2.org/variablename/tetrahydrofuran +solidsTotalSuspended Solids, total suspended Total Suspended Solids \N http://vocabulary.odm2.org/variablename/solidsTotalSuspended +carbonTotalSolidPhase Carbon, total solid phase Total solid phase carbon \N http://vocabulary.odm2.org/variablename/carbonTotalSolidPhase +carbonTotalOrganic Carbon, total organic Total (Dissolved+Particulate) Organic Carbon \N http://vocabulary.odm2.org/variablename/carbonTotalOrganic +4_Nitrophenol 4-Nitrophenol 4-Nitrophenol (C6H5NO3) \N http://vocabulary.odm2.org/variablename/4_Nitrophenol +terbufos Terbufos Terbufos (C9H21O2PS3) \N http://vocabulary.odm2.org/variablename/terbufos +phosphorusDissolved Phosphorus, dissolved Dissolved Phosphorus (P) \N http://vocabulary.odm2.org/variablename/phosphorusDissolved +2_3_5_Trimethylnaphthalene 2,3,5-Trimethylnaphthalene 2,3,5-Trimethylnaphthalene (C13H14), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_3_5_Trimethylnaphthalene +hosphorusPhosphateFlux Phosphorus, phosphate flux Phosphate (PO4) flux \N http://vocabulary.odm2.org/variablename/hosphorusPhosphateFlux +o_Xylene o-Xylene o-Xylene (C8H10) \N http://vocabulary.odm2.org/variablename/o_Xylene +carbonMonoxideDissolved Carbon monoxide, dissolved Dissolved carbon monoxide (CO) \N http://vocabulary.odm2.org/variablename/carbonMonoxideDissolved +pentachlorophenol Pentachlorophenol Pentachlorophenol (C6HCl5O) \N http://vocabulary.odm2.org/variablename/pentachlorophenol +formate Formate Formate \N http://vocabulary.odm2.org/variablename/formate +4_ChlorophenylphenylEther 4-Chlorophenylphenyl ether 4-Chlorophenylphenyl ether (C12H9ClO) \N http://vocabulary.odm2.org/variablename/4_ChlorophenylphenylEther +oxygen_18_StableIsotopeRatioDelta Oxygen-18, stable isotope ratio delta Difference in the 18O:16O ratio between the sample and standard \N http://vocabulary.odm2.org/variablename/oxygen_18_StableIsotopeRatioDelta +pronamide Pronamide Pronamide (C12H11Cl2NO) \N http://vocabulary.odm2.org/variablename/pronamide +radiationNetShortwave Radiation, net shortwave Net Shortwave radiation \N http://vocabulary.odm2.org/variablename/radiationNetShortwave +manganeseDissolved Manganese, dissolved Dissolved Manganese (Mn) \N http://vocabulary.odm2.org/variablename/manganeseDissolved +frequencyOfRotation Frequency of Rotation Number of rotations within a time period \N http://vocabulary.odm2.org/variablename/frequencyOfRotation +solidsTotalVolatile Solids, total volatile Total Volatile Solids \N http://vocabulary.odm2.org/variablename/solidsTotalVolatile +waterUseCommercialIndustrialPower Water Use, Commercial + Industrial + Power Water pumped by commercial, industrial users. \N http://vocabulary.odm2.org/variablename/waterUseCommercialIndustrialPower +antimonyParticulate Antimony, particulate Particulate antimony (Sb) in suspension \N http://vocabulary.odm2.org/variablename/antimonyParticulate +deuterium Deuterium Deuterium (2H), Delta D \N http://vocabulary.odm2.org/variablename/deuterium +delta_13COfC2H6 delta-13C of C2H6 Isotope 13C of ethane \N http://vocabulary.odm2.org/variablename/delta_13COfC2H6 +sulfurOrganic Sulfur, organic Organic Sulfur \N http://vocabulary.odm2.org/variablename/sulfurOrganic +grossBetaRadionuclides Gross beta radionuclides Gross Beta Radionuclides \N http://vocabulary.odm2.org/variablename/grossBetaRadionuclides +argon Argon Argon \N http://vocabulary.odm2.org/variablename/argon +baseflow Baseflow The portion of streamflow (discharge) that is supplied by groundwater sources. \N http://vocabulary.odm2.org/variablename/baseflow +disulfoton Disulfoton Disulfoton (C8H19O2PS3) \N http://vocabulary.odm2.org/variablename/disulfoton +diatoxanthin Diatoxanthin The phytoplankton pigment Diatoxanthin \N http://vocabulary.odm2.org/variablename/diatoxanthin +waveHeight Wave height The height of a surface wave, measured as the difference in elevation between the wave crest and an adjacent trough. \N http://vocabulary.odm2.org/variablename/waveHeight +ozone Ozone Ozone (O3) \N http://vocabulary.odm2.org/variablename/ozone +hydrogenDissolved Hydrogen, dissolved Dissolved Hydrogen \N http://vocabulary.odm2.org/variablename/hydrogenDissolved +chlorobenzilate Chlorobenzilate Chlorobenzilate (C16H14Cl2O3) \N http://vocabulary.odm2.org/variablename/chlorobenzilate +isobutyricAcid Isobutyric acid Isobutyric acid (C4H8O2) \N http://vocabulary.odm2.org/variablename/isobutyricAcid +latentHeatFlux Latent heat flux Latent Heat Flux \N http://vocabulary.odm2.org/variablename/latentHeatFlux +groundHeatFlux Ground heat flux Ground heat flux \N http://vocabulary.odm2.org/variablename/groundHeatFlux +realDielectricConstant Real dielectric constant Soil reponse of a reflected standing electromagnetic wave of a particular frequency which is related to the stored energy within the medium. This is the real portion of the complex dielectric constant. \N http://vocabulary.odm2.org/variablename/realDielectricConstant +polycyclicAromaticHydrocarbonAlkyl Polycyclic aromatic hydrocarbon, alkyl Polycyclic aromatic hydrocarbon (PAH) having at least one alkyl sidechain (methyl, ethyl or other alkyl group) attached to the aromatic ring structure \N http://vocabulary.odm2.org/variablename/polycyclicAromaticHydrocarbonAlkyl +hydrogen Hydrogen Hydrogen \N http://vocabulary.odm2.org/variablename/hydrogen +endOfFile End of file A categorical variable marking the end of a data file. This is used for quality control. \N http://vocabulary.odm2.org/variablename/endOfFile +styrene Styrene Styrene (C8H8) \N http://vocabulary.odm2.org/variablename/styrene +1_1_2_2_Tetrachloroethane 1,1,2,2-Tetrachloroethane 1,1,2,2-Tetrachloroethane (C2H2Cl4) \N http://vocabulary.odm2.org/variablename/1_1_2_2_Tetrachloroethane +windDirection Wind direction Wind direction \N http://vocabulary.odm2.org/variablename/windDirection +2_Nitroaniline 2-Nitroaniline 2-Nitroaniline (C6H6N2O2) \N http://vocabulary.odm2.org/variablename/2_Nitroaniline +carbonDioxide Carbon dioxide Carbon dioxide \N http://vocabulary.odm2.org/variablename/carbonDioxide +4_Methylchrysene 4-Methylchrysene 4-Methylchrysene (C19H14), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/4_Methylchrysene +4_BromophenylphenylEther 4-Bromophenylphenyl ether 4-Bromophenylphenyl ether (C12H9BrO) \N http://vocabulary.odm2.org/variablename/4_BromophenylphenylEther +SUVA254 SUVA254 Specific ultraviolet absorbance at 254 nm. Determined by absorbance normalized to DOC concentration. \N http://vocabulary.odm2.org/variablename/SUVA254 +frictionVelocity Friction velocity Friction velocity \N http://vocabulary.odm2.org/variablename/frictionVelocity +luminousFlux Luminous Flux A measure of the total amount of visible light present \N http://vocabulary.odm2.org/variablename/luminousFlux +THSWIndex THSW Index The THSW Index uses temperature, humidity, solar radiation, and wind speed to calculate an apparent temperature. \N http://vocabulary.odm2.org/variablename/THSWIndex +4_4_Methylenebis_2_Chloroaniline 4,4-Methylenebis(2-chloroaniline) 4,4'-Methylenebis(2-chloroaniline) (C13H12Cl2N2) \N http://vocabulary.odm2.org/variablename/4_4_Methylenebis_2_Chloroaniline +dinoflagellates Dinoflagellates The chlorophyll a concentration contributed by Dinoflagellates \N http://vocabulary.odm2.org/variablename/dinoflagellates +aroclor_1016 Aroclor-1016 Aroclor-1016 (C24H13Cl7), a PCB mixture \N http://vocabulary.odm2.org/variablename/aroclor_1016 +2_7_Dimethylnaphthalene 2,7-Dimethylnaphthalene 2,7-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/2_7_Dimethylnaphthalene +glutathione_S_TransferaseDeltaCycleThreshold Glutathione S-transferase, delta cycle threshold Delta cycle threshold for glutathione S-transferase (gst). Cycle threshold is the PCR cycle number at which the fluorescent signal of the gene being amplified crosses the set threshold. Delta cycle threshold for gst is the difference between the cycle threshold (Ct) of gst gene expression and the cycle threshold (Ct) for the gene expression of the reference gene (e.g., beta-actin). \N http://vocabulary.odm2.org/variablename/glutathione_S_TransferaseDeltaCycleThreshold +waterPotential Water potential Water potential is the potential energy of water relative to pure free water (e.g. deionized water) in reference conditions. It quantifies the tendency of water to move from one area to another due to osmosis, gravity, mechanical pressure, or matrix effects including surface tension. \N http://vocabulary.odm2.org/variablename/waterPotential +heptachlor Heptachlor Heptachlor (C10H5Cl7) \N http://vocabulary.odm2.org/variablename/heptachlor +phosphorusInorganic Phosphorus, inorganic Inorganic Phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusInorganic +n_Alkane_C21 n-alkane, C21 C21 alkane, normal (i.e. straight-chain) isomer, common name: n-Henicosane, formula : C21H44. \N http://vocabulary.odm2.org/variablename/n_Alkane_C21 +borrichiaFrutescensCoverage Borrichia frutescens Coverage Areal coverage of the plant Borrichia frutescens \N http://vocabulary.odm2.org/variablename/borrichiaFrutescensCoverage +delta_DOfH2O delta-D of H2O hydrogen isotopes of water \N http://vocabulary.odm2.org/variablename/delta_DOfH2O +BOD2Carbonaceous BOD2, carbonaceous 2-day Carbonaceous Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD2Carbonaceous +1_Methylfluorene 1-Methylfluorene 1-Methylfluorene (C14H12), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_Methylfluorene +pressureAbsolute Pressure, absolute Pressure \N http://vocabulary.odm2.org/variablename/pressureAbsolute +ethyleneDissolved Ethylene, dissolved Dissolved ethylene \N http://vocabulary.odm2.org/variablename/ethyleneDissolved +uranium_235 Uranium-235 An isotope of uranium that can sustain fission chain reaction \N http://vocabulary.odm2.org/variablename/uranium_235 +sulfurDioxide Sulfur dioxide Sulfur dioxide (SO2) \N http://vocabulary.odm2.org/variablename/sulfurDioxide +aluminumParticulate Aluminum, particulate Particulate aluminum in suspension \N http://vocabulary.odm2.org/variablename/aluminumParticulate +molbydenumDissolved Molbydenum, dissolved Dissolved Molbydenum (Mo). For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/molbydenumDissolved +phytoplankton Phytoplankton Measurement of phytoplankton with no differentiation between species \N http://vocabulary.odm2.org/variablename/phytoplankton +radiationIncomingLongwave Radiation, incoming longwave Incoming Longwave Radiation \N http://vocabulary.odm2.org/variablename/radiationIncomingLongwave +waterUsePublicSupply Water Use, Public Supply Water supplied by a public utility \N http://vocabulary.odm2.org/variablename/waterUsePublicSupply +BODuNitrogenous BODu, nitrogenous Nitrogenous Ultimate Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BODuNitrogenous +hexachlorobutadiene Hexachlorobutadiene Hexachlorobutadiene (C4Cl6) \N http://vocabulary.odm2.org/variablename/hexachlorobutadiene +trifluralin Trifluralin Trifluralin (C13H16F3N3O4) \N http://vocabulary.odm2.org/variablename/trifluralin +nitrogen_NH4 Nitrogen, NH4 Ammonium (NH4) \N http://vocabulary.odm2.org/variablename/nitrogen_NH4 +3_3_Dichlorobenzidine 3,3-Dichlorobenzidine 3,3-Dichlorobenzidine (C12H10Cl2N2) \N http://vocabulary.odm2.org/variablename/3_3_Dichlorobenzidine +nitrogenTotalKjeldahl Nitrogen, total kjeldahl Total Kjeldahl Nitrogen (Ammonia+Organic) \N http://vocabulary.odm2.org/variablename/nitrogenTotalKjeldahl +ironParticulate Iron, particulate Particulate iron (Fe) in suspension \N http://vocabulary.odm2.org/variablename/ironParticulate +snowWaterEquivalent Snow water equivalent The depth of water if a snow cover is completely melted, expressed in units of depth, on a corresponding horizontal surface area. \N http://vocabulary.odm2.org/variablename/snowWaterEquivalent +agencyCode Agency code Code for the agency which analyzed the sample \N http://vocabulary.odm2.org/variablename/agencyCode +hardnessMagnesium Hardness, Magnesium Hardness of magnesium \N http://vocabulary.odm2.org/variablename/hardnessMagnesium +dimethylphenanthrene Dimethylphenanthrene Dimethylphenanthrene (C16H14) \N http://vocabulary.odm2.org/variablename/dimethylphenanthrene +velocity Velocity The velocity of a substance, fluid or object \N http://vocabulary.odm2.org/variablename/velocity +nitrogenGas Nitrogen, gas Gaseous Nitrogen (N2) \N http://vocabulary.odm2.org/variablename/nitrogenGas +radium_226 Radium-226 An isotope of radium in the uranium-238 decay series \N http://vocabulary.odm2.org/variablename/radium_226 +chlorophyllFluorescence Chlorophyll fluorescence Chlorophyll Fluorescence \N http://vocabulary.odm2.org/variablename/chlorophyllFluorescence +chromium_III Chromium (III) Trivalent Chromium \N http://vocabulary.odm2.org/variablename/chromium_III +trichloroethene Trichloroethene Trichloroethene (C2HCl3) \N http://vocabulary.odm2.org/variablename/trichloroethene +seleniumDistributionCoefficient Selenium, distribution coefficient Ratio of concentrations of selenium in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/seleniumDistributionCoefficient +n_Alkane_C28 n-alkane, C28 C28 alkane, normal (i.e. straight-chain) isomer, common name: n-Octacosane, formula : C28H58 \N http://vocabulary.odm2.org/variablename/n_Alkane_C28 +waterVaporDensity Water vapor density Water vapor density \N http://vocabulary.odm2.org/variablename/waterVaporDensity +n_Alkane_C26 n-alkane, C26 C26 alkane, normal (i.e. straight-chain) isomer, common name: n-Hexacosane, formula : C26H54, synonyms: cerane, hexeikosane \N http://vocabulary.odm2.org/variablename/n_Alkane_C26 +watchdogErrorCount Watchdog error count A counter which counts the number of total datalogger watchdog errors \N http://vocabulary.odm2.org/variablename/watchdogErrorCount +oxygenFlux Oxygen flux Oxygen (O2) flux \N http://vocabulary.odm2.org/variablename/oxygenFlux +oxygenDissolvedPercentOfSaturation Oxygen, dissolved percent of saturation Dissolved oxygen, percent saturation \N http://vocabulary.odm2.org/variablename/oxygenDissolvedPercentOfSaturation +thalliumDistributionCoefficient Thallium, distribution coefficient Ratio of concentrations of thallium in two phases in equilibrium with each other. Phases must be specified. \N http://vocabulary.odm2.org/variablename/thalliumDistributionCoefficient +solidsTotalDissolved Solids, total dissolved Total Dissolved Solids \N http://vocabulary.odm2.org/variablename/solidsTotalDissolved +taxaCount Taxa count Count of unique taxa. A taxon (plural: taxa) is a group of one (or more) populations of organism(s), which is judged to be a unit. \N http://vocabulary.odm2.org/variablename/taxaCount +endrin Endrin Endrin (C12H8Cl6O) \N http://vocabulary.odm2.org/variablename/endrin +vanadiumDissolved Vanadium, dissolved Dissolved vanadium (V). "Dissolved" indicates the measurement was made on a filtered sample. \N http://vocabulary.odm2.org/variablename/vanadiumDissolved +osmoticPressure Osmotic pressure Osmotic pressure \N http://vocabulary.odm2.org/variablename/osmoticPressure +4_4_DDD 4,4-DDD Dichlorodiphenyldichloroethane (C14H10Cl4) \N http://vocabulary.odm2.org/variablename/4_4_DDD +4_4_DDE 4,4-DDE Dichlorodiphenyldichloroethylene (C14H8Cl4) \N http://vocabulary.odm2.org/variablename/4_4_DDE +isopropylAlcohol Isopropyl alcohol Isopropyl alcohol (C3H8O) \N http://vocabulary.odm2.org/variablename/isopropylAlcohol +permethrin Permethrin Permethrin (C21H20Cl2O3) \N http://vocabulary.odm2.org/variablename/permethrin +N_Nitrosodi_n_Butylamine N-Nitrosodi-n-butylamine N-Nitrosodi-n-butylamine (C8H18N2O) \N http://vocabulary.odm2.org/variablename/N_Nitrosodi_n_Butylamine +chlorophyll_c Chlorophyll c Chlorophyll c \N http://vocabulary.odm2.org/variablename/chlorophyll_c +solidsRixedDissolved Solids, fixed dissolved Fixed Dissolved Solids \N http://vocabulary.odm2.org/variablename/solidsRixedDissolved +solidsTotalFixed Solids, total fixed Total Fixed Solids \N http://vocabulary.odm2.org/variablename/solidsTotalFixed +phenol Phenol Phenol (C6H5OH) \N http://vocabulary.odm2.org/variablename/phenol +chlorideTotal Chloride, total Total Chloride (Cl-) \N http://vocabulary.odm2.org/variablename/chlorideTotal +programSignature Program signature A unique data recorder program identifier which is useful for knowing when the source code in the data recorder has been modified. \N http://vocabulary.odm2.org/variablename/programSignature +tributoxyethylPhosphate Tributoxyethyl phosphate Tributoxyethyl phosphate (C42H87O13P) \N http://vocabulary.odm2.org/variablename/tributoxyethylPhosphate +thorium_232 Thorium-232 A radioactive isotope of thorium which undergoes alpha decay \N http://vocabulary.odm2.org/variablename/thorium_232 +microsomalProtein Microsomal protein The total protein concentration within the microsomal fraction of cells. Microsomes refer to vesicle-like artifacts reformed from pieces of endoplasmic reticulum when eukaryotic cells are broken up in a laboratory. \N http://vocabulary.odm2.org/variablename/microsomalProtein +organicMatter Organic matter The organic matter component of a complex material. \N http://vocabulary.odm2.org/variablename/organicMatter +boronTotal Boron, total Total Boron (B) \N http://vocabulary.odm2.org/variablename/boronTotal +butylbenzylphthalate Butylbenzylphthalate Butylbenzylphthalate (C19H20O4) \N http://vocabulary.odm2.org/variablename/butylbenzylphthalate +vaporPressure Vapor pressure The pressure of a vapor in equilibrium with its non-vapor phases \N http://vocabulary.odm2.org/variablename/vaporPressure +ethyleneGlycol Ethylene glycol Ethlene Glycol (C2H4(OH)2) \N http://vocabulary.odm2.org/variablename/ethyleneGlycol +methane Methane Methane (CH4) \N http://vocabulary.odm2.org/variablename/methane +bromoform Bromoform Bromoform (CHBr3), a haloform \N http://vocabulary.odm2.org/variablename/bromoform +NDVI NDVI Normalized difference vegetation index \N http://vocabulary.odm2.org/variablename/NDVI +uranium_238 Uranium-238 Uranium's most common isotope \N http://vocabulary.odm2.org/variablename/uranium_238 +salicorniaBigeloviiCoverage Salicornia bigelovii coverage Areal coverage of the plant Salicornia bigelovii \N http://vocabulary.odm2.org/variablename/salicorniaBigeloviiCoverage +zirconium_95 Zirconium-95 A radioactive isotope of zirconium with a half-life of 63 days \N http://vocabulary.odm2.org/variablename/zirconium_95 +delta_DOfCH4 delta-D of CH4 hydrogen isotopes of methane \N http://vocabulary.odm2.org/variablename/delta_DOfCH4 +1_6_Dimethylnaphthalene 1,6-Dimethylnaphthalene 1,6-Dimethylnaphthalene (C10H6(CH3)2), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/1_6_Dimethylnaphthalene +imaginaryDielectricConstant Imaginary dielectric constant Soil reponse of a reflected standing electromagnetic wave of a particular frequency which is related to the dissipation (or loss) of energy within the medium. This is the imaginary portion of the complex dielectric constant. \N http://vocabulary.odm2.org/variablename/imaginaryDielectricConstant +antimonyDissolved Antimony, dissolved Dissolved antimony (Sb)."Dissolved" indicates measurement was on a filtered sample. \N http://vocabulary.odm2.org/variablename/antimonyDissolved +carbonDissolvedTotal Carbon, dissolved total Dissolved Total (Organic+Inorganic) Carbon \N http://vocabulary.odm2.org/variablename/carbonDissolvedTotal +recorderCode Recorder code A code used to identifier a data recorder. \N http://vocabulary.odm2.org/variablename/recorderCode +turbidity Turbidity Turbidity \N http://vocabulary.odm2.org/variablename/turbidity +nitrogen_15_StableIsotopeRatioDelta Nitrogen-15, stable isotope ratio delta Difference in the 15N:14N ratio between the sample and standard (del N 15) \N http://vocabulary.odm2.org/variablename/nitrogen_15_StableIsotopeRatioDelta +sulfateDissolved Sulfate, dissolved Dissolved Sulfate (SO4) \N http://vocabulary.odm2.org/variablename/sulfateDissolved +nickelDissolved Nickel, dissolved Dissolved Nickel (Ni) \N http://vocabulary.odm2.org/variablename/nickelDissolved +copperDissolved Copper, dissolved Dissolved Copper (Cu) \N http://vocabulary.odm2.org/variablename/copperDissolved +rheniumTotal Rhenium, total Total Rhenium (Re) \N http://vocabulary.odm2.org/variablename/rheniumTotal +acidityTotalAcidity Acidity, total acidity Total acidity \N http://vocabulary.odm2.org/variablename/acidityTotalAcidity +silicicAcid Silicic acid Hydrated silica disolved in water \N http://vocabulary.odm2.org/variablename/silicicAcid +reductionPotential Reduction potential Oxidation-reduction potential \N http://vocabulary.odm2.org/variablename/reductionPotential +tetraethyleneGlycol Tetraethylene glycol Tetraethylene glycol (C8H18O5) \N http://vocabulary.odm2.org/variablename/tetraethyleneGlycol +xylenesTotal Xylenes, total Total xylenes: C6H4(CH3)2 \N http://vocabulary.odm2.org/variablename/xylenesTotal +nitrogenDissolvedNitrate_NO3 Nitrogen, dissolved nitrate (NO3) Dissolved nitrate (NO3) nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenDissolvedNitrate_NO3 +DNADamageTailLength DNA damage, tail length In a single cell gel electrophoresis assay (comet assay), tail length is the distance of DNA migration from the body of the nuclear core \N http://vocabulary.odm2.org/variablename/DNADamageTailLength +NAlbuminoid N, albuminoid Albuminoid Nitrogen \N http://vocabulary.odm2.org/variablename/NAlbuminoid +hydrogen_2_StableIsotopeRatioDelta Hydrogen-2, stable isotope ratio delta Difference in the 2H:1H ratio between the sample and standard \N http://vocabulary.odm2.org/variablename/hydrogen_2_StableIsotopeRatioDelta +carbazole Carbazole Carbazole (C12H9N) \N http://vocabulary.odm2.org/variablename/carbazole +N_Nitrosodimethylamine N-Nitrosodimethylamine N-Nitrosodimethylamine (C2H6N2O) \N http://vocabulary.odm2.org/variablename/N_Nitrosodimethylamine +silicaDissolved Silica, dissolved Dissolved silica (SiO2) \N http://vocabulary.odm2.org/variablename/silicaDissolved +specificConductance Specific conductance Specific conductance \N http://vocabulary.odm2.org/variablename/specificConductance +seleniumTotal Selenium, total Total Selenium (Se). For chemical terms, total indicates an unfiltered sample \N http://vocabulary.odm2.org/variablename/seleniumTotal +delta_13COfC3H8 delta-13C of C3H8 Isotope 13C of propane \N http://vocabulary.odm2.org/variablename/delta_13COfC3H8 +nitrogenInorganic Nitrogen, inorganic Total Inorganic Nitrogen \N http://vocabulary.odm2.org/variablename/nitrogenInorganic +n_Alkane_C33 n-alkane, C33 C33 alkane, (i.e. straight-chain) isomer, common name: n-Tritriacontane, formula : C33H68 \N http://vocabulary.odm2.org/variablename/n_Alkane_C33 +n_Alkane_C19 n-alkane, C19 C19 alkane, normal (i.e. straight-chain) isomer, common name: n-Nonadecane, formula : C19H40 \N http://vocabulary.odm2.org/variablename/n_Alkane_C19 +phosphorusOrthophosphateDissolved Phosphorus, orthophosphate dissolved Dissolved orthophosphate phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusOrthophosphateDissolved +sulfideTotal Sulfide, total Total sulfide \N http://vocabulary.odm2.org/variablename/sulfideTotal +polycyclicAromaticHydrocarbonTotal Polycyclic aromatic hydrocarbon, total total polycyclic aromatic hydrocarbon (PAH), also known as poly-aromatic hydrocarbons or polynuclear aromatic hydrocarbons \N http://vocabulary.odm2.org/variablename/polycyclicAromaticHydrocarbonTotal +methylTert_ButylEther_MTBE Methyl tert-butyl ether (MTBE) Methyl tert-butyl ether (MTBE) (C5H12O) \N http://vocabulary.odm2.org/variablename/methylTert_ButylEther_MTBE +bis_2_ChloroisopropylEther bis-2-chloroisopropyl ether bis-2-chloroisopropyl ether (C6H12Cl2O) \N http://vocabulary.odm2.org/variablename/bis_2_ChloroisopropylEther +carbonDissolvedOrganic Carbon, dissolved organic Dissolved Organic Carbon \N http://vocabulary.odm2.org/variablename/carbonDissolvedOrganic +propaneDissolved Propane, dissolved Dissolved Propane (C3H8) \N http://vocabulary.odm2.org/variablename/propaneDissolved +sedimentPassingSieve Sediment, passing sieve The amount of sediment passing a sieve in a gradation test \N http://vocabulary.odm2.org/variablename/sedimentPassingSieve +waterDepth Water depth Water depth is the distance between the water surface and the bottom of the water body at a specific location specified by the site location and offset. \N http://vocabulary.odm2.org/variablename/waterDepth +lowBatteryCount Low battery count A counter of the number of times the battery voltage dropped below a minimum threshold \N http://vocabulary.odm2.org/variablename/lowBatteryCount +phenolicsTotal Phenolics, total Total Phenolics \N http://vocabulary.odm2.org/variablename/phenolicsTotal +waterContent Water Content Quantity of water contained in a material or organism \N http://vocabulary.odm2.org/variablename/waterContent +BOD5 BOD5 5-day Biochemical Oxygen Demand \N http://vocabulary.odm2.org/variablename/BOD5 +zooplankton Zooplankton Zooplanktonic organisms, non-specific \N http://vocabulary.odm2.org/variablename/zooplankton +petroleumHydrocarbonTotal Petroleum hydrocarbon, total Total petroleum hydrocarbon \N http://vocabulary.odm2.org/variablename/petroleumHydrocarbonTotal +zirconiumDissolved Zirconium, dissolved Dissolved Zirconium \N http://vocabulary.odm2.org/variablename/zirconiumDissolved +phosphorusPolyphosphate Phosphorus, polyphosphate Polyphosphate Phosphorus \N http://vocabulary.odm2.org/variablename/phosphorusPolyphosphate +vanadiumTotal Vanadium, total Total vanadium (V). "Total" indicates was measured on a whole water (unfiltered) sample. \N http://vocabulary.odm2.org/variablename/vanadiumTotal +sensibleHeatFlux Sensible heat flux Sensible Heat Flux \N http://vocabulary.odm2.org/variablename/sensibleHeatFlux +dinoseb Dinoseb Dinoseb (C10H12N2O5) \N http://vocabulary.odm2.org/variablename/dinoseb +windSpeed Wind speed Wind speed \N http://vocabulary.odm2.org/variablename/windSpeed +lithiumDissolved Lithium, dissolved Dissolved Lithium (Li). For chemical terms, dissolved indicates a filtered sample. \N http://vocabulary.odm2.org/variablename/lithiumDissolved +zincParticulate Zinc, particulate Particulate zinc (Zn) in suspension \N http://vocabulary.odm2.org/variablename/zincParticulate +speedOfSound Speed of sound Speed of sound in the medium sampled \N http://vocabulary.odm2.org/variablename/speedOfSound +dibenzothiophene Dibenzothiophene Dibenzothiophene (C12H8S), a polycyclic aromatic hydrocarbon (PAH) \N http://vocabulary.odm2.org/variablename/dibenzothiophene +bariumTotal Barium, total Total Barium (Ba). For chemical terms, "total" indicates an unfiltered sample. \N http://vocabulary.odm2.org/variablename/bariumTotal +\. + + +-- +-- TOC entry 4836 (class 0 OID 70498) +-- Dependencies: 299 +-- Data for Name: cv_variabletype; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY cv_variabletype (term, name, definition, category, sourcevocabularyuri) FROM stdin; +traceElement Trace element Variables associated with trace elements \N http://vocabulary.odm2.org/variabletype/traceElement +Climate Climate Variables associated with the climate, weather, or atmospheric processes \N http://vocabulary.odm2.org/variabletype/Climate +modelData Model data Variables associated with modeled data \N http://vocabulary.odm2.org/variabletype/modelData +uraniumSeries Uranium series Variables associated with uranium series \N http://vocabulary.odm2.org/variabletype/uraniumSeries +Geology Geology Variables associated with geology or geological processes \N http://vocabulary.odm2.org/variabletype/Geology +Unknown Unknown The VariableType is unknown. \N http://vocabulary.odm2.org/variabletype/Unknown +speciationRatio Speciation ratio Variables associated with a speciation ratio \N http://vocabulary.odm2.org/variabletype/speciationRatio +radiogenicIsotopes Radiogenic isotopes Variables associated with radiogenic isotopes \N http://vocabulary.odm2.org/variabletype/radiogenicIsotopes +rareEarthElement Rare earth element Variables associated with rare earth elements \N http://vocabulary.odm2.org/variabletype/rareEarthElement +stableIsotopes Stable isotopes Variables associated with stable isotopes \N http://vocabulary.odm2.org/variabletype/stableIsotopes +WaterQuality Water quality Variables associated with water quality variables or processes \N http://vocabulary.odm2.org/variabletype/WaterQuality +Soil Soil Variables associated with soil variables or processes \N http://vocabulary.odm2.org/variabletype/Soil +age Age Variables associated with age \N http://vocabulary.odm2.org/variabletype/age +endMember End-Member Variables associated with end members \N http://vocabulary.odm2.org/variabletype/endMember +rockMode Rock mode Variables associated with a rock mode \N http://vocabulary.odm2.org/variabletype/rockMode +Chemistry Chemistry Variables associated with chemistry, chemical analysis or processes \N http://vocabulary.odm2.org/variabletype/Chemistry +ratio Ratio Variables associated with a ratio \N http://vocabulary.odm2.org/variabletype/ratio +Instrumentation Instrumentation Variables associated with instrumentation and instrument properties such as battery voltages, data logger temperatures, often useful for diagnosis. \N http://vocabulary.odm2.org/variabletype/Instrumentation +volatile Volatile Variables associated with volatile chemicals \N http://vocabulary.odm2.org/variabletype/volatile +Hydrology Hydrology Variables associated with hydrologic variables or processes \N http://vocabulary.odm2.org/variabletype/Hydrology +majorOxideElement Major oxide or element Variables associated with major oxides or elements \N http://vocabulary.odm2.org/variabletype/majorOxideElement +Biota Biota Variables associated with biological organisms \N http://vocabulary.odm2.org/variabletype/Biota +nobleGas Noble gas Variables associated with noble gasses \N http://vocabulary.odm2.org/variabletype/nobleGas +\. + + +-- +-- TOC entry 4849 (class 0 OID 70563) +-- Dependencies: 312 +-- Data for Name: dataloggerfilecolumns; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY dataloggerfilecolumns (dataloggerfilecolumnid, resultid, dataloggerfileid, instrumentoutputvariableid, columnlabel, columndescription, measurementequation, scaninterval, scanintervalunitsid, recordinginterval, recordingintervalunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 5073 (class 0 OID 0) +-- Dependencies: 311 +-- Name: dataloggerfilecolumns_dataloggerfilecolumnid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('dataloggerfilecolumns_dataloggerfilecolumnid_seq', 1, false); + + +-- +-- TOC entry 4851 (class 0 OID 70574) +-- Dependencies: 314 +-- Data for Name: dataloggerfiles; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY dataloggerfiles (dataloggerfileid, programid, dataloggerfilename, dataloggerfiledescription, dataloggerfilelink) FROM stdin; +\. + + +-- +-- TOC entry 5074 (class 0 OID 0) +-- Dependencies: 313 +-- Name: dataloggerfiles_dataloggerfileid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('dataloggerfiles_dataloggerfileid_seq', 1, false); + + +-- +-- TOC entry 4853 (class 0 OID 70585) +-- Dependencies: 316 +-- Data for Name: dataloggerprogramfiles; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY dataloggerprogramfiles (programid, affiliationid, programname, programdescription, programversion, programfilelink) FROM stdin; +\. + + +-- +-- TOC entry 5075 (class 0 OID 0) +-- Dependencies: 315 +-- Name: dataloggerprogramfiles_programid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('dataloggerprogramfiles_programid_seq', 1, false); + + +-- +-- TOC entry 4837 (class 0 OID 70506) +-- Dependencies: 300 +-- Data for Name: dataquality; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY dataquality (dataqualityid, dataqualitytypecv, dataqualitycode, dataqualityvalue, dataqualityvalueunitsid, dataqualitydescription, dataqualitylink) FROM stdin; +\. + + +-- +-- TOC entry 4906 (class 0 OID 70851) +-- Dependencies: 369 +-- Data for Name: datasetcitations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY datasetcitations (bridgeid, datasetid, relationshiptypecv, citationid) FROM stdin; +1 1 Cites 1 +\. + + +-- +-- TOC entry 5076 (class 0 OID 0) +-- Dependencies: 368 +-- Name: datasetcitations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('datasetcitations_bridgeid_seq', 1, true); + + +-- +-- TOC entry 4784 (class 0 OID 70145) +-- Dependencies: 247 +-- Data for Name: datasets; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY datasets (datasetid, datasetuuid, datasettypecv, datasetcode, datasettitle, datasetabstract) FROM stdin; +1 30b34aa5-788b-e3c0-f045-b1b8bead0958 Specimen time series MarchantariaTS CAMREX Marchantaria Time Series 10-year time series of biogeochemivcal measurements in the central Amazon River mainstem at Marchantaria, near Manaus. Conducted by the US-Brazilian CAMREX project. +\. + + +-- +-- TOC entry 5077 (class 0 OID 0) +-- Dependencies: 246 +-- Name: datasets_datasetid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('datasets_datasetid_seq', 1, true); + + +-- +-- TOC entry 4786 (class 0 OID 70156) +-- Dependencies: 249 +-- Data for Name: datasetsresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY datasetsresults (bridgeid, datasetid, resultid) FROM stdin; +1 1 1 +2 1 2 +3 1 3 +4 1 4 +5 1 5 +6 1 6 +7 1 7 +8 1 8 +9 1 9 +10 1 10 +11 1 11 +12 1 12 +13 1 13 +14 1 14 +15 1 15 +16 1 16 +17 1 17 +18 1 18 +19 1 19 +20 1 20 +21 1 21 +22 1 22 +23 1 23 +24 1 24 +25 1 25 +26 1 26 +27 1 27 +28 1 28 +29 1 29 +30 1 30 +31 1 31 +32 1 32 +33 1 33 +34 1 34 +35 1 35 +36 1 36 +37 1 37 +38 1 38 +39 1 39 +40 1 40 +41 1 41 +42 1 42 +43 1 43 +44 1 44 +45 1 45 +46 1 46 +47 1 47 +48 1 48 +49 1 49 +50 1 50 +51 1 51 +52 1 52 +53 1 53 +54 1 54 +55 1 55 +56 1 56 +57 1 57 +58 1 58 +59 1 59 +60 1 60 +61 1 61 +62 1 62 +63 1 63 +64 1 64 +65 1 65 +66 1 66 +67 1 67 +68 1 68 +69 1 69 +70 1 70 +71 1 71 +72 1 72 +73 1 73 +74 1 74 +75 1 75 +76 1 76 +77 1 77 +78 1 78 +79 1 79 +80 1 80 +81 1 81 +82 1 82 +83 1 83 +84 1 84 +85 1 85 +86 1 86 +87 1 87 +88 1 88 +89 1 89 +90 1 90 +91 1 91 +92 1 92 +93 1 93 +94 1 94 +95 1 95 +96 1 96 +97 1 97 +98 1 98 +99 1 99 +100 1 100 +101 1 101 +102 1 102 +103 1 103 +104 1 104 +105 1 105 +106 1 106 +107 1 107 +108 1 108 +109 1 109 +110 1 110 +111 1 111 +112 1 112 +113 1 113 +114 1 114 +115 1 115 +116 1 116 +117 1 117 +118 1 118 +119 1 119 +120 1 120 +121 1 121 +122 1 122 +123 1 123 +124 1 124 +125 1 125 +126 1 126 +127 1 127 +128 1 128 +129 1 129 +130 1 130 +131 1 131 +132 1 132 +133 1 133 +134 1 134 +135 1 135 +136 1 136 +137 1 137 +138 1 138 +139 1 139 +140 1 140 +141 1 141 +142 1 142 +143 1 143 +144 1 144 +145 1 145 +146 1 146 +147 1 147 +148 1 148 +149 1 149 +150 1 150 +151 1 151 +152 1 152 +153 1 153 +154 1 154 +155 1 155 +156 1 156 +157 1 157 +158 1 158 +159 1 159 +160 1 160 +161 1 161 +162 1 162 +163 1 163 +164 1 164 +165 1 165 +166 1 166 +167 1 167 +168 1 168 +169 1 169 +170 1 170 +171 1 171 +172 1 172 +173 1 173 +174 1 174 +175 1 175 +176 1 176 +177 1 177 +178 1 178 +179 1 179 +180 1 180 +181 1 181 +182 1 182 +183 1 183 +184 1 184 +185 1 185 +186 1 186 +187 1 187 +188 1 188 +189 1 189 +190 1 190 +191 1 191 +192 1 192 +193 1 193 +194 1 194 +195 1 195 +196 1 196 +197 1 197 +198 1 198 +199 1 199 +200 1 200 +201 1 201 +202 1 202 +203 1 203 +204 1 204 +205 1 205 +206 1 206 +207 1 207 +208 1 208 +209 1 209 +210 1 210 +211 1 211 +212 1 212 +213 1 213 +214 1 214 +215 1 215 +216 1 216 +217 1 217 +218 1 218 +219 1 219 +220 1 220 +221 1 221 +222 1 222 +223 1 223 +224 1 224 +225 1 225 +226 1 226 +227 1 227 +228 1 228 +229 1 229 +230 1 230 +231 1 231 +232 1 232 +233 1 233 +234 1 234 +235 1 235 +236 1 236 +237 1 237 +238 1 238 +239 1 239 +240 1 240 +241 1 241 +242 1 242 +243 1 243 +244 1 244 +245 1 245 +246 1 246 +247 1 247 +248 1 248 +249 1 249 +250 1 250 +251 1 251 +252 1 252 +253 1 253 +254 1 254 +255 1 255 +256 1 256 +257 1 257 +258 1 258 +259 1 259 +260 1 260 +261 1 261 +262 1 262 +263 1 263 +264 1 264 +265 1 265 +266 1 266 +267 1 267 +268 1 268 +269 1 269 +270 1 270 +271 1 271 +272 1 272 +273 1 273 +274 1 274 +275 1 275 +276 1 276 +277 1 277 +278 1 278 +279 1 279 +280 1 280 +281 1 281 +282 1 282 +283 1 283 +284 1 284 +285 1 285 +286 1 286 +287 1 287 +288 1 288 +289 1 289 +290 1 290 +291 1 291 +292 1 292 +293 1 293 +294 1 294 +295 1 295 +296 1 296 +297 1 297 +298 1 298 +299 1 299 +300 1 300 +301 1 301 +302 1 302 +303 1 303 +304 1 304 +305 1 305 +306 1 306 +307 1 307 +308 1 308 +309 1 309 +310 1 310 +311 1 311 +312 1 312 +313 1 313 +314 1 314 +315 1 315 +316 1 316 +317 1 317 +318 1 318 +319 1 319 +320 1 320 +321 1 321 +322 1 322 +323 1 323 +324 1 324 +325 1 325 +326 1 326 +327 1 327 +328 1 328 +329 1 329 +330 1 330 +331 1 331 +332 1 332 +333 1 333 +334 1 334 +335 1 335 +336 1 336 +337 1 337 +338 1 338 +339 1 339 +340 1 340 +341 1 341 +342 1 342 +343 1 343 +344 1 344 +345 1 345 +346 1 346 +347 1 347 +348 1 348 +349 1 349 +350 1 350 +351 1 351 +352 1 352 +353 1 353 +354 1 354 +355 1 355 +356 1 356 +357 1 357 +358 1 358 +359 1 359 +360 1 360 +361 1 361 +362 1 362 +363 1 363 +364 1 364 +365 1 365 +366 1 366 +367 1 367 +368 1 368 +369 1 369 +370 1 370 +371 1 371 +372 1 372 +373 1 373 +374 1 374 +375 1 375 +376 1 376 +377 1 377 +378 1 378 +379 1 379 +380 1 380 +381 1 381 +382 1 382 +383 1 383 +384 1 384 +385 1 385 +386 1 386 +387 1 387 +388 1 388 +389 1 389 +390 1 390 +391 1 391 +392 1 392 +393 1 393 +394 1 394 +395 1 395 +396 1 396 +397 1 397 +398 1 398 +399 1 399 +400 1 400 +401 1 401 +402 1 402 +403 1 403 +404 1 404 +405 1 405 +406 1 406 +407 1 407 +408 1 408 +409 1 409 +410 1 410 +411 1 411 +412 1 412 +413 1 413 +414 1 414 +415 1 415 +416 1 416 +417 1 417 +418 1 418 +419 1 419 +420 1 420 +421 1 421 +422 1 422 +423 1 423 +424 1 424 +425 1 425 +426 1 426 +427 1 427 +428 1 428 +429 1 429 +430 1 430 +431 1 431 +432 1 432 +433 1 433 +434 1 434 +435 1 435 +436 1 436 +437 1 437 +438 1 438 +439 1 439 +440 1 440 +441 1 441 +442 1 442 +443 1 443 +444 1 444 +445 1 445 +446 1 446 +447 1 447 +448 1 448 +449 1 449 +450 1 450 +451 1 451 +452 1 452 +453 1 453 +454 1 454 +455 1 455 +456 1 456 +457 1 457 +458 1 458 +459 1 459 +460 1 460 +461 1 461 +462 1 462 +463 1 463 +464 1 464 +465 1 465 +466 1 466 +467 1 467 +468 1 468 +469 1 469 +470 1 470 +471 1 471 +472 1 472 +473 1 473 +474 1 474 +475 1 475 +476 1 476 +477 1 477 +478 1 478 +479 1 479 +480 1 480 +481 1 481 +482 1 482 +483 1 483 +484 1 484 +485 1 485 +486 1 486 +487 1 487 +488 1 488 +489 1 489 +490 1 490 +491 1 491 +492 1 492 +493 1 493 +494 1 494 +495 1 495 +496 1 496 +497 1 497 +498 1 498 +499 1 499 +500 1 500 +501 1 501 +502 1 502 +503 1 503 +504 1 504 +505 1 505 +506 1 506 +507 1 507 +508 1 508 +509 1 509 +510 1 510 +511 1 511 +512 1 512 +513 1 513 +514 1 514 +515 1 515 +516 1 516 +517 1 517 +518 1 518 +519 1 519 +520 1 520 +521 1 521 +522 1 522 +523 1 523 +524 1 524 +525 1 525 +526 1 526 +527 1 527 +528 1 528 +529 1 529 +530 1 530 +531 1 531 +532 1 532 +533 1 533 +534 1 534 +535 1 535 +536 1 536 +537 1 537 +538 1 538 +539 1 539 +540 1 540 +541 1 541 +542 1 542 +543 1 543 +544 1 544 +545 1 545 +546 1 546 +547 1 547 +548 1 548 +549 1 549 +550 1 550 +551 1 551 +552 1 552 +553 1 553 +554 1 554 +555 1 555 +556 1 556 +557 1 557 +558 1 558 +559 1 559 +560 1 560 +561 1 561 +562 1 562 +563 1 563 +564 1 564 +565 1 565 +566 1 566 +567 1 567 +568 1 568 +569 1 569 +570 1 570 +571 1 571 +572 1 572 +573 1 573 +574 1 574 +575 1 575 +576 1 576 +577 1 577 +578 1 578 +579 1 579 +580 1 580 +581 1 581 +582 1 582 +583 1 583 +584 1 584 +585 1 585 +586 1 586 +587 1 587 +588 1 588 +589 1 589 +590 1 590 +591 1 591 +592 1 592 +593 1 593 +594 1 594 +595 1 595 +596 1 596 +597 1 597 +598 1 598 +599 1 599 +600 1 600 +601 1 601 +602 1 602 +603 1 603 +604 1 604 +605 1 605 +606 1 606 +607 1 607 +608 1 608 +609 1 609 +610 1 610 +611 1 611 +612 1 612 +613 1 613 +614 1 614 +615 1 615 +616 1 616 +617 1 617 +618 1 618 +619 1 619 +620 1 620 +621 1 621 +622 1 622 +623 1 623 +624 1 624 +625 1 625 +626 1 626 +627 1 627 +628 1 628 +629 1 629 +630 1 630 +631 1 631 +632 1 632 +633 1 633 +634 1 634 +635 1 635 +636 1 636 +637 1 637 +638 1 638 +639 1 639 +640 1 640 +641 1 641 +642 1 642 +643 1 643 +644 1 644 +645 1 645 +646 1 646 +647 1 647 +648 1 648 +649 1 649 +650 1 650 +651 1 651 +652 1 652 +653 1 653 +654 1 654 +655 1 655 +656 1 656 +657 1 657 +658 1 658 +659 1 659 +660 1 660 +661 1 661 +662 1 662 +663 1 663 +664 1 664 +665 1 665 +666 1 666 +667 1 667 +668 1 668 +669 1 669 +670 1 670 +671 1 671 +672 1 672 +673 1 673 +674 1 674 +675 1 675 +676 1 676 +677 1 677 +678 1 678 +679 1 679 +680 1 680 +681 1 681 +682 1 682 +683 1 683 +684 1 684 +685 1 685 +686 1 686 +687 1 687 +688 1 688 +689 1 689 +690 1 690 +691 1 691 +692 1 692 +693 1 693 +694 1 694 +695 1 695 +696 1 696 +697 1 697 +698 1 698 +699 1 699 +700 1 700 +701 1 701 +702 1 702 +703 1 703 +704 1 704 +705 1 705 +706 1 706 +707 1 707 +708 1 708 +709 1 709 +710 1 710 +711 1 711 +712 1 712 +713 1 713 +714 1 714 +715 1 715 +716 1 716 +717 1 717 +718 1 718 +719 1 719 +720 1 720 +721 1 721 +722 1 722 +723 1 723 +724 1 724 +725 1 725 +726 1 726 +727 1 727 +728 1 728 +729 1 729 +730 1 730 +731 1 731 +732 1 732 +733 1 733 +734 1 734 +735 1 735 +736 1 736 +737 1 737 +738 1 738 +739 1 739 +740 1 740 +741 1 741 +742 1 742 +743 1 743 +744 1 744 +745 1 745 +746 1 746 +747 1 747 +748 1 748 +749 1 749 +750 1 750 +751 1 751 +752 1 752 +753 1 753 +754 1 754 +755 1 755 +756 1 756 +757 1 757 +758 1 758 +759 1 759 +760 1 760 +761 1 761 +762 1 762 +763 1 763 +764 1 764 +765 1 765 +766 1 766 +767 1 767 +768 1 768 +769 1 769 +770 1 770 +771 1 771 +772 1 772 +773 1 773 +774 1 774 +775 1 775 +776 1 776 +777 1 777 +778 1 778 +779 1 779 +780 1 780 +781 1 781 +782 1 782 +783 1 783 +784 1 784 +785 1 785 +786 1 786 +787 1 787 +788 1 788 +789 1 789 +790 1 790 +791 1 791 +792 1 792 +793 1 793 +794 1 794 +795 1 795 +796 1 796 +797 1 797 +798 1 798 +799 1 799 +800 1 800 +801 1 801 +802 1 802 +803 1 803 +804 1 804 +805 1 805 +806 1 806 +807 1 807 +808 1 808 +809 1 809 +810 1 810 +811 1 811 +812 1 812 +813 1 813 +814 1 814 +815 1 815 +816 1 816 +817 1 817 +818 1 818 +819 1 819 +820 1 820 +821 1 821 +822 1 822 +823 1 823 +824 1 824 +825 1 825 +826 1 826 +827 1 827 +828 1 828 +829 1 829 +830 1 830 +831 1 831 +832 1 832 +833 1 833 +834 1 834 +835 1 835 +836 1 836 +837 1 837 +838 1 838 +839 1 839 +840 1 840 +841 1 841 +842 1 842 +843 1 843 +844 1 844 +845 1 845 +846 1 846 +847 1 847 +848 1 848 +849 1 849 +850 1 850 +851 1 851 +852 1 852 +853 1 853 +854 1 854 +855 1 855 +856 1 856 +857 1 857 +858 1 858 +859 1 859 +860 1 860 +861 1 861 +862 1 862 +863 1 863 +864 1 864 +865 1 865 +866 1 866 +867 1 867 +868 1 868 +869 1 869 +870 1 870 +871 1 871 +872 1 872 +873 1 873 +874 1 874 +875 1 875 +876 1 876 +877 1 877 +878 1 878 +879 1 879 +880 1 880 +881 1 881 +882 1 882 +883 1 883 +884 1 884 +885 1 885 +886 1 886 +887 1 887 +888 1 888 +889 1 889 +890 1 890 +891 1 891 +892 1 892 +893 1 893 +894 1 894 +895 1 895 +896 1 896 +897 1 897 +898 1 898 +899 1 899 +900 1 900 +901 1 901 +902 1 902 +903 1 903 +904 1 904 +905 1 905 +906 1 906 +907 1 907 +908 1 908 +909 1 909 +910 1 910 +911 1 911 +912 1 912 +913 1 913 +914 1 914 +915 1 915 +916 1 916 +917 1 917 +918 1 918 +919 1 919 +920 1 920 +921 1 921 +922 1 922 +923 1 923 +924 1 924 +925 1 925 +926 1 926 +927 1 927 +928 1 928 +929 1 929 +930 1 930 +931 1 931 +932 1 932 +933 1 933 +934 1 934 +935 1 935 +936 1 936 +937 1 937 +938 1 938 +939 1 939 +940 1 940 +941 1 941 +942 1 942 +943 1 943 +944 1 944 +945 1 945 +946 1 946 +947 1 947 +948 1 948 +949 1 949 +950 1 950 +951 1 951 +952 1 952 +953 1 953 +954 1 954 +955 1 955 +956 1 956 +957 1 957 +958 1 958 +959 1 959 +960 1 960 +961 1 961 +962 1 962 +963 1 963 +964 1 964 +965 1 965 +966 1 966 +967 1 967 +968 1 968 +969 1 969 +970 1 970 +971 1 971 +972 1 972 +973 1 973 +974 1 974 +975 1 975 +976 1 976 +977 1 977 +978 1 978 +979 1 979 +980 1 980 +981 1 981 +982 1 982 +983 1 983 +984 1 984 +985 1 985 +986 1 986 +987 1 987 +988 1 988 +989 1 989 +990 1 990 +991 1 991 +992 1 992 +993 1 993 +994 1 994 +995 1 995 +996 1 996 +997 1 997 +998 1 998 +999 1 999 +1000 1 1000 +1001 1 1001 +1002 1 1002 +1003 1 1003 +1004 1 1004 +1005 1 1005 +1006 1 1006 +1007 1 1007 +1008 1 1008 +1009 1 1009 +1010 1 1010 +1011 1 1011 +1012 1 1012 +1013 1 1013 +1014 1 1014 +1015 1 1015 +1016 1 1016 +1017 1 1017 +1018 1 1018 +1019 1 1019 +1020 1 1020 +1021 1 1021 +1022 1 1022 +1023 1 1023 +1024 1 1024 +1025 1 1025 +1026 1 1026 +1027 1 1027 +1028 1 1028 +1029 1 1029 +1030 1 1030 +1031 1 1031 +1032 1 1032 +1033 1 1033 +1034 1 1034 +1035 1 1035 +1036 1 1036 +1037 1 1037 +1038 1 1038 +1039 1 1039 +1040 1 1040 +1041 1 1041 +1042 1 1042 +1043 1 1043 +1044 1 1044 +1045 1 1045 +1046 1 1046 +1047 1 1047 +1048 1 1048 +1049 1 1049 +1050 1 1050 +1051 1 1051 +1052 1 1052 +1053 1 1053 +1054 1 1054 +1055 1 1055 +1056 1 1056 +1057 1 1057 +1058 1 1058 +1059 1 1059 +1060 1 1060 +1061 1 1061 +1062 1 1062 +1063 1 1063 +1064 1 1064 +1065 1 1065 +1066 1 1066 +1067 1 1067 +1068 1 1068 +1069 1 1069 +1070 1 1070 +1071 1 1071 +1072 1 1072 +1073 1 1073 +1074 1 1074 +1075 1 1075 +1076 1 1076 +1077 1 1077 +1078 1 1078 +1079 1 1079 +1080 1 1080 +1081 1 1081 +1082 1 1082 +1083 1 1083 +1084 1 1084 +1085 1 1085 +1086 1 1086 +1087 1 1087 +1088 1 1088 +1089 1 1089 +1090 1 1090 +1091 1 1091 +1092 1 1092 +1093 1 1093 +1094 1 1094 +1095 1 1095 +1096 1 1096 +1097 1 1097 +1098 1 1098 +1099 1 1099 +1100 1 1100 +1101 1 1101 +1102 1 1102 +1103 1 1103 +1104 1 1104 +1105 1 1105 +1106 1 1106 +1107 1 1107 +1108 1 1108 +1109 1 1109 +1110 1 1110 +1111 1 1111 +1112 1 1112 +1113 1 1113 +1114 1 1114 +1115 1 1115 +1116 1 1116 +1117 1 1117 +1118 1 1118 +1119 1 1119 +1120 1 1120 +1121 1 1121 +1122 1 1122 +1123 1 1123 +1124 1 1124 +1125 1 1125 +1126 1 1126 +1127 1 1127 +1128 1 1128 +1129 1 1129 +1130 1 1130 +1131 1 1131 +1132 1 1132 +1133 1 1133 +1134 1 1134 +1135 1 1135 +1136 1 1136 +1137 1 1137 +1138 1 1138 +1139 1 1139 +1140 1 1140 +1141 1 1141 +1142 1 1142 +1143 1 1143 +1144 1 1144 +1145 1 1145 +1146 1 1146 +1147 1 1147 +1148 1 1148 +1149 1 1149 +1150 1 1150 +1151 1 1151 +1152 1 1152 +1153 1 1153 +1154 1 1154 +1155 1 1155 +1156 1 1156 +1157 1 1157 +1158 1 1158 +1159 1 1159 +1160 1 1160 +1161 1 1161 +1162 1 1162 +1163 1 1163 +1164 1 1164 +1165 1 1165 +1166 1 1166 +1167 1 1167 +1168 1 1168 +1169 1 1169 +1170 1 1170 +1171 1 1171 +1172 1 1172 +1173 1 1173 +1174 1 1174 +1175 1 1175 +1176 1 1176 +1177 1 1177 +1178 1 1178 +1179 1 1179 +1180 1 1180 +1181 1 1181 +1182 1 1182 +1183 1 1183 +1184 1 1184 +1185 1 1185 +1186 1 1186 +1187 1 1187 +1188 1 1188 +1189 1 1189 +1190 1 1190 +1191 1 1191 +1192 1 1192 +1193 1 1193 +1194 1 1194 +1195 1 1195 +1196 1 1196 +1197 1 1197 +1198 1 1198 +1199 1 1199 +1200 1 1200 +1201 1 1201 +1202 1 1202 +1203 1 1203 +1204 1 1204 +1205 1 1205 +1206 1 1206 +1207 1 1207 +1208 1 1208 +1209 1 1209 +1210 1 1210 +1211 1 1211 +1212 1 1212 +1213 1 1213 +1214 1 1214 +1215 1 1215 +1216 1 1216 +1217 1 1217 +1218 1 1218 +1219 1 1219 +1220 1 1220 +1221 1 1221 +1222 1 1222 +1223 1 1223 +1224 1 1224 +1225 1 1225 +1226 1 1226 +1227 1 1227 +1228 1 1228 +1229 1 1229 +1230 1 1230 +1231 1 1231 +1232 1 1232 +1233 1 1233 +1234 1 1234 +1235 1 1235 +1236 1 1236 +1237 1 1237 +1238 1 1238 +1239 1 1239 +1240 1 1240 +1241 1 1241 +1242 1 1242 +1243 1 1243 +1244 1 1244 +1245 1 1245 +1246 1 1246 +1247 1 1247 +1248 1 1248 +1249 1 1249 +1250 1 1250 +1251 1 1251 +1252 1 1252 +1253 1 1253 +1254 1 1254 +1255 1 1255 +1256 1 1256 +1257 1 1257 +1258 1 1258 +1259 1 1259 +1260 1 1260 +1261 1 1261 +1262 1 1262 +1263 1 1263 +1264 1 1264 +1265 1 1265 +1266 1 1266 +1267 1 1267 +1268 1 1268 +1269 1 1269 +1270 1 1270 +1271 1 1271 +1272 1 1272 +1273 1 1273 +1274 1 1274 +1275 1 1275 +1276 1 1276 +1277 1 1277 +1278 1 1278 +1279 1 1279 +1280 1 1280 +1281 1 1281 +1282 1 1282 +1283 1 1283 +1284 1 1284 +1285 1 1285 +1286 1 1286 +1287 1 1287 +1288 1 1288 +1289 1 1289 +1290 1 1290 +1291 1 1291 +1292 1 1292 +1293 1 1293 +1294 1 1294 +1295 1 1295 +1296 1 1296 +1297 1 1297 +1298 1 1298 +1299 1 1299 +1300 1 1300 +1301 1 1301 +1302 1 1302 +1303 1 1303 +1304 1 1304 +1305 1 1305 +1306 1 1306 +1307 1 1307 +1308 1 1308 +1309 1 1309 +1310 1 1310 +1311 1 1311 +1312 1 1312 +1313 1 1313 +1314 1 1314 +1315 1 1315 +1316 1 1316 +1317 1 1317 +1318 1 1318 +1319 1 1319 +1320 1 1320 +1321 1 1321 +1322 1 1322 +1323 1 1323 +1324 1 1324 +1325 1 1325 +1326 1 1326 +1327 1 1327 +1328 1 1328 +1329 1 1329 +1330 1 1330 +1331 1 1331 +1332 1 1332 +1333 1 1333 +1334 1 1334 +1335 1 1335 +1336 1 1336 +1337 1 1337 +1338 1 1338 +1339 1 1339 +1340 1 1340 +1341 1 1341 +1342 1 1342 +1343 1 1343 +1344 1 1344 +1345 1 1345 +1346 1 1346 +1347 1 1347 +1348 1 1348 +1349 1 1349 +1350 1 1350 +1351 1 1351 +1352 1 1352 +1353 1 1353 +1354 1 1354 +1355 1 1355 +1356 1 1356 +1357 1 1357 +1358 1 1358 +1359 1 1359 +1360 1 1360 +1361 1 1361 +1362 1 1362 +1363 1 1363 +1364 1 1364 +1365 1 1365 +1366 1 1366 +1367 1 1367 +1368 1 1368 +1369 1 1369 +1370 1 1370 +1371 1 1371 +1372 1 1372 +1373 1 1373 +1374 1 1374 +1375 1 1375 +1376 1 1376 +1377 1 1377 +1378 1 1378 +1379 1 1379 +1380 1 1380 +1381 1 1381 +1382 1 1382 +1383 1 1383 +1384 1 1384 +1385 1 1385 +1386 1 1386 +1387 1 1387 +1388 1 1388 +1389 1 1389 +1390 1 1390 +1391 1 1391 +1392 1 1392 +1393 1 1393 +1394 1 1394 +1395 1 1395 +1396 1 1396 +1397 1 1397 +1398 1 1398 +1399 1 1399 +1400 1 1400 +1401 1 1401 +1402 1 1402 +1403 1 1403 +1404 1 1404 +1405 1 1405 +1406 1 1406 +1407 1 1407 +1408 1 1408 +1409 1 1409 +1410 1 1410 +1411 1 1411 +1412 1 1412 +1413 1 1413 +1414 1 1414 +1415 1 1415 +1416 1 1416 +1417 1 1417 +1418 1 1418 +1419 1 1419 +1420 1 1420 +1421 1 1421 +1422 1 1422 +1423 1 1423 +1424 1 1424 +1425 1 1425 +1426 1 1426 +1427 1 1427 +1428 1 1428 +1429 1 1429 +1430 1 1430 +1431 1 1431 +1432 1 1432 +1433 1 1433 +1434 1 1434 +1435 1 1435 +1436 1 1436 +1437 1 1437 +1438 1 1438 +1439 1 1439 +1440 1 1440 +1441 1 1441 +1442 1 1442 +1443 1 1443 +1444 1 1444 +1445 1 1445 +1446 1 1446 +1447 1 1447 +1448 1 1448 +1449 1 1449 +1450 1 1450 +1451 1 1451 +1452 1 1452 +1453 1 1453 +1454 1 1454 +1455 1 1455 +1456 1 1456 +1457 1 1457 +1458 1 1458 +1459 1 1459 +1460 1 1460 +1461 1 1461 +1462 1 1462 +1463 1 1463 +1464 1 1464 +1465 1 1465 +1466 1 1466 +1467 1 1467 +1468 1 1468 +1469 1 1469 +1470 1 1470 +1471 1 1471 +1472 1 1472 +1473 1 1473 +1474 1 1474 +1475 1 1475 +1476 1 1476 +1477 1 1477 +1478 1 1478 +1479 1 1479 +1480 1 1480 +1481 1 1481 +1482 1 1482 +1483 1 1483 +1484 1 1484 +1485 1 1485 +1486 1 1486 +1487 1 1487 +1488 1 1488 +1489 1 1489 +1490 1 1490 +1491 1 1491 +1492 1 1492 +1493 1 1493 +1494 1 1494 +1495 1 1495 +1496 1 1496 +1497 1 1497 +1498 1 1498 +1499 1 1499 +1500 1 1500 +1501 1 1501 +1502 1 1502 +1503 1 1503 +1504 1 1504 +1505 1 1505 +1506 1 1506 +1507 1 1507 +1508 1 1508 +1509 1 1509 +1510 1 1510 +1511 1 1511 +1512 1 1512 +1513 1 1513 +1514 1 1514 +1515 1 1515 +1516 1 1516 +1517 1 1517 +1518 1 1518 +1519 1 1519 +1520 1 1520 +1521 1 1521 +1522 1 1522 +1523 1 1523 +1524 1 1524 +1525 1 1525 +1526 1 1526 +1527 1 1527 +1528 1 1528 +1529 1 1529 +1530 1 1530 +1531 1 1531 +1532 1 1532 +1533 1 1533 +1534 1 1534 +1535 1 1535 +1536 1 1536 +1537 1 1537 +1538 1 1538 +1539 1 1539 +1540 1 1540 +1541 1 1541 +1542 1 1542 +1543 1 1543 +1544 1 1544 +1545 1 1545 +1546 1 1546 +1547 1 1547 +1548 1 1548 +1549 1 1549 +1550 1 1550 +1551 1 1551 +1552 1 1552 +1553 1 1553 +1554 1 1554 +1555 1 1555 +1556 1 1556 +1557 1 1557 +1558 1 1558 +1559 1 1559 +1560 1 1560 +1561 1 1561 +1562 1 1562 +1563 1 1563 +1564 1 1564 +1565 1 1565 +1566 1 1566 +1567 1 1567 +1568 1 1568 +1569 1 1569 +1570 1 1570 +1571 1 1571 +1572 1 1572 +1573 1 1573 +1574 1 1574 +1575 1 1575 +1576 1 1576 +1577 1 1577 +1578 1 1578 +1579 1 1579 +1580 1 1580 +1581 1 1581 +1582 1 1582 +1583 1 1583 +1584 1 1584 +1585 1 1585 +1586 1 1586 +1587 1 1587 +1588 1 1588 +1589 1 1589 +1590 1 1590 +1591 1 1591 +1592 1 1592 +1593 1 1593 +1594 1 1594 +1595 1 1595 +1596 1 1596 +1597 1 1597 +1598 1 1598 +1599 1 1599 +1600 1 1600 +1601 1 1601 +1602 1 1602 +1603 1 1603 +1604 1 1604 +1605 1 1605 +1606 1 1606 +1607 1 1607 +1608 1 1608 +1609 1 1609 +1610 1 1610 +1611 1 1611 +1612 1 1612 +1613 1 1613 +1614 1 1614 +1615 1 1615 +1616 1 1616 +1617 1 1617 +1618 1 1618 +1619 1 1619 +1620 1 1620 +1621 1 1621 +1622 1 1622 +1623 1 1623 +1624 1 1624 +1625 1 1625 +1626 1 1626 +1627 1 1627 +1628 1 1628 +1629 1 1629 +1630 1 1630 +1631 1 1631 +1632 1 1632 +1633 1 1633 +1634 1 1634 +1635 1 1635 +1636 1 1636 +1637 1 1637 +1638 1 1638 +1639 1 1639 +1640 1 1640 +1641 1 1641 +1642 1 1642 +1643 1 1643 +1644 1 1644 +1645 1 1645 +1646 1 1646 +1647 1 1647 +1648 1 1648 +1649 1 1649 +1650 1 1650 +1651 1 1651 +1652 1 1652 +1653 1 1653 +1654 1 1654 +1655 1 1655 +1656 1 1656 +1657 1 1657 +1658 1 1658 +1659 1 1659 +1660 1 1660 +1661 1 1661 +1662 1 1662 +1663 1 1663 +1664 1 1664 +1665 1 1665 +1666 1 1666 +1667 1 1667 +1668 1 1668 +1669 1 1669 +1670 1 1670 +1671 1 1671 +1672 1 1672 +1673 1 1673 +1674 1 1674 +1675 1 1675 +1676 1 1676 +1677 1 1677 +1678 1 1678 +1679 1 1679 +1680 1 1680 +1681 1 1681 +1682 1 1682 +1683 1 1683 +1684 1 1684 +1685 1 1685 +1686 1 1686 +1687 1 1687 +1688 1 1688 +1689 1 1689 +1690 1 1690 +1691 1 1691 +1692 1 1692 +1693 1 1693 +1694 1 1694 +1695 1 1695 +1696 1 1696 +1697 1 1697 +1698 1 1698 +1699 1 1699 +1700 1 1700 +1701 1 1701 +1702 1 1702 +1703 1 1703 +1704 1 1704 +1705 1 1705 +1706 1 1706 +1707 1 1707 +1708 1 1708 +1709 1 1709 +1710 1 1710 +1711 1 1711 +1712 1 1712 +1713 1 1713 +1714 1 1714 +1715 1 1715 +1716 1 1716 +1717 1 1717 +1718 1 1718 +1719 1 1719 +1720 1 1720 +1721 1 1721 +1722 1 1722 +1723 1 1723 +1724 1 1724 +1725 1 1725 +1726 1 1726 +1727 1 1727 +1728 1 1728 +1729 1 1729 +1730 1 1730 +1731 1 1731 +1732 1 1732 +1733 1 1733 +1734 1 1734 +1735 1 1735 +1736 1 1736 +1737 1 1737 +1738 1 1738 +1739 1 1739 +1740 1 1740 +1741 1 1741 +1742 1 1742 +1743 1 1743 +1744 1 1744 +1745 1 1745 +1746 1 1746 +1747 1 1747 +1748 1 1748 +1749 1 1749 +1750 1 1750 +1751 1 1751 +1752 1 1752 +1753 1 1753 +1754 1 1754 +1755 1 1755 +1756 1 1756 +1757 1 1757 +1758 1 1758 +1759 1 1759 +1760 1 1760 +1761 1 1761 +1762 1 1762 +1763 1 1763 +1764 1 1764 +1765 1 1765 +1766 1 1766 +1767 1 1767 +1768 1 1768 +1769 1 1769 +1770 1 1770 +1771 1 1771 +1772 1 1772 +1773 1 1773 +1774 1 1774 +1775 1 1775 +1776 1 1776 +1777 1 1777 +1778 1 1778 +1779 1 1779 +1780 1 1780 +1781 1 1781 +1782 1 1782 +1783 1 1783 +1784 1 1784 +1785 1 1785 +1786 1 1786 +1787 1 1787 +1788 1 1788 +1789 1 1789 +1790 1 1790 +1791 1 1791 +1792 1 1792 +1793 1 1793 +1794 1 1794 +1795 1 1795 +1796 1 1796 +1797 1 1797 +1798 1 1798 +1799 1 1799 +1800 1 1800 +1801 1 1801 +1802 1 1802 +1803 1 1803 +1804 1 1804 +1805 1 1805 +1806 1 1806 +1807 1 1807 +1808 1 1808 +1809 1 1809 +1810 1 1810 +1811 1 1811 +1812 1 1812 +1813 1 1813 +1814 1 1814 +1815 1 1815 +1816 1 1816 +1817 1 1817 +1818 1 1818 +1819 1 1819 +1820 1 1820 +1821 1 1821 +1822 1 1822 +1823 1 1823 +1824 1 1824 +1825 1 1825 +1826 1 1826 +1827 1 1827 +1828 1 1828 +1829 1 1829 +1830 1 1830 +1831 1 1831 +1832 1 1832 +1833 1 1833 +1834 1 1834 +1835 1 1835 +1836 1 1836 +1837 1 1837 +1838 1 1838 +1839 1 1839 +1840 1 1840 +1841 1 1841 +1842 1 1842 +1843 1 1843 +1844 1 1844 +1845 1 1845 +1846 1 1846 +1847 1 1847 +1848 1 1848 +1849 1 1849 +1850 1 1850 +1851 1 1851 +1852 1 1852 +1853 1 1853 +1854 1 1854 +1855 1 1855 +1856 1 1856 +1857 1 1857 +1858 1 1858 +1859 1 1859 +1860 1 1860 +1861 1 1861 +1862 1 1862 +1863 1 1863 +1864 1 1864 +1865 1 1865 +1866 1 1866 +1867 1 1867 +1868 1 1868 +1869 1 1869 +1870 1 1870 +1871 1 1871 +1872 1 1872 +1873 1 1873 +1874 1 1874 +1875 1 1875 +1876 1 1876 +1877 1 1877 +1878 1 1878 +1879 1 1879 +1880 1 1880 +1881 1 1881 +1882 1 1882 +1883 1 1883 +1884 1 1884 +1885 1 1885 +1886 1 1886 +1887 1 1887 +1888 1 1888 +1889 1 1889 +1890 1 1890 +1891 1 1891 +1892 1 1892 +1893 1 1893 +1894 1 1894 +1895 1 1895 +1896 1 1896 +1897 1 1897 +1898 1 1898 +1899 1 1899 +1900 1 1900 +1901 1 1901 +1902 1 1902 +1903 1 1903 +1904 1 1904 +1905 1 1905 +1906 1 1906 +1907 1 1907 +1908 1 1908 +1909 1 1909 +1910 1 1910 +1911 1 1911 +1912 1 1912 +1913 1 1913 +1914 1 1914 +1915 1 1915 +1916 1 1916 +1917 1 1917 +1918 1 1918 +1919 1 1919 +1920 1 1920 +1921 1 1921 +1922 1 1922 +1923 1 1923 +1924 1 1924 +1925 1 1925 +1926 1 1926 +1927 1 1927 +1928 1 1928 +1929 1 1929 +1930 1 1930 +1931 1 1931 +1932 1 1932 +1933 1 1933 +1934 1 1934 +1935 1 1935 +1936 1 1936 +1937 1 1937 +1938 1 1938 +1939 1 1939 +1940 1 1940 +1941 1 1941 +1942 1 1942 +1943 1 1943 +1944 1 1944 +1945 1 1945 +1946 1 1946 +1947 1 1947 +1948 1 1948 +1949 1 1949 +1950 1 1950 +1951 1 1951 +1952 1 1952 +1953 1 1953 +1954 1 1954 +1955 1 1955 +1956 1 1956 +1957 1 1957 +1958 1 1958 +1959 1 1959 +1960 1 1960 +1961 1 1961 +1962 1 1962 +1963 1 1963 +1964 1 1964 +1965 1 1965 +1966 1 1966 +1967 1 1967 +1968 1 1968 +1969 1 1969 +1970 1 1970 +1971 1 1971 +1972 1 1972 +1973 1 1973 +1974 1 1974 +1975 1 1975 +1976 1 1976 +1977 1 1977 +1978 1 1978 +1979 1 1979 +1980 1 1980 +1981 1 1981 +1982 1 1982 +1983 1 1983 +1984 1 1984 +1985 1 1985 +1986 1 1986 +1987 1 1987 +1988 1 1988 +1989 1 1989 +1990 1 1990 +1991 1 1991 +1992 1 1992 +1993 1 1993 +1994 1 1994 +1995 1 1995 +1996 1 1996 +1997 1 1997 +1998 1 1998 +1999 1 1999 +2000 1 2000 +2001 1 2001 +2002 1 2002 +2003 1 2003 +2004 1 2004 +2005 1 2005 +2006 1 2006 +2007 1 2007 +2008 1 2008 +2009 1 2009 +2010 1 2010 +2011 1 2011 +2012 1 2012 +2013 1 2013 +2014 1 2014 +2015 1 2015 +2016 1 2016 +2017 1 2017 +2018 1 2018 +2019 1 2019 +2020 1 2020 +2021 1 2021 +2022 1 2022 +2023 1 2023 +2024 1 2024 +2025 1 2025 +2026 1 2026 +2027 1 2027 +2028 1 2028 +2029 1 2029 +2030 1 2030 +2031 1 2031 +2032 1 2032 +2033 1 2033 +2034 1 2034 +2035 1 2035 +2036 1 2036 +2037 1 2037 +2038 1 2038 +2039 1 2039 +2040 1 2040 +2041 1 2041 +2042 1 2042 +2043 1 2043 +2044 1 2044 +2045 1 2045 +2046 1 2046 +2047 1 2047 +2048 1 2048 +2049 1 2049 +2050 1 2050 +2051 1 2051 +2052 1 2052 +2053 1 2053 +2054 1 2054 +2055 1 2055 +2056 1 2056 +2057 1 2057 +2058 1 2058 +2059 1 2059 +2060 1 2060 +2061 1 2061 +2062 1 2062 +2063 1 2063 +2064 1 2064 +2065 1 2065 +2066 1 2066 +2067 1 2067 +2068 1 2068 +2069 1 2069 +2070 1 2070 +2071 1 2071 +2072 1 2072 +2073 1 2073 +2074 1 2074 +2075 1 2075 +2076 1 2076 +2077 1 2077 +2078 1 2078 +2079 1 2079 +2080 1 2080 +2081 1 2081 +2082 1 2082 +2083 1 2083 +2084 1 2084 +2085 1 2085 +2086 1 2086 +2087 1 2087 +2088 1 2088 +2089 1 2089 +2090 1 2090 +2091 1 2091 +2092 1 2092 +2093 1 2093 +2094 1 2094 +2095 1 2095 +2096 1 2096 +2097 1 2097 +2098 1 2098 +2099 1 2099 +2100 1 2100 +2101 1 2101 +2102 1 2102 +2103 1 2103 +2104 1 2104 +2105 1 2105 +2106 1 2106 +2107 1 2107 +2108 1 2108 +2109 1 2109 +2110 1 2110 +2111 1 2111 +2112 1 2112 +2113 1 2113 +2114 1 2114 +2115 1 2115 +2116 1 2116 +2117 1 2117 +2118 1 2118 +2119 1 2119 +2120 1 2120 +2121 1 2121 +2122 1 2122 +2123 1 2123 +2124 1 2124 +2125 1 2125 +2126 1 2126 +2127 1 2127 +2128 1 2128 +2129 1 2129 +2130 1 2130 +2131 1 2131 +2132 1 2132 +2133 1 2133 +2134 1 2134 +2135 1 2135 +2136 1 2136 +2137 1 2137 +2138 1 2138 +2139 1 2139 +2140 1 2140 +2141 1 2141 +2142 1 2142 +2143 1 2143 +2144 1 2144 +2145 1 2145 +2146 1 2146 +2147 1 2147 +2148 1 2148 +2149 1 2149 +2150 1 2150 +2151 1 2151 +2152 1 2152 +2153 1 2153 +2154 1 2154 +2155 1 2155 +2156 1 2156 +2157 1 2157 +2158 1 2158 +2159 1 2159 +2160 1 2160 +2161 1 2161 +2162 1 2162 +2163 1 2163 +2164 1 2164 +2165 1 2165 +2166 1 2166 +2167 1 2167 +2168 1 2168 +2169 1 2169 +2170 1 2170 +2171 1 2171 +2172 1 2172 +2173 1 2173 +2174 1 2174 +2175 1 2175 +2176 1 2176 +2177 1 2177 +2178 1 2178 +2179 1 2179 +2180 1 2180 +2181 1 2181 +2182 1 2182 +2183 1 2183 +2184 1 2184 +2185 1 2185 +2186 1 2186 +2187 1 2187 +2188 1 2188 +2189 1 2189 +2190 1 2190 +2191 1 2191 +2192 1 2192 +2193 1 2193 +2194 1 2194 +2195 1 2195 +2196 1 2196 +2197 1 2197 +2198 1 2198 +2199 1 2199 +2200 1 2200 +2201 1 2201 +2202 1 2202 +2203 1 2203 +2204 1 2204 +2205 1 2205 +2206 1 2206 +2207 1 2207 +2208 1 2208 +2209 1 2209 +2210 1 2210 +2211 1 2211 +2212 1 2212 +2213 1 2213 +2214 1 2214 +2215 1 2215 +2216 1 2216 +2217 1 2217 +2218 1 2218 +2219 1 2219 +2220 1 2220 +2221 1 2221 +2222 1 2222 +2223 1 2223 +2224 1 2224 +2225 1 2225 +2226 1 2226 +2227 1 2227 +2228 1 2228 +2229 1 2229 +2230 1 2230 +2231 1 2231 +2232 1 2232 +2233 1 2233 +2234 1 2234 +2235 1 2235 +2236 1 2236 +2237 1 2237 +2238 1 2238 +2239 1 2239 +2240 1 2240 +2241 1 2241 +2242 1 2242 +2243 1 2243 +2244 1 2244 +2245 1 2245 +2246 1 2246 +2247 1 2247 +2248 1 2248 +2249 1 2249 +2250 1 2250 +2251 1 2251 +2252 1 2252 +2253 1 2253 +2254 1 2254 +2255 1 2255 +2256 1 2256 +2257 1 2257 +2258 1 2258 +2259 1 2259 +2260 1 2260 +2261 1 2261 +2262 1 2262 +2263 1 2263 +2264 1 2264 +2265 1 2265 +2266 1 2266 +2267 1 2267 +2268 1 2268 +2269 1 2269 +2270 1 2270 +2271 1 2271 +2272 1 2272 +2273 1 2273 +2274 1 2274 +2275 1 2275 +2276 1 2276 +2277 1 2277 +2278 1 2278 +2279 1 2279 +2280 1 2280 +2281 1 2281 +2282 1 2282 +2283 1 2283 +2284 1 2284 +2285 1 2285 +2286 1 2286 +2287 1 2287 +2288 1 2288 +2289 1 2289 +2290 1 2290 +2291 1 2291 +2292 1 2292 +2293 1 2293 +2294 1 2294 +2295 1 2295 +2296 1 2296 +2297 1 2297 +2298 1 2298 +2299 1 2299 +2300 1 2300 +2301 1 2301 +2302 1 2302 +2303 1 2303 +2304 1 2304 +2305 1 2305 +2306 1 2306 +2307 1 2307 +2308 1 2308 +2309 1 2309 +2310 1 2310 +2311 1 2311 +2312 1 2312 +2313 1 2313 +2314 1 2314 +2315 1 2315 +2316 1 2316 +2317 1 2317 +2318 1 2318 +2319 1 2319 +2320 1 2320 +2321 1 2321 +2322 1 2322 +2323 1 2323 +2324 1 2324 +2325 1 2325 +2326 1 2326 +2327 1 2327 +2328 1 2328 +2329 1 2329 +2330 1 2330 +2331 1 2331 +2332 1 2332 +2333 1 2333 +2334 1 2334 +2335 1 2335 +2336 1 2336 +2337 1 2337 +2338 1 2338 +2339 1 2339 +2340 1 2340 +2341 1 2341 +2342 1 2342 +2343 1 2343 +2344 1 2344 +2345 1 2345 +2346 1 2346 +2347 1 2347 +2348 1 2348 +2349 1 2349 +2350 1 2350 +2351 1 2351 +2352 1 2352 +2353 1 2353 +2354 1 2354 +2355 1 2355 +2356 1 2356 +2357 1 2357 +2358 1 2358 +2359 1 2359 +2360 1 2360 +2361 1 2361 +2362 1 2362 +2363 1 2363 +2364 1 2364 +2365 1 2365 +2366 1 2366 +2367 1 2367 +2368 1 2368 +2369 1 2369 +2370 1 2370 +2371 1 2371 +2372 1 2372 +2373 1 2373 +2374 1 2374 +2375 1 2375 +2376 1 2376 +2377 1 2377 +2378 1 2378 +2379 1 2379 +2380 1 2380 +2381 1 2381 +2382 1 2382 +2383 1 2383 +2384 1 2384 +2385 1 2385 +2386 1 2386 +2387 1 2387 +2388 1 2388 +2389 1 2389 +2390 1 2390 +2391 1 2391 +2392 1 2392 +2393 1 2393 +2394 1 2394 +2395 1 2395 +2396 1 2396 +2397 1 2397 +2398 1 2398 +2399 1 2399 +2400 1 2400 +2401 1 2401 +2402 1 2402 +2403 1 2403 +2404 1 2404 +2405 1 2405 +2406 1 2406 +2407 1 2407 +2408 1 2408 +2409 1 2409 +2410 1 2410 +2411 1 2411 +2412 1 2412 +2413 1 2413 +2414 1 2414 +2415 1 2415 +2416 1 2416 +2417 1 2417 +2418 1 2418 +2419 1 2419 +2420 1 2420 +2421 1 2421 +2422 1 2422 +2423 1 2423 +2424 1 2424 +2425 1 2425 +2426 1 2426 +2427 1 2427 +2428 1 2428 +2429 1 2429 +2430 1 2430 +2431 1 2431 +2432 1 2432 +2433 1 2433 +2434 1 2434 +2435 1 2435 +2436 1 2436 +2437 1 2437 +2438 1 2438 +2439 1 2439 +2440 1 2440 +2441 1 2441 +2442 1 2442 +2443 1 2443 +2444 1 2444 +2445 1 2445 +2446 1 2446 +2447 1 2447 +2448 1 2448 +2449 1 2449 +2450 1 2450 +2451 1 2451 +2452 1 2452 +2453 1 2453 +2454 1 2454 +2455 1 2455 +2456 1 2456 +2457 1 2457 +2458 1 2458 +2459 1 2459 +2460 1 2460 +2461 1 2461 +2462 1 2462 +2463 1 2463 +2464 1 2464 +2465 1 2465 +2466 1 2466 +2467 1 2467 +2468 1 2468 +2469 1 2469 +2470 1 2470 +2471 1 2471 +2472 1 2472 +2473 1 2473 +2474 1 2474 +2475 1 2475 +2476 1 2476 +2477 1 2477 +2478 1 2478 +2479 1 2479 +2480 1 2480 +2481 1 2481 +2482 1 2482 +2483 1 2483 +2484 1 2484 +2485 1 2485 +2486 1 2486 +2487 1 2487 +2488 1 2488 +2489 1 2489 +2490 1 2490 +2491 1 2491 +2492 1 2492 +2493 1 2493 +2494 1 2494 +2495 1 2495 +2496 1 2496 +2497 1 2497 +2498 1 2498 +2499 1 2499 +2500 1 2500 +2501 1 2501 +2502 1 2502 +2503 1 2503 +2504 1 2504 +2505 1 2505 +2506 1 2506 +2507 1 2507 +2508 1 2508 +\. + + +-- +-- TOC entry 5078 (class 0 OID 0) +-- Dependencies: 248 +-- Name: datasetsresults_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('datasetsresults_bridgeid_seq', 2508, true); + + +-- +-- TOC entry 4908 (class 0 OID 70859) +-- Dependencies: 371 +-- Data for Name: derivationequations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY derivationequations (derivationequationid, derivationequation) FROM stdin; +\. + + +-- +-- TOC entry 5079 (class 0 OID 0) +-- Dependencies: 370 +-- Name: derivationequations_derivationequationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('derivationequations_derivationequationid_seq', 1, false); + + +-- +-- TOC entry 4899 (class 0 OID 70816) +-- Dependencies: 362 +-- Data for Name: directives; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY directives (directiveid, directivetypecv, directivedescription) FROM stdin; +\. + + +-- +-- TOC entry 5080 (class 0 OID 0) +-- Dependencies: 361 +-- Name: directives_directiveid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('directives_directiveid_seq', 1, false); + + +-- +-- TOC entry 4855 (class 0 OID 70596) +-- Dependencies: 318 +-- Data for Name: equipment; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY equipment (equipmentid, equipmentcode, equipmentname, equipmenttypecv, equipmentmodelid, equipmentserialnumber, equipmentownerid, equipmentvendorid, equipmentpurchasedate, equipmentpurchaseordernumber, equipmentdescription, equipmentdocumentationlink) FROM stdin; +\. + + +-- +-- TOC entry 5081 (class 0 OID 0) +-- Dependencies: 317 +-- Name: equipment_equipmentid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('equipment_equipmentid_seq', 1, false); + + +-- +-- TOC entry 4754 (class 0 OID 70016) +-- Dependencies: 217 +-- Data for Name: equipmentannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY equipmentannotations (bridgeid, equipmentid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5082 (class 0 OID 0) +-- Dependencies: 216 +-- Name: equipmentannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('equipmentannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4857 (class 0 OID 70607) +-- Dependencies: 320 +-- Data for Name: equipmentmodels; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY equipmentmodels (equipmentmodelid, modelmanufacturerid, modelpartnumber, modelname, modeldescription, isinstrument, modelspecificationsfilelink, modellink) FROM stdin; +\. + + +-- +-- TOC entry 5083 (class 0 OID 0) +-- Dependencies: 319 +-- Name: equipmentmodels_equipmentmodelid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('equipmentmodels_equipmentmodelid_seq', 1, false); + + +-- +-- TOC entry 4859 (class 0 OID 70618) +-- Dependencies: 322 +-- Data for Name: equipmentused; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY equipmentused (bridgeid, actionid, equipmentid) FROM stdin; +\. + + +-- +-- TOC entry 5084 (class 0 OID 0) +-- Dependencies: 321 +-- Name: equipmentused_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('equipmentused_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4870 (class 0 OID 70669) +-- Dependencies: 333 +-- Data for Name: extensionproperties; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY extensionproperties (propertyid, propertyname, propertydescription, propertydatatypecv, propertyunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5085 (class 0 OID 0) +-- Dependencies: 332 +-- Name: extensionproperties_propertyid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('extensionproperties_propertyid_seq', 1, false); + + +-- +-- TOC entry 4881 (class 0 OID 70721) +-- Dependencies: 344 +-- Data for Name: externalidentifiersystems; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY externalidentifiersystems (externalidentifiersystemid, externalidentifiersystemname, identifiersystemorganizationid, externalidentifiersystemdescription, externalidentifiersystemurl) FROM stdin; +1 Digital Object Identifier 2 Digital Object Identifier http://dx.doi.org/ +\. + + +-- +-- TOC entry 4788 (class 0 OID 70164) +-- Dependencies: 251 +-- Data for Name: featureactions; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY featureactions (featureactionid, samplingfeatureid, actionid) FROM stdin; +1 1 336 +2 2 337 +3 3 338 +4 4 339 +5 5 340 +6 6 341 +7 7 342 +8 8 343 +9 9 344 +10 10 345 +11 11 346 +12 12 347 +13 13 348 +14 14 349 +15 15 350 +16 16 351 +17 17 352 +18 18 353 +19 19 354 +20 20 355 +21 21 356 +22 22 357 +23 23 358 +24 24 359 +25 25 360 +26 26 361 +27 27 362 +28 28 363 +29 29 364 +30 30 365 +31 31 366 +32 32 367 +33 33 368 +34 34 369 +35 35 370 +36 36 372 +37 37 373 +38 38 374 +39 39 375 +40 40 376 +41 41 377 +42 42 378 +43 43 379 +44 44 380 +45 45 381 +46 46 382 +47 47 383 +48 48 384 +49 49 385 +50 50 386 +51 51 387 +52 52 388 +53 53 389 +54 54 390 +55 55 391 +56 56 392 +57 74 411 +58 75 412 +59 57 393 +60 58 394 +61 59 396 +62 60 397 +63 61 398 +64 62 399 +65 63 400 +66 64 401 +67 65 402 +68 66 403 +69 67 404 +70 68 405 +71 69 406 +72 70 407 +73 71 408 +74 72 409 +75 73 410 +76 76 413 +77 77 415 +78 78 416 +79 79 417 +80 80 418 +81 81 419 +82 82 420 +83 83 421 +84 84 422 +85 85 423 +86 86 424 +87 87 425 +88 88 426 +89 89 427 +90 90 428 +91 91 429 +92 92 430 +93 93 431 +94 94 432 +95 95 433 +96 96 434 +97 97 435 +98 98 436 +99 33125 336 +100 33126 337 +101 33127 338 +102 33128 339 +103 33129 340 +104 33130 341 +105 33131 342 +106 33132 343 +107 33133 344 +108 33134 345 +109 33135 346 +110 33136 347 +111 33137 348 +112 33138 349 +113 33139 350 +114 33140 351 +115 33141 352 +116 33142 353 +117 33143 354 +118 33144 355 +119 33145 356 +120 33146 357 +121 33147 358 +122 33148 359 +123 33149 360 +124 33150 361 +125 33151 362 +126 33152 363 +127 33153 364 +128 33154 365 +129 33155 366 +130 33156 367 +131 33157 368 +132 33158 369 +133 33159 370 +134 33160 372 +135 33161 373 +136 33162 374 +137 33163 375 +138 33164 376 +139 33165 377 +140 33166 378 +141 33167 379 +142 33168 380 +143 33169 381 +144 33170 382 +145 33171 383 +146 33172 384 +147 33173 385 +148 33174 387 +149 33175 388 +150 33176 389 +151 33177 390 +152 33178 391 +153 33179 392 +154 33197 411 +155 33198 412 +156 33180 393 +157 33181 394 +158 33182 396 +159 33183 397 +160 33184 398 +161 33185 399 +162 33186 400 +163 33187 401 +164 33188 402 +165 33189 403 +166 33190 404 +167 33191 405 +168 33192 406 +169 33193 407 +170 33194 408 +171 33195 409 +172 33196 410 +173 33199 413 +174 33200 415 +175 33201 416 +176 33202 417 +177 33203 418 +178 33204 419 +179 33205 420 +180 33206 421 +181 33207 422 +182 33208 423 +183 33209 424 +184 33210 425 +185 33211 426 +186 33212 427 +187 33213 428 +188 33214 429 +189 33215 430 +190 33216 431 +191 33217 432 +192 33218 433 +193 33219 434 +194 33220 435 +195 33221 436 +196 33222 336 +197 33223 337 +198 33224 338 +199 33225 339 +200 33226 340 +201 33227 341 +202 33228 342 +203 33229 343 +204 33230 344 +205 33231 345 +206 33232 346 +207 33233 347 +208 33234 348 +209 33235 349 +210 33236 350 +211 33237 351 +212 33238 352 +213 33239 353 +214 33240 354 +215 33241 355 +216 33242 356 +217 33243 357 +218 33244 358 +219 33245 359 +220 33246 360 +221 33247 361 +222 33248 362 +223 33249 363 +224 33250 364 +225 33251 365 +226 33252 366 +227 33253 367 +228 33254 368 +229 33255 369 +230 33256 370 +231 33257 371 +232 33258 372 +233 33259 373 +234 33260 374 +235 33261 375 +236 33262 376 +237 33263 377 +238 33264 378 +239 33265 379 +240 33266 380 +241 33267 381 +242 33268 382 +243 33269 383 +244 33270 384 +245 33271 385 +246 33272 386 +247 33273 387 +248 33274 388 +249 33275 389 +250 33276 390 +251 33277 391 +252 33278 392 +253 33297 412 +254 33279 393 +255 33280 394 +256 33281 395 +257 33282 396 +258 33283 397 +259 33284 398 +260 33285 399 +261 33286 400 +262 33287 401 +263 33288 402 +264 33289 403 +265 33290 404 +266 33291 405 +267 33292 406 +268 33293 407 +269 33294 408 +270 33295 409 +271 33296 410 +272 33298 413 +273 33299 414 +274 33300 415 +275 33301 416 +276 33302 417 +277 33303 418 +278 33304 419 +279 33305 420 +280 33306 421 +281 33307 422 +282 33308 423 +283 33309 424 +284 33310 425 +285 33311 426 +286 33312 427 +287 33313 428 +288 33314 429 +289 33315 430 +290 33316 431 +291 33317 432 +292 33318 433 +293 33319 434 +294 33320 435 +295 33321 436 +296 33322 336 +297 33323 337 +298 33324 338 +299 33325 339 +300 33326 340 +301 33327 341 +302 33328 342 +303 33329 343 +304 33330 344 +305 33331 345 +306 33332 346 +307 33333 347 +308 33334 348 +309 33335 349 +310 33336 350 +311 33337 351 +312 33338 352 +313 33339 353 +314 33340 354 +315 33341 355 +316 33342 356 +317 33343 357 +318 33344 358 +319 33345 359 +320 33346 360 +321 33347 361 +322 33348 362 +323 33349 363 +324 33350 364 +325 33351 365 +326 33352 366 +327 33353 367 +328 33354 368 +329 33355 369 +330 33356 370 +331 33357 371 +332 33358 372 +333 33359 373 +334 33360 374 +335 33361 375 +336 33362 376 +337 33363 377 +338 33364 378 +339 33365 379 +340 33366 380 +341 33367 381 +342 33368 382 +343 33369 383 +344 33370 384 +345 33371 385 +346 33372 386 +347 33373 387 +348 33374 388 +349 33375 389 +350 33376 390 +351 33377 391 +352 33378 392 +353 33379 393 +354 33380 394 +355 33381 395 +356 33382 396 +357 33383 397 +358 33384 398 +359 33385 399 +360 33386 400 +361 33387 401 +362 33388 402 +363 33389 403 +364 33390 404 +365 33391 405 +366 33392 406 +367 33393 407 +368 33394 408 +369 33395 409 +370 33396 410 +371 33397 413 +372 33398 414 +373 33399 415 +374 33400 416 +375 33401 417 +376 33402 418 +377 33403 419 +378 33404 420 +379 33405 421 +380 33406 422 +381 33407 423 +382 33408 424 +383 33409 425 +384 33410 426 +385 33411 427 +386 33412 428 +387 33413 429 +388 33414 430 +389 33415 431 +390 33416 432 +391 33417 433 +392 33418 434 +393 33419 435 +394 33420 436 +\. + + +-- +-- TOC entry 5086 (class 0 OID 0) +-- Dependencies: 250 +-- Name: featureactions_featureactionid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('featureactions_featureactionid_seq', 394, true); + + +-- +-- TOC entry 4861 (class 0 OID 70626) +-- Dependencies: 324 +-- Data for Name: instrumentoutputvariables; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY instrumentoutputvariables (instrumentoutputvariableid, modelid, variableid, instrumentmethodid, instrumentresolution, instrumentaccuracy, instrumentrawoutputunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5087 (class 0 OID 0) +-- Dependencies: 323 +-- Name: instrumentoutputvariables_instrumentoutputvariableid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('instrumentoutputvariables_instrumentoutputvariableid_seq', 1, false); + + +-- +-- TOC entry 4862 (class 0 OID 70635) +-- Dependencies: 325 +-- Data for Name: maintenanceactions; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY maintenanceactions (actionid, isfactoryservice, maintenancecode, maintenancereason) FROM stdin; +\. + + +-- +-- TOC entry 4923 (class 0 OID 70923) +-- Dependencies: 386 +-- Data for Name: measurementresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY measurementresults (resultid, xlocation, xlocationunitsid, ylocation, ylocationunitsid, zlocation, zlocationunitsid, spatialreferenceid, censorcodecv, qualitycodecv, aggregationstatisticcv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +1 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +3 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +4 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +5 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +6 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +7 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +8 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +9 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +10 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +11 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +12 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +13 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +14 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +15 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +16 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +17 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +18 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +19 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +20 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +21 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +22 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +23 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +24 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +25 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +26 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +27 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +28 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +29 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +30 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +31 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +32 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +33 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +34 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +35 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +36 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +37 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +38 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +39 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +40 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +41 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +42 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +43 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +44 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +45 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +46 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +47 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +48 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +49 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +50 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +51 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +52 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +53 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +54 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +55 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +56 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +57 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +58 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +59 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +60 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +61 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +62 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +63 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +64 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +65 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +66 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +67 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +68 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +69 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +70 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +71 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +72 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +73 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +74 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +75 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +76 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +77 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +78 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +79 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +80 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +81 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +82 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +83 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +84 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +85 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +86 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +87 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +88 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +89 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +90 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +91 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +92 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +93 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +94 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +95 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +96 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +97 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +98 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +99 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +100 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +101 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +102 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +103 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +104 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +105 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +106 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +107 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +108 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +109 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +110 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +111 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +112 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +113 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +114 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +115 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +116 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +117 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +118 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +119 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +120 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +121 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +122 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +123 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +124 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +125 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +126 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +127 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +128 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +129 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +130 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +131 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +132 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +133 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +134 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +135 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +136 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +137 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +138 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +139 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +140 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +141 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +142 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +143 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +144 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +145 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +146 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +147 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +148 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +149 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +150 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +151 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +152 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +153 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +154 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +155 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +156 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +157 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +158 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +159 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +160 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +161 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +162 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +163 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +164 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +165 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +166 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +167 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +168 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +169 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +170 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +171 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +172 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +173 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +174 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +175 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +176 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +177 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +178 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +179 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +180 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +181 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +182 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +183 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +184 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +185 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +186 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +187 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +188 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +189 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +190 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +191 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +192 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +193 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +194 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +195 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +196 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +197 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +198 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +199 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +200 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +201 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +202 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +203 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +204 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +205 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +206 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +207 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +208 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +209 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +210 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +211 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +212 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +213 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +214 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +215 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +216 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +217 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +218 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +219 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +220 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +221 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +222 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +223 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +224 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +225 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +226 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +227 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +228 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +229 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +230 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +231 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +232 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +233 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +234 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +235 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +236 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +237 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +238 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +239 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +240 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +241 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +242 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +243 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +244 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +245 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +246 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +247 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +248 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +249 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +250 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +251 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +252 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +253 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +254 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +255 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +256 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +257 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +258 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +259 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +260 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +261 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +262 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +263 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +264 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +265 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +266 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +267 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +268 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +269 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +270 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +271 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +272 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +273 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +274 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +275 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +276 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +277 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +278 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +279 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +280 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +281 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +282 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +283 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +284 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +285 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +286 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +287 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +288 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +289 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +290 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +291 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +292 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +293 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +294 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +295 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +296 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +297 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +298 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +299 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +300 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +301 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +302 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +303 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +304 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +305 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +306 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +307 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +308 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +309 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +310 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +311 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +312 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +313 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +314 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +315 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +316 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +317 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +318 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +319 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +320 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +321 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +322 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +323 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +324 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +325 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +326 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +327 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +328 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +329 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +330 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +331 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +332 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +333 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +334 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +335 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +336 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +337 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +338 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +339 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +340 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +341 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +342 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +343 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +344 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +345 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +346 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +347 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +348 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +349 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +350 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +351 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +352 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +353 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +354 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +355 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +356 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +357 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +358 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +359 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +360 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +361 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +362 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +363 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +364 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +365 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +366 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +367 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +368 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +369 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +370 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +371 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +372 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +373 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +374 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +375 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +376 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +377 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +378 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +379 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +380 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +381 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +382 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +383 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +384 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +385 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +386 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +387 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +388 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +389 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +390 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +391 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +392 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +393 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +394 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +395 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +396 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +397 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +398 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +399 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +400 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +401 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +402 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +403 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +404 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +405 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +406 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +407 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +408 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +409 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +410 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +411 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +412 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +413 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +414 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +415 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +416 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +417 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +418 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +419 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +420 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +421 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +422 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +423 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +424 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +425 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +426 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +427 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +428 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +429 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +430 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +431 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +432 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +433 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +434 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +435 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +436 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +437 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +438 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +439 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +440 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +441 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +442 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +443 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +444 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +445 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +446 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +447 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +448 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +449 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +450 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +451 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +452 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +453 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +454 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +455 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +456 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +457 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +458 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +459 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +460 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +461 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +462 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +463 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +464 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +465 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +466 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +467 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +468 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +469 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +470 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +471 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +472 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +473 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +474 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +475 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +476 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +477 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +478 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +479 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +480 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +481 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +482 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +483 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +484 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +485 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +486 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +487 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +488 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +489 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +490 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +491 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +492 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +493 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +494 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +495 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +496 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +497 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +498 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +499 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +500 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +501 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +502 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +503 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +504 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +505 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +506 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +507 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +508 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +509 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +510 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +511 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +512 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +513 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +514 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +515 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +516 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +517 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +518 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +519 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +520 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +521 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +522 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +523 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +524 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +525 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +526 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +527 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +528 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +529 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +530 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +531 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +532 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +533 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +534 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +535 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +536 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +537 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +538 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +539 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +540 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +541 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +542 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +543 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +544 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +545 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +546 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +547 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +548 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +549 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +550 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +551 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +552 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +553 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +554 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +555 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +556 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +557 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +558 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +559 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +560 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +561 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +562 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +563 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +564 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +565 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +566 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +567 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +568 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +569 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +570 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +571 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +572 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +573 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +574 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +575 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +576 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +577 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +578 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +579 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +580 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +581 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +582 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +583 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +584 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +585 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +586 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +587 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +588 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +589 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +590 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +591 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +592 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +593 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +594 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +595 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +596 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +597 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +598 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +599 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +600 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +601 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +602 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +603 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +604 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +605 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +606 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +607 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +608 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +609 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +610 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +611 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +612 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +613 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +614 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +615 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +616 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +617 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +618 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +619 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +620 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +621 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +622 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +623 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +624 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +625 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +626 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +627 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +628 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +629 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +630 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +631 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +632 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +633 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +634 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +635 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +636 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +637 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +638 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +639 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +640 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +641 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +642 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +643 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +644 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +645 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +646 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +647 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +648 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +649 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +650 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +651 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +652 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +653 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +654 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +655 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +656 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +657 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +658 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +659 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +660 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +661 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +662 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +663 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +664 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +665 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +666 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +667 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +668 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +669 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +670 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +671 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +672 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +673 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +674 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +675 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +676 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +677 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +678 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +679 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +680 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +681 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +682 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +683 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +684 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +685 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +686 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +687 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +688 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +689 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +690 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +691 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +692 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +693 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +694 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +695 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +696 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +697 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +698 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +699 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +700 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +701 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +702 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +703 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +704 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +705 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +706 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +707 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +708 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +709 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +710 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +711 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +712 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +713 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +714 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +715 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +716 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +717 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +718 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +719 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +720 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +721 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +722 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +723 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +724 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +725 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +726 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +727 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +728 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +729 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +730 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +731 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +732 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +733 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +734 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +735 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +736 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +737 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +738 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +739 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +740 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +741 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +742 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +743 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +744 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +745 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +746 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +747 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +748 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +749 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +750 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +751 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +752 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +753 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +754 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +755 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +756 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +757 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +758 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +759 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +760 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +761 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +762 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +763 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +764 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +765 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +766 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +767 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +768 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +769 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +770 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +771 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +772 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +773 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +774 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +775 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +776 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +777 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +778 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +779 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +780 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +781 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +782 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +783 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +784 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +785 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +786 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +787 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +788 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +789 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +790 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +791 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +792 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +793 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +794 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +795 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +796 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +797 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +798 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +799 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +800 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +801 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +802 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +803 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +804 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +805 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +806 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +807 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +808 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +809 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +810 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +811 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +812 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +813 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +814 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +815 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +816 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +817 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +818 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +819 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +820 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +821 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +822 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +823 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +824 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +825 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +826 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +827 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +828 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +829 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +830 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +831 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +832 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +833 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +834 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +835 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +836 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +837 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +838 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +839 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +840 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +841 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +842 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +843 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +844 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +845 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +846 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +847 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +848 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +849 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +850 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +851 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +852 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +853 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +854 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +855 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +856 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +857 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +858 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +859 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +860 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +861 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +862 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +863 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +864 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +865 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +866 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +867 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +868 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +869 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +870 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +871 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +872 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +873 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +874 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +875 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +876 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +877 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +878 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +879 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +880 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +881 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +882 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +883 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +884 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +885 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +886 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +887 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +888 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +889 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +890 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +891 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +892 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +893 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +894 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +895 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +896 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +897 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +898 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +899 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +900 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +901 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +902 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +903 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +904 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +905 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +906 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +907 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +908 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +909 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +910 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +911 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +912 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +913 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +914 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +915 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +916 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +917 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +918 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +919 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +920 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +921 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +922 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +923 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +924 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +925 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +926 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +927 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +928 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +929 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +930 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +931 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +932 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +933 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +934 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +935 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +936 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +937 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +938 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +939 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +940 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +941 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +942 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +943 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +944 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +945 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +946 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +947 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +948 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +949 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +950 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +951 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +952 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +953 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +954 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +955 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +956 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +957 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +958 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +959 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +960 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +961 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +962 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +963 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +964 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +965 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +966 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +967 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +968 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +969 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +970 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +971 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +972 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +973 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +974 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +975 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +976 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +977 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +978 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +979 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +980 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +981 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +982 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +983 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +984 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +985 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +986 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +987 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +988 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +989 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +990 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +991 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +992 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +993 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +994 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +995 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +996 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +997 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +998 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +999 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1000 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1001 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1002 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1003 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1004 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1005 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1006 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1007 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1008 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1009 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1010 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1011 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1012 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1013 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1014 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1015 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1016 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1017 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1018 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1019 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1020 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1021 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1022 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1023 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1024 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1025 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1026 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1027 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1028 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1029 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1030 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1031 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1032 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1033 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1034 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1035 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1036 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1037 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1038 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1039 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1040 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1041 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1042 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1043 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1044 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1045 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1046 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1047 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1048 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1049 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1050 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1051 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1052 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1053 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1054 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1055 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1056 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1057 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1058 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1059 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1060 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1061 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1062 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1063 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1064 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1065 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1066 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1067 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1068 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1069 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1070 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1071 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1072 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1073 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1074 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1075 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1076 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1077 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1078 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1079 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1080 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1081 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1082 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1083 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1084 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1085 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1086 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1087 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1088 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1089 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1090 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1091 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1092 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1093 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1094 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1095 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1096 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1097 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1098 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1099 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1100 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1101 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1102 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1103 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1104 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1105 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1106 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1107 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1108 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1109 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1110 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1111 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1112 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1113 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1114 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1115 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1116 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1117 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1118 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1119 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1120 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1121 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1122 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1123 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1124 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1125 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1126 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1127 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1128 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1129 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1130 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1131 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1132 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1133 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1134 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1135 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1136 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1137 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1138 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1139 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1140 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1141 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1142 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1143 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1144 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1145 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1146 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1147 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1148 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1149 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1150 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1151 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1152 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1153 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1154 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1155 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1156 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1157 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1158 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1159 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1160 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1161 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1162 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1163 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1164 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1165 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1166 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1167 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1168 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1169 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1170 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1171 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1172 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1173 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1174 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1175 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1176 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1177 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1178 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1179 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1180 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1181 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1182 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1183 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1184 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1185 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1186 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1187 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1188 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1189 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1190 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1191 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1192 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1193 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1194 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1195 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1196 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1197 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1198 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1199 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1200 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1201 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1202 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1203 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1204 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1205 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1206 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1207 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1208 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1209 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1210 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1211 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1212 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1213 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1214 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1215 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1216 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1217 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1218 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1219 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1220 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1221 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1222 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1223 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1224 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1225 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1226 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1227 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1228 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1229 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1230 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1231 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1232 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1233 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1234 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1235 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1236 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1237 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1238 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1239 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1240 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1241 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1242 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1243 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1244 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1245 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1246 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1247 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1248 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1249 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1250 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1251 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1252 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1253 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1254 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1255 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1256 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1257 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1258 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1259 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1260 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1261 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1262 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1263 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1264 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1265 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1266 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1267 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1268 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1269 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1270 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1271 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1272 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1273 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1274 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1275 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1276 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1277 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1278 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1279 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1280 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1281 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1282 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1283 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1284 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1285 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1286 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1287 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1288 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1289 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1290 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1291 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1292 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1293 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1294 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1295 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1296 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1297 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1298 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1299 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1300 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1301 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1302 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1303 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1304 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1305 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1306 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1307 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1308 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1309 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1310 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1311 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1312 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1313 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1314 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1315 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1316 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1317 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1318 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1319 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1320 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1321 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1322 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1323 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1324 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1325 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1326 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1327 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1328 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1329 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1330 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1331 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1332 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1333 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1334 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1335 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1336 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1337 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1338 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1339 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1340 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1341 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1342 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1343 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1344 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1345 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1346 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1347 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1348 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1349 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1350 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1351 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1352 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1353 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1354 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1355 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1356 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1357 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1358 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1359 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1360 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1361 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1362 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1363 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1364 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1365 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1366 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1367 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1368 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1369 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1370 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1371 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1372 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1373 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1374 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1375 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1376 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1377 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1378 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1379 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1380 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1381 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1382 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1383 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1384 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1385 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1386 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1387 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1388 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1389 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1390 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1391 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1392 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1393 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1394 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1395 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1396 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1397 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1398 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1399 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1400 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1401 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1402 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1403 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1404 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1405 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1406 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1407 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1408 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1409 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1410 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1411 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1412 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1413 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1414 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1415 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1416 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1417 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1418 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1419 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1420 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1421 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1422 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1423 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1424 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1425 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1426 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1427 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1428 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1429 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1430 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1431 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1432 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1433 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1434 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1435 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1436 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1437 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1438 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1439 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1440 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1441 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1442 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1443 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1444 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1445 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1446 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1447 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1448 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1449 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1450 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1451 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1452 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1453 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1454 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1455 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1456 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1457 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1458 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1459 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1460 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1461 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1462 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1463 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1464 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1465 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1466 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1467 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1468 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1469 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1470 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1471 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1472 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1473 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1474 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1475 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1476 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1477 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1478 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1479 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1480 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1481 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1482 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1483 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1484 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1485 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1486 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1487 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1488 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1489 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1490 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1491 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1492 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1493 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1494 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1495 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1496 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1497 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1498 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1499 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1500 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1501 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1502 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1503 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1504 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1505 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1506 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1507 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1508 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1509 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1510 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1511 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1512 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1513 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1514 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1515 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1516 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1517 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1518 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1519 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1520 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1521 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1522 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1523 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1524 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1525 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1526 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1527 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1528 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1529 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1530 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1531 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1532 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1533 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1534 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1535 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1536 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1537 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1538 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1539 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1540 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1541 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1542 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1543 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1544 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1545 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1546 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1547 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1548 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1549 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1550 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1551 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1552 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1553 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1554 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1555 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1556 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1557 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1558 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1559 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1560 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1561 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1562 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1563 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1564 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1565 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1566 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1567 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1568 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1569 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1570 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1571 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1572 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1573 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1574 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1575 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1576 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1577 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1578 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1579 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1580 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1581 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1582 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1583 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1584 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1585 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1586 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1587 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1588 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1589 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1590 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1591 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1592 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1593 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1594 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1595 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1596 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1597 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1598 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1599 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1600 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1601 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1602 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1603 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1604 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1605 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1606 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1607 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1608 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1609 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1610 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1611 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1612 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1613 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1614 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1615 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1616 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1617 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1618 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1619 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1620 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1621 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1622 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1623 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1624 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1625 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1626 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1627 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1628 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1629 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1630 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1631 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1632 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1633 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1634 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1635 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1636 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1637 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1638 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1639 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1640 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1641 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1642 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1643 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1644 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1645 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1646 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1647 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1648 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1649 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1650 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1651 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1652 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1653 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1654 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1655 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1656 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1657 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1658 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1659 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1660 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1661 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1662 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1663 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1664 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1665 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1666 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1667 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1668 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1669 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1670 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1671 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1672 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1673 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1674 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1675 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1676 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1677 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1678 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1679 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1680 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1681 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1682 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1683 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1684 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1685 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1686 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1687 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1688 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1689 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1690 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1691 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1692 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1693 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1694 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1695 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1696 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1697 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1698 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1699 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1700 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1701 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1702 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1703 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1704 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1705 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1706 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1707 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1708 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1709 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1710 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1711 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1712 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1713 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1714 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1715 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1716 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1717 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1718 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1719 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1720 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1721 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1722 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1723 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1724 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1725 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1726 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1727 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1728 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1729 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1730 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1731 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1732 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1733 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1734 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1735 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1736 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1737 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1738 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1739 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1740 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1741 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1742 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1743 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1744 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1745 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1746 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1747 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1748 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1749 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1750 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1751 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1752 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1753 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1754 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1755 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1756 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1757 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1758 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1759 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1760 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1761 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1762 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1763 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1764 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1765 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1766 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1767 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1768 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1769 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1770 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1771 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1772 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1773 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1774 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1775 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1776 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1777 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1778 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1779 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1780 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1781 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1782 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1783 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1784 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1785 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1786 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1787 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1788 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1789 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1790 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1791 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1792 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1793 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1794 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1795 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1796 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1797 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1798 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1799 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1800 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1801 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1802 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1803 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1804 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1805 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1806 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1807 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1808 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1809 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1810 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1811 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1812 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1813 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1814 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1815 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1816 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1817 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1818 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1819 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1820 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1821 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1822 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1823 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1824 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1825 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1826 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1827 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1828 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1829 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1830 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1831 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1832 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1833 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1834 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1835 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1836 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1837 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1838 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1839 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1840 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1841 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1842 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1843 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1844 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1845 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1846 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1847 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1848 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1849 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1850 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1851 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1852 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1853 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1854 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1855 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1856 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1857 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1858 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1859 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1860 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1861 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1862 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1863 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1864 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1865 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1866 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1867 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1868 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1869 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1870 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1871 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1872 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1873 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1874 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1875 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1876 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1877 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1878 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1879 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1880 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1881 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1882 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1883 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1884 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1885 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1886 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1887 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1888 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1889 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1890 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1891 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1892 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1893 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1894 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1895 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1896 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1897 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1898 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1899 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1900 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1901 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1902 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1903 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1904 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1905 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1906 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1907 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1908 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1909 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1910 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1911 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1912 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1913 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1914 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1915 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1916 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1917 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1918 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1919 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1920 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1921 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1922 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1923 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1924 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1925 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1926 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1927 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1928 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1929 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1930 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1931 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1932 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1933 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1934 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1935 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1936 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1937 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1938 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1939 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1940 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1941 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1942 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1943 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1944 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1945 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1946 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1947 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1948 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1949 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1950 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1951 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1952 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1953 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1954 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1955 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1956 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1957 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1958 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1959 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1960 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1961 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1962 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1963 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1964 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1965 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1966 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1967 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1968 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1969 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1970 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1971 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1972 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1973 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1974 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1975 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1976 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1977 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1978 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1979 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1980 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1981 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1982 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1983 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1984 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1985 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1986 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1987 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1988 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1989 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1990 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1991 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1992 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1993 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1994 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1995 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1996 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1997 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1998 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +1999 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2000 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2001 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2002 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2003 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2004 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2005 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2006 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2007 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2008 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2009 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2010 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2011 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2012 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2013 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2014 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2015 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2016 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2017 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2018 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2019 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2020 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2021 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2022 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2023 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2024 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2025 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2026 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2027 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2028 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2029 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2030 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2031 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2032 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2033 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2034 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2035 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2036 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2037 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2038 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2039 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2040 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2041 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2042 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2043 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2044 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2045 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2046 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2047 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2048 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2049 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2050 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2051 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2052 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2053 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2054 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2055 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2056 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2057 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2058 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2059 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2060 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2061 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2062 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2063 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2064 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2065 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2066 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2067 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2068 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2069 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2070 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2071 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2072 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2073 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2074 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2075 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2076 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2077 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2078 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2079 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2080 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2081 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2082 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2083 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2084 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2085 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2086 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2087 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2088 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2089 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2090 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2091 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2092 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2093 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2094 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2095 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2096 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2097 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2098 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2099 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2100 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2101 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2102 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2103 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2104 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2105 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2106 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2107 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2108 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2109 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2110 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2111 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2112 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2113 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2114 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2115 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2116 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2117 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2118 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2119 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2120 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2121 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2122 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2123 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2124 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2125 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2126 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2127 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2128 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2129 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2130 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2131 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2132 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2133 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2134 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2135 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2136 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2137 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2138 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2139 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2140 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2141 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2142 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2143 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2144 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2145 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2146 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2147 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2148 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2149 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2150 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2151 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2152 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2153 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2154 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2155 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2156 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2157 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2158 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2159 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2160 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2161 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2162 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2163 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2164 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2165 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2166 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2167 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2168 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2169 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2170 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2171 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2172 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2173 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2174 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2175 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2176 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2177 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2178 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2179 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2180 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2181 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2182 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2183 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2184 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2185 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2186 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2187 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2188 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2189 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2190 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2191 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2192 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2193 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2194 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2195 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2196 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2197 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2198 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2199 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2200 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2201 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2202 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2203 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2204 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2205 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2206 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2207 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2208 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2209 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2210 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2211 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2212 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2213 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2214 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2215 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2216 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2217 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2218 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2219 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2220 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2221 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2222 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2223 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2224 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2225 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2226 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2227 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2228 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2229 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2230 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2231 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2232 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2233 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2234 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2235 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2236 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2237 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2238 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2239 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2240 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2241 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2242 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2243 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2244 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2245 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2246 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2247 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2248 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2249 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2250 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2251 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2252 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2253 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2254 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2255 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2256 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2257 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2258 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2259 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2260 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2261 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2262 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2263 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2264 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2265 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2266 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2267 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2268 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2269 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2270 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2271 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2272 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2273 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2274 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2275 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2276 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2277 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2278 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2279 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2280 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2281 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2282 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2283 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2284 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2285 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2286 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2287 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2288 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2289 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2290 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2291 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2292 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2293 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2294 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2295 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2296 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2297 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2298 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2299 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2300 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2301 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2302 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2303 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2304 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2305 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2306 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2307 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2308 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2309 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2310 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2311 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2312 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2313 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2314 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2315 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2316 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2317 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2318 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2319 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2320 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2321 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2322 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2323 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2324 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2325 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2326 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2327 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2328 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2329 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2330 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2331 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2332 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2333 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2334 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2335 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2336 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2337 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2338 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2339 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2340 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2341 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2342 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2343 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2344 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2345 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2346 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2347 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2348 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2349 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2350 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2351 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2352 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2353 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2354 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2355 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2356 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2357 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2358 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2359 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2360 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2361 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2362 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2363 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2364 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2365 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2366 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2367 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2368 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2369 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2370 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2371 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2372 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2373 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2374 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2375 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2376 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2377 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2378 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2379 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2380 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2381 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2382 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2383 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2384 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2385 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2386 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2387 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2388 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2389 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2390 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2391 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2392 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2393 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2394 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2395 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2396 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2397 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2398 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2399 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2400 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2401 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2402 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2403 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2404 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2405 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2406 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2407 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2408 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2409 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2410 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2411 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2412 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2413 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2414 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2415 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2416 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2417 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2418 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2419 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2420 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2421 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2422 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2423 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2424 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2425 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2426 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2427 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2428 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2429 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2430 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2431 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2432 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2433 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2434 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2435 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2436 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2437 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2438 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2439 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2440 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2441 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2442 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2443 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2444 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2445 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2446 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2447 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2448 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2449 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2450 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2451 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2452 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2453 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2454 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2455 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2456 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2457 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2458 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2459 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2460 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2461 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2462 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2463 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2464 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2465 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2466 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2467 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2468 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2469 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2470 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2471 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2472 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2473 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2474 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2475 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2476 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2477 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2478 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2479 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2480 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2481 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2482 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2483 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2484 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2485 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2486 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2487 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2488 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2489 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2490 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2491 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2492 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2493 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2494 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2495 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2496 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2497 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2498 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2499 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2500 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2501 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2502 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2503 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2504 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2505 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2506 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2507 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +2508 \N \N \N \N \N \N \N Not censored Good Sporadic 1 14 +\. + + +-- +-- TOC entry 4756 (class 0 OID 70024) +-- Dependencies: 219 +-- Data for Name: measurementresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY measurementresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5088 (class 0 OID 0) +-- Dependencies: 218 +-- Name: measurementresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('measurementresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4925 (class 0 OID 70933) +-- Dependencies: 388 +-- Data for Name: measurementresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY measurementresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset) FROM stdin; +1 1 11.2400000000000002 1983-01-17 00:00:00 -5 +2 2 2.89999999999999991 1983-01-17 00:00:00 -5 +3 3 1.10000000000000009 1983-01-17 00:00:00 -5 +4 4 0.30099999999999999 1983-01-17 00:00:00 -5 +5 5 0.110000000000000001 1983-01-17 00:00:00 -5 +6 6 274 1983-01-17 00:00:00 -5 +7 7 11.2400000000000002 1983-01-27 00:00:00 -5 +8 8 2.93999999999999995 1983-01-27 00:00:00 -5 +9 9 1.10000000000000009 1983-01-27 00:00:00 -5 +10 10 0.304999999999999993 1983-01-27 00:00:00 -5 +11 11 0.110000000000000001 1983-01-27 00:00:00 -5 +12 12 277 1983-01-27 00:00:00 -5 +13 13 11.7599999999999998 1983-02-08 00:00:00 -5 +14 14 3.16999999999999993 1983-02-08 00:00:00 -5 +15 15 1.19999999999999996 1983-02-08 00:00:00 -5 +16 16 0.314000000000000001 1983-02-08 00:00:00 -5 +17 17 0.119999999999999996 1983-02-08 00:00:00 -5 +18 18 262 1983-02-08 00:00:00 -5 +19 19 11.25 1983-02-21 00:00:00 -5 +20 20 3.31999999999999984 1983-02-21 00:00:00 -5 +21 21 1.39999999999999991 1983-02-21 00:00:00 -5 +22 22 0.343999999999999972 1983-02-21 00:00:00 -5 +23 23 0.140000000000000013 1983-02-21 00:00:00 -5 +24 24 246 1983-02-21 00:00:00 -5 +25 25 11.2799999999999994 1983-03-03 00:00:00 -5 +26 26 2.74000000000000021 1983-03-03 00:00:00 -5 +27 27 1.19999999999999996 1983-03-03 00:00:00 -5 +28 28 0.282999999999999974 1983-03-03 00:00:00 -5 +29 29 0.119999999999999996 1983-03-03 00:00:00 -5 +30 30 236 1983-03-03 00:00:00 -5 +31 31 179 1983-06-07 00:00:00 -5 +32 32 11.6699999999999999 1983-07-21 00:00:00 -5 +33 33 2.10000000000000009 1983-07-21 00:00:00 -5 +34 34 1.5 1983-07-21 00:00:00 -5 +35 35 0.209999999999999992 1983-07-21 00:00:00 -5 +36 36 0.149999999999999994 1983-07-21 00:00:00 -5 +37 37 140 1983-07-21 00:00:00 -5 +38 38 11.0399999999999991 1983-08-11 00:00:00 -5 +39 39 1.56000000000000005 1983-08-11 00:00:00 -5 +40 40 1.39999999999999991 1983-08-11 00:00:00 -5 +41 41 0.165000000000000008 1983-08-11 00:00:00 -5 +42 42 0.149999999999999994 1983-08-11 00:00:00 -5 +43 43 110 1983-08-11 00:00:00 -5 +44 44 10.6799999999999997 1983-09-10 00:00:00 -5 +45 45 1.18999999999999995 1983-09-10 00:00:00 -5 +46 46 1.19999999999999996 1983-09-10 00:00:00 -5 +47 47 0.130000000000000004 1983-09-10 00:00:00 -5 +48 48 0.130000000000000004 1983-09-10 00:00:00 -5 +49 49 100 1983-09-10 00:00:00 -5 +50 50 11.0800000000000001 1983-09-20 00:00:00 -5 +51 51 1.32000000000000006 1983-09-20 00:00:00 -5 +52 52 1.10000000000000009 1983-09-20 00:00:00 -5 +53 53 0.139000000000000012 1983-09-20 00:00:00 -5 +54 54 0.119999999999999996 1983-09-20 00:00:00 -5 +55 55 116 1983-09-20 00:00:00 -5 +56 56 11.5700000000000003 1983-09-30 00:00:00 -5 +57 57 1.59000000000000008 1983-09-30 00:00:00 -5 +58 58 1.19999999999999996 1983-09-30 00:00:00 -5 +59 59 0.161000000000000004 1983-09-30 00:00:00 -5 +60 60 0.119999999999999996 1983-09-30 00:00:00 -5 +61 61 134 1983-09-30 00:00:00 -5 +62 62 11.6699999999999999 1983-12-16 00:00:00 -5 +63 63 2.02000000000000002 1983-12-16 00:00:00 -5 +64 64 1.10000000000000009 1983-12-16 00:00:00 -5 +65 65 0.202000000000000013 1983-12-16 00:00:00 -5 +66 66 0.110000000000000001 1983-12-16 00:00:00 -5 +67 67 184 1983-12-16 00:00:00 -5 +68 68 10.5 1984-01-03 00:00:00 -5 +69 69 2.58999999999999986 1984-01-03 00:00:00 -5 +70 70 0.900000000000000022 1984-01-03 00:00:00 -5 +71 71 0.287999999999999978 1984-01-03 00:00:00 -5 +72 72 0.100000000000000006 1984-01-03 00:00:00 -5 +73 73 288 1984-01-03 00:00:00 -5 +74 74 9.57000000000000028 1984-01-19 00:00:00 -5 +75 75 2.04000000000000004 1984-01-19 00:00:00 -5 +76 76 0.800000000000000044 1984-01-19 00:00:00 -5 +77 77 0.248999999999999999 1984-01-19 00:00:00 -5 +78 78 0.100000000000000006 1984-01-19 00:00:00 -5 +79 79 249 1984-01-19 00:00:00 -5 +80 80 11.6699999999999999 1984-03-20 00:00:00 -5 +81 81 2.2200000000000002 1984-03-20 00:00:00 -5 +82 82 1 1984-03-20 00:00:00 -5 +83 83 0.222000000000000003 1984-03-20 00:00:00 -5 +84 84 0.100000000000000006 1984-03-20 00:00:00 -5 +85 85 222 1984-03-20 00:00:00 -5 +86 86 11.0800000000000001 1984-04-05 00:00:00 -5 +87 87 2 1984-04-05 00:00:00 -5 +88 88 1.10000000000000009 1984-04-05 00:00:00 -5 +89 89 0.209999999999999992 1984-04-05 00:00:00 -5 +90 90 0.119999999999999996 1984-04-05 00:00:00 -5 +91 91 175 1984-04-05 00:00:00 -5 +92 92 9.25999999999999979 1984-09-13 00:00:00 -5 +93 93 1.57000000000000006 1984-09-13 00:00:00 -5 +94 94 1.30000000000000004 1984-09-13 00:00:00 -5 +95 95 0.198000000000000009 1984-09-13 00:00:00 -5 +96 96 0.160000000000000003 1984-09-13 00:00:00 -5 +97 97 124 1984-09-13 00:00:00 -5 +98 98 9.41000000000000014 1984-09-27 00:00:00 -5 +99 99 1.62000000000000011 1984-09-27 00:00:00 -5 +100 100 1.19999999999999996 1984-09-27 00:00:00 -5 +101 101 0.201000000000000012 1984-09-27 00:00:00 -5 +102 102 0.149999999999999994 1984-09-27 00:00:00 -5 +103 103 134 1984-09-27 00:00:00 -5 +104 104 8.9399999999999995 1984-10-10 00:00:00 -5 +105 105 1.3899999999999999 1984-10-10 00:00:00 -5 +106 106 1.19999999999999996 1984-10-10 00:00:00 -5 +107 107 0.181999999999999995 1984-10-10 00:00:00 -5 +108 108 0.149999999999999994 1984-10-10 00:00:00 -5 +109 109 121 1984-10-10 00:00:00 -5 +110 110 9.41999999999999993 1984-10-25 00:00:00 -5 +111 111 1.62999999999999989 1984-10-25 00:00:00 -5 +112 112 1.10000000000000009 1984-10-25 00:00:00 -5 +113 113 0.202000000000000013 1984-10-25 00:00:00 -5 +114 114 0.130000000000000004 1984-10-25 00:00:00 -5 +115 115 155 1984-10-25 00:00:00 -5 +116 116 9.33000000000000007 1984-11-07 00:00:00 -5 +117 117 2.27000000000000002 1984-11-07 00:00:00 -5 +118 118 1 1984-11-07 00:00:00 -5 +119 119 0.282999999999999974 1984-11-07 00:00:00 -5 +120 120 0.130000000000000004 1984-11-07 00:00:00 -5 +121 121 218 1984-11-07 00:00:00 -5 +122 122 9.41999999999999993 1984-11-23 00:00:00 -5 +123 123 1.80000000000000004 1984-11-23 00:00:00 -5 +124 124 1.10000000000000009 1984-11-23 00:00:00 -5 +125 125 0.222000000000000003 1984-11-23 00:00:00 -5 +126 126 0.130000000000000004 1984-11-23 00:00:00 -5 +127 127 171 1984-11-23 00:00:00 -5 +128 128 9.63000000000000078 1984-12-05 00:00:00 -5 +129 129 1.78000000000000003 1984-12-05 00:00:00 -5 +130 130 1 1984-12-05 00:00:00 -5 +131 131 0.215999999999999998 1984-12-05 00:00:00 -5 +132 132 0.119999999999999996 1984-12-05 00:00:00 -5 +133 133 180 1984-12-05 00:00:00 -5 +134 134 9.03999999999999915 1984-12-18 00:00:00 -5 +135 135 3.2200000000000002 1984-12-18 00:00:00 -5 +136 136 0.900000000000000022 1984-12-18 00:00:00 -5 +137 137 0.41499999999999998 1984-12-18 00:00:00 -5 +138 138 0.119999999999999996 1984-12-18 00:00:00 -5 +139 139 346 1984-12-18 00:00:00 -5 +140 140 187 1985-02-13 00:00:00 -5 +141 141 9.03999999999999915 1985-03-06 00:00:00 -5 +142 142 1.98999999999999999 1985-03-06 00:00:00 -5 +143 143 0.900000000000000022 1985-03-06 00:00:00 -5 +144 144 0.257000000000000006 1985-03-06 00:00:00 -5 +145 145 0.119999999999999996 1985-03-06 00:00:00 -5 +146 146 214 1985-03-06 00:00:00 -5 +147 147 8.84999999999999964 1985-03-20 00:00:00 -5 +148 148 1.89999999999999991 1985-03-20 00:00:00 -5 +149 149 0.900000000000000022 1985-03-20 00:00:00 -5 +150 150 0.251000000000000001 1985-03-20 00:00:00 -5 +151 151 0.119999999999999996 1985-03-20 00:00:00 -5 +152 152 209 1985-03-20 00:00:00 -5 +153 153 9.33000000000000007 1985-04-03 00:00:00 -5 +154 154 2.29999999999999982 1985-04-03 00:00:00 -5 +155 155 1 1985-04-03 00:00:00 -5 +156 156 0.286999999999999977 1985-04-03 00:00:00 -5 +157 157 0.130000000000000004 1985-04-03 00:00:00 -5 +158 158 221 1985-04-03 00:00:00 -5 +159 159 9.15000000000000036 1985-04-17 00:00:00 -5 +160 160 2.20999999999999996 1985-04-17 00:00:00 -5 +161 161 1 1985-04-17 00:00:00 -5 +162 162 0.281999999999999973 1985-04-17 00:00:00 -5 +163 163 0.130000000000000004 1985-04-17 00:00:00 -5 +164 164 217 1985-04-17 00:00:00 -5 +165 165 9.41999999999999993 1985-05-02 00:00:00 -5 +166 166 2.60999999999999988 1985-05-02 00:00:00 -5 +167 167 1.10000000000000009 1985-05-02 00:00:00 -5 +168 168 0.32400000000000001 1985-05-02 00:00:00 -5 +169 169 0.130000000000000004 1985-05-02 00:00:00 -5 +170 170 249 1985-05-02 00:00:00 -5 +171 171 9.6899999999999995 1985-05-15 00:00:00 -5 +172 172 2.29000000000000004 1985-05-15 00:00:00 -5 +173 173 1.10000000000000009 1985-05-15 00:00:00 -5 +174 174 0.276000000000000023 1985-05-15 00:00:00 -5 +175 175 0.130000000000000004 1985-05-15 00:00:00 -5 +176 176 212 1985-05-15 00:00:00 -5 +177 177 10.4000000000000004 1985-05-29 00:00:00 -5 +178 178 1.92999999999999994 1985-05-29 00:00:00 -5 +179 179 1 1985-05-29 00:00:00 -5 +180 180 0.216999999999999998 1985-05-29 00:00:00 -5 +181 181 0.1095 1985-05-29 00:00:00 -5 +182 182 198 1985-05-29 00:00:00 -5 +183 183 10.0299999999999994 1985-06-12 00:00:00 -5 +184 184 2.10000000000000009 1985-06-12 00:00:00 -5 +185 185 1.10000000000000009 1985-06-12 00:00:00 -5 +186 186 0.243999999999999995 1985-06-12 00:00:00 -5 +187 187 0.1245 1985-06-12 00:00:00 -5 +188 188 196 1985-06-12 00:00:00 -5 +189 189 10.2599999999999998 1985-06-26 00:00:00 -5 +190 190 1.87999999999999989 1985-06-26 00:00:00 -5 +191 191 1.19999999999999996 1985-06-26 00:00:00 -5 +192 192 0.213999999999999996 1985-06-26 00:00:00 -5 +193 193 0.137899999999999995 1985-06-26 00:00:00 -5 +194 194 155 1985-06-26 00:00:00 -5 +195 195 10.1600000000000001 1985-07-10 00:00:00 -5 +196 196 1.67999999999999994 1985-07-10 00:00:00 -5 +197 197 1.19999999999999996 1985-07-10 00:00:00 -5 +198 198 0.193000000000000005 1985-07-10 00:00:00 -5 +199 199 0.132200000000000012 1985-07-10 00:00:00 -5 +200 200 146 1985-07-10 00:00:00 -5 +201 201 9.42999999999999972 1985-10-10 00:00:00 -5 +202 202 1.98999999999999999 1985-10-10 00:00:00 -5 +203 203 1.39999999999999991 1985-10-10 00:00:00 -5 +204 204 0.245999999999999996 1985-10-10 00:00:00 -5 +205 205 0.171800000000000008 1985-10-10 00:00:00 -5 +206 206 143.199999999999989 1985-10-10 00:00:00 -5 +207 207 9.90000000000000036 1985-10-30 00:00:00 -5 +208 208 2.85000000000000009 1985-10-30 00:00:00 -5 +209 209 1.10000000000000009 1985-10-30 00:00:00 -5 +210 210 0.336000000000000021 1985-10-30 00:00:00 -5 +211 211 0.126400000000000012 1985-10-30 00:00:00 -5 +212 212 266 1985-10-30 00:00:00 -5 +213 213 10.0199999999999996 1985-11-13 00:00:00 -5 +214 214 2.14000000000000012 1985-11-13 00:00:00 -5 +215 215 1.10000000000000009 1985-11-13 00:00:00 -5 +216 216 0.248999999999999999 1985-11-13 00:00:00 -5 +217 217 0.128000000000000003 1985-11-13 00:00:00 -5 +218 218 194.400000000000006 1985-11-13 00:00:00 -5 +219 219 192.599999999999994 1985-11-27 00:00:00 -5 +220 220 321.100000000000023 1985-12-12 00:00:00 -5 +221 221 9.59999999999999964 1985-12-26 00:00:00 -5 +222 222 2.74000000000000021 1985-12-26 00:00:00 -5 +223 223 1.10000000000000009 1985-12-26 00:00:00 -5 +224 224 0.333000000000000018 1985-12-26 00:00:00 -5 +225 225 0.134800000000000003 1985-12-26 00:00:00 -5 +226 226 247.199999999999989 1985-12-26 00:00:00 -5 +227 227 9.77999999999999936 1986-01-10 00:00:00 -5 +228 228 1.98999999999999999 1986-01-10 00:00:00 -5 +229 229 0.900000000000000022 1986-01-10 00:00:00 -5 +230 230 0.236999999999999988 1986-01-10 00:00:00 -5 +231 231 0.112199999999999994 1986-01-10 00:00:00 -5 +232 232 211.599999999999994 1986-01-10 00:00:00 -5 +233 233 9.5600000000000005 1986-01-30 00:00:00 -5 +234 234 3.50999999999999979 1986-01-30 00:00:00 -5 +235 235 1 1986-01-30 00:00:00 -5 +236 236 0.428999999999999992 1986-01-30 00:00:00 -5 +237 237 0.126700000000000007 1986-01-30 00:00:00 -5 +238 238 338.300000000000011 1986-01-30 00:00:00 -5 +239 239 9.58000000000000007 1986-02-14 00:00:00 -5 +240 240 3.00999999999999979 1986-02-14 00:00:00 -5 +241 241 1.10000000000000009 1986-02-14 00:00:00 -5 +242 242 0.365999999999999992 1986-02-14 00:00:00 -5 +243 243 0.131599999999999995 1986-02-14 00:00:00 -5 +244 244 278.399999999999977 1986-02-14 00:00:00 -5 +245 245 9.16999999999999993 1986-03-04 00:00:00 -5 +246 246 2.25999999999999979 1986-03-04 00:00:00 -5 +247 247 0.900000000000000022 1986-03-04 00:00:00 -5 +248 248 0.287999999999999978 1986-03-04 00:00:00 -5 +249 249 0.120200000000000001 1986-03-04 00:00:00 -5 +250 250 239.400000000000006 1986-03-04 00:00:00 -5 +251 251 9.39000000000000057 1986-03-21 00:00:00 -5 +252 252 2.14000000000000012 1986-03-21 00:00:00 -5 +253 253 1.10000000000000009 1986-03-21 00:00:00 -5 +254 254 0.266000000000000014 1986-03-21 00:00:00 -5 +255 255 0.130299999999999999 1986-03-21 00:00:00 -5 +256 256 204.099999999999994 1986-03-21 00:00:00 -5 +257 257 9.83000000000000007 1986-04-12 00:00:00 -5 +258 258 1.92999999999999994 1986-04-12 00:00:00 -5 +259 259 1 1986-04-12 00:00:00 -5 +260 260 0.229000000000000009 1986-04-12 00:00:00 -5 +261 261 0.116199999999999998 1986-04-12 00:00:00 -5 +262 262 196.900000000000006 1986-04-12 00:00:00 -5 +263 263 166 1986-04-28 00:00:00 -5 +264 264 133 1986-05-21 00:00:00 -5 +265 265 119 1986-06-17 00:00:00 -5 +266 266 123 1986-07-02 00:00:00 -5 +267 267 109 1986-08-20 00:00:00 -5 +268 268 111 1986-09-12 00:00:00 -5 +269 269 207 1986-10-21 00:00:00 -5 +270 270 187 1986-11-05 00:00:00 -5 +271 271 227 1986-11-19 00:00:00 -5 +272 272 1.10000000000000009 1987-06-05 00:00:00 -5 +273 273 0.130599999999999994 1987-06-05 00:00:00 -5 +274 274 1 1987-06-28 00:00:00 -5 +275 275 0.0926000000000000018 1987-06-28 00:00:00 -5 +276 276 10.2400000000000002 1987-08-25 00:00:00 -5 +277 277 1.52000000000000002 1987-08-25 00:00:00 -5 +278 278 1.39999999999999991 1987-08-25 00:00:00 -5 +279 279 0.173999999999999988 1987-08-25 00:00:00 -5 +280 280 0.153599999999999987 1987-08-25 00:00:00 -5 +281 281 113 1987-08-25 00:00:00 -5 +282 282 9.39000000000000057 1987-09-30 00:00:00 -5 +283 283 1.48999999999999999 1987-09-30 00:00:00 -5 +284 284 1.39999999999999991 1987-09-30 00:00:00 -5 +285 285 0.185999999999999999 1987-09-30 00:00:00 -5 +286 286 0.173499999999999988 1987-09-30 00:00:00 -5 +287 287 107 1987-09-30 00:00:00 -5 +288 288 10.3399999999999999 1988-01-08 00:00:00 -5 +289 289 3.0299999999999998 1988-01-08 00:00:00 -5 +290 290 1.10000000000000009 1988-01-08 00:00:00 -5 +291 291 0.342000000000000026 1988-01-08 00:00:00 -5 +292 292 0.119300000000000003 1988-01-08 00:00:00 -5 +293 293 287 1988-01-08 00:00:00 -5 +294 294 10.2599999999999998 1988-02-05 00:00:00 -5 +295 295 2.22999999999999998 1988-02-05 00:00:00 -5 +296 296 1.30000000000000004 1988-02-05 00:00:00 -5 +297 297 0.253000000000000003 1988-02-05 00:00:00 -5 +298 298 0.142199999999999993 1988-02-05 00:00:00 -5 +299 299 178 1988-02-05 00:00:00 -5 +300 300 10.5199999999999996 1988-04-21 00:00:00 -5 +301 301 2.10999999999999988 1988-04-21 00:00:00 -5 +302 302 1.19999999999999996 1988-04-21 00:00:00 -5 +303 303 0.234000000000000014 1988-04-21 00:00:00 -5 +304 304 0.127299999999999996 1988-04-21 00:00:00 -5 +305 305 184 1988-04-21 00:00:00 -5 +306 306 9.78999999999999915 1988-05-20 00:00:00 -5 +307 307 1.62999999999999989 1988-05-20 00:00:00 -5 +308 308 1.5 1988-05-20 00:00:00 -5 +309 309 0.194000000000000006 1988-05-20 00:00:00 -5 +310 310 0.176400000000000001 1988-05-20 00:00:00 -5 +311 311 110 1988-05-20 00:00:00 -5 +312 312 10.8800000000000008 1988-06-29 00:00:00 -5 +313 313 3.20000000000000018 1988-06-29 00:00:00 -5 +314 314 2.20000000000000018 1988-06-29 00:00:00 -5 +315 315 0.343000000000000027 1988-06-29 00:00:00 -5 +316 316 0.231699999999999989 1988-06-29 00:00:00 -5 +317 317 148 1988-06-29 00:00:00 -5 +318 318 10.0899999999999999 1988-07-18 00:00:00 -5 +319 319 1.44999999999999996 1988-07-18 00:00:00 -5 +320 320 1.60000000000000009 1988-07-18 00:00:00 -5 +321 321 0.16800000000000001 1988-07-18 00:00:00 -5 +322 322 0.182100000000000012 1988-07-18 00:00:00 -5 +323 323 92 1988-07-18 00:00:00 -5 +324 324 10.4700000000000006 1988-08-28 00:00:00 -5 +325 325 1.91999999999999993 1988-08-28 00:00:00 -5 +326 326 2.29999999999999982 1988-08-28 00:00:00 -5 +327 327 0.213999999999999996 1988-08-28 00:00:00 -5 +328 328 0.254300000000000026 1988-08-28 00:00:00 -5 +329 329 84 1988-08-28 00:00:00 -5 +330 330 9.09999999999999964 1988-09-23 00:00:00 -5 +331 331 1.68999999999999995 1988-09-23 00:00:00 -5 +332 332 2 1988-09-23 00:00:00 -5 +333 333 0.215999999999999998 1988-09-23 00:00:00 -5 +334 334 0.260599999999999998 1988-09-23 00:00:00 -5 +335 335 83 1988-09-23 00:00:00 -5 +336 336 10.25 1989-02-01 00:00:00 -5 +337 337 3.24000000000000021 1989-02-01 00:00:00 -5 +338 338 1 1989-02-01 00:00:00 -5 +339 339 0.367999999999999994 1989-02-01 00:00:00 -5 +340 340 0.116599999999999995 1989-02-01 00:00:00 -5 +341 341 316 1989-02-01 00:00:00 -5 +342 342 10.1300000000000008 1989-03-12 00:00:00 -5 +343 343 2.39000000000000012 1989-03-12 00:00:00 -5 +344 344 1.30000000000000004 1989-03-12 00:00:00 -5 +345 345 0.276000000000000023 1989-03-12 00:00:00 -5 +346 346 0.151499999999999996 1989-03-12 00:00:00 -5 +347 347 182 1989-03-12 00:00:00 -5 +348 348 12.0600000000000005 1989-07-11 00:00:00 -5 +349 349 1.64999999999999991 1989-07-11 00:00:00 -5 +350 350 2.10000000000000009 1989-07-11 00:00:00 -5 +351 351 0.159000000000000002 1989-07-11 00:00:00 -5 +352 352 0.199199999999999988 1989-07-11 00:00:00 -5 +353 353 80 1989-07-11 00:00:00 -5 +354 354 11.8300000000000001 1989-08-10 00:00:00 -5 +355 355 1.71999999999999997 1989-08-10 00:00:00 -5 +356 356 2.5 1989-08-10 00:00:00 -5 +357 357 0.170000000000000012 1989-08-10 00:00:00 -5 +358 358 0.246499999999999997 1989-08-10 00:00:00 -5 +359 359 69 1989-08-10 00:00:00 -5 +360 360 10.9800000000000004 1989-10-17 00:00:00 -5 +361 361 1.67999999999999994 1989-10-17 00:00:00 -5 +362 362 1.5 1989-10-17 00:00:00 -5 +363 363 0.178999999999999992 1989-10-17 00:00:00 -5 +364 364 0.162399999999999989 1989-10-17 00:00:00 -5 +365 365 110 1989-10-17 00:00:00 -5 +366 366 10.6199999999999992 1989-11-19 00:00:00 -5 +367 367 1.84000000000000008 1989-11-19 00:00:00 -5 +368 368 1.19999999999999996 1989-11-19 00:00:00 -5 +369 369 0.202000000000000013 1989-11-19 00:00:00 -5 +370 370 0.133000000000000007 1989-11-19 00:00:00 -5 +371 371 152 1989-11-19 00:00:00 -5 +372 372 11.4600000000000009 1989-12-12 00:00:00 -5 +373 373 1.77000000000000002 1989-12-12 00:00:00 -5 +374 374 1.30000000000000004 1989-12-12 00:00:00 -5 +375 375 0.179999999999999993 1989-12-12 00:00:00 -5 +376 376 0.131399999999999989 1989-12-12 00:00:00 -5 +377 377 137 1989-12-12 00:00:00 -5 +378 378 199 1990-03-13 00:00:00 -5 +379 379 106 1990-06-11 00:00:00 -5 +380 380 83 1990-09-14 00:00:00 -5 +381 381 111 1990-10-17 00:00:00 -5 +382 382 259 1990-12-01 00:00:00 -5 +383 383 244 1991-01-15 00:00:00 -5 +384 384 184 1991-02-08 00:00:00 -5 +385 385 208 1991-03-25 00:00:00 -5 +386 386 94 1991-06-28 00:00:00 -5 +387 387 92.7999999999999972 1991-08-01 00:00:00 -5 +388 388 83 1991-10-05 00:00:00 -5 +389 389 127 1991-10-29 00:00:00 -5 +390 390 251 1991-12-06 00:00:00 -5 +391 391 220 1992-01-18 00:00:00 -5 +392 392 194 1992-02-22 00:00:00 -5 +393 393 307 1992-03-24 00:00:00 -5 +394 394 215 1992-04-24 00:00:00 -5 +395 395 173 1992-05-14 00:00:00 -5 +396 396 132 1992-06-16 00:00:00 -5 +397 397 157 1993-03-24 00:00:00 -5 +398 398 113 1993-04-17 00:00:00 -5 +399 399 88 1993-06-20 00:00:00 -5 +400 400 97 1993-08-24 00:00:00 -5 +401 401 18.6700000000000017 1983-01-17 00:00:00 -5 +402 402 0.359999999999999987 1983-01-17 00:00:00 -5 +403 403 0.800000000000000044 1983-01-17 00:00:00 -5 +404 404 0.0229999999999999996 1983-01-17 00:00:00 -5 +405 405 0.0500000000000000028 1983-01-17 00:00:00 -5 +406 406 45 1983-01-17 00:00:00 -5 +407 407 17.9699999999999989 1983-01-27 00:00:00 -5 +408 408 0.540000000000000036 1983-01-27 00:00:00 -5 +409 409 0.770000000000000018 1983-01-27 00:00:00 -5 +410 410 0.0350000000000000033 1983-01-27 00:00:00 -5 +411 411 0.0500000000000000028 1983-01-27 00:00:00 -5 +412 412 70 1983-01-27 00:00:00 -5 +413 413 25.6700000000000017 1983-02-08 00:00:00 -5 +414 414 0.719999999999999973 1983-02-08 00:00:00 -5 +415 415 1.10000000000000009 1983-02-08 00:00:00 -5 +416 416 0.0330000000000000016 1983-02-08 00:00:00 -5 +417 417 0.0500000000000000028 1983-02-08 00:00:00 -5 +418 418 65 1983-02-08 00:00:00 -5 +419 419 26.370000000000001 1983-02-21 00:00:00 -5 +420 420 0.819999999999999951 1983-02-21 00:00:00 -5 +421 421 1.12999999999999989 1983-02-21 00:00:00 -5 +422 422 0.0369999999999999982 1983-02-21 00:00:00 -5 +423 423 0.0500000000000000028 1983-02-21 00:00:00 -5 +424 424 73 1983-02-21 00:00:00 -5 +425 425 21.1900000000000013 1983-03-03 00:00:00 -5 +426 426 0.680000000000000049 1983-03-03 00:00:00 -5 +427 427 1.09000000000000008 1983-03-03 00:00:00 -5 +428 428 0.0369999999999999982 1983-03-03 00:00:00 -5 +429 429 0.0599999999999999978 1983-03-03 00:00:00 -5 +430 430 62 1983-03-03 00:00:00 -5 +431 431 56 1983-06-07 00:00:00 -5 +432 432 21.5799999999999983 1983-07-21 00:00:00 -5 +433 433 0.299999999999999989 1983-07-21 00:00:00 -5 +434 434 0.739999999999999991 1983-07-21 00:00:00 -5 +435 435 0.0160000000000000003 1983-07-21 00:00:00 -5 +436 436 0.0400000000000000008 1983-07-21 00:00:00 -5 +437 437 41 1983-07-21 00:00:00 -5 +438 438 20.5300000000000011 1983-08-11 00:00:00 -5 +439 439 0.130000000000000004 1983-08-11 00:00:00 -5 +440 440 0.880000000000000004 1983-08-11 00:00:00 -5 +441 441 0.00800000000000000017 1983-08-11 00:00:00 -5 +442 442 0.0500000000000000028 1983-08-11 00:00:00 -5 +443 443 15 1983-08-11 00:00:00 -5 +444 444 23.3299999999999983 1983-09-10 00:00:00 -5 +445 445 0.160000000000000003 1983-09-10 00:00:00 -5 +446 446 1.19999999999999996 1983-09-10 00:00:00 -5 +447 447 0.00800000000000000017 1983-09-10 00:00:00 -5 +448 448 0.0599999999999999978 1983-09-10 00:00:00 -5 +449 449 13 1983-09-10 00:00:00 -5 +450 450 26.6000000000000014 1983-09-20 00:00:00 -5 +451 451 0.220000000000000001 1983-09-20 00:00:00 -5 +452 452 1.1399999999999999 1983-09-20 00:00:00 -5 +453 453 0.0100000000000000002 1983-09-20 00:00:00 -5 +454 454 0.0500000000000000028 1983-09-20 00:00:00 -5 +455 455 19 1983-09-20 00:00:00 -5 +456 456 26.370000000000001 1983-09-30 00:00:00 -5 +457 457 0.270000000000000018 1983-09-30 00:00:00 -5 +458 458 2.25999999999999979 1983-09-30 00:00:00 -5 +459 459 0.0120000000000000002 1983-09-30 00:00:00 -5 +460 460 0.100000000000000006 1983-09-30 00:00:00 -5 +461 461 12 1983-09-30 00:00:00 -5 +462 462 21.7800000000000011 1983-12-16 00:00:00 -5 +463 463 0.46000000000000002 1983-12-16 00:00:00 -5 +464 464 1.12000000000000011 1983-12-16 00:00:00 -5 +465 465 0.0250000000000000014 1983-12-16 00:00:00 -5 +466 466 0.0599999999999999978 1983-12-16 00:00:00 -5 +467 467 41 1983-12-16 00:00:00 -5 +468 468 25.1999999999999993 1984-01-03 00:00:00 -5 +469 469 0.660000000000000031 1984-01-03 00:00:00 -5 +470 470 1.08000000000000007 1984-01-03 00:00:00 -5 +471 471 0.0309999999999999998 1984-01-03 00:00:00 -5 +472 472 0.0500000000000000028 1984-01-03 00:00:00 -5 +473 473 61 1984-01-03 00:00:00 -5 +474 474 25.8999999999999986 1984-01-19 00:00:00 -5 +475 475 0.560000000000000053 1984-01-19 00:00:00 -5 +476 476 1.1100000000000001 1984-01-19 00:00:00 -5 +477 477 0.0250000000000000014 1984-01-19 00:00:00 -5 +478 478 0.0500000000000000028 1984-01-19 00:00:00 -5 +479 479 50 1984-01-19 00:00:00 -5 +480 480 22.1700000000000017 1984-03-20 00:00:00 -5 +481 481 0.520000000000000018 1984-03-20 00:00:00 -5 +482 482 0.760000000000000009 1984-03-20 00:00:00 -5 +483 483 0.0269999999999999997 1984-03-20 00:00:00 -5 +484 484 0.0400000000000000008 1984-03-20 00:00:00 -5 +485 485 68 1984-03-20 00:00:00 -5 +486 486 20.7699999999999996 1984-04-05 00:00:00 -5 +487 487 0.640000000000000013 1984-04-05 00:00:00 -5 +488 488 0.890000000000000013 1984-04-05 00:00:00 -5 +489 489 0.0359999999999999973 1984-04-05 00:00:00 -5 +490 490 0.0500000000000000028 1984-04-05 00:00:00 -5 +491 491 72 1984-04-05 00:00:00 -5 +492 492 34.2299999999999969 1984-09-13 00:00:00 -5 +493 493 0.489999999999999991 1984-09-13 00:00:00 -5 +494 494 2.05399999999999983 1984-09-13 00:00:00 -5 +495 495 0.0170000000000000012 1984-09-13 00:00:00 -5 +496 496 0.0700000000000000067 1984-09-13 00:00:00 -5 +497 497 24 1984-09-13 00:00:00 -5 +498 498 23.9200000000000017 1984-09-27 00:00:00 -5 +499 499 0.309999999999999998 1984-09-27 00:00:00 -5 +500 500 1.6399999999999999 1984-09-27 00:00:00 -5 +501 501 0.0149999999999999994 1984-09-27 00:00:00 -5 +502 502 0.0800000000000000017 1984-09-27 00:00:00 -5 +503 503 19 1984-09-27 00:00:00 -5 +504 504 26.4400000000000013 1984-10-10 00:00:00 -5 +505 505 0.200000000000000011 1984-10-10 00:00:00 -5 +506 506 2.04000000000000004 1984-10-10 00:00:00 -5 +507 507 0.00899999999999999932 1984-10-10 00:00:00 -5 +508 508 0.0899999999999999967 1984-10-10 00:00:00 -5 +509 509 10 1984-10-10 00:00:00 -5 +510 510 19.3999999999999986 1984-10-25 00:00:00 -5 +511 511 0.23000000000000001 1984-10-25 00:00:00 -5 +512 512 1.33000000000000007 1984-10-25 00:00:00 -5 +513 513 0.0140000000000000003 1984-10-25 00:00:00 -5 +514 514 0.0800000000000000017 1984-10-25 00:00:00 -5 +515 515 17 1984-10-25 00:00:00 -5 +516 516 26 1984-11-07 00:00:00 -5 +517 517 22.6900000000000013 1984-11-23 00:00:00 -5 +518 518 0.299999999999999989 1984-11-23 00:00:00 -5 +519 519 1.75 1984-11-23 00:00:00 -5 +520 520 0.0149999999999999994 1984-11-23 00:00:00 -5 +521 521 0.0899999999999999967 1984-11-23 00:00:00 -5 +522 522 17 1984-11-23 00:00:00 -5 +523 523 21 1984-12-05 00:00:00 -5 +524 524 0.340000000000000024 1984-12-05 00:00:00 -5 +525 525 1.62000000000000011 1984-12-05 00:00:00 -5 +526 526 0.0189999999999999995 1984-12-05 00:00:00 -5 +527 527 0.0899999999999999967 1984-12-05 00:00:00 -5 +528 528 21 1984-12-05 00:00:00 -5 +529 529 21.7300000000000004 1984-12-18 00:00:00 -5 +530 530 0.57999999999999996 1984-12-18 00:00:00 -5 +531 531 1.48999999999999999 1984-12-18 00:00:00 -5 +532 532 0.0309999999999999998 1984-12-18 00:00:00 -5 +533 533 0.0800000000000000017 1984-12-18 00:00:00 -5 +534 534 39 1984-12-18 00:00:00 -5 +535 535 20.8900000000000006 1985-02-13 00:00:00 -5 +536 536 0.25 1985-02-13 00:00:00 -5 +537 537 0.950899999999999967 1985-02-13 00:00:00 -5 +538 538 0.0140000000000000003 1985-02-13 00:00:00 -5 +539 539 0.0531000000000000014 1985-02-13 00:00:00 -5 +540 540 26 1985-02-13 00:00:00 -5 +541 541 20.8099999999999987 1985-03-06 00:00:00 -5 +542 542 0.270000000000000018 1985-03-06 00:00:00 -5 +543 543 1.07000000000000006 1985-03-06 00:00:00 -5 +544 544 0.0149999999999999994 1985-03-06 00:00:00 -5 +545 545 0.0599999999999999978 1985-03-06 00:00:00 -5 +546 546 25 1985-03-06 00:00:00 -5 +547 547 21.4699999999999989 1985-03-20 00:00:00 -5 +548 548 0.330000000000000016 1985-03-20 00:00:00 -5 +549 549 0.92000000000000004 1985-03-20 00:00:00 -5 +550 550 0.0179999999999999986 1985-03-20 00:00:00 -5 +551 551 0.0500000000000000028 1985-03-20 00:00:00 -5 +552 552 36 1985-03-20 00:00:00 -5 +553 553 22 1985-04-03 00:00:00 -5 +554 554 0.450000000000000011 1985-04-03 00:00:00 -5 +555 555 1.32000000000000006 1985-04-03 00:00:00 -5 +556 556 0.0240000000000000005 1985-04-03 00:00:00 -5 +557 557 0.0700000000000000067 1985-04-03 00:00:00 -5 +558 558 34 1985-04-03 00:00:00 -5 +559 559 210 1985-04-17 00:00:00 -5 +560 560 0.440000000000000002 1985-04-17 00:00:00 -5 +561 561 1.08000000000000007 1985-04-17 00:00:00 -5 +562 562 0.00200000000000000004 1985-04-17 00:00:00 -5 +563 563 0.00600000000000000012 1985-04-17 00:00:00 -5 +564 564 41 1985-04-17 00:00:00 -5 +565 565 22.75 1985-05-02 00:00:00 -5 +566 566 0.349999999999999978 1985-05-02 00:00:00 -5 +567 567 0.780000000000000027 1985-05-02 00:00:00 -5 +568 568 0.0179999999999999986 1985-05-02 00:00:00 -5 +569 569 0.0400000000000000008 1985-05-02 00:00:00 -5 +570 570 45 1985-05-02 00:00:00 -5 +571 571 20.0700000000000003 1985-05-15 00:00:00 -5 +572 572 0.489999999999999991 1985-05-15 00:00:00 -5 +573 573 0.859999999999999987 1985-05-15 00:00:00 -5 +574 574 0.0290000000000000015 1985-05-15 00:00:00 -5 +575 575 0.0500000000000000028 1985-05-15 00:00:00 -5 +576 576 57 1985-05-15 00:00:00 -5 +577 577 17.8299999999999983 1985-05-29 00:00:00 -5 +578 578 0.450000000000000011 1985-05-29 00:00:00 -5 +579 579 0.810000000000000053 1985-05-29 00:00:00 -5 +580 580 0.0299999999999999989 1985-05-29 00:00:00 -5 +581 581 0.0529999999999999985 1985-05-29 00:00:00 -5 +582 582 56 1985-05-29 00:00:00 -5 +583 583 20.8299999999999983 1985-06-12 00:00:00 -5 +584 584 0.380000000000000004 1985-06-12 00:00:00 -5 +585 585 0.769700000000000051 1985-06-12 00:00:00 -5 +586 586 0.0219999999999999987 1985-06-12 00:00:00 -5 +587 587 0.0430999999999999994 1985-06-12 00:00:00 -5 +588 588 50 1985-06-12 00:00:00 -5 +589 589 20.3299999999999983 1985-06-26 00:00:00 -5 +590 590 0.359999999999999987 1985-06-26 00:00:00 -5 +591 591 0.95665 1985-06-26 00:00:00 -5 +592 592 0.0210000000000000013 1985-06-26 00:00:00 -5 +593 593 0.0548999999999999974 1985-06-26 00:00:00 -5 +594 594 38 1985-06-26 00:00:00 -5 +595 595 23.2199999999999989 1985-07-10 00:00:00 -5 +596 596 0.400000000000000022 1985-07-10 00:00:00 -5 +597 597 0.987199999999999966 1985-07-10 00:00:00 -5 +598 598 0.0200000000000000004 1985-07-10 00:00:00 -5 +599 599 0.0495999999999999983 1985-07-10 00:00:00 -5 +600 600 41 1985-07-10 00:00:00 -5 +601 601 28.1799999999999997 1985-10-10 00:00:00 -5 +602 602 0.340000000000000024 1985-10-10 00:00:00 -5 +603 603 2.61799999999999988 1985-10-10 00:00:00 -5 +604 604 0.0140000000000000003 1985-10-10 00:00:00 -5 +605 605 0.108399999999999996 1985-10-10 00:00:00 -5 +606 606 13 1985-10-10 00:00:00 -5 +607 607 20.4899999999999984 1985-10-30 00:00:00 -5 +608 608 0.440000000000000002 1985-10-30 00:00:00 -5 +609 609 1.03820000000000001 1985-10-30 00:00:00 -5 +610 610 0.0250000000000000014 1985-10-30 00:00:00 -5 +611 611 0.0590999999999999998 1985-10-30 00:00:00 -5 +612 612 42 1985-10-30 00:00:00 -5 +613 613 24.4400000000000013 1985-11-13 00:00:00 -5 +614 614 0.479999999999999982 1985-11-13 00:00:00 -5 +615 615 1.61280000000000001 1985-11-13 00:00:00 -5 +616 616 0.0229999999999999996 1985-11-13 00:00:00 -5 +617 617 0.076999999999999999 1985-11-13 00:00:00 -5 +618 618 30 1985-11-13 00:00:00 -5 +619 619 22 1985-11-27 00:00:00 -5 +620 620 49 1985-12-12 00:00:00 -5 +621 621 21.3399999999999999 1985-12-26 00:00:00 -5 +622 622 0.589999999999999969 1985-12-26 00:00:00 -5 +623 623 1.20199999999999996 1985-12-26 00:00:00 -5 +624 624 0.0320000000000000007 1985-12-26 00:00:00 -5 +625 625 0.0656999999999999945 1985-12-26 00:00:00 -5 +626 626 49 1985-12-26 00:00:00 -5 +627 627 23.2399999999999984 1986-01-10 00:00:00 -5 +628 628 0.340000000000000024 1986-01-10 00:00:00 -5 +629 629 1.04800000000000004 1986-01-10 00:00:00 -5 +630 630 0.0170000000000000012 1986-01-10 00:00:00 -5 +631 631 0.0526000000000000009 1986-01-10 00:00:00 -5 +632 632 32 1986-01-10 00:00:00 -5 +633 633 21.9699999999999989 1986-01-30 00:00:00 -5 +634 634 0.409999999999999976 1986-01-30 00:00:00 -5 +635 635 1.27879999999999994 1986-01-30 00:00:00 -5 +636 636 0.0219999999999999987 1986-01-30 00:00:00 -5 +637 637 0.067900000000000002 1986-01-30 00:00:00 -5 +638 638 32 1986-01-30 00:00:00 -5 +639 639 21.879999999999999 1986-02-14 00:00:00 -5 +640 640 0.320000000000000007 1986-02-14 00:00:00 -5 +641 641 0.829099999999999948 1986-02-14 00:00:00 -5 +642 642 0.0170000000000000012 1986-02-14 00:00:00 -5 +643 643 0.0442000000000000032 1986-02-14 00:00:00 -5 +644 644 38 1986-02-14 00:00:00 -5 +645 645 29.2800000000000011 1986-03-04 00:00:00 -5 +646 646 0.510000000000000009 1986-03-04 00:00:00 -5 +647 647 1.2548999999999999 1986-03-04 00:00:00 -5 +648 648 0.0210000000000000013 1986-03-04 00:00:00 -5 +649 649 0.0500000000000000028 1986-03-04 00:00:00 -5 +650 650 41 1986-03-04 00:00:00 -5 +651 651 23.9600000000000009 1986-03-21 00:00:00 -5 +652 652 0.739999999999999991 1986-03-21 00:00:00 -5 +653 653 1.12759999999999994 1986-03-21 00:00:00 -5 +654 654 0.0359999999999999973 1986-03-21 00:00:00 -5 +655 655 0.0548999999999999974 1986-03-21 00:00:00 -5 +656 656 66 1986-03-21 00:00:00 -5 +657 657 23.4400000000000013 1986-04-12 00:00:00 -5 +658 658 0.699999999999999956 1986-04-12 00:00:00 -5 +659 659 0.970500000000000029 1986-04-12 00:00:00 -5 +660 660 0.0350000000000000033 1986-04-12 00:00:00 -5 +661 661 0.0483000000000000027 1986-04-12 00:00:00 -5 +662 662 72 1986-04-12 00:00:00 -5 +663 663 79 1986-04-28 00:00:00 -5 +664 664 72 1986-05-21 00:00:00 -5 +665 665 65 1986-07-02 00:00:00 -5 +666 666 42 1986-08-20 00:00:00 -5 +667 667 29 1986-09-12 00:00:00 -5 +668 668 33 1986-10-21 00:00:00 -5 +669 669 41 1986-11-05 00:00:00 -5 +670 670 38 1986-11-19 00:00:00 -5 +671 671 22.1290300000000002 1987-06-05 00:00:00 -5 +672 672 0.764399999999999968 1987-06-05 00:00:00 -5 +673 673 0.0403000000000000025 1987-06-05 00:00:00 -5 +674 674 22.2460599999999999 1987-06-28 00:00:00 -5 +675 675 0.644499999999999962 1987-06-28 00:00:00 -5 +676 676 0.0337999999999999967 1987-06-28 00:00:00 -5 +677 677 11.4600600000000004 1987-08-25 00:00:00 -5 +678 678 2.2298 1987-08-25 00:00:00 -5 +679 679 0.227000000000000007 1987-08-25 00:00:00 -5 +680 680 18.3900000000000006 1987-09-30 00:00:00 -5 +681 681 0.160000000000000003 1987-09-30 00:00:00 -5 +682 682 2.22299999999999986 1987-09-30 00:00:00 -5 +683 683 0.0100000000000000002 1987-09-30 00:00:00 -5 +684 684 0.140999999999999986 1987-09-30 00:00:00 -5 +685 685 7 1987-09-30 00:00:00 -5 +686 686 23.1506299999999996 1988-01-08 00:00:00 -5 +687 687 0.887000000000000011 1988-01-08 00:00:00 -5 +688 688 0.0446999999999999967 1988-01-08 00:00:00 -5 +689 689 28.3900000000000006 1988-02-05 00:00:00 -5 +690 690 0.709999999999999964 1988-02-05 00:00:00 -5 +691 691 1.4890000000000001 1988-02-05 00:00:00 -5 +692 692 0.0290000000000000015 1988-02-05 00:00:00 -5 +693 693 0.0611999999999999975 1988-02-05 00:00:00 -5 +694 694 48 1988-02-05 00:00:00 -5 +695 695 17.5300000000000011 1988-04-21 00:00:00 -5 +696 696 0.46000000000000002 1988-04-21 00:00:00 -5 +697 697 0.878900000000000015 1988-04-21 00:00:00 -5 +698 698 0.0299999999999999989 1988-04-21 00:00:00 -5 +699 699 0.0585000000000000034 1988-04-21 00:00:00 -5 +700 700 52 1988-04-21 00:00:00 -5 +701 701 24.629999999999999 1988-05-20 00:00:00 -5 +702 702 0.660000000000000031 1988-05-20 00:00:00 -5 +703 703 1.06210000000000004 1988-05-20 00:00:00 -5 +704 704 0.0309999999999999998 1988-05-20 00:00:00 -5 +705 705 0.0502999999999999975 1988-05-20 00:00:00 -5 +706 706 62 1988-05-20 00:00:00 -5 +707 707 23.6099999999999994 1988-06-29 00:00:00 -5 +708 708 0.309999999999999998 1988-06-29 00:00:00 -5 +709 709 0.77090000000000003 1988-06-29 00:00:00 -5 +710 710 0.0149999999999999994 1988-06-29 00:00:00 -5 +711 711 0.0381000000000000019 1988-06-29 00:00:00 -5 +712 712 40 1988-06-29 00:00:00 -5 +713 713 17.5399999999999991 1988-07-18 00:00:00 -5 +714 714 0.359999999999999987 1988-07-18 00:00:00 -5 +715 715 0.550100000000000033 1988-07-18 00:00:00 -5 +716 716 0.0240000000000000005 1988-07-18 00:00:00 -5 +717 717 0.0366000000000000006 1988-07-18 00:00:00 -5 +718 718 66 1988-07-18 00:00:00 -5 +719 719 17.870000000000001 1988-08-28 00:00:00 -5 +720 720 0.0800000000000000017 1988-08-28 00:00:00 -5 +721 721 0.888399999999999967 1988-08-28 00:00:00 -5 +722 722 0.0050000000000000001 1988-08-28 00:00:00 -5 +723 723 0.0580000000000000029 1988-08-28 00:00:00 -5 +724 724 9 1988-08-28 00:00:00 -5 +725 725 24.1400000000000006 1988-09-23 00:00:00 -5 +726 726 0.0200000000000000004 1988-09-23 00:00:00 -5 +727 727 2.31510000000000016 1988-09-23 00:00:00 -5 +728 728 0.00100000000000000002 1988-09-23 00:00:00 -5 +729 729 0.111899999999999999 1988-09-23 00:00:00 -5 +730 730 1 1988-09-23 00:00:00 -5 +731 731 23.25 1989-02-01 00:00:00 -5 +732 732 0.489999999999999991 1989-02-01 00:00:00 -5 +733 733 1.59250000000000003 1989-02-01 00:00:00 -5 +734 734 0.0250000000000000014 1989-02-01 00:00:00 -5 +735 735 0.0798999999999999988 1989-02-01 00:00:00 -5 +736 736 31 1989-02-01 00:00:00 -5 +737 737 18.8599999999999994 1989-03-12 00:00:00 -5 +738 738 0.409999999999999976 1989-03-12 00:00:00 -5 +739 739 0.866500000000000048 1989-03-12 00:00:00 -5 +740 740 0.0250000000000000014 1989-03-12 00:00:00 -5 +741 741 0.0536000000000000018 1989-03-12 00:00:00 -5 +742 742 47 1989-03-12 00:00:00 -5 +743 743 22.2100000000000009 1989-07-11 00:00:00 -5 +744 744 0.369999999999999996 1989-07-11 00:00:00 -5 +745 745 0.75770000000000004 1989-07-11 00:00:00 -5 +746 746 0.0200000000000000004 1989-07-11 00:00:00 -5 +747 747 0.039800000000000002 1989-07-11 00:00:00 -5 +748 748 49 1989-07-11 00:00:00 -5 +749 749 21.3200000000000003 1989-08-10 00:00:00 -5 +750 750 0.280000000000000027 1989-08-10 00:00:00 -5 +751 751 0.776599999999999957 1989-08-10 00:00:00 -5 +752 752 0.0149999999999999994 1989-08-10 00:00:00 -5 +753 753 0.0425000000000000031 1989-08-10 00:00:00 -5 +754 754 36 1989-08-10 00:00:00 -5 +755 755 25.9299999999999997 1989-10-17 00:00:00 -5 +756 756 0.239999999999999991 1989-10-17 00:00:00 -5 +757 757 2.6987000000000001 1989-10-17 00:00:00 -5 +758 758 0.0109999999999999994 1989-10-17 00:00:00 -5 +759 759 0.121399999999999994 1989-10-17 00:00:00 -5 +760 760 9 1989-10-17 00:00:00 -5 +761 761 24.3399999999999999 1989-11-19 00:00:00 -5 +762 762 0.340000000000000024 1989-11-19 00:00:00 -5 +763 763 1.6774 1989-11-19 00:00:00 -5 +764 764 0.0160000000000000003 1989-11-19 00:00:00 -5 +765 765 0.0803999999999999992 1989-11-19 00:00:00 -5 +766 766 20 1989-11-19 00:00:00 -5 +767 767 20.3999999999999986 1989-12-12 00:00:00 -5 +768 768 0.190000000000000002 1989-12-12 00:00:00 -5 +769 769 0.928499999999999992 1989-12-12 00:00:00 -5 +770 770 0.0109999999999999994 1989-12-12 00:00:00 -5 +771 771 0.0531000000000000014 1989-12-12 00:00:00 -5 +772 772 21 1989-12-12 00:00:00 -5 +773 773 40 1990-03-13 00:00:00 -5 +774 774 39 1990-06-11 00:00:00 -5 +775 775 18 1990-09-14 00:00:00 -5 +776 776 12 1990-10-17 00:00:00 -5 +777 777 39 1990-12-01 00:00:00 -5 +778 778 50 1991-01-15 00:00:00 -5 +779 779 35 1991-02-08 00:00:00 -5 +780 780 36 1991-03-25 00:00:00 -5 +781 781 42 1991-06-28 00:00:00 -5 +782 782 32 1991-08-01 00:00:00 -5 +783 783 7.5 1991-10-05 00:00:00 -5 +784 784 18.1000000000000014 1991-10-29 00:00:00 -5 +785 785 35.3999999999999986 1991-12-06 00:00:00 -5 +786 786 23.8000000000000007 1992-01-18 00:00:00 -5 +787 787 15.1999999999999993 1992-02-22 00:00:00 -5 +788 788 44.2999999999999972 1992-03-24 00:00:00 -5 +789 789 45.7999999999999972 1992-04-24 00:00:00 -5 +790 790 44.2000000000000028 1992-05-14 00:00:00 -5 +791 791 47.1000000000000014 1992-06-16 00:00:00 -5 +792 792 45.5 1993-03-24 00:00:00 -5 +793 793 54.1000000000000014 1993-04-17 00:00:00 -5 +794 794 74.2999999999999972 1993-06-20 00:00:00 -5 +795 795 42 1993-08-24 00:00:00 -5 +796 796 4.29000000000000004 1983-01-17 00:00:00 -5 +797 797 2.2200000000000002 1983-01-17 00:00:00 -5 +798 798 13.0899999999999999 1983-01-17 00:00:00 -5 +799 799 0.75 1983-01-17 00:00:00 -5 +800 800 29.5 1983-01-17 00:00:00 -5 +801 801 4.70999999999999996 1983-01-27 00:00:00 -5 +802 802 1.87000000000000011 1983-01-27 00:00:00 -5 +803 803 11.5700000000000003 1983-01-27 00:00:00 -5 +804 804 1.01000000000000001 1983-01-27 00:00:00 -5 +805 805 29 1983-01-27 00:00:00 -5 +806 806 4.42999999999999972 1983-02-08 00:00:00 -5 +807 807 4.17999999999999972 1983-02-08 00:00:00 -5 +808 808 10.5600000000000005 1983-02-08 00:00:00 -5 +809 809 0.709999999999999964 1983-02-08 00:00:00 -5 +810 810 28.8999999999999986 1983-02-08 00:00:00 -5 +811 811 45 1983-02-21 00:00:00 -5 +812 812 4.76999999999999957 1983-02-21 00:00:00 -5 +813 813 138 1983-02-21 00:00:00 -5 +814 814 1.81000000000000005 1983-02-21 00:00:00 -5 +815 815 10.3000000000000007 1983-02-21 00:00:00 -5 +816 816 0.709999999999999964 1983-02-21 00:00:00 -5 +817 817 30 1983-02-21 00:00:00 -5 +818 818 58.6000000000000014 1983-03-03 00:00:00 -5 +819 819 4.53000000000000025 1983-03-03 00:00:00 -5 +820 820 159 1983-03-03 00:00:00 -5 +821 821 1.64999999999999991 1983-03-03 00:00:00 -5 +822 822 11.0500000000000007 1983-03-03 00:00:00 -5 +823 823 0.839999999999999969 1983-03-03 00:00:00 -5 +824 824 30.8999999999999986 1983-03-03 00:00:00 -5 +825 825 41.2999999999999972 1983-06-07 00:00:00 -5 +826 826 4.23000000000000043 1983-06-07 00:00:00 -5 +827 827 22.1999999999999993 1983-06-07 00:00:00 -5 +828 828 126 1983-06-07 00:00:00 -5 +829 829 0.349999999999999978 1983-06-07 00:00:00 -5 +830 830 7.13999999999999968 1983-06-07 00:00:00 -5 +831 831 0.900000000000000022 1983-06-07 00:00:00 -5 +832 832 29 1983-06-07 00:00:00 -5 +833 833 45.7999999999999972 1983-07-21 00:00:00 -5 +834 834 4.21999999999999975 1983-07-21 00:00:00 -5 +835 835 20 1983-07-21 00:00:00 -5 +836 836 108 1983-07-21 00:00:00 -5 +837 837 0.200000000000000011 1983-07-21 00:00:00 -5 +838 838 9.61999999999999922 1983-07-21 00:00:00 -5 +839 839 0.640000000000000013 1983-07-21 00:00:00 -5 +840 840 157 1983-07-21 00:00:00 -5 +841 841 28.5 1983-07-21 00:00:00 -5 +842 842 59.7000000000000028 1983-08-11 00:00:00 -5 +843 843 3.50999999999999979 1983-08-11 00:00:00 -5 +844 844 23.1999999999999993 1983-08-11 00:00:00 -5 +845 845 135 1983-08-11 00:00:00 -5 +846 846 0.569999999999999951 1983-08-11 00:00:00 -5 +847 847 10.2100000000000009 1983-08-11 00:00:00 -5 +848 848 0.869999999999999996 1983-08-11 00:00:00 -5 +849 849 175 1983-08-11 00:00:00 -5 +850 850 29 1983-08-11 00:00:00 -5 +851 851 89.5 1983-09-10 00:00:00 -5 +852 852 2.66000000000000014 1983-09-10 00:00:00 -5 +853 853 23 1983-09-10 00:00:00 -5 +854 854 195 1983-09-10 00:00:00 -5 +855 855 0.23000000000000001 1983-09-10 00:00:00 -5 +856 856 15.6199999999999992 1983-09-10 00:00:00 -5 +857 857 0.849999999999999978 1983-09-10 00:00:00 -5 +858 858 172 1983-09-10 00:00:00 -5 +859 859 29.5 1983-09-10 00:00:00 -5 +860 860 2.66000000000000014 1983-09-20 00:00:00 -5 +861 861 23.1000000000000014 1983-09-20 00:00:00 -5 +862 862 0.220000000000000001 1983-09-20 00:00:00 -5 +863 863 11.7899999999999991 1983-09-20 00:00:00 -5 +864 864 0.890000000000000013 1983-09-20 00:00:00 -5 +865 865 155 1983-09-20 00:00:00 -5 +866 866 27.8000000000000007 1983-09-20 00:00:00 -5 +867 867 93.2999999999999972 1983-09-30 00:00:00 -5 +868 868 2.79000000000000004 1983-09-30 00:00:00 -5 +869 869 21 1983-09-30 00:00:00 -5 +870 870 190 1983-09-30 00:00:00 -5 +871 871 1.34000000000000008 1983-09-30 00:00:00 -5 +872 872 9.73000000000000043 1983-09-30 00:00:00 -5 +873 873 1 1983-09-30 00:00:00 -5 +874 874 160 1983-09-30 00:00:00 -5 +875 875 28.6999999999999993 1983-09-30 00:00:00 -5 +876 876 77.2999999999999972 1983-12-16 00:00:00 -5 +877 877 23.8999999999999986 1983-12-16 00:00:00 -5 +878 878 180 1983-12-16 00:00:00 -5 +879 879 0.489999999999999991 1983-12-16 00:00:00 -5 +880 880 14.9000000000000004 1983-12-16 00:00:00 -5 +881 881 0.709999999999999964 1983-12-16 00:00:00 -5 +882 882 133.5 1983-12-16 00:00:00 -5 +883 883 28.3000000000000007 1983-12-16 00:00:00 -5 +884 884 66.2999999999999972 1984-01-03 00:00:00 -5 +885 885 22.1999999999999993 1984-01-03 00:00:00 -5 +886 886 130 1984-01-03 00:00:00 -5 +887 887 0.550000000000000044 1984-01-03 00:00:00 -5 +888 888 13.9800000000000004 1984-01-03 00:00:00 -5 +889 889 0.729999999999999982 1984-01-03 00:00:00 -5 +890 890 136.800000000000011 1984-01-03 00:00:00 -5 +891 891 28 1984-01-03 00:00:00 -5 +892 892 0.440000000000000002 1984-01-19 00:00:00 -5 +893 893 11.9399999999999995 1984-01-19 00:00:00 -5 +894 894 0.689999999999999947 1984-01-19 00:00:00 -5 +895 895 133.949999999999989 1984-01-19 00:00:00 -5 +896 896 28.3000000000000007 1984-01-19 00:00:00 -5 +897 897 52.1000000000000014 1984-03-20 00:00:00 -5 +898 898 -6.08000000000000007 1984-03-20 00:00:00 -5 +899 899 23 1984-03-20 00:00:00 -5 +900 900 121 1984-03-20 00:00:00 -5 +901 901 1.03000000000000003 1984-03-20 00:00:00 -5 +902 902 7.54999999999999982 1984-03-20 00:00:00 -5 +903 903 0.770000000000000018 1984-03-20 00:00:00 -5 +904 904 137.610000000000014 1984-03-20 00:00:00 -5 +905 905 27.3999999999999986 1984-03-20 00:00:00 -5 +906 906 -6.20999999999999996 1984-04-05 00:00:00 -5 +907 907 0.609999999999999987 1984-04-05 00:00:00 -5 +908 908 5.70999999999999996 1984-04-05 00:00:00 -5 +909 909 0.719999999999999973 1984-04-05 00:00:00 -5 +910 910 144.599999999999994 1984-04-05 00:00:00 -5 +911 911 28.1000000000000014 1984-04-05 00:00:00 -5 +912 912 160 1984-09-13 00:00:00 -5 +913 913 66.9000000000000057 1984-09-13 00:00:00 -5 +914 914 3.85999999999999988 1984-09-13 00:00:00 -5 +915 915 21 1984-09-13 00:00:00 -5 +916 916 141 1984-09-13 00:00:00 -5 +917 917 2.12000000000000011 1984-09-13 00:00:00 -5 +918 918 10.6500000000000004 1984-09-13 00:00:00 -5 +919 919 0.790000000000000036 1984-09-13 00:00:00 -5 +920 920 146.5 1984-09-13 00:00:00 -5 +921 921 28.1999999999999993 1984-09-13 00:00:00 -5 +922 922 181 1984-09-27 00:00:00 -5 +923 923 64.9000000000000057 1984-09-27 00:00:00 -5 +924 924 3.12000000000000011 1984-09-27 00:00:00 -5 +925 925 20 1984-09-27 00:00:00 -5 +926 926 145 1984-09-27 00:00:00 -5 +927 927 11.4100000000000001 1984-09-27 00:00:00 -5 +928 928 0.709999999999999964 1984-09-27 00:00:00 -5 +929 929 151.900000000000006 1984-09-27 00:00:00 -5 +930 930 29.5 1984-09-27 00:00:00 -5 +931 931 183 1984-10-10 00:00:00 -5 +932 932 65.5 1984-10-10 00:00:00 -5 +933 933 3.39999999999999991 1984-10-10 00:00:00 -5 +934 934 20 1984-10-10 00:00:00 -5 +935 935 134 1984-10-10 00:00:00 -5 +936 936 0.140000000000000013 1984-10-10 00:00:00 -5 +937 937 11.5600000000000005 1984-10-10 00:00:00 -5 +938 938 0.67000000000000004 1984-10-10 00:00:00 -5 +939 939 29.6999999999999993 1984-10-10 00:00:00 -5 +940 940 249 1984-10-25 00:00:00 -5 +941 941 97.0999999999999943 1984-10-25 00:00:00 -5 +942 942 2.66999999999999993 1984-10-25 00:00:00 -5 +943 943 24.8000000000000007 1984-10-25 00:00:00 -5 +944 944 188 1984-10-25 00:00:00 -5 +945 945 0.790000000000000036 1984-10-25 00:00:00 -5 +946 946 16.6400000000000006 1984-10-25 00:00:00 -5 +947 947 0.900000000000000022 1984-10-25 00:00:00 -5 +948 948 160.800000000000011 1984-10-25 00:00:00 -5 +949 949 30.8999999999999986 1984-10-25 00:00:00 -5 +950 950 216 1984-11-07 00:00:00 -5 +951 951 73.5999999999999943 1984-11-07 00:00:00 -5 +952 952 2.85999999999999988 1984-11-07 00:00:00 -5 +953 953 22.6999999999999993 1984-11-07 00:00:00 -5 +954 954 160 1984-11-07 00:00:00 -5 +955 955 0.450000000000000011 1984-11-07 00:00:00 -5 +956 956 16.0399999999999991 1984-11-07 00:00:00 -5 +957 957 0.709999999999999964 1984-11-07 00:00:00 -5 +958 958 148.099999999999994 1984-11-07 00:00:00 -5 +959 959 236 1984-11-23 00:00:00 -5 +960 960 85.7999999999999972 1984-11-23 00:00:00 -5 +961 961 3.45999999999999996 1984-11-23 00:00:00 -5 +962 962 20.6000000000000014 1984-11-23 00:00:00 -5 +963 963 159 1984-11-23 00:00:00 -5 +964 964 0.979999999999999982 1984-11-23 00:00:00 -5 +965 965 14.6400000000000006 1984-11-23 00:00:00 -5 +966 966 0.930000000000000049 1984-11-23 00:00:00 -5 +967 967 151.800000000000011 1984-11-23 00:00:00 -5 +968 968 30 1984-11-23 00:00:00 -5 +969 969 257 1984-12-05 00:00:00 -5 +970 970 63.6000000000000014 1984-12-05 00:00:00 -5 +971 971 3.31000000000000005 1984-12-05 00:00:00 -5 +972 972 24.6000000000000014 1984-12-05 00:00:00 -5 +973 973 160 1984-12-05 00:00:00 -5 +974 974 0.619999999999999996 1984-12-05 00:00:00 -5 +975 975 19.129999999999999 1984-12-05 00:00:00 -5 +976 976 0.910000000000000031 1984-12-05 00:00:00 -5 +977 977 148.900000000000006 1984-12-05 00:00:00 -5 +978 978 29.3000000000000007 1984-12-05 00:00:00 -5 +979 979 271 1984-12-18 00:00:00 -5 +980 980 83.5 1984-12-18 00:00:00 -5 +981 981 3 1984-12-18 00:00:00 -5 +982 982 27 1984-12-18 00:00:00 -5 +983 983 169 1984-12-18 00:00:00 -5 +984 984 0.739999999999999991 1984-12-18 00:00:00 -5 +985 985 20.9400000000000013 1984-12-18 00:00:00 -5 +986 986 0.780000000000000027 1984-12-18 00:00:00 -5 +987 987 145.400000000000006 1984-12-18 00:00:00 -5 +988 988 28.6999999999999993 1984-12-18 00:00:00 -5 +989 989 262 1985-02-13 00:00:00 -5 +990 990 42.5 1985-02-13 00:00:00 -5 +991 991 4.73000000000000043 1985-02-13 00:00:00 -5 +992 992 23.8000000000000007 1985-02-13 00:00:00 -5 +993 993 120 1985-02-13 00:00:00 -5 +994 994 0.760000000000000009 1985-02-13 00:00:00 -5 +995 995 11.0199999999999996 1985-02-13 00:00:00 -5 +996 996 0.67000000000000004 1985-02-13 00:00:00 -5 +997 997 28.5 1985-02-13 00:00:00 -5 +998 998 306 1985-03-06 00:00:00 -5 +999 999 57.2000000000000028 1985-03-06 00:00:00 -5 +1000 1000 23.8999999999999986 1985-03-06 00:00:00 -5 +1001 1001 146 1985-03-06 00:00:00 -5 +1002 1002 0.447000000000000008 1985-03-06 00:00:00 -5 +1003 1003 12.6500000000000004 1985-03-06 00:00:00 -5 +1004 1004 0.764000000000000012 1985-03-06 00:00:00 -5 +1005 1005 153 1985-03-06 00:00:00 -5 +1006 1006 28.6000000000000014 1985-03-06 00:00:00 -5 +1007 1007 277 1985-03-20 00:00:00 -5 +1008 1008 65.2000000000000028 1985-03-20 00:00:00 -5 +1009 1009 24.1999999999999993 1985-03-20 00:00:00 -5 +1010 1010 141 1985-03-20 00:00:00 -5 +1011 1011 0.757000000000000006 1985-03-20 00:00:00 -5 +1012 1012 11.9299999999999997 1985-03-20 00:00:00 -5 +1013 1013 0.895000000000000018 1985-03-20 00:00:00 -5 +1014 1014 147.400000000000006 1985-03-20 00:00:00 -5 +1015 1015 28.3999999999999986 1985-03-20 00:00:00 -5 +1016 1016 279 1985-04-03 00:00:00 -5 +1017 1017 53.1000000000000014 1985-04-03 00:00:00 -5 +1018 1018 0.479999999999999982 1985-04-03 00:00:00 -5 +1019 1019 13.0199999999999996 1985-04-03 00:00:00 -5 +1020 1020 0.846999999999999975 1985-04-03 00:00:00 -5 +1021 1021 148.900000000000006 1985-04-03 00:00:00 -5 +1022 1022 28.3999999999999986 1985-04-03 00:00:00 -5 +1023 1023 275 1985-04-17 00:00:00 -5 +1024 1024 64.5 1985-04-17 00:00:00 -5 +1025 1025 25.8999999999999986 1985-04-17 00:00:00 -5 +1026 1026 142 1985-04-17 00:00:00 -5 +1027 1027 0.349999999999999978 1985-04-17 00:00:00 -5 +1028 1028 11.7899999999999991 1985-04-17 00:00:00 -5 +1029 1029 0.812999999999999945 1985-04-17 00:00:00 -5 +1030 1030 150.199999999999989 1985-04-17 00:00:00 -5 +1031 1031 29.8999999999999986 1985-04-17 00:00:00 -5 +1032 1032 255 1985-05-02 00:00:00 -5 +1033 1033 58.8999999999999986 1985-05-02 00:00:00 -5 +1034 1034 27 1985-05-02 00:00:00 -5 +1035 1035 139 1985-05-02 00:00:00 -5 +1036 1036 0.344999999999999973 1985-05-02 00:00:00 -5 +1037 1037 12.9600000000000009 1985-05-02 00:00:00 -5 +1038 1038 0.861999999999999988 1985-05-02 00:00:00 -5 +1039 1039 141.699999999999989 1985-05-02 00:00:00 -5 +1040 1040 28.5 1985-05-02 00:00:00 -5 +1041 1041 222 1985-05-15 00:00:00 -5 +1042 1042 54.3999999999999986 1985-05-15 00:00:00 -5 +1043 1043 23.1999999999999993 1985-05-15 00:00:00 -5 +1044 1044 121 1985-05-15 00:00:00 -5 +1045 1045 0.441000000000000003 1985-05-15 00:00:00 -5 +1046 1046 11.0800000000000001 1985-05-15 00:00:00 -5 +1047 1047 0.822999999999999954 1985-05-15 00:00:00 -5 +1048 1048 142.5 1985-05-15 00:00:00 -5 +1049 1049 28 1985-05-15 00:00:00 -5 +1050 1050 216 1985-05-29 00:00:00 -5 +1051 1051 57.5 1985-05-29 00:00:00 -5 +1052 1052 22.3999999999999986 1985-05-29 00:00:00 -5 +1053 1053 113 1985-05-29 00:00:00 -5 +1054 1054 0.42599999999999999 1985-05-29 00:00:00 -5 +1055 1055 9.92600000000000016 1985-05-29 00:00:00 -5 +1056 1056 0.767000000000000015 1985-05-29 00:00:00 -5 +1057 1057 141.900000000000006 1985-05-29 00:00:00 -5 +1058 1058 28 1985-05-29 00:00:00 -5 +1059 1059 216 1985-06-12 00:00:00 -5 +1060 1060 48.8999999999999986 1985-06-12 00:00:00 -5 +1061 1061 21.6000000000000014 1985-06-12 00:00:00 -5 +1062 1062 131 1985-06-12 00:00:00 -5 +1063 1063 0.0940000000000000002 1985-06-12 00:00:00 -5 +1064 1064 11.2400000000000002 1985-06-12 00:00:00 -5 +1065 1065 0.744999999999999996 1985-06-12 00:00:00 -5 +1066 1066 140.5 1985-06-12 00:00:00 -5 +1067 1067 27 1985-06-12 00:00:00 -5 +1068 1068 187 1985-06-26 00:00:00 -5 +1069 1069 42.2000000000000028 1985-06-26 00:00:00 -5 +1070 1070 20.5 1985-06-26 00:00:00 -5 +1071 1071 108 1985-06-26 00:00:00 -5 +1072 1072 0.394000000000000017 1985-06-26 00:00:00 -5 +1073 1073 9.63499999999999979 1985-06-26 00:00:00 -5 +1074 1074 0.81899999999999995 1985-06-26 00:00:00 -5 +1075 1075 139.599999999999994 1985-06-26 00:00:00 -5 +1076 1076 27.3999999999999986 1985-06-26 00:00:00 -5 +1077 1077 174 1985-07-10 00:00:00 -5 +1078 1078 45.6000000000000014 1985-07-10 00:00:00 -5 +1079 1079 25 1985-07-10 00:00:00 -5 +1080 1080 105 1985-07-10 00:00:00 -5 +1081 1081 0.239999999999999991 1985-07-10 00:00:00 -5 +1082 1082 9.5600000000000005 1985-07-10 00:00:00 -5 +1083 1083 0.808000000000000052 1985-07-10 00:00:00 -5 +1084 1084 146.099999999999994 1985-07-10 00:00:00 -5 +1085 1085 27.6000000000000014 1985-07-10 00:00:00 -5 +1086 1086 170 1985-07-21 00:00:00 -5 +1087 1087 39.2999999999999972 1985-07-21 00:00:00 -5 +1088 1088 19.5 1985-07-21 00:00:00 -5 +1089 1089 103 1985-07-21 00:00:00 -5 +1090 1090 0.357999999999999985 1985-07-21 00:00:00 -5 +1091 1091 9.94500000000000028 1985-07-21 00:00:00 -5 +1092 1092 0.756000000000000005 1985-07-21 00:00:00 -5 +1093 1093 146.800000000000011 1985-07-21 00:00:00 -5 +1094 1094 27.3999999999999986 1985-07-21 00:00:00 -5 +1095 1095 190 1985-10-10 00:00:00 -5 +1096 1096 88.5 1985-10-10 00:00:00 -5 +1097 1097 20.3999999999999986 1985-10-10 00:00:00 -5 +1098 1098 150 1985-10-10 00:00:00 -5 +1099 1099 0.790000000000000036 1985-10-10 00:00:00 -5 +1100 1100 14.0800000000000001 1985-10-10 00:00:00 -5 +1101 1101 0.939999999999999947 1985-10-10 00:00:00 -5 +1102 1102 149.599999999999994 1985-10-10 00:00:00 -5 +1103 1103 29.6000000000000014 1985-10-10 00:00:00 -5 +1104 1104 216 1985-10-30 00:00:00 -5 +1105 1105 76.5999999999999943 1985-10-30 00:00:00 -5 +1106 1106 21 1985-10-30 00:00:00 -5 +1107 1107 155 1985-10-30 00:00:00 -5 +1108 1108 0.728999999999999981 1985-10-30 00:00:00 -5 +1109 1109 16.0300000000000011 1985-10-30 00:00:00 -5 +1110 1110 0.936000000000000054 1985-10-30 00:00:00 -5 +1111 1111 137.400000000000006 1985-10-30 00:00:00 -5 +1112 1112 28.8000000000000007 1985-10-30 00:00:00 -5 +1113 1113 191 1985-11-13 00:00:00 -5 +1114 1114 72.5 1985-11-13 00:00:00 -5 +1115 1115 20.6000000000000014 1985-11-13 00:00:00 -5 +1116 1116 137 1985-11-13 00:00:00 -5 +1117 1117 0.599999999999999978 1985-11-13 00:00:00 -5 +1118 1118 13.0099999999999998 1985-11-13 00:00:00 -5 +1119 1119 0.948999999999999955 1985-11-13 00:00:00 -5 +1120 1120 161.400000000000006 1985-11-13 00:00:00 -5 +1121 1121 29.3000000000000007 1985-11-13 00:00:00 -5 +1122 1122 280 1985-11-27 00:00:00 -5 +1123 1123 79.2000000000000028 1985-11-27 00:00:00 -5 +1124 1124 23.1000000000000014 1985-11-27 00:00:00 -5 +1125 1125 149 1985-11-27 00:00:00 -5 +1126 1126 0.181999999999999995 1985-11-27 00:00:00 -5 +1127 1127 15.8599999999999994 1985-11-27 00:00:00 -5 +1128 1128 0.864999999999999991 1985-11-27 00:00:00 -5 +1129 1129 161.400000000000006 1985-11-27 00:00:00 -5 +1130 1130 29.1999999999999993 1985-11-27 00:00:00 -5 +1131 1131 216 1985-12-12 00:00:00 -5 +1132 1132 69 1985-12-12 00:00:00 -5 +1133 1133 22 1985-12-12 00:00:00 -5 +1134 1134 150 1985-12-12 00:00:00 -5 +1135 1135 0.181999999999999995 1985-12-12 00:00:00 -5 +1136 1136 15.6500000000000004 1985-12-12 00:00:00 -5 +1137 1137 0.831999999999999962 1985-12-12 00:00:00 -5 +1138 1138 145.099999999999994 1985-12-12 00:00:00 -5 +1139 1139 28.8000000000000007 1985-12-12 00:00:00 -5 +1140 1140 266 1985-12-26 00:00:00 -5 +1141 1141 60.8999999999999986 1985-12-26 00:00:00 -5 +1142 1142 28.1999999999999993 1985-12-26 00:00:00 -5 +1143 1143 140 1985-12-26 00:00:00 -5 +1144 1144 0.0708000000000000018 1985-12-26 00:00:00 -5 +1145 1145 12.5 1985-12-26 00:00:00 -5 +1146 1146 0.661000000000000032 1985-12-26 00:00:00 -5 +1147 1147 147.300000000000011 1985-12-26 00:00:00 -5 +1148 1148 29 1985-12-26 00:00:00 -5 +1149 1149 58 1986-01-10 00:00:00 -5 +1150 1150 23.1000000000000014 1986-01-10 00:00:00 -5 +1151 1151 142 1986-01-10 00:00:00 -5 +1152 1152 0.0859999999999999931 1986-01-10 00:00:00 -5 +1153 1153 12.3800000000000008 1986-01-10 00:00:00 -5 +1154 1154 0.679000000000000048 1986-01-10 00:00:00 -5 +1155 1155 142.599999999999994 1986-01-10 00:00:00 -5 +1156 1156 28.5 1986-01-10 00:00:00 -5 +1157 1157 255 1986-01-30 00:00:00 -5 +1158 1158 55 1986-01-30 00:00:00 -5 +1159 1159 23.3000000000000007 1986-01-30 00:00:00 -5 +1160 1160 132 1986-01-30 00:00:00 -5 +1161 1161 0.252000000000000002 1986-01-30 00:00:00 -5 +1162 1162 16.9699999999999989 1986-01-30 00:00:00 -5 +1163 1163 0.474999999999999978 1986-01-30 00:00:00 -5 +1164 1164 138.400000000000006 1986-01-30 00:00:00 -5 +1165 1165 28.5 1986-01-30 00:00:00 -5 +1166 1166 272 1986-02-14 00:00:00 -5 +1167 1167 61 1986-02-14 00:00:00 -5 +1168 1168 23.3000000000000007 1986-02-14 00:00:00 -5 +1169 1169 141 1986-02-14 00:00:00 -5 +1170 1170 0.349999999999999978 1986-02-14 00:00:00 -5 +1171 1171 12.4900000000000002 1986-02-14 00:00:00 -5 +1172 1172 0.700999999999999956 1986-02-14 00:00:00 -5 +1173 1173 133.599999999999994 1986-02-14 00:00:00 -5 +1174 1174 28.3999999999999986 1986-02-14 00:00:00 -5 +1175 1175 288 1986-03-04 00:00:00 -5 +1176 1176 59 1986-03-04 00:00:00 -5 +1177 1177 24.3000000000000007 1986-03-04 00:00:00 -5 +1178 1178 126 1986-03-04 00:00:00 -5 +1179 1179 0.512000000000000011 1986-03-04 00:00:00 -5 +1180 1180 13.2899999999999991 1986-03-04 00:00:00 -5 +1181 1181 1.08000000000000007 1986-03-04 00:00:00 -5 +1182 1182 137.699999999999989 1986-03-04 00:00:00 -5 +1183 1183 28.3999999999999986 1986-03-04 00:00:00 -5 +1184 1184 285 1986-03-21 00:00:00 -5 +1185 1185 54 1986-03-21 00:00:00 -5 +1186 1186 24.3000000000000007 1986-03-21 00:00:00 -5 +1187 1187 127 1986-03-21 00:00:00 -5 +1188 1188 0.711999999999999966 1986-03-21 00:00:00 -5 +1189 1189 6.13100000000000023 1986-03-21 00:00:00 -5 +1190 1190 0.626000000000000001 1986-03-21 00:00:00 -5 +1191 1191 141 1986-03-21 00:00:00 -5 +1192 1192 27.6000000000000014 1986-03-21 00:00:00 -5 +1193 1193 272 1986-04-12 00:00:00 -5 +1194 1194 67.0999999999999943 1986-04-12 00:00:00 -5 +1195 1195 22.6000000000000014 1986-04-12 00:00:00 -5 +1196 1196 128 1986-04-12 00:00:00 -5 +1197 1197 0 1986-04-12 00:00:00 -5 +1198 1198 10.3200000000000003 1986-04-12 00:00:00 -5 +1199 1199 1.47799999999999998 1986-04-12 00:00:00 -5 +1200 1200 146.900000000000006 1986-04-12 00:00:00 -5 +1201 1201 28.8999999999999986 1986-04-12 00:00:00 -5 +1202 1202 0.411999999999999977 1986-04-28 00:00:00 -5 +1203 1203 7.54399999999999959 1986-04-28 00:00:00 -5 +1204 1204 141.5 1986-04-28 00:00:00 -5 +1205 1205 27.8000000000000007 1986-04-28 00:00:00 -5 +1206 1206 0.539000000000000035 1986-05-21 00:00:00 -5 +1207 1207 6.56099999999999994 1986-05-21 00:00:00 -5 +1208 1208 1.1359999999999999 1986-05-21 00:00:00 -5 +1209 1209 153.300000000000011 1986-05-21 00:00:00 -5 +1210 1210 28.5 1986-05-21 00:00:00 -5 +1211 1211 185 1986-06-17 00:00:00 -5 +1212 1212 0.253800000000000026 1986-06-17 00:00:00 -5 +1213 1213 5.99899999999999967 1986-06-17 00:00:00 -5 +1214 1214 155.400000000000006 1986-06-17 00:00:00 -5 +1215 1215 27.3999999999999986 1986-06-17 00:00:00 -5 +1216 1216 1.125 1986-07-02 00:00:00 -5 +1217 1217 5.87399999999999967 1986-07-02 00:00:00 -5 +1218 1218 0.628000000000000003 1986-07-02 00:00:00 -5 +1219 1219 154 1986-07-02 00:00:00 -5 +1220 1220 27.1999999999999993 1986-07-02 00:00:00 -5 +1221 1221 0.496099999999999985 1986-08-20 00:00:00 -5 +1222 1222 7.84999999999999964 1986-08-20 00:00:00 -5 +1223 1223 0.662000000000000033 1986-08-20 00:00:00 -5 +1224 1224 146 1986-08-20 00:00:00 -5 +1225 1225 28.6999999999999993 1986-08-20 00:00:00 -5 +1226 1226 0.502399999999999958 1986-09-12 00:00:00 -5 +1227 1227 11 1986-09-12 00:00:00 -5 +1228 1228 0.578999999999999959 1986-09-12 00:00:00 -5 +1229 1229 149 1986-09-12 00:00:00 -5 +1230 1230 28.5 1986-09-12 00:00:00 -5 +1231 1231 0.560899999999999954 1986-10-21 00:00:00 -5 +1232 1232 15.7200000000000006 1986-10-21 00:00:00 -5 +1233 1233 0.682000000000000051 1986-10-21 00:00:00 -5 +1234 1234 152 1986-10-21 00:00:00 -5 +1235 1235 29.3000000000000007 1986-10-21 00:00:00 -5 +1236 1236 0.650000000000000022 1986-11-05 00:00:00 -5 +1237 1237 13.7599999999999998 1986-11-05 00:00:00 -5 +1238 1238 0.667000000000000037 1986-11-05 00:00:00 -5 +1239 1239 142 1986-11-05 00:00:00 -5 +1240 1240 0.489999999999999991 1986-11-19 00:00:00 -5 +1241 1241 15.0999999999999996 1986-11-19 00:00:00 -5 +1242 1242 0.770000000000000018 1986-11-19 00:00:00 -5 +1243 1243 144 1986-11-19 00:00:00 -5 +1244 1244 28.6000000000000014 1986-11-19 00:00:00 -5 +1245 1245 176 1987-06-28 00:00:00 -5 +1246 1246 181 1987-08-25 00:00:00 -5 +1247 1247 11.5999999999999996 1987-08-25 00:00:00 -5 +1248 1248 0.468999999999999972 1987-08-25 00:00:00 -5 +1249 1249 28.6999999999999993 1987-08-25 00:00:00 -5 +1250 1250 207 1987-09-30 00:00:00 -5 +1251 1251 1.15999999999999992 1987-09-30 00:00:00 -5 +1252 1252 16.0100000000000016 1987-09-30 00:00:00 -5 +1253 1253 0.766000000000000014 1987-09-30 00:00:00 -5 +1254 1254 163 1987-09-30 00:00:00 -5 +1255 1255 238 1987-12-07 00:00:00 -5 +1256 1256 222 1988-01-08 00:00:00 -5 +1257 1257 0.949999999999999956 1988-01-08 00:00:00 -5 +1258 1258 19.5539999999999985 1988-01-08 00:00:00 -5 +1259 1259 0.85199999999999998 1988-01-08 00:00:00 -5 +1260 1260 143 1988-01-08 00:00:00 -5 +1261 1261 28.1999999999999993 1988-01-08 00:00:00 -5 +1262 1262 223 1988-02-05 00:00:00 -5 +1263 1263 0.780000000000000027 1988-02-05 00:00:00 -5 +1264 1264 10.4440000000000008 1988-02-05 00:00:00 -5 +1265 1265 0.758000000000000007 1988-02-05 00:00:00 -5 +1266 1266 145 1988-02-05 00:00:00 -5 +1267 1267 28.6000000000000014 1988-02-05 00:00:00 -5 +1268 1268 216 1988-04-21 00:00:00 -5 +1269 1269 11.8100000000000005 1988-04-21 00:00:00 -5 +1270 1270 0.809000000000000052 1988-04-21 00:00:00 -5 +1271 1271 150 1988-04-21 00:00:00 -5 +1272 1272 28.6000000000000014 1988-04-21 00:00:00 -5 +1273 1273 194 1988-05-20 00:00:00 -5 +1274 1274 9.25999999999999979 1988-05-20 00:00:00 -5 +1275 1275 0.696999999999999953 1988-05-20 00:00:00 -5 +1276 1276 155 1988-05-20 00:00:00 -5 +1277 1277 27.6999999999999993 1988-05-20 00:00:00 -5 +1278 1278 0.520000000000000018 1988-06-29 00:00:00 -5 +1279 1279 6.05999999999999961 1988-06-29 00:00:00 -5 +1280 1280 1.23100000000000009 1988-06-29 00:00:00 -5 +1281 1281 146 1988-06-29 00:00:00 -5 +1282 1282 27.3000000000000007 1988-06-29 00:00:00 -5 +1283 1283 170 1988-07-18 00:00:00 -5 +1284 1284 0.959999999999999964 1988-07-18 00:00:00 -5 +1285 1285 8.11999999999999922 1988-07-18 00:00:00 -5 +1286 1286 0.903000000000000025 1988-07-18 00:00:00 -5 +1287 1287 155 1988-07-18 00:00:00 -5 +1288 1288 27.3000000000000007 1988-07-18 00:00:00 -5 +1289 1289 139 1988-08-28 00:00:00 -5 +1290 1290 11.8499999999999996 1988-08-28 00:00:00 -5 +1291 1291 0.801000000000000045 1988-08-28 00:00:00 -5 +1292 1292 156 1988-08-28 00:00:00 -5 +1293 1293 29.6000000000000014 1988-08-28 00:00:00 -5 +1294 1294 155 1988-09-23 00:00:00 -5 +1295 1295 16.6600000000000001 1988-09-23 00:00:00 -5 +1296 1296 0.824999999999999956 1988-09-23 00:00:00 -5 +1297 1297 181 1988-09-23 00:00:00 -5 +1298 1298 30.1999999999999993 1988-09-23 00:00:00 -5 +1299 1299 262 1989-02-01 00:00:00 -5 +1300 1300 0.777000000000000024 1989-02-01 00:00:00 -5 +1301 1301 0.901000000000000023 1989-02-01 00:00:00 -5 +1302 1302 154 1989-02-01 00:00:00 -5 +1303 1303 27.1000000000000014 1989-02-01 00:00:00 -5 +1304 1304 5.20000000000000018 1989-03-12 00:00:00 -5 +1305 1305 9.19999999999999929 1989-03-12 00:00:00 -5 +1306 1306 0.985999999999999988 1989-03-12 00:00:00 -5 +1307 1307 140 1989-03-12 00:00:00 -5 +1308 1308 27.8000000000000007 1989-03-12 00:00:00 -5 +1309 1309 177 1989-07-11 00:00:00 -5 +1310 1310 3.25 1989-07-11 00:00:00 -5 +1311 1311 8.44999999999999929 1989-07-11 00:00:00 -5 +1312 1312 0.527000000000000024 1989-07-11 00:00:00 -5 +1313 1313 138 1989-07-11 00:00:00 -5 +1314 1314 26.3999999999999986 1989-07-11 00:00:00 -5 +1315 1315 159 1989-08-10 00:00:00 -5 +1316 1316 2.68999999999999995 1989-08-10 00:00:00 -5 +1317 1317 5.79999999999999982 1989-08-10 00:00:00 -5 +1318 1318 0.475999999999999979 1989-08-10 00:00:00 -5 +1319 1319 142 1989-08-10 00:00:00 -5 +1320 1320 28.1000000000000014 1989-08-10 00:00:00 -5 +1321 1321 214 1989-10-17 00:00:00 -5 +1322 1322 3.5 1989-10-17 00:00:00 -5 +1323 1323 9.64000000000000057 1989-10-17 00:00:00 -5 +1324 1324 0.625 1989-10-17 00:00:00 -5 +1325 1325 159 1989-10-17 00:00:00 -5 +1326 1326 29.6999999999999993 1989-10-17 00:00:00 -5 +1327 1327 185 1989-11-19 00:00:00 -5 +1328 1328 2.37000000000000011 1989-11-19 00:00:00 -5 +1329 1329 14.4000000000000004 1989-11-19 00:00:00 -5 +1330 1330 0.867999999999999994 1989-11-19 00:00:00 -5 +1331 1331 140 1989-11-19 00:00:00 -5 +1332 1332 29.6999999999999993 1989-11-19 00:00:00 -5 +1333 1333 258 1989-12-12 00:00:00 -5 +1334 1334 3.41999999999999993 1989-12-12 00:00:00 -5 +1335 1335 0.914000000000000035 1989-12-12 00:00:00 -5 +1336 1336 145 1989-12-12 00:00:00 -5 +1337 1337 29.6000000000000014 1989-12-12 00:00:00 -5 +1338 1338 2.37000000000000011 1990-03-13 00:00:00 -5 +1339 1339 14.6999999999999993 1990-03-13 00:00:00 -5 +1340 1340 0.82999999999999996 1990-03-13 00:00:00 -5 +1341 1341 145 1990-03-13 00:00:00 -5 +1342 1342 28.8000000000000007 1990-03-13 00:00:00 -5 +1343 1343 8.0600000000000005 1990-05-02 00:00:00 -5 +1344 1344 0.768000000000000016 1990-05-02 00:00:00 -5 +1345 1345 142.699999999999989 1990-05-02 00:00:00 -5 +1346 1346 28.3000000000000007 1990-05-02 00:00:00 -5 +1347 1347 0.469999999999999973 1990-06-11 00:00:00 -5 +1348 1348 10.2799999999999994 1990-06-11 00:00:00 -5 +1349 1349 0.729999999999999982 1990-06-11 00:00:00 -5 +1350 1350 132 1990-06-11 00:00:00 -5 +1351 1351 27.5 1990-06-11 00:00:00 -5 +1352 1352 0.23000000000000001 1990-09-14 00:00:00 -5 +1353 1353 14.2799999999999994 1990-09-14 00:00:00 -5 +1354 1354 0.760000000000000009 1990-09-14 00:00:00 -5 +1355 1355 163 1990-09-14 00:00:00 -5 +1356 1356 28.8999999999999986 1990-09-14 00:00:00 -5 +1357 1357 17.5 1990-10-17 00:00:00 -5 +1358 1358 0.790000000000000036 1990-10-17 00:00:00 -5 +1359 1359 176 1990-10-17 00:00:00 -5 +1360 1360 30 1990-10-17 00:00:00 -5 +1361 1361 0.280000000000000027 1990-12-01 00:00:00 -5 +1362 1362 15.25 1990-12-01 00:00:00 -5 +1363 1363 0.780000000000000027 1990-12-01 00:00:00 -5 +1364 1364 147 1990-12-01 00:00:00 -5 +1365 1365 29.1999999999999993 1990-12-01 00:00:00 -5 +1366 1366 1.98999999999999999 1991-01-15 00:00:00 -5 +1367 1367 14.3200000000000003 1991-01-15 00:00:00 -5 +1368 1368 0.729999999999999982 1991-01-15 00:00:00 -5 +1369 1369 150 1991-01-15 00:00:00 -5 +1370 1370 28.3000000000000007 1991-01-15 00:00:00 -5 +1371 1371 2.12000000000000011 1991-02-08 00:00:00 -5 +1372 1372 12.8499999999999996 1991-02-08 00:00:00 -5 +1373 1373 0.689999999999999947 1991-02-08 00:00:00 -5 +1374 1374 152 1991-02-08 00:00:00 -5 +1375 1375 28.3999999999999986 1991-02-08 00:00:00 -5 +1376 1376 1.58000000000000007 1991-03-25 00:00:00 -5 +1377 1377 12.8399999999999999 1991-03-25 00:00:00 -5 +1378 1378 0.75 1991-03-25 00:00:00 -5 +1379 1379 146 1991-03-25 00:00:00 -5 +1380 1380 28.3999999999999986 1991-03-25 00:00:00 -5 +1381 1381 1.62000000000000011 1991-06-28 00:00:00 -5 +1382 1382 5.19000000000000039 1991-06-28 00:00:00 -5 +1383 1383 0.760000000000000009 1991-06-28 00:00:00 -5 +1384 1384 149 1991-06-28 00:00:00 -5 +1385 1385 27.6000000000000014 1991-06-28 00:00:00 -5 +1386 1386 1.35000000000000009 1991-08-01 00:00:00 -5 +1387 1387 9.57000000000000028 1991-08-01 00:00:00 -5 +1388 1388 0.709999999999999964 1991-08-01 00:00:00 -5 +1389 1389 150 1991-08-01 00:00:00 -5 +1390 1390 27.8000000000000007 1991-08-01 00:00:00 -5 +1391 1391 0.440000000000000002 1991-10-05 00:00:00 -5 +1392 1392 15.2400000000000002 1991-10-05 00:00:00 -5 +1393 1393 1.07000000000000006 1991-10-05 00:00:00 -5 +1394 1394 178 1991-10-05 00:00:00 -5 +1395 1395 30.5 1991-10-05 00:00:00 -5 +1396 1396 2.93999999999999995 1991-10-29 00:00:00 -5 +1397 1397 17.2600000000000016 1991-10-29 00:00:00 -5 +1398 1398 1.17999999999999994 1991-10-29 00:00:00 -5 +1399 1399 184 1991-10-29 00:00:00 -5 +1400 1400 29.6000000000000014 1991-10-29 00:00:00 -5 +1401 1401 1.8600000000000001 1991-12-06 00:00:00 -5 +1402 1402 17.7600000000000016 1991-12-06 00:00:00 -5 +1403 1403 1.17999999999999994 1991-12-06 00:00:00 -5 +1404 1404 164 1991-12-06 00:00:00 -5 +1405 1405 30 1991-12-06 00:00:00 -5 +1406 1406 3.50999999999999979 1992-01-18 00:00:00 -5 +1407 1407 15.9600000000000009 1992-01-18 00:00:00 -5 +1408 1408 139 1992-01-18 00:00:00 -5 +1409 1409 29.1000000000000014 1992-01-18 00:00:00 -5 +1410 1410 1.42999999999999994 1992-02-22 00:00:00 -5 +1411 1411 14.9000000000000004 1992-02-22 00:00:00 -5 +1412 1412 0.699999999999999956 1992-02-22 00:00:00 -5 +1413 1413 144 1992-02-22 00:00:00 -5 +1414 1414 28.6999999999999993 1992-02-22 00:00:00 -5 +1415 1415 3.62999999999999989 1992-03-24 00:00:00 -5 +1416 1416 13.2200000000000006 1992-03-24 00:00:00 -5 +1417 1417 28.1000000000000014 1992-03-24 00:00:00 -5 +1418 1418 2.4700000000000002 1992-04-24 00:00:00 -5 +1419 1419 10.6600000000000001 1992-04-24 00:00:00 -5 +1420 1420 0.699999999999999956 1992-04-24 00:00:00 -5 +1421 1421 147 1992-04-24 00:00:00 -5 +1422 1422 29 1992-04-24 00:00:00 -5 +1423 1423 2.31000000000000005 1992-05-14 00:00:00 -5 +1424 1424 9.41999999999999993 1992-05-14 00:00:00 -5 +1425 1425 0.839999999999999969 1992-05-14 00:00:00 -5 +1426 1426 146 1992-05-14 00:00:00 -5 +1427 1427 29.3999999999999986 1992-05-14 00:00:00 -5 +1428 1428 1.73999999999999999 1992-06-16 00:00:00 -5 +1429 1429 5.37999999999999989 1992-06-16 00:00:00 -5 +1430 1430 0.959999999999999964 1992-06-16 00:00:00 -5 +1431 1431 149 1992-06-16 00:00:00 -5 +1432 1432 27.8000000000000007 1992-06-16 00:00:00 -5 +1433 1433 0.92000000000000004 1993-03-24 00:00:00 -5 +1434 1434 7.69000000000000039 1993-03-24 00:00:00 -5 +1435 1435 1.10000000000000009 1993-03-24 00:00:00 -5 +1436 1436 147 1993-03-24 00:00:00 -5 +1437 1437 28.1999999999999993 1993-03-24 00:00:00 -5 +1438 1438 0.699999999999999956 1993-04-17 00:00:00 -5 +1439 1439 5.65000000000000036 1993-04-17 00:00:00 -5 +1440 1440 0.869999999999999996 1993-04-17 00:00:00 -5 +1441 1441 151 1993-04-17 00:00:00 -5 +1442 1442 27.6000000000000014 1993-04-17 00:00:00 -5 +1443 1443 1.98999999999999999 1993-06-20 00:00:00 -5 +1444 1444 4.69000000000000039 1993-06-20 00:00:00 -5 +1445 1445 0.810000000000000053 1993-06-20 00:00:00 -5 +1446 1446 147 1993-06-20 00:00:00 -5 +1447 1447 27.1999999999999993 1993-06-20 00:00:00 -5 +1448 1448 0.729999999999999982 1993-08-24 00:00:00 -5 +1449 1449 7.95000000000000018 1993-08-24 00:00:00 -5 +1450 1450 0.890000000000000013 1993-08-24 00:00:00 -5 +1451 1451 158 1993-08-24 00:00:00 -5 +1452 1452 27.1999999999999993 1993-08-24 00:00:00 -5 +1453 1453 633 1983-01-17 00:00:00 -5 +1454 1454 633 1983-01-17 00:00:00 -5 +1455 1455 778 1983-01-17 00:00:00 -5 +1456 1456 778 1983-01-17 00:00:00 -5 +1457 1457 -14.0899999999999999 1983-01-17 00:00:00 -5 +1458 1458 -14.0899999999999999 1983-01-17 00:00:00 -5 +1459 1459 138 1983-01-17 00:00:00 -5 +1460 1460 138 1983-01-17 00:00:00 -5 +1461 1461 4002 1983-01-17 00:00:00 -5 +1462 1462 4002 1983-01-17 00:00:00 -5 +1463 1463 7.00999999999999979 1983-01-17 00:00:00 -5 +1464 1464 7.00999999999999979 1983-01-17 00:00:00 -5 +1465 1465 628 1983-01-27 00:00:00 -5 +1466 1466 628 1983-01-27 00:00:00 -5 +1467 1467 783 1983-01-27 00:00:00 -5 +1468 1468 783 1983-01-27 00:00:00 -5 +1469 1469 124 1983-01-27 00:00:00 -5 +1470 1470 124 1983-01-27 00:00:00 -5 +1471 1471 4666 1983-01-27 00:00:00 -5 +1472 1472 4666 1983-01-27 00:00:00 -5 +1473 1473 6.94000000000000039 1983-01-27 00:00:00 -5 +1474 1474 6.94000000000000039 1983-01-27 00:00:00 -5 +1475 1475 796 1983-02-08 00:00:00 -5 +1476 1476 796 1983-02-08 00:00:00 -5 +1477 1477 1046 1983-02-08 00:00:00 -5 +1478 1478 1046 1983-02-08 00:00:00 -5 +1479 1479 -14.9800000000000004 1983-02-08 00:00:00 -5 +1480 1480 -14.9800000000000004 1983-02-08 00:00:00 -5 +1481 1481 135 1983-02-08 00:00:00 -5 +1482 1482 135 1983-02-08 00:00:00 -5 +1483 1483 7111 1983-02-08 00:00:00 -5 +1484 1484 7111 1983-02-08 00:00:00 -5 +1485 1485 6.86000000000000032 1983-02-08 00:00:00 -5 +1486 1486 6.86000000000000032 1983-02-08 00:00:00 -5 +1487 1487 859 1983-02-21 00:00:00 -5 +1488 1488 859 1983-02-21 00:00:00 -5 +1489 1489 1101 1983-02-21 00:00:00 -5 +1490 1490 1101 1983-02-21 00:00:00 -5 +1491 1491 130 1983-02-21 00:00:00 -5 +1492 1492 130 1983-02-21 00:00:00 -5 +1493 1493 6998 1983-02-21 00:00:00 -5 +1494 1494 6998 1983-02-21 00:00:00 -5 +1495 1495 6.90000000000000036 1983-02-21 00:00:00 -5 +1496 1496 6.90000000000000036 1983-02-21 00:00:00 -5 +1497 1497 834 1983-03-03 00:00:00 -5 +1498 1498 834 1983-03-03 00:00:00 -5 +1499 1499 1091 1983-03-03 00:00:00 -5 +1500 1500 1091 1983-03-03 00:00:00 -5 +1501 1501 -14.5099999999999998 1983-03-03 00:00:00 -5 +1502 1502 -14.5099999999999998 1983-03-03 00:00:00 -5 +1503 1503 125 1983-03-03 00:00:00 -5 +1504 1504 125 1983-03-03 00:00:00 -5 +1505 1505 7450 1983-03-03 00:00:00 -5 +1506 1506 7450 1983-03-03 00:00:00 -5 +1507 1507 6.86000000000000032 1983-03-03 00:00:00 -5 +1508 1508 6.86000000000000032 1983-03-03 00:00:00 -5 +1509 1509 636 1983-06-07 00:00:00 -5 +1510 1510 636 1983-06-07 00:00:00 -5 +1511 1511 925 1983-06-07 00:00:00 -5 +1512 1512 925 1983-06-07 00:00:00 -5 +1513 1513 123 1983-06-07 00:00:00 -5 +1514 1514 123 1983-06-07 00:00:00 -5 +1515 1515 8601 1983-06-07 00:00:00 -5 +1516 1516 8601 1983-06-07 00:00:00 -5 +1517 1517 6.67999999999999972 1983-06-07 00:00:00 -5 +1518 1518 6.67999999999999972 1983-06-07 00:00:00 -5 +1519 1519 519 1983-07-21 00:00:00 -5 +1520 1520 519 1983-07-21 00:00:00 -5 +1521 1521 781 1983-07-21 00:00:00 -5 +1522 1522 781 1983-07-21 00:00:00 -5 +1523 1523 -16.1700000000000017 1983-07-21 00:00:00 -5 +1524 1524 -16.1700000000000017 1983-07-21 00:00:00 -5 +1525 1525 118 1983-07-21 00:00:00 -5 +1526 1526 118 1983-07-21 00:00:00 -5 +1527 1527 7521 1983-07-21 00:00:00 -5 +1528 1528 7521 1983-07-21 00:00:00 -5 +1529 1529 6.65000000000000036 1983-07-21 00:00:00 -5 +1530 1530 6.65000000000000036 1983-07-21 00:00:00 -5 +1531 1531 614 1983-08-11 00:00:00 -5 +1532 1532 614 1983-08-11 00:00:00 -5 +1533 1533 822 1983-08-11 00:00:00 -5 +1534 1534 822 1983-08-11 00:00:00 -5 +1535 1535 -14.9100000000000001 1983-08-11 00:00:00 -5 +1536 1536 -14.9100000000000001 1983-08-11 00:00:00 -5 +1537 1537 171 1983-08-11 00:00:00 -5 +1538 1538 171 1983-08-11 00:00:00 -5 +1539 1539 6015 1983-08-11 00:00:00 -5 +1540 1540 6015 1983-08-11 00:00:00 -5 +1541 1541 6.82000000000000028 1983-08-11 00:00:00 -5 +1542 1542 6.82000000000000028 1983-08-11 00:00:00 -5 +1543 1543 632 1983-09-10 00:00:00 -5 +1544 1544 632 1983-09-10 00:00:00 -5 +1545 1545 754 1983-09-10 00:00:00 -5 +1546 1546 754 1983-09-10 00:00:00 -5 +1547 1547 -14.1400000000000006 1983-09-10 00:00:00 -5 +1548 1548 -14.1400000000000006 1983-09-10 00:00:00 -5 +1549 1549 174 1983-09-10 00:00:00 -5 +1550 1550 174 1983-09-10 00:00:00 -5 +1551 1551 3561 1983-09-10 00:00:00 -5 +1552 1552 3561 1983-09-10 00:00:00 -5 +1553 1553 7.05999999999999961 1983-09-10 00:00:00 -5 +1554 1554 7.05999999999999961 1983-09-10 00:00:00 -5 +1555 1555 596 1983-09-20 00:00:00 -5 +1556 1556 596 1983-09-20 00:00:00 -5 +1557 1557 719 1983-09-20 00:00:00 -5 +1558 1558 719 1983-09-20 00:00:00 -5 +1559 1559 -13.4700000000000006 1983-09-20 00:00:00 -5 +1560 1560 -13.4700000000000006 1983-09-20 00:00:00 -5 +1561 1561 198 1983-09-20 00:00:00 -5 +1562 1562 198 1983-09-20 00:00:00 -5 +1563 1563 3598 1983-09-20 00:00:00 -5 +1564 1564 3598 1983-09-20 00:00:00 -5 +1565 1565 7.03000000000000025 1983-09-20 00:00:00 -5 +1566 1566 7.03000000000000025 1983-09-20 00:00:00 -5 +1567 1567 493 1983-09-30 00:00:00 -5 +1568 1568 493 1983-09-30 00:00:00 -5 +1569 1569 604 1983-09-30 00:00:00 -5 +1570 1570 604 1983-09-30 00:00:00 -5 +1571 1571 -13.4199999999999999 1983-09-30 00:00:00 -5 +1572 1572 -13.4199999999999999 1983-09-30 00:00:00 -5 +1573 1573 168 1983-09-30 00:00:00 -5 +1574 1574 168 1983-09-30 00:00:00 -5 +1575 1575 3340 1983-09-30 00:00:00 -5 +1576 1576 3340 1983-09-30 00:00:00 -5 +1577 1577 6.98000000000000043 1983-09-30 00:00:00 -5 +1578 1578 6.98000000000000043 1983-09-30 00:00:00 -5 +1579 1579 629.299999999999955 1983-12-16 00:00:00 -5 +1580 1580 629.299999999999955 1983-12-16 00:00:00 -5 +1581 1581 809.899999999999977 1983-12-16 00:00:00 -5 +1582 1582 809.899999999999977 1983-12-16 00:00:00 -5 +1583 1583 -13.3300000000000001 1983-12-16 00:00:00 -5 +1584 1584 -13.3300000000000001 1983-12-16 00:00:00 -5 +1585 1585 174 1983-12-16 00:00:00 -5 +1586 1586 174 1983-12-16 00:00:00 -5 +1587 1587 5753 1983-12-16 00:00:00 -5 +1588 1588 5753 1983-12-16 00:00:00 -5 +1589 1589 6.84999999999999964 1983-12-16 00:00:00 -5 +1590 1590 6.84999999999999964 1983-12-16 00:00:00 -5 +1591 1591 621.899999999999977 1984-01-03 00:00:00 -5 +1592 1592 621.899999999999977 1984-01-03 00:00:00 -5 +1593 1593 755 1984-01-03 00:00:00 -5 +1594 1594 755 1984-01-03 00:00:00 -5 +1595 1595 -13.25 1984-01-03 00:00:00 -5 +1596 1596 -13.25 1984-01-03 00:00:00 -5 +1597 1597 167.810000000000002 1984-01-03 00:00:00 -5 +1598 1598 167.810000000000002 1984-01-03 00:00:00 -5 +1599 1599 4024 1984-01-03 00:00:00 -5 +1600 1600 4024 1984-01-03 00:00:00 -5 +1601 1601 7 1984-01-03 00:00:00 -5 +1602 1602 7 1984-01-03 00:00:00 -5 +1603 1603 620.600000000000023 1984-01-19 00:00:00 -5 +1604 1604 620.600000000000023 1984-01-19 00:00:00 -5 +1605 1605 761.5 1984-01-19 00:00:00 -5 +1606 1606 761.5 1984-01-19 00:00:00 -5 +1607 1607 -13.1099999999999994 1984-01-19 00:00:00 -5 +1608 1608 -13.1099999999999994 1984-01-19 00:00:00 -5 +1609 1609 160.129999999999995 1984-01-19 00:00:00 -5 +1610 1610 160.129999999999995 1984-01-19 00:00:00 -5 +1611 1611 4205 1984-01-19 00:00:00 -5 +1612 1612 4205 1984-01-19 00:00:00 -5 +1613 1613 6.98000000000000043 1984-01-19 00:00:00 -5 +1614 1614 6.98000000000000043 1984-01-19 00:00:00 -5 +1615 1615 731.799999999999955 1984-03-20 00:00:00 -5 +1616 1616 731.799999999999955 1984-03-20 00:00:00 -5 +1617 1617 937.799999999999955 1984-03-20 00:00:00 -5 +1618 1618 937.799999999999955 1984-03-20 00:00:00 -5 +1619 1619 -17.7100000000000009 1984-03-20 00:00:00 -5 +1620 1620 -17.7100000000000009 1984-03-20 00:00:00 -5 +1621 1621 131.52000000000001 1984-03-20 00:00:00 -5 +1622 1622 131.52000000000001 1984-03-20 00:00:00 -5 +1623 1623 5962 1984-03-20 00:00:00 -5 +1624 1624 5962 1984-03-20 00:00:00 -5 +1625 1625 6.90000000000000036 1984-03-20 00:00:00 -5 +1626 1626 6.90000000000000036 1984-03-20 00:00:00 -5 +1627 1627 618.899999999999977 1984-04-05 00:00:00 -5 +1628 1628 618.899999999999977 1984-04-05 00:00:00 -5 +1629 1629 809.899999999999977 1984-04-05 00:00:00 -5 +1630 1630 809.899999999999977 1984-04-05 00:00:00 -5 +1631 1631 -16.0899999999999999 1984-04-05 00:00:00 -5 +1632 1632 -16.0899999999999999 1984-04-05 00:00:00 -5 +1633 1633 152 1984-04-05 00:00:00 -5 +1634 1634 152 1984-04-05 00:00:00 -5 +1635 1635 5658 1984-04-05 00:00:00 -5 +1636 1636 5658 1984-04-05 00:00:00 -5 +1637 1637 6.84999999999999964 1984-04-05 00:00:00 -5 +1638 1638 6.84999999999999964 1984-04-05 00:00:00 -5 +1639 1639 636.399999999999977 1984-09-13 00:00:00 -5 +1640 1640 636.399999999999977 1984-09-13 00:00:00 -5 +1641 1641 782.399999999999977 1984-09-13 00:00:00 -5 +1642 1642 782.399999999999977 1984-09-13 00:00:00 -5 +1643 1643 -14.0399999999999991 1984-09-13 00:00:00 -5 +1644 1644 -14.0399999999999991 1984-09-13 00:00:00 -5 +1645 1645 187.599999999999994 1984-09-13 00:00:00 -5 +1646 1646 187.599999999999994 1984-09-13 00:00:00 -5 +1647 1647 4312 1984-09-13 00:00:00 -5 +1648 1648 4312 1984-09-13 00:00:00 -5 +1649 1649 6.98000000000000043 1984-09-13 00:00:00 -5 +1650 1650 6.98000000000000043 1984-09-13 00:00:00 -5 +1651 1651 602.100000000000023 1984-09-27 00:00:00 -5 +1652 1652 602.100000000000023 1984-09-27 00:00:00 -5 +1653 1653 711.5 1984-09-27 00:00:00 -5 +1654 1654 711.5 1984-09-27 00:00:00 -5 +1655 1655 -14.3599999999999994 1984-09-27 00:00:00 -5 +1656 1656 -14.3599999999999994 1984-09-27 00:00:00 -5 +1657 1657 208.400000000000006 1984-09-27 00:00:00 -5 +1658 1658 208.400000000000006 1984-09-27 00:00:00 -5 +1659 1659 3166 1984-09-27 00:00:00 -5 +1660 1660 3166 1984-09-27 00:00:00 -5 +1661 1661 7.08999999999999986 1984-09-27 00:00:00 -5 +1662 1662 7.08999999999999986 1984-09-27 00:00:00 -5 +1663 1663 557.5 1984-10-10 00:00:00 -5 +1664 1664 557.5 1984-10-10 00:00:00 -5 +1665 1665 645.399999999999977 1984-10-10 00:00:00 -5 +1666 1666 645.399999999999977 1984-10-10 00:00:00 -5 +1667 1667 -14.1400000000000006 1984-10-10 00:00:00 -5 +1668 1668 -14.1400000000000006 1984-10-10 00:00:00 -5 +1669 1669 214.300000000000011 1984-10-10 00:00:00 -5 +1670 1670 214.300000000000011 1984-10-10 00:00:00 -5 +1671 1671 2553 1984-10-10 00:00:00 -5 +1672 1672 2553 1984-10-10 00:00:00 -5 +1673 1673 7.15000000000000036 1984-10-10 00:00:00 -5 +1674 1674 7.15000000000000036 1984-10-10 00:00:00 -5 +1675 1675 639 1984-10-25 00:00:00 -5 +1676 1676 639 1984-10-25 00:00:00 -5 +1677 1677 718.799999999999955 1984-10-25 00:00:00 -5 +1678 1678 718.799999999999955 1984-10-25 00:00:00 -5 +1679 1679 198.599999999999994 1984-10-25 00:00:00 -5 +1680 1680 198.599999999999994 1984-10-25 00:00:00 -5 +1681 1681 2323 1984-10-25 00:00:00 -5 +1682 1682 2323 1984-10-25 00:00:00 -5 +1683 1683 7.25 1984-10-25 00:00:00 -5 +1684 1684 7.25 1984-10-25 00:00:00 -5 +1685 1685 614.600000000000023 1984-11-07 00:00:00 -5 +1686 1686 614.600000000000023 1984-11-07 00:00:00 -5 +1687 1687 697 1984-11-07 00:00:00 -5 +1688 1688 697 1984-11-07 00:00:00 -5 +1689 1689 197.099999999999994 1984-11-07 00:00:00 -5 +1690 1690 197.099999999999994 1984-11-07 00:00:00 -5 +1691 1691 2395 1984-11-07 00:00:00 -5 +1692 1692 2395 1984-11-07 00:00:00 -5 +1693 1693 7.21999999999999975 1984-11-07 00:00:00 -5 +1694 1694 7.21999999999999975 1984-11-07 00:00:00 -5 +1695 1695 644.200000000000045 1984-11-23 00:00:00 -5 +1696 1696 644.200000000000045 1984-11-23 00:00:00 -5 +1697 1697 737.299999999999955 1984-11-23 00:00:00 -5 +1698 1698 737.299999999999955 1984-11-23 00:00:00 -5 +1699 1699 -13.3300000000000001 1984-11-23 00:00:00 -5 +1700 1700 -13.3300000000000001 1984-11-23 00:00:00 -5 +1701 1701 190.099999999999994 1984-11-23 00:00:00 -5 +1702 1702 190.099999999999994 1984-11-23 00:00:00 -5 +1703 1703 2690 1984-11-23 00:00:00 -5 +1704 1704 2690 1984-11-23 00:00:00 -5 +1705 1705 7.19000000000000039 1984-11-23 00:00:00 -5 +1706 1706 7.19000000000000039 1984-11-23 00:00:00 -5 +1707 1707 682 1984-12-05 00:00:00 -5 +1708 1708 682 1984-12-05 00:00:00 -5 +1709 1709 773.899999999999977 1984-12-05 00:00:00 -5 +1710 1710 773.899999999999977 1984-12-05 00:00:00 -5 +1711 1711 -13.75 1984-12-05 00:00:00 -5 +1712 1712 -13.75 1984-12-05 00:00:00 -5 +1713 1713 198.800000000000011 1984-12-05 00:00:00 -5 +1714 1714 198.800000000000011 1984-12-05 00:00:00 -5 +1715 1715 2657 1984-12-05 00:00:00 -5 +1716 1716 2657 1984-12-05 00:00:00 -5 +1717 1717 7.21999999999999975 1984-12-05 00:00:00 -5 +1718 1718 7.21999999999999975 1984-12-05 00:00:00 -5 +1719 1719 778.600000000000023 1984-12-18 00:00:00 -5 +1720 1720 778.600000000000023 1984-12-18 00:00:00 -5 +1721 1721 896.5 1984-12-18 00:00:00 -5 +1722 1722 896.5 1984-12-18 00:00:00 -5 +1723 1723 191.900000000000006 1984-12-18 00:00:00 -5 +1724 1724 191.900000000000006 1984-12-18 00:00:00 -5 +1725 1725 3404 1984-12-18 00:00:00 -5 +1726 1726 3404 1984-12-18 00:00:00 -5 +1727 1727 7.16999999999999993 1984-12-18 00:00:00 -5 +1728 1728 7.16999999999999993 1984-12-18 00:00:00 -5 +1729 1729 620.200000000000045 1985-02-13 00:00:00 -5 +1730 1730 620.200000000000045 1985-02-13 00:00:00 -5 +1731 1731 759.799999999999955 1985-02-13 00:00:00 -5 +1732 1732 759.799999999999955 1985-02-13 00:00:00 -5 +1733 1733 -13.0299999999999994 1985-02-13 00:00:00 -5 +1734 1734 -13.0299999999999994 1985-02-13 00:00:00 -5 +1735 1735 183.400000000000006 1985-02-13 00:00:00 -5 +1736 1736 183.400000000000006 1985-02-13 00:00:00 -5 +1737 1737 4013 1985-02-13 00:00:00 -5 +1738 1738 4013 1985-02-13 00:00:00 -5 +1739 1739 7 1985-02-13 00:00:00 -5 +1740 1740 7 1985-02-13 00:00:00 -5 +1741 1741 783.600000000000023 1985-03-06 00:00:00 -5 +1742 1742 783.600000000000023 1985-03-06 00:00:00 -5 +1743 1743 951.600000000000023 1985-03-06 00:00:00 -5 +1744 1744 951.600000000000023 1985-03-06 00:00:00 -5 +1745 1745 -13.75 1985-03-06 00:00:00 -5 +1746 1746 -13.75 1985-03-06 00:00:00 -5 +1747 1747 174.400000000000006 1985-03-06 00:00:00 -5 +1748 1748 174.400000000000006 1985-03-06 00:00:00 -5 +1749 1749 4786 1985-03-06 00:00:00 -5 +1750 1750 4786 1985-03-06 00:00:00 -5 +1751 1751 7.02500000000000036 1985-03-06 00:00:00 -5 +1752 1752 7.02500000000000036 1985-03-06 00:00:00 -5 +1753 1753 744.899999999999977 1985-03-20 00:00:00 -5 +1754 1754 744.899999999999977 1985-03-20 00:00:00 -5 +1755 1755 884.100000000000023 1985-03-20 00:00:00 -5 +1756 1756 884.100000000000023 1985-03-20 00:00:00 -5 +1757 1757 -12.7699999999999996 1985-03-20 00:00:00 -5 +1758 1758 -12.7699999999999996 1985-03-20 00:00:00 -5 +1759 1759 194.300000000000011 1985-03-20 00:00:00 -5 +1760 1760 194.300000000000011 1985-03-20 00:00:00 -5 +1761 1761 3962 1985-03-20 00:00:00 -5 +1762 1762 3962 1985-03-20 00:00:00 -5 +1763 1763 7.08499999999999996 1985-03-20 00:00:00 -5 +1764 1764 7.08499999999999996 1985-03-20 00:00:00 -5 +1765 1765 849.399999999999977 1985-04-03 00:00:00 -5 +1766 1766 849.399999999999977 1985-04-03 00:00:00 -5 +1767 1767 995 1985-04-03 00:00:00 -5 +1768 1768 995 1985-04-03 00:00:00 -5 +1769 1769 -13.3300000000000001 1985-04-03 00:00:00 -5 +1770 1770 -13.3300000000000001 1985-04-03 00:00:00 -5 +1771 1771 171.099999999999994 1985-04-03 00:00:00 -5 +1772 1772 171.099999999999994 1985-04-03 00:00:00 -5 +1773 1773 4364 1985-04-03 00:00:00 -5 +1774 1774 4364 1985-04-03 00:00:00 -5 +1775 1775 7.09999999999999964 1985-04-03 00:00:00 -5 +1776 1776 7.09999999999999964 1985-04-03 00:00:00 -5 +1777 1777 839.5 1985-04-17 00:00:00 -5 +1778 1778 839.5 1985-04-17 00:00:00 -5 +1779 1779 1016 1985-04-17 00:00:00 -5 +1780 1780 1016 1985-04-17 00:00:00 -5 +1781 1781 -13.8399999999999999 1985-04-17 00:00:00 -5 +1782 1782 -13.8399999999999999 1985-04-17 00:00:00 -5 +1783 1783 176.800000000000011 1985-04-17 00:00:00 -5 +1784 1784 176.800000000000011 1985-04-17 00:00:00 -5 +1785 1785 5127 1985-04-17 00:00:00 -5 +1786 1786 5127 1985-04-17 00:00:00 -5 +1787 1787 7.02500000000000036 1985-04-17 00:00:00 -5 +1788 1788 7.02500000000000036 1985-04-17 00:00:00 -5 +1789 1789 743.299999999999955 1985-05-02 00:00:00 -5 +1790 1790 743.299999999999955 1985-05-02 00:00:00 -5 +1791 1791 887.700000000000045 1985-05-02 00:00:00 -5 +1792 1792 887.700000000000045 1985-05-02 00:00:00 -5 +1793 1793 -13.8399999999999999 1985-05-02 00:00:00 -5 +1794 1794 -13.8399999999999999 1985-05-02 00:00:00 -5 +1795 1795 179.900000000000006 1985-05-02 00:00:00 -5 +1796 1796 179.900000000000006 1985-05-02 00:00:00 -5 +1797 1797 4140 1985-05-02 00:00:00 -5 +1798 1798 4140 1985-05-02 00:00:00 -5 +1799 1799 7.06500000000000039 1985-05-02 00:00:00 -5 +1800 1800 7.06500000000000039 1985-05-02 00:00:00 -5 +1801 1801 625.899999999999977 1985-05-15 00:00:00 -5 +1802 1802 625.899999999999977 1985-05-15 00:00:00 -5 +1803 1803 770.299999999999955 1985-05-15 00:00:00 -5 +1804 1804 770.299999999999955 1985-05-15 00:00:00 -5 +1805 1805 -14.5099999999999998 1985-05-15 00:00:00 -5 +1806 1806 -14.5099999999999998 1985-05-15 00:00:00 -5 +1807 1807 173.099999999999994 1985-05-15 00:00:00 -5 +1808 1808 173.099999999999994 1985-05-15 00:00:00 -5 +1809 1809 4192 1985-05-15 00:00:00 -5 +1810 1810 4192 1985-05-15 00:00:00 -5 +1811 1811 6.98500000000000032 1985-05-15 00:00:00 -5 +1812 1812 6.98500000000000032 1985-05-15 00:00:00 -5 +1813 1813 573.100000000000023 1985-05-29 00:00:00 -5 +1814 1814 573.100000000000023 1985-05-29 00:00:00 -5 +1815 1815 749.600000000000023 1985-05-29 00:00:00 -5 +1816 1816 749.600000000000023 1985-05-29 00:00:00 -5 +1817 1817 -15.2200000000000006 1985-05-29 00:00:00 -5 +1818 1818 -15.2200000000000006 1985-05-29 00:00:00 -5 +1819 1819 161.199999999999989 1985-05-29 00:00:00 -5 +1820 1820 161.199999999999989 1985-05-29 00:00:00 -5 +1821 1821 5120 1985-05-29 00:00:00 -5 +1822 1822 5120 1985-05-29 00:00:00 -5 +1823 1823 6.86000000000000032 1985-05-29 00:00:00 -5 +1824 1824 6.86000000000000032 1985-05-29 00:00:00 -5 +1825 1825 591.5 1985-06-12 00:00:00 -5 +1826 1826 591.5 1985-06-12 00:00:00 -5 +1827 1827 774.100000000000023 1985-06-12 00:00:00 -5 +1828 1828 774.100000000000023 1985-06-12 00:00:00 -5 +1829 1829 -14.5 1985-06-12 00:00:00 -5 +1830 1830 -14.5 1985-06-12 00:00:00 -5 +1831 1831 173.5 1985-06-12 00:00:00 -5 +1832 1832 173.5 1985-06-12 00:00:00 -5 +1833 1833 5407 1985-06-12 00:00:00 -5 +1834 1834 5407 1985-06-12 00:00:00 -5 +1835 1835 6.84999999999999964 1985-06-12 00:00:00 -5 +1836 1836 6.84999999999999964 1985-06-12 00:00:00 -5 +1837 1837 517.399999999999977 1985-06-26 00:00:00 -5 +1838 1838 517.399999999999977 1985-06-26 00:00:00 -5 +1839 1839 682.600000000000023 1985-06-26 00:00:00 -5 +1840 1840 682.600000000000023 1985-06-26 00:00:00 -5 +1841 1841 -15.5199999999999996 1985-06-26 00:00:00 -5 +1842 1842 -15.5199999999999996 1985-06-26 00:00:00 -5 +1843 1843 157.199999999999989 1985-06-26 00:00:00 -5 +1844 1844 157.199999999999989 1985-06-26 00:00:00 -5 +1845 1845 5186 1985-06-26 00:00:00 -5 +1846 1846 5186 1985-06-26 00:00:00 -5 +1847 1847 6.80999999999999961 1985-06-26 00:00:00 -5 +1848 1848 6.80999999999999961 1985-06-26 00:00:00 -5 +1849 1849 508.5 1985-07-10 00:00:00 -5 +1850 1850 508.5 1985-07-10 00:00:00 -5 +1851 1851 705.299999999999955 1985-07-10 00:00:00 -5 +1852 1852 705.299999999999955 1985-07-10 00:00:00 -5 +1853 1853 -15.8200000000000003 1985-07-10 00:00:00 -5 +1854 1854 -15.8200000000000003 1985-07-10 00:00:00 -5 +1855 1855 153.199999999999989 1985-07-10 00:00:00 -5 +1856 1856 153.199999999999989 1985-07-10 00:00:00 -5 +1857 1857 5880 1985-07-10 00:00:00 -5 +1858 1858 5880 1985-07-10 00:00:00 -5 +1859 1859 6.74800000000000022 1985-07-10 00:00:00 -5 +1860 1860 6.74800000000000022 1985-07-10 00:00:00 -5 +1861 1861 470.199999999999989 1985-07-21 00:00:00 -5 +1862 1862 470.199999999999989 1985-07-21 00:00:00 -5 +1863 1863 647.600000000000023 1985-07-21 00:00:00 -5 +1864 1864 647.600000000000023 1985-07-21 00:00:00 -5 +1865 1865 125 1985-07-21 00:00:00 -5 +1866 1866 125 1985-07-21 00:00:00 -5 +1867 1867 4970 1985-07-21 00:00:00 -5 +1868 1868 4970 1985-07-21 00:00:00 -5 +1869 1869 6.78699999999999992 1985-07-21 00:00:00 -5 +1870 1870 6.78699999999999992 1985-07-21 00:00:00 -5 +1871 1871 594.600000000000023 1985-10-10 00:00:00 -5 +1872 1872 594.600000000000023 1985-10-10 00:00:00 -5 +1873 1873 695.600000000000023 1985-10-10 00:00:00 -5 +1874 1874 695.600000000000023 1985-10-10 00:00:00 -5 +1875 1875 -14.3300000000000001 1985-10-10 00:00:00 -5 +1876 1876 -14.3300000000000001 1985-10-10 00:00:00 -5 +1877 1877 185.599999999999994 1985-10-10 00:00:00 -5 +1878 1878 185.599999999999994 1985-10-10 00:00:00 -5 +1879 1879 2917 1985-10-10 00:00:00 -5 +1880 1880 2917 1985-10-10 00:00:00 -5 +1881 1881 7.12000000000000011 1985-10-10 00:00:00 -5 +1882 1882 7.12000000000000011 1985-10-10 00:00:00 -5 +1883 1883 623.899999999999977 1985-10-30 00:00:00 -5 +1884 1884 623.899999999999977 1985-10-30 00:00:00 -5 +1885 1885 729.600000000000023 1985-10-30 00:00:00 -5 +1886 1886 729.600000000000023 1985-10-30 00:00:00 -5 +1887 1887 -12.9100000000000001 1985-10-30 00:00:00 -5 +1888 1888 -12.9100000000000001 1985-10-30 00:00:00 -5 +1889 1889 189.759999999999991 1985-10-30 00:00:00 -5 +1890 1890 189.759999999999991 1985-10-30 00:00:00 -5 +1891 1891 3090 1985-10-30 00:00:00 -5 +1892 1892 3090 1985-10-30 00:00:00 -5 +1893 1893 7.11599999999999966 1985-10-30 00:00:00 -5 +1894 1894 7.11599999999999966 1985-10-30 00:00:00 -5 +1895 1895 512.799999999999955 1985-11-13 00:00:00 -5 +1896 1896 512.799999999999955 1985-11-13 00:00:00 -5 +1897 1897 610.200000000000045 1985-11-13 00:00:00 -5 +1898 1898 610.200000000000045 1985-11-13 00:00:00 -5 +1899 1899 -14.1799999999999997 1985-11-13 00:00:00 -5 +1900 1900 -14.1799999999999997 1985-11-13 00:00:00 -5 +1901 1901 184.319999999999993 1985-11-13 00:00:00 -5 +1902 1902 184.319999999999993 1985-11-13 00:00:00 -5 +1903 1903 2804 1985-11-13 00:00:00 -5 +1904 1904 2804 1985-11-13 00:00:00 -5 +1905 1905 7.0730000000000004 1985-11-13 00:00:00 -5 +1906 1906 7.0730000000000004 1985-11-13 00:00:00 -5 +1907 1907 585.700000000000045 1985-11-27 00:00:00 -5 +1908 1908 585.700000000000045 1985-11-27 00:00:00 -5 +1909 1909 717 1985-11-27 00:00:00 -5 +1910 1910 717 1985-11-27 00:00:00 -5 +1911 1911 183.039999999999992 1985-11-27 00:00:00 -5 +1912 1912 183.039999999999992 1985-11-27 00:00:00 -5 +1913 1913 3772 1985-11-27 00:00:00 -5 +1914 1914 3772 1985-11-27 00:00:00 -5 +1915 1915 7.00199999999999978 1985-11-27 00:00:00 -5 +1916 1916 7.00199999999999978 1985-11-27 00:00:00 -5 +1917 1917 613.100000000000023 1985-12-12 00:00:00 -5 +1918 1918 613.100000000000023 1985-12-12 00:00:00 -5 +1919 1919 707.200000000000045 1985-12-12 00:00:00 -5 +1920 1920 707.200000000000045 1985-12-12 00:00:00 -5 +1921 1921 180.47999999999999 1985-12-12 00:00:00 -5 +1922 1922 180.47999999999999 1985-12-12 00:00:00 -5 +1923 1923 2724 1985-12-12 00:00:00 -5 +1924 1924 2724 1985-12-12 00:00:00 -5 +1925 1925 7.16300000000000026 1985-12-12 00:00:00 -5 +1926 1926 7.16300000000000026 1985-12-12 00:00:00 -5 +1927 1927 521.299999999999955 1985-12-26 00:00:00 -5 +1928 1928 521.299999999999955 1985-12-26 00:00:00 -5 +1929 1929 635.200000000000045 1985-12-26 00:00:00 -5 +1930 1930 635.200000000000045 1985-12-26 00:00:00 -5 +1931 1931 -14.5299999999999994 1985-12-26 00:00:00 -5 +1932 1932 -14.5299999999999994 1985-12-26 00:00:00 -5 +1933 1933 176.319999999999993 1985-12-26 00:00:00 -5 +1934 1934 176.319999999999993 1985-12-26 00:00:00 -5 +1935 1935 3326 1985-12-26 00:00:00 -5 +1936 1936 3326 1985-12-26 00:00:00 -5 +1937 1937 7.00600000000000023 1985-12-26 00:00:00 -5 +1938 1938 7.00600000000000023 1985-12-26 00:00:00 -5 +1939 1939 485.199999999999989 1986-01-10 00:00:00 -5 +1940 1940 485.199999999999989 1986-01-10 00:00:00 -5 +1941 1941 606.899999999999977 1986-01-10 00:00:00 -5 +1942 1942 606.899999999999977 1986-01-10 00:00:00 -5 +1943 1943 -14.5500000000000007 1986-01-10 00:00:00 -5 +1944 1944 -14.5500000000000007 1986-01-10 00:00:00 -5 +1945 1945 169.599999999999994 1986-01-10 00:00:00 -5 +1946 1946 169.599999999999994 1986-01-10 00:00:00 -5 +1947 1947 3563 1986-01-10 00:00:00 -5 +1948 1948 3563 1986-01-10 00:00:00 -5 +1949 1949 6.94500000000000028 1986-01-10 00:00:00 -5 +1950 1950 6.94500000000000028 1986-01-10 00:00:00 -5 +1951 1951 693.600000000000023 1986-01-30 00:00:00 -5 +1952 1952 693.600000000000023 1986-01-30 00:00:00 -5 +1953 1953 788.5 1986-01-30 00:00:00 -5 +1954 1954 788.5 1986-01-30 00:00:00 -5 +1955 1955 -12.8200000000000003 1986-01-30 00:00:00 -5 +1956 1956 -12.8200000000000003 1986-01-30 00:00:00 -5 +1957 1957 182 1986-01-30 00:00:00 -5 +1958 1958 182 1986-01-30 00:00:00 -5 +1959 1959 2765 1986-01-30 00:00:00 -5 +1960 1960 2765 1986-01-30 00:00:00 -5 +1961 1961 7.20999999999999996 1986-01-30 00:00:00 -5 +1962 1962 7.20999999999999996 1986-01-30 00:00:00 -5 +1963 1963 675 1986-02-14 00:00:00 -5 +1964 1964 675 1986-02-14 00:00:00 -5 +1965 1965 793.5 1986-02-14 00:00:00 -5 +1966 1966 793.5 1986-02-14 00:00:00 -5 +1967 1967 -12.75 1986-02-14 00:00:00 -5 +1968 1968 -12.75 1986-02-14 00:00:00 -5 +1969 1969 195.52000000000001 1986-02-14 00:00:00 -5 +1970 1970 195.52000000000001 1986-02-14 00:00:00 -5 +1971 1971 3389 1986-02-14 00:00:00 -5 +1972 1972 3389 1986-02-14 00:00:00 -5 +1973 1973 7.11000000000000032 1986-02-14 00:00:00 -5 +1974 1974 7.11000000000000032 1986-02-14 00:00:00 -5 +1975 1975 783 1986-03-04 00:00:00 -5 +1976 1976 783 1986-03-04 00:00:00 -5 +1977 1977 933 1986-03-04 00:00:00 -5 +1978 1978 933 1986-03-04 00:00:00 -5 +1979 1979 -13.3900000000000006 1986-03-04 00:00:00 -5 +1980 1980 -13.3900000000000006 1986-03-04 00:00:00 -5 +1981 1981 152 1986-03-04 00:00:00 -5 +1982 1982 152 1986-03-04 00:00:00 -5 +1983 1983 3922 1986-03-04 00:00:00 -5 +1984 1984 3922 1986-03-04 00:00:00 -5 +1985 1985 7.11099999999999977 1986-03-04 00:00:00 -5 +1986 1986 7.11099999999999977 1986-03-04 00:00:00 -5 +1987 1987 748 1986-03-21 00:00:00 -5 +1988 1988 748 1986-03-21 00:00:00 -5 +1989 1989 920 1986-03-21 00:00:00 -5 +1990 1990 920 1986-03-21 00:00:00 -5 +1991 1991 -14.4700000000000006 1986-03-21 00:00:00 -5 +1992 1992 -14.4700000000000006 1986-03-21 00:00:00 -5 +1993 1993 155.199999999999989 1986-03-21 00:00:00 -5 +1994 1994 155.199999999999989 1986-03-21 00:00:00 -5 +1995 1995 4839 1986-03-21 00:00:00 -5 +1996 1996 4839 1986-03-21 00:00:00 -5 +1997 1997 7 1986-03-21 00:00:00 -5 +1998 1998 7 1986-03-21 00:00:00 -5 +1999 1999 732 1986-04-12 00:00:00 -5 +2000 2000 732 1986-04-12 00:00:00 -5 +2001 2001 922 1986-04-12 00:00:00 -5 +2002 2002 922 1986-04-12 00:00:00 -5 +2003 2003 -15.0899999999999999 1986-04-12 00:00:00 -5 +2004 2004 -15.0899999999999999 1986-04-12 00:00:00 -5 +2005 2005 142.400000000000006 1986-04-12 00:00:00 -5 +2006 2006 142.400000000000006 1986-04-12 00:00:00 -5 +2007 2007 5110 1986-04-12 00:00:00 -5 +2008 2008 5110 1986-04-12 00:00:00 -5 +2009 2009 6.96699999999999964 1986-04-12 00:00:00 -5 +2010 2010 6.96699999999999964 1986-04-12 00:00:00 -5 +2011 2011 766.5 1986-04-28 00:00:00 -5 +2012 2012 766.5 1986-04-28 00:00:00 -5 +2013 2013 941.5 1986-04-28 00:00:00 -5 +2014 2014 941.5 1986-04-28 00:00:00 -5 +2015 2015 116.875 1986-04-28 00:00:00 -5 +2016 2016 116.875 1986-04-28 00:00:00 -5 +2017 2017 5134 1986-04-28 00:00:00 -5 +2018 2018 5134 1986-04-28 00:00:00 -5 +2019 2019 6.98500000000000032 1986-04-28 00:00:00 -5 +2020 2020 6.98500000000000032 1986-04-28 00:00:00 -5 +2021 2021 582 1986-05-21 00:00:00 -5 +2022 2022 582 1986-05-21 00:00:00 -5 +2023 2023 829 1986-05-21 00:00:00 -5 +2024 2024 829 1986-05-21 00:00:00 -5 +2025 2025 98.125 1986-05-21 00:00:00 -5 +2026 2026 98.125 1986-05-21 00:00:00 -5 +2027 2027 7278 1986-05-21 00:00:00 -5 +2028 2028 7278 1986-05-21 00:00:00 -5 +2029 2029 6.71400000000000041 1986-05-21 00:00:00 -5 +2030 2030 6.71400000000000041 1986-05-21 00:00:00 -5 +2031 2031 533 1986-06-17 00:00:00 -5 +2032 2032 533 1986-06-17 00:00:00 -5 +2033 2033 796 1986-06-17 00:00:00 -5 +2034 2034 796 1986-06-17 00:00:00 -5 +2035 2035 85.625 1986-06-17 00:00:00 -5 +2036 2036 85.625 1986-06-17 00:00:00 -5 +2037 2037 7832 1986-06-17 00:00:00 -5 +2038 2038 7832 1986-06-17 00:00:00 -5 +2039 2039 6.64400000000000013 1986-06-17 00:00:00 -5 +2040 2040 6.64400000000000013 1986-06-17 00:00:00 -5 +2041 2041 539 1986-07-02 00:00:00 -5 +2042 2042 539 1986-07-02 00:00:00 -5 +2043 2043 786 1986-07-02 00:00:00 -5 +2044 2044 786 1986-07-02 00:00:00 -5 +2045 2045 -16.8599999999999994 1986-07-02 00:00:00 -5 +2046 2046 -16.8599999999999994 1986-07-02 00:00:00 -5 +2047 2047 85.9375 1986-07-02 00:00:00 -5 +2048 2048 85.9375 1986-07-02 00:00:00 -5 +2049 2049 7273 1986-07-02 00:00:00 -5 +2050 2050 7273 1986-07-02 00:00:00 -5 +2051 2051 6.68100000000000005 1986-07-02 00:00:00 -5 +2052 2052 6.68100000000000005 1986-07-02 00:00:00 -5 +2053 2053 373 1986-08-20 00:00:00 -5 +2054 2054 373 1986-08-20 00:00:00 -5 +2055 2055 589 1986-08-20 00:00:00 -5 +2056 2056 589 1986-08-20 00:00:00 -5 +2057 2057 109.6875 1986-08-20 00:00:00 -5 +2058 2058 109.6875 1986-08-20 00:00:00 -5 +2059 2059 6322 1986-08-20 00:00:00 -5 +2060 2060 6322 1986-08-20 00:00:00 -5 +2061 2061 6.58199999999999985 1986-08-20 00:00:00 -5 +2062 2062 6.58199999999999985 1986-08-20 00:00:00 -5 +2063 2063 391 1986-09-12 00:00:00 -5 +2064 2064 391 1986-09-12 00:00:00 -5 +2065 2065 554 1986-09-12 00:00:00 -5 +2066 2066 554 1986-09-12 00:00:00 -5 +2067 2067 137.5 1986-09-12 00:00:00 -5 +2068 2068 137.5 1986-09-12 00:00:00 -5 +2069 2069 4756 1986-09-12 00:00:00 -5 +2070 2070 4756 1986-09-12 00:00:00 -5 +2071 2071 6.72599999999999998 1986-09-12 00:00:00 -5 +2072 2072 6.72599999999999998 1986-09-12 00:00:00 -5 +2073 2073 396 1986-10-21 00:00:00 -5 +2074 2074 396 1986-10-21 00:00:00 -5 +2075 2075 523 1986-10-21 00:00:00 -5 +2076 2076 523 1986-10-21 00:00:00 -5 +2077 2077 177.1875 1986-10-21 00:00:00 -5 +2078 2078 177.1875 1986-10-21 00:00:00 -5 +2079 2079 3773 1986-10-21 00:00:00 -5 +2080 2080 3773 1986-10-21 00:00:00 -5 +2081 2081 6.83199999999999985 1986-10-21 00:00:00 -5 +2082 2082 6.83199999999999985 1986-10-21 00:00:00 -5 +2083 2083 364 1986-11-05 00:00:00 -5 +2084 2084 364 1986-11-05 00:00:00 -5 +2085 2085 475 1986-11-05 00:00:00 -5 +2086 2086 475 1986-11-05 00:00:00 -5 +2087 2087 3259 1986-11-05 00:00:00 -5 +2088 2088 3259 1986-11-05 00:00:00 -5 +2089 2089 6.85899999999999999 1986-11-05 00:00:00 -5 +2090 2090 6.85899999999999999 1986-11-05 00:00:00 -5 +2091 2091 440 1986-11-19 00:00:00 -5 +2092 2092 440 1986-11-19 00:00:00 -5 +2093 2093 580 1986-11-19 00:00:00 -5 +2094 2094 580 1986-11-19 00:00:00 -5 +2095 2095 176 1986-11-19 00:00:00 -5 +2096 2096 176 1986-11-19 00:00:00 -5 +2097 2097 4022 1986-11-19 00:00:00 -5 +2098 2098 4022 1986-11-19 00:00:00 -5 +2099 2099 6.84999999999999964 1986-11-19 00:00:00 -5 +2100 2100 6.84999999999999964 1986-11-19 00:00:00 -5 +2101 2101 148.125 1987-08-25 00:00:00 -5 +2102 2102 148.125 1987-08-25 00:00:00 -5 +2103 2103 6.85400000000000009 1987-08-25 00:00:00 -5 +2104 2104 6.85400000000000009 1987-08-25 00:00:00 -5 +2105 2105 420 1987-09-30 00:00:00 -5 +2106 2106 420 1987-09-30 00:00:00 -5 +2107 2107 505 1987-09-30 00:00:00 -5 +2108 2108 505 1987-09-30 00:00:00 -5 +2109 2109 172.8125 1987-09-30 00:00:00 -5 +2110 2110 172.8125 1987-09-30 00:00:00 -5 +2111 2111 2489 1987-09-30 00:00:00 -5 +2112 2112 2489 1987-09-30 00:00:00 -5 +2113 2113 7.03800000000000026 1987-09-30 00:00:00 -5 +2114 2114 7.03800000000000026 1987-09-30 00:00:00 -5 +2115 2115 536 1987-12-07 00:00:00 -5 +2116 2116 536 1987-12-07 00:00:00 -5 +2117 2117 663 1987-12-07 00:00:00 -5 +2118 2118 663 1987-12-07 00:00:00 -5 +2119 2119 3623 1987-12-07 00:00:00 -5 +2120 2120 3623 1987-12-07 00:00:00 -5 +2121 2121 6.98099999999999987 1987-12-07 00:00:00 -5 +2122 2122 6.98099999999999987 1987-12-07 00:00:00 -5 +2123 2123 694 1988-01-08 00:00:00 -5 +2124 2124 694 1988-01-08 00:00:00 -5 +2125 2125 825 1988-01-08 00:00:00 -5 +2126 2126 825 1988-01-08 00:00:00 -5 +2127 2127 165.9375 1988-01-08 00:00:00 -5 +2128 2128 165.9375 1988-01-08 00:00:00 -5 +2129 2129 3666 1988-01-08 00:00:00 -5 +2130 2130 3666 1988-01-08 00:00:00 -5 +2131 2131 7.08800000000000008 1988-01-08 00:00:00 -5 +2132 2132 7.08800000000000008 1988-01-08 00:00:00 -5 +2133 2133 691 1988-02-05 00:00:00 -5 +2134 2134 691 1988-02-05 00:00:00 -5 +2135 2135 869 1988-02-05 00:00:00 -5 +2136 2136 869 1988-02-05 00:00:00 -5 +2137 2137 155 1988-02-05 00:00:00 -5 +2138 2138 155 1988-02-05 00:00:00 -5 +2139 2139 5017 1988-02-05 00:00:00 -5 +2140 2140 5017 1988-02-05 00:00:00 -5 +2141 2141 6.95000000000000018 1988-02-05 00:00:00 -5 +2142 2142 6.95000000000000018 1988-02-05 00:00:00 -5 +2143 2143 616 1988-04-21 00:00:00 -5 +2144 2144 616 1988-04-21 00:00:00 -5 +2145 2145 826 1988-04-21 00:00:00 -5 +2146 2146 826 1988-04-21 00:00:00 -5 +2147 2147 147.8125 1988-04-21 00:00:00 -5 +2148 2148 147.8125 1988-04-21 00:00:00 -5 +2149 2149 6076 1988-04-21 00:00:00 -5 +2150 2150 6076 1988-04-21 00:00:00 -5 +2151 2151 6.81700000000000017 1988-04-21 00:00:00 -5 +2152 2152 6.81700000000000017 1988-04-21 00:00:00 -5 +2153 2153 496 1988-05-20 00:00:00 -5 +2154 2154 496 1988-05-20 00:00:00 -5 +2155 2155 681 1988-05-20 00:00:00 -5 +2156 2156 681 1988-05-20 00:00:00 -5 +2157 2157 125.625 1988-05-20 00:00:00 -5 +2158 2158 125.625 1988-05-20 00:00:00 -5 +2159 2159 5515 1988-05-20 00:00:00 -5 +2160 2160 5515 1988-05-20 00:00:00 -5 +2161 2161 6.76499999999999968 1988-05-20 00:00:00 -5 +2162 2162 6.76499999999999968 1988-05-20 00:00:00 -5 +2163 2163 530 1988-06-29 00:00:00 -5 +2164 2164 530 1988-06-29 00:00:00 -5 +2165 2165 814 1988-06-29 00:00:00 -5 +2166 2166 814 1988-06-29 00:00:00 -5 +2167 2167 82.5 1988-06-29 00:00:00 -5 +2168 2168 82.5 1988-06-29 00:00:00 -5 +2169 2169 8306 1988-06-29 00:00:00 -5 +2170 2170 8306 1988-06-29 00:00:00 -5 +2171 2171 6.61599999999999966 1988-06-29 00:00:00 -5 +2172 2172 6.61599999999999966 1988-06-29 00:00:00 -5 +2173 2173 461 1988-07-18 00:00:00 -5 +2174 2174 461 1988-07-18 00:00:00 -5 +2175 2175 715 1988-07-18 00:00:00 -5 +2176 2176 715 1988-07-18 00:00:00 -5 +2177 2177 113.125 1988-07-18 00:00:00 -5 +2178 2178 113.125 1988-07-18 00:00:00 -5 +2179 2179 7410 1988-07-18 00:00:00 -5 +2180 2180 7410 1988-07-18 00:00:00 -5 +2181 2181 6.60500000000000043 1988-07-18 00:00:00 -5 +2182 2182 6.60500000000000043 1988-07-18 00:00:00 -5 +2183 2183 471 1988-08-28 00:00:00 -5 +2184 2184 471 1988-08-28 00:00:00 -5 +2185 2185 702 1988-08-28 00:00:00 -5 +2186 2186 702 1988-08-28 00:00:00 -5 +2187 2187 123.75 1988-08-28 00:00:00 -5 +2188 2188 123.75 1988-08-28 00:00:00 -5 +2189 2189 6747 1988-08-28 00:00:00 -5 +2190 2190 6747 1988-08-28 00:00:00 -5 +2191 2191 6.65500000000000025 1988-08-28 00:00:00 -5 +2192 2192 6.65500000000000025 1988-08-28 00:00:00 -5 +2193 2193 533 1988-09-23 00:00:00 -5 +2194 2194 533 1988-09-23 00:00:00 -5 +2195 2195 638 1988-09-23 00:00:00 -5 +2196 2196 638 1988-09-23 00:00:00 -5 +2197 2197 156.25 1988-09-23 00:00:00 -5 +2198 2198 156.25 1988-09-23 00:00:00 -5 +2199 2199 3073 1988-09-23 00:00:00 -5 +2200 2200 3073 1988-09-23 00:00:00 -5 +2201 2201 7.04999999999999982 1988-09-23 00:00:00 -5 +2202 2202 7.04999999999999982 1988-09-23 00:00:00 -5 +2203 2203 852 1989-02-01 00:00:00 -5 +2204 2204 852 1989-02-01 00:00:00 -5 +2205 2205 1006 1989-02-01 00:00:00 -5 +2206 2206 1006 1989-02-01 00:00:00 -5 +2207 2207 -10.1799999999999997 1989-02-01 00:00:00 -5 +2208 2208 -10.1799999999999997 1989-02-01 00:00:00 -5 +2209 2209 187.5 1989-02-01 00:00:00 -5 +2210 2210 187.5 1989-02-01 00:00:00 -5 +2211 2211 4584 1989-02-01 00:00:00 -5 +2212 2212 4584 1989-02-01 00:00:00 -5 +2213 2213 7.08000000000000007 1989-02-01 00:00:00 -5 +2214 2214 7.08000000000000007 1989-02-01 00:00:00 -5 +2215 2215 902 1989-03-12 00:00:00 -5 +2216 2216 902 1989-03-12 00:00:00 -5 +2217 2217 1047 1989-03-12 00:00:00 -5 +2218 2218 1047 1989-03-12 00:00:00 -5 +2219 2219 -12.3000000000000007 1989-03-12 00:00:00 -5 +2220 2220 -12.3000000000000007 1989-03-12 00:00:00 -5 +2221 2221 156.25 1989-03-12 00:00:00 -5 +2222 2222 156.25 1989-03-12 00:00:00 -5 +2223 2223 4325 1989-03-12 00:00:00 -5 +2224 2224 4325 1989-03-12 00:00:00 -5 +2225 2225 7.12999999999999989 1989-03-12 00:00:00 -5 +2226 2226 7.12999999999999989 1989-03-12 00:00:00 -5 +2227 2227 595 1989-07-11 00:00:00 -5 +2228 2228 595 1989-07-11 00:00:00 -5 +2229 2229 870 1989-07-11 00:00:00 -5 +2230 2230 870 1989-07-11 00:00:00 -5 +2231 2231 -15.5399999999999991 1989-07-11 00:00:00 -5 +2232 2232 -15.5399999999999991 1989-07-11 00:00:00 -5 +2233 2233 125 1989-07-11 00:00:00 -5 +2234 2234 125 1989-07-11 00:00:00 -5 +2235 2235 7864 1989-07-11 00:00:00 -5 +2236 2236 7864 1989-07-11 00:00:00 -5 +2237 2237 6.69000000000000039 1989-07-11 00:00:00 -5 +2238 2238 6.69000000000000039 1989-07-11 00:00:00 -5 +2239 2239 509 1989-08-10 00:00:00 -5 +2240 2240 509 1989-08-10 00:00:00 -5 +2241 2241 772 1989-08-10 00:00:00 -5 +2242 2242 772 1989-08-10 00:00:00 -5 +2243 2243 -16.8599999999999994 1989-08-10 00:00:00 -5 +2244 2244 -16.8599999999999994 1989-08-10 00:00:00 -5 +2245 2245 93.75 1989-08-10 00:00:00 -5 +2246 2246 93.75 1989-08-10 00:00:00 -5 +2247 2247 7724 1989-08-10 00:00:00 -5 +2248 2248 7724 1989-08-10 00:00:00 -5 +2249 2249 6.62999999999999989 1989-08-10 00:00:00 -5 +2250 2250 6.62999999999999989 1989-08-10 00:00:00 -5 +2251 2251 612 1989-10-17 00:00:00 -5 +2252 2252 612 1989-10-17 00:00:00 -5 +2253 2253 739 1989-10-17 00:00:00 -5 +2254 2254 739 1989-10-17 00:00:00 -5 +2255 2255 -13.8200000000000003 1989-10-17 00:00:00 -5 +2256 2256 -13.8200000000000003 1989-10-17 00:00:00 -5 +2257 2257 156.25 1989-10-17 00:00:00 -5 +2258 2258 156.25 1989-10-17 00:00:00 -5 +2259 2259 3695 1989-10-17 00:00:00 -5 +2260 2260 3695 1989-10-17 00:00:00 -5 +2261 2261 7.03000000000000025 1989-10-17 00:00:00 -5 +2262 2262 7.03000000000000025 1989-10-17 00:00:00 -5 +2263 2263 526 1989-11-19 00:00:00 -5 +2264 2264 526 1989-11-19 00:00:00 -5 +2265 2265 663 1989-11-19 00:00:00 -5 +2266 2266 663 1989-11-19 00:00:00 -5 +2267 2267 -14.3599999999999994 1989-11-19 00:00:00 -5 +2268 2268 -14.3599999999999994 1989-11-19 00:00:00 -5 +2269 2269 156.25 1989-11-19 00:00:00 -5 +2270 2270 156.25 1989-11-19 00:00:00 -5 +2271 2271 3999 1989-11-19 00:00:00 -5 +2272 2272 3999 1989-11-19 00:00:00 -5 +2273 2273 6.92999999999999972 1989-11-19 00:00:00 -5 +2274 2274 6.92999999999999972 1989-11-19 00:00:00 -5 +2275 2275 579 1989-12-12 00:00:00 -5 +2276 2276 579 1989-12-12 00:00:00 -5 +2277 2277 723 1989-12-12 00:00:00 -5 +2278 2278 723 1989-12-12 00:00:00 -5 +2279 2279 -13.5 1989-12-12 00:00:00 -5 +2280 2280 -13.5 1989-12-12 00:00:00 -5 +2281 2281 187.5 1989-12-12 00:00:00 -5 +2282 2282 187.5 1989-12-12 00:00:00 -5 +2283 2283 4204 1989-12-12 00:00:00 -5 +2284 2284 4204 1989-12-12 00:00:00 -5 +2285 2285 6.95000000000000018 1989-12-12 00:00:00 -5 +2286 2286 6.95000000000000018 1989-12-12 00:00:00 -5 +2287 2287 533 1990-03-13 00:00:00 -5 +2288 2288 533 1990-03-13 00:00:00 -5 +2289 2289 663.5 1990-03-13 00:00:00 -5 +2290 2290 663.5 1990-03-13 00:00:00 -5 +2291 2291 129 1990-03-13 00:00:00 -5 +2292 2292 129 1990-03-13 00:00:00 -5 +2293 2293 3781 1990-03-13 00:00:00 -5 +2294 2294 3781 1990-03-13 00:00:00 -5 +2295 2295 6.95999999999999996 1990-03-13 00:00:00 -5 +2296 2296 6.95999999999999996 1990-03-13 00:00:00 -5 +2297 2297 446 1990-05-02 00:00:00 -5 +2298 2298 446 1990-05-02 00:00:00 -5 +2299 2299 665.299999999999955 1990-05-02 00:00:00 -5 +2300 2300 665.299999999999955 1990-05-02 00:00:00 -5 +2301 2301 106 1990-05-02 00:00:00 -5 +2302 2302 106 1990-05-02 00:00:00 -5 +2303 2303 6345 1990-05-02 00:00:00 -5 +2304 2304 6345 1990-05-02 00:00:00 -5 +2305 2305 6.65800000000000036 1990-05-02 00:00:00 -5 +2306 2306 6.65800000000000036 1990-05-02 00:00:00 -5 +2307 2307 506 1990-06-11 00:00:00 -5 +2308 2308 506 1990-06-11 00:00:00 -5 +2309 2309 759.399999999999977 1990-06-11 00:00:00 -5 +2310 2310 759.399999999999977 1990-06-11 00:00:00 -5 +2311 2311 115 1990-06-11 00:00:00 -5 +2312 2312 115 1990-06-11 00:00:00 -5 +2313 2313 7333 1990-06-11 00:00:00 -5 +2314 2314 7333 1990-06-11 00:00:00 -5 +2315 2315 6.65000000000000036 1990-06-11 00:00:00 -5 +2316 2316 6.65000000000000036 1990-06-11 00:00:00 -5 +2317 2317 464 1990-09-14 00:00:00 -5 +2318 2318 464 1990-09-14 00:00:00 -5 +2319 2319 588.600000000000023 1990-09-14 00:00:00 -5 +2320 2320 588.600000000000023 1990-09-14 00:00:00 -5 +2321 2321 137 1990-09-14 00:00:00 -5 +2322 2322 137 1990-09-14 00:00:00 -5 +2323 2323 3610 1990-09-14 00:00:00 -5 +2324 2324 3610 1990-09-14 00:00:00 -5 +2325 2325 6.91999999999999993 1990-09-14 00:00:00 -5 +2326 2326 6.91999999999999993 1990-09-14 00:00:00 -5 +2327 2327 563 1990-10-17 00:00:00 -5 +2328 2328 563 1990-10-17 00:00:00 -5 +2329 2329 649.700000000000045 1990-10-17 00:00:00 -5 +2330 2330 649.700000000000045 1990-10-17 00:00:00 -5 +2331 2331 195 1990-10-17 00:00:00 -5 +2332 2332 195 1990-10-17 00:00:00 -5 +2333 2333 2519 1990-10-17 00:00:00 -5 +2334 2334 2519 1990-10-17 00:00:00 -5 +2335 2335 7.16000000000000014 1990-10-17 00:00:00 -5 +2336 2336 7.16000000000000014 1990-10-17 00:00:00 -5 +2337 2337 717 1990-12-01 00:00:00 -5 +2338 2338 717 1990-12-01 00:00:00 -5 +2339 2339 804.5 1990-12-01 00:00:00 -5 +2340 2340 804.5 1990-12-01 00:00:00 -5 +2341 2341 175 1990-12-01 00:00:00 -5 +2342 2342 175 1990-12-01 00:00:00 -5 +2343 2343 2547 1990-12-01 00:00:00 -5 +2344 2344 2547 1990-12-01 00:00:00 -5 +2345 2345 7.25999999999999979 1990-12-01 00:00:00 -5 +2346 2346 7.25999999999999979 1990-12-01 00:00:00 -5 +2347 2347 488 1991-01-15 00:00:00 -5 +2348 2348 488 1991-01-15 00:00:00 -5 +2349 2349 562.299999999999955 1991-01-15 00:00:00 -5 +2350 2350 562.299999999999955 1991-01-15 00:00:00 -5 +2351 2351 168 1991-01-15 00:00:00 -5 +2352 2352 168 1991-01-15 00:00:00 -5 +2353 2353 2158 1991-01-15 00:00:00 -5 +2354 2354 2158 1991-01-15 00:00:00 -5 +2355 2355 7.16500000000000004 1991-01-15 00:00:00 -5 +2356 2356 7.16500000000000004 1991-01-15 00:00:00 -5 +2357 2357 571 1991-02-08 00:00:00 -5 +2358 2358 571 1991-02-08 00:00:00 -5 +2359 2359 704.5 1991-02-08 00:00:00 -5 +2360 2360 704.5 1991-02-08 00:00:00 -5 +2361 2361 153 1991-02-08 00:00:00 -5 +2362 2362 153 1991-02-08 00:00:00 -5 +2363 2363 3869 1991-02-08 00:00:00 -5 +2364 2364 3869 1991-02-08 00:00:00 -5 +2365 2365 6.98000000000000043 1991-02-08 00:00:00 -5 +2366 2366 6.98000000000000043 1991-02-08 00:00:00 -5 +2367 2367 604 1991-03-25 00:00:00 -5 +2368 2368 604 1991-03-25 00:00:00 -5 +2369 2369 699.200000000000045 1991-03-25 00:00:00 -5 +2370 2370 699.200000000000045 1991-03-25 00:00:00 -5 +2371 2371 147 1991-03-25 00:00:00 -5 +2372 2372 147 1991-03-25 00:00:00 -5 +2373 2373 2765 1991-03-25 00:00:00 -5 +2374 2374 2765 1991-03-25 00:00:00 -5 +2375 2375 7.15000000000000036 1991-03-25 00:00:00 -5 +2376 2376 7.15000000000000036 1991-03-25 00:00:00 -5 +2377 2377 391 1991-06-28 00:00:00 -5 +2378 2378 391 1991-06-28 00:00:00 -5 +2379 2379 569.600000000000023 1991-06-28 00:00:00 -5 +2380 2380 569.600000000000023 1991-06-28 00:00:00 -5 +2381 2381 5168 1991-06-28 00:00:00 -5 +2382 2382 5168 1991-06-28 00:00:00 -5 +2383 2383 6.69000000000000039 1991-06-28 00:00:00 -5 +2384 2384 6.69000000000000039 1991-06-28 00:00:00 -5 +2385 2385 335 1991-08-01 00:00:00 -5 +2386 2386 335 1991-08-01 00:00:00 -5 +2387 2387 514.799999999999955 1991-08-01 00:00:00 -5 +2388 2388 514.799999999999955 1991-08-01 00:00:00 -5 +2389 2389 113 1991-08-01 00:00:00 -5 +2390 2390 113 1991-08-01 00:00:00 -5 +2391 2391 5202 1991-08-01 00:00:00 -5 +2392 2392 5202 1991-08-01 00:00:00 -5 +2393 2393 6.62000000000000011 1991-08-01 00:00:00 -5 +2394 2394 6.62000000000000011 1991-08-01 00:00:00 -5 +2395 2395 651 1991-10-05 00:00:00 -5 +2396 2396 651 1991-10-05 00:00:00 -5 +2397 2397 756 1991-10-05 00:00:00 -5 +2398 2398 756 1991-10-05 00:00:00 -5 +2399 2399 124 1991-10-05 00:00:00 -5 +2400 2400 124 1991-10-05 00:00:00 -5 +2401 2401 3050 1991-10-05 00:00:00 -5 +2402 2402 3050 1991-10-05 00:00:00 -5 +2403 2403 7.13999999999999968 1991-10-05 00:00:00 -5 +2404 2404 7.13999999999999968 1991-10-05 00:00:00 -5 +2405 2405 596 1991-10-29 00:00:00 -5 +2406 2406 596 1991-10-29 00:00:00 -5 +2407 2407 677.700000000000045 1991-10-29 00:00:00 -5 +2408 2408 677.700000000000045 1991-10-29 00:00:00 -5 +2409 2409 2376 1991-10-29 00:00:00 -5 +2410 2410 2376 1991-10-29 00:00:00 -5 +2411 2411 7.20999999999999996 1991-10-29 00:00:00 -5 +2412 2412 7.20999999999999996 1991-10-29 00:00:00 -5 +2413 2413 580 1991-12-06 00:00:00 -5 +2414 2414 580 1991-12-06 00:00:00 -5 +2415 2415 649.100000000000023 1991-12-06 00:00:00 -5 +2416 2416 649.100000000000023 1991-12-06 00:00:00 -5 +2417 2417 175 1991-12-06 00:00:00 -5 +2418 2418 175 1991-12-06 00:00:00 -5 +2419 2419 2014 1991-12-06 00:00:00 -5 +2420 2420 2014 1991-12-06 00:00:00 -5 +2421 2421 7.26999999999999957 1991-12-06 00:00:00 -5 +2422 2422 7.26999999999999957 1991-12-06 00:00:00 -5 +2423 2423 681 1992-01-18 00:00:00 -5 +2424 2424 681 1992-01-18 00:00:00 -5 +2425 2425 746.700000000000045 1992-01-18 00:00:00 -5 +2426 2426 746.700000000000045 1992-01-18 00:00:00 -5 +2427 2427 184 1992-01-18 00:00:00 -5 +2428 2428 184 1992-01-18 00:00:00 -5 +2429 2429 1921 1992-01-18 00:00:00 -5 +2430 2430 1921 1992-01-18 00:00:00 -5 +2431 2431 7.36000000000000032 1992-01-18 00:00:00 -5 +2432 2432 7.36000000000000032 1992-01-18 00:00:00 -5 +2433 2433 639 1992-02-22 00:00:00 -5 +2434 2434 639 1992-02-22 00:00:00 -5 +2435 2435 696.399999999999977 1992-02-22 00:00:00 -5 +2436 2436 696.399999999999977 1992-02-22 00:00:00 -5 +2437 2437 178 1992-02-22 00:00:00 -5 +2438 2438 178 1992-02-22 00:00:00 -5 +2439 2439 1682 1992-02-22 00:00:00 -5 +2440 2440 1682 1992-02-22 00:00:00 -5 +2441 2441 7.38999999999999968 1992-02-22 00:00:00 -5 +2442 2442 7.38999999999999968 1992-02-22 00:00:00 -5 +2443 2443 569 1992-03-24 00:00:00 -5 +2444 2444 569 1992-03-24 00:00:00 -5 +2445 2445 658.700000000000045 1992-03-24 00:00:00 -5 +2446 2446 658.700000000000045 1992-03-24 00:00:00 -5 +2447 2447 179 1992-03-24 00:00:00 -5 +2448 2448 179 1992-03-24 00:00:00 -5 +2449 2449 2605 1992-03-24 00:00:00 -5 +2450 2450 2605 1992-03-24 00:00:00 -5 +2451 2451 7.15000000000000036 1992-03-24 00:00:00 -5 +2452 2452 7.15000000000000036 1992-03-24 00:00:00 -5 +2453 2453 574 1992-04-24 00:00:00 -5 +2454 2454 574 1992-04-24 00:00:00 -5 +2455 2455 678 1992-04-24 00:00:00 -5 +2456 2456 678 1992-04-24 00:00:00 -5 +2457 2457 134 1992-04-24 00:00:00 -5 +2458 2458 134 1992-04-24 00:00:00 -5 +2459 2459 3018 1992-04-24 00:00:00 -5 +2460 2460 3018 1992-04-24 00:00:00 -5 +2461 2461 7.08999999999999986 1992-04-24 00:00:00 -5 +2462 2462 7.08999999999999986 1992-04-24 00:00:00 -5 +2463 2463 556 1992-05-14 00:00:00 -5 +2464 2464 556 1992-05-14 00:00:00 -5 +2465 2465 666.5 1992-05-14 00:00:00 -5 +2466 2466 666.5 1992-05-14 00:00:00 -5 +2467 2467 143 1992-05-14 00:00:00 -5 +2468 2468 143 1992-05-14 00:00:00 -5 +2469 2469 3206 1992-05-14 00:00:00 -5 +2470 2470 3206 1992-05-14 00:00:00 -5 +2471 2471 7.04999999999999982 1992-05-14 00:00:00 -5 +2472 2472 7.04999999999999982 1992-05-14 00:00:00 -5 +2473 2473 421 1992-06-16 00:00:00 -5 +2474 2474 421 1992-06-16 00:00:00 -5 +2475 2475 570.200000000000045 1992-06-16 00:00:00 -5 +2476 2476 570.200000000000045 1992-06-16 00:00:00 -5 +2477 2477 132 1992-06-16 00:00:00 -5 +2478 2478 132 1992-06-16 00:00:00 -5 +2479 2479 4318 1992-06-16 00:00:00 -5 +2480 2480 4318 1992-06-16 00:00:00 -5 +2481 2481 6.79999999999999982 1992-06-16 00:00:00 -5 +2482 2482 6.79999999999999982 1992-06-16 00:00:00 -5 +2483 2483 565 1993-03-24 00:00:00 -5 +2484 2484 565 1993-03-24 00:00:00 -5 +2485 2485 727.600000000000023 1993-03-24 00:00:00 -5 +2486 2486 727.600000000000023 1993-03-24 00:00:00 -5 +2487 2487 4710 1993-03-24 00:00:00 -5 +2488 2488 4710 1993-03-24 00:00:00 -5 +2489 2489 6.88999999999999968 1993-03-24 00:00:00 -5 +2490 2490 6.88999999999999968 1993-03-24 00:00:00 -5 +2491 2491 528 1993-04-17 00:00:00 -5 +2492 2492 528 1993-04-17 00:00:00 -5 +2493 2493 753 1993-04-17 00:00:00 -5 +2494 2494 753 1993-04-17 00:00:00 -5 +2495 2495 169 1993-04-17 00:00:00 -5 +2496 2496 169 1993-04-17 00:00:00 -5 +2497 2497 6512 1993-04-17 00:00:00 -5 +2498 2498 6512 1993-04-17 00:00:00 -5 +2499 2499 6.71999999999999975 1993-04-17 00:00:00 -5 +2500 2500 6.71999999999999975 1993-04-17 00:00:00 -5 +2501 2501 69 1993-06-20 00:00:00 -5 +2502 2502 69 1993-06-20 00:00:00 -5 +2503 2503 6.69000000000000039 1993-06-20 00:00:00 -5 +2504 2504 6.69000000000000039 1993-06-20 00:00:00 -5 +2505 2505 126 1993-08-24 00:00:00 -5 +2506 2506 126 1993-08-24 00:00:00 -5 +2507 2507 6.88999999999999968 1993-08-24 00:00:00 -5 +2508 2508 6.88999999999999968 1993-08-24 00:00:00 -5 +\. + + +-- +-- TOC entry 5089 (class 0 OID 0) +-- Dependencies: 387 +-- Name: measurementresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('measurementresultvalues_valueid_seq', 2508, true); + + +-- +-- TOC entry 4758 (class 0 OID 70032) +-- Dependencies: 221 +-- Data for Name: methodannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY methodannotations (bridgeid, methodid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5090 (class 0 OID 0) +-- Dependencies: 220 +-- Name: methodannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('methodannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4910 (class 0 OID 70867) +-- Dependencies: 373 +-- Data for Name: methodcitations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY methodcitations (bridgeid, methodid, relationshiptypecv, citationid) FROM stdin; +\. + + +-- +-- TOC entry 5091 (class 0 OID 0) +-- Dependencies: 372 +-- Name: methodcitations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('methodcitations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4872 (class 0 OID 70680) +-- Dependencies: 335 +-- Data for Name: methodextensionpropertyvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY methodextensionpropertyvalues (bridgeid, methodid, propertyid, propertyvalue) FROM stdin; +\. + + +-- +-- TOC entry 5092 (class 0 OID 0) +-- Dependencies: 334 +-- Name: methodextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('methodextensionpropertyvalues_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4883 (class 0 OID 70731) +-- Dependencies: 346 +-- Data for Name: methodexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY methodexternalidentifiers (bridgeid, methodid, externalidentifiersystemid, methodexternalidentifier, methodexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5093 (class 0 OID 0) +-- Dependencies: 345 +-- Name: methodexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('methodexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4790 (class 0 OID 70172) +-- Dependencies: 253 +-- Data for Name: methods; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY methods (methodid, methodtypecv, methodcode, methodname, methoddescription, methodlink, organizationid) FROM stdin; +1 Generic non-observation ProjectParent Project Parent Grouping Project Parent Grouping \N 1 +2 Observation AggregatedMeasurements Aggregated Measurements Aggregated measurements, lumping all observation activities during one site visit \N 1 +\. + + +-- +-- TOC entry 5094 (class 0 OID 0) +-- Dependencies: 252 +-- Name: methods_methodid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('methods_methodid_seq', 1, false); + + +-- +-- TOC entry 4957 (class 0 OID 71098) +-- Dependencies: 420 +-- Data for Name: modelaffiliations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY modelaffiliations (bridgeid, modelid, affiliationid, isprimary, roledescription) FROM stdin; +\. + + +-- +-- TOC entry 5095 (class 0 OID 0) +-- Dependencies: 419 +-- Name: modelaffiliations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('modelaffiliations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4959 (class 0 OID 71109) +-- Dependencies: 422 +-- Data for Name: models; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY models (modelid, modelcode, modelname, modeldescription, version, modellink) FROM stdin; +\. + + +-- +-- TOC entry 5096 (class 0 OID 0) +-- Dependencies: 421 +-- Name: models_modelid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('models_modelid_seq', 1, false); + + +-- +-- TOC entry 4792 (class 0 OID 70183) +-- Dependencies: 255 +-- Data for Name: organizations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY organizations (organizationid, organizationtypecv, organizationcode, organizationname, organizationdescription, organizationlink, parentorganizationid) FROM stdin; +1 Program CAMREX Carbon in the AMazon River EXperiment Project Multi-national program (mainly US and Brazil) examining the biogeochemistry of the Amazon River system from the 1980s through the 2000s. US lead is the University of Washington http://www.riversystems.washington.edu/story/Amazon \N +2 Foundation DOI International DOI Foundation Foundation that manages the Digital Object Identifier (DOI) system http://www.doi.org \N +\. + + +-- +-- TOC entry 5097 (class 0 OID 0) +-- Dependencies: 254 +-- Name: organizations_organizationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('organizations_organizationid_seq', 2, true); + + +-- +-- TOC entry 4794 (class 0 OID 70194) +-- Dependencies: 257 +-- Data for Name: people; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY people (personid, personfirstname, personmiddlename, personlastname) FROM stdin; +1 Emilio \N Mayorga +2 A. H. Devol +3 B. R. Forsberg +4 J. E. Richey +5 T. P. Pimentel +\. + + +-- +-- TOC entry 5098 (class 0 OID 0) +-- Dependencies: 256 +-- Name: people_personid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('people_personid_seq', 5, true); + + +-- +-- TOC entry 4885 (class 0 OID 70742) +-- Dependencies: 348 +-- Data for Name: personexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY personexternalidentifiers (bridgeid, personid, externalidentifiersystemid, personexternalidentifier, personexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5099 (class 0 OID 0) +-- Dependencies: 347 +-- Name: personexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('personexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4926 (class 0 OID 70939) +-- Dependencies: 389 +-- Data for Name: pointcoverageresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY pointcoverageresults (resultid, zlocation, zlocationunitsid, spatialreferenceid, intendedxspacing, intendedxspacingunitsid, intendedyspacing, intendedyspacingunitsid, aggregationstatisticcv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 4760 (class 0 OID 70040) +-- Dependencies: 223 +-- Data for Name: pointcoverageresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY pointcoverageresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5100 (class 0 OID 0) +-- Dependencies: 222 +-- Name: pointcoverageresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('pointcoverageresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4928 (class 0 OID 70946) +-- Dependencies: 391 +-- Data for Name: pointcoverageresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY pointcoverageresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, xlocation, xlocationunitsid, ylocation, ylocationunitsid, censorcodecv, qualitycodecv) FROM stdin; +\. + + +-- +-- TOC entry 5101 (class 0 OID 0) +-- Dependencies: 390 +-- Name: pointcoverageresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('pointcoverageresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4796 (class 0 OID 70205) +-- Dependencies: 259 +-- Data for Name: processinglevels; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY processinglevels (processinglevelid, processinglevelcode, definition, explanation) FROM stdin; +1 FinalPublished Finalized and published in a peer-reviewed article Finalized and published in a peer-reviewed article +2 FinalPreliminary Finalized but not yet published in a peer-reviewed article; may benefit from an additional assessment Finalized but not yet published in a peer-reviewed article; may benefit from an additional assessment +\. + + +-- +-- TOC entry 5102 (class 0 OID 0) +-- Dependencies: 258 +-- Name: processinglevels_processinglevelid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('processinglevels_processinglevelid_seq', 1, false); + + +-- +-- TOC entry 4929 (class 0 OID 70955) +-- Dependencies: 392 +-- Data for Name: profileresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY profileresults (resultid, xlocation, xlocationunitsid, ylocation, ylocationunitsid, spatialreferenceid, intendedzspacing, intendedzspacingunitsid, intendedtimespacing, intendedtimespacingunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 4762 (class 0 OID 70048) +-- Dependencies: 225 +-- Data for Name: profileresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY profileresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5103 (class 0 OID 0) +-- Dependencies: 224 +-- Name: profileresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('profileresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4931 (class 0 OID 70962) +-- Dependencies: 394 +-- Data for Name: profileresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY profileresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, zlocation, zaggregationinterval, zlocationunitsid, censorcodecv, qualitycodecv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5104 (class 0 OID 0) +-- Dependencies: 393 +-- Name: profileresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('profileresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4887 (class 0 OID 70753) +-- Dependencies: 350 +-- Data for Name: referencematerialexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY referencematerialexternalidentifiers (bridgeid, referencematerialid, externalidentifiersystemid, referencematerialexternalidentifier, referencematerialexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5105 (class 0 OID 0) +-- Dependencies: 349 +-- Name: referencematerialexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('referencematerialexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4838 (class 0 OID 70514) +-- Dependencies: 301 +-- Data for Name: referencematerials; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY referencematerials (referencematerialid, referencematerialmediumcv, referencematerialorganizationid, referencematerialcode, referencemateriallotcode, referencematerialpurchasedate, referencematerialexpirationdate, referencematerialcertificatelink, samplingfeatureid) FROM stdin; +\. + + +-- +-- TOC entry 4839 (class 0 OID 70522) +-- Dependencies: 302 +-- Data for Name: referencematerialvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY referencematerialvalues (referencematerialvalueid, referencematerialid, referencematerialvalue, referencematerialaccuracy, variableid, unitsid, citationid) FROM stdin; +\. + + +-- +-- TOC entry 4798 (class 0 OID 70216) +-- Dependencies: 261 +-- Data for Name: relatedactions; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedactions (relationid, actionid, relationshiptypecv, relatedactionid) FROM stdin; +102 336 Is child of 1 +103 337 Is child of 1 +104 338 Is child of 1 +105 339 Is child of 1 +106 340 Is child of 1 +107 341 Is child of 1 +108 342 Is child of 1 +109 343 Is child of 1 +110 344 Is child of 1 +111 345 Is child of 1 +112 346 Is child of 1 +113 347 Is child of 1 +114 348 Is child of 1 +115 349 Is child of 1 +116 350 Is child of 1 +117 351 Is child of 1 +118 352 Is child of 1 +119 353 Is child of 1 +120 354 Is child of 1 +121 355 Is child of 1 +122 356 Is child of 1 +123 357 Is child of 1 +124 358 Is child of 1 +125 359 Is child of 1 +126 360 Is child of 1 +127 361 Is child of 1 +128 362 Is child of 1 +129 363 Is child of 1 +130 364 Is child of 1 +131 365 Is child of 1 +132 366 Is child of 1 +133 367 Is child of 1 +134 368 Is child of 1 +135 369 Is child of 1 +136 370 Is child of 1 +137 371 Is child of 1 +138 372 Is child of 1 +139 373 Is child of 1 +140 374 Is child of 1 +141 375 Is child of 1 +142 376 Is child of 1 +143 377 Is child of 1 +144 378 Is child of 1 +145 379 Is child of 1 +146 380 Is child of 1 +147 381 Is child of 1 +148 382 Is child of 1 +149 383 Is child of 1 +150 384 Is child of 1 +151 385 Is child of 1 +152 386 Is child of 1 +153 387 Is child of 1 +154 388 Is child of 1 +155 389 Is child of 1 +156 390 Is child of 1 +157 391 Is child of 1 +158 392 Is child of 1 +159 411 Is child of 1 +160 412 Is child of 1 +161 393 Is child of 1 +162 394 Is child of 1 +163 395 Is child of 1 +164 396 Is child of 1 +165 397 Is child of 1 +166 398 Is child of 1 +167 399 Is child of 1 +168 400 Is child of 1 +169 401 Is child of 1 +170 402 Is child of 1 +171 403 Is child of 1 +172 404 Is child of 1 +173 405 Is child of 1 +174 406 Is child of 1 +175 407 Is child of 1 +176 408 Is child of 1 +177 409 Is child of 1 +178 410 Is child of 1 +179 413 Is child of 1 +180 414 Is child of 1 +181 415 Is child of 1 +182 416 Is child of 1 +183 417 Is child of 1 +184 418 Is child of 1 +185 419 Is child of 1 +186 420 Is child of 1 +187 421 Is child of 1 +188 422 Is child of 1 +189 423 Is child of 1 +190 424 Is child of 1 +191 425 Is child of 1 +192 426 Is child of 1 +193 427 Is child of 1 +194 428 Is child of 1 +195 429 Is child of 1 +196 430 Is child of 1 +197 431 Is child of 1 +198 432 Is child of 1 +199 433 Is child of 1 +200 434 Is child of 1 +201 435 Is child of 1 +202 436 Is child of 1 +\. + + +-- +-- TOC entry 5106 (class 0 OID 0) +-- Dependencies: 260 +-- Name: relatedactions_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedactions_relationid_seq', 202, true); + + +-- +-- TOC entry 4912 (class 0 OID 70875) +-- Dependencies: 375 +-- Data for Name: relatedannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedannotations (relationid, annotationid, relationshiptypecv, relatedannotationid) FROM stdin; +\. + + +-- +-- TOC entry 5107 (class 0 OID 0) +-- Dependencies: 374 +-- Name: relatedannotations_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedannotations_relationid_seq', 1, false); + + +-- +-- TOC entry 4914 (class 0 OID 70883) +-- Dependencies: 377 +-- Data for Name: relatedcitations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedcitations (relationid, citationid, relationshiptypecv, relatedcitationid) FROM stdin; +\. + + +-- +-- TOC entry 5108 (class 0 OID 0) +-- Dependencies: 376 +-- Name: relatedcitations_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedcitations_relationid_seq', 1, false); + + +-- +-- TOC entry 4916 (class 0 OID 70891) +-- Dependencies: 379 +-- Data for Name: relateddatasets; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relateddatasets (relationid, datasetid, relationshiptypecv, relateddatasetid, versioncode) FROM stdin; +\. + + +-- +-- TOC entry 5109 (class 0 OID 0) +-- Dependencies: 378 +-- Name: relateddatasets_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relateddatasets_relationid_seq', 1, false); + + +-- +-- TOC entry 4864 (class 0 OID 70645) +-- Dependencies: 327 +-- Data for Name: relatedequipment; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedequipment (relationid, equipmentid, relationshiptypecv, relatedequipmentid, relationshipstartdatetime, relationshipstartdatetimeutcoffset, relationshipenddatetime, relationshipenddatetimeutcoffset) FROM stdin; +\. + + +-- +-- TOC entry 5110 (class 0 OID 0) +-- Dependencies: 326 +-- Name: relatedequipment_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedequipment_relationid_seq', 1, false); + + +-- +-- TOC entry 4948 (class 0 OID 71053) +-- Dependencies: 411 +-- Data for Name: relatedfeatures; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedfeatures (relationid, samplingfeatureid, relationshiptypecv, relatedfeatureid, spatialoffsetid) FROM stdin; +1 1 Was collected at 1036 \N +2 2 Was collected at 1036 \N +3 3 Was collected at 1036 \N +4 4 Was collected at 1036 \N +5 5 Was collected at 1036 \N +6 6 Was collected at 1036 \N +7 7 Was collected at 1036 \N +8 8 Was collected at 1036 \N +9 9 Was collected at 1036 \N +10 10 Was collected at 1036 \N +11 11 Was collected at 1036 \N +12 12 Was collected at 1036 \N +13 13 Was collected at 1036 \N +14 14 Was collected at 1036 \N +15 15 Was collected at 1036 \N +16 16 Was collected at 1036 \N +17 17 Was collected at 1036 \N +18 18 Was collected at 1036 \N +19 19 Was collected at 1036 \N +20 20 Was collected at 1036 \N +21 21 Was collected at 1036 \N +22 22 Was collected at 1036 \N +23 23 Was collected at 1036 \N +24 24 Was collected at 1036 \N +25 25 Was collected at 1036 \N +26 26 Was collected at 1036 \N +27 27 Was collected at 1036 \N +28 28 Was collected at 1036 \N +29 29 Was collected at 1036 \N +30 30 Was collected at 1036 \N +31 31 Was collected at 1036 \N +32 32 Was collected at 1036 \N +33 33 Was collected at 1036 \N +34 34 Was collected at 1036 \N +35 35 Was collected at 1036 \N +36 36 Was collected at 1036 \N +37 37 Was collected at 1036 \N +38 38 Was collected at 1036 \N +39 39 Was collected at 1036 \N +40 40 Was collected at 1036 \N +41 41 Was collected at 1036 \N +42 42 Was collected at 1036 \N +43 43 Was collected at 1036 \N +44 44 Was collected at 1036 \N +45 45 Was collected at 1036 \N +46 46 Was collected at 1036 \N +47 47 Was collected at 1036 \N +48 48 Was collected at 1036 \N +49 49 Was collected at 1036 \N +50 50 Was collected at 1036 \N +51 51 Was collected at 1036 \N +52 52 Was collected at 1036 \N +53 53 Was collected at 1036 \N +54 54 Was collected at 1036 \N +55 55 Was collected at 1036 \N +56 56 Was collected at 1036 \N +57 57 Was collected at 1036 \N +58 58 Was collected at 1036 \N +59 59 Was collected at 1036 \N +60 60 Was collected at 1036 \N +61 61 Was collected at 1036 \N +62 62 Was collected at 1036 \N +63 63 Was collected at 1036 \N +64 64 Was collected at 1036 \N +65 65 Was collected at 1036 \N +66 66 Was collected at 1036 \N +67 67 Was collected at 1036 \N +68 68 Was collected at 1036 \N +69 69 Was collected at 1036 \N +70 70 Was collected at 1036 \N +71 71 Was collected at 1036 \N +72 72 Was collected at 1036 \N +73 73 Was collected at 1036 \N +74 74 Was collected at 1036 \N +75 75 Was collected at 1036 \N +76 76 Was collected at 1036 \N +77 77 Was collected at 1036 \N +78 78 Was collected at 1036 \N +79 79 Was collected at 1036 \N +80 80 Was collected at 1036 \N +81 81 Was collected at 1036 \N +82 82 Was collected at 1036 \N +83 83 Was collected at 1036 \N +84 84 Was collected at 1036 \N +85 85 Was collected at 1036 \N +86 86 Was collected at 1036 \N +87 87 Was collected at 1036 \N +88 88 Was collected at 1036 \N +89 89 Was collected at 1036 \N +90 90 Was collected at 1036 \N +91 91 Was collected at 1036 \N +92 92 Was collected at 1036 \N +93 93 Was collected at 1036 \N +94 94 Was collected at 1036 \N +95 95 Was collected at 1036 \N +96 96 Was collected at 1036 \N +97 97 Was collected at 1036 \N +98 98 Was collected at 1036 \N +99 33125 Was collected at 1036 \N +100 33126 Was collected at 1036 \N +101 33127 Was collected at 1036 \N +102 33128 Was collected at 1036 \N +103 33129 Was collected at 1036 \N +104 33130 Was collected at 1036 \N +105 33131 Was collected at 1036 \N +106 33132 Was collected at 1036 \N +107 33133 Was collected at 1036 \N +108 33134 Was collected at 1036 \N +109 33135 Was collected at 1036 \N +110 33136 Was collected at 1036 \N +111 33137 Was collected at 1036 \N +112 33138 Was collected at 1036 \N +113 33139 Was collected at 1036 \N +114 33140 Was collected at 1036 \N +115 33141 Was collected at 1036 \N +116 33142 Was collected at 1036 \N +117 33143 Was collected at 1036 \N +118 33144 Was collected at 1036 \N +119 33145 Was collected at 1036 \N +120 33146 Was collected at 1036 \N +121 33147 Was collected at 1036 \N +122 33148 Was collected at 1036 \N +123 33149 Was collected at 1036 \N +124 33150 Was collected at 1036 \N +125 33151 Was collected at 1036 \N +126 33152 Was collected at 1036 \N +127 33153 Was collected at 1036 \N +128 33154 Was collected at 1036 \N +129 33155 Was collected at 1036 \N +130 33156 Was collected at 1036 \N +131 33157 Was collected at 1036 \N +132 33158 Was collected at 1036 \N +133 33159 Was collected at 1036 \N +134 33160 Was collected at 1036 \N +135 33161 Was collected at 1036 \N +136 33162 Was collected at 1036 \N +137 33163 Was collected at 1036 \N +138 33164 Was collected at 1036 \N +139 33165 Was collected at 1036 \N +140 33166 Was collected at 1036 \N +141 33167 Was collected at 1036 \N +142 33168 Was collected at 1036 \N +143 33169 Was collected at 1036 \N +144 33170 Was collected at 1036 \N +145 33171 Was collected at 1036 \N +146 33172 Was collected at 1036 \N +147 33173 Was collected at 1036 \N +148 33174 Was collected at 1036 \N +149 33175 Was collected at 1036 \N +150 33176 Was collected at 1036 \N +151 33177 Was collected at 1036 \N +152 33178 Was collected at 1036 \N +153 33179 Was collected at 1036 \N +154 33180 Was collected at 1036 \N +155 33181 Was collected at 1036 \N +156 33182 Was collected at 1036 \N +157 33183 Was collected at 1036 \N +158 33184 Was collected at 1036 \N +159 33185 Was collected at 1036 \N +160 33186 Was collected at 1036 \N +161 33187 Was collected at 1036 \N +162 33188 Was collected at 1036 \N +163 33189 Was collected at 1036 \N +164 33190 Was collected at 1036 \N +165 33191 Was collected at 1036 \N +166 33192 Was collected at 1036 \N +167 33193 Was collected at 1036 \N +168 33194 Was collected at 1036 \N +169 33195 Was collected at 1036 \N +170 33196 Was collected at 1036 \N +171 33197 Was collected at 1036 \N +172 33198 Was collected at 1036 \N +173 33199 Was collected at 1036 \N +174 33200 Was collected at 1036 \N +175 33201 Was collected at 1036 \N +176 33202 Was collected at 1036 \N +177 33203 Was collected at 1036 \N +178 33204 Was collected at 1036 \N +179 33205 Was collected at 1036 \N +180 33206 Was collected at 1036 \N +181 33207 Was collected at 1036 \N +182 33208 Was collected at 1036 \N +183 33209 Was collected at 1036 \N +184 33210 Was collected at 1036 \N +185 33211 Was collected at 1036 \N +186 33212 Was collected at 1036 \N +187 33213 Was collected at 1036 \N +188 33214 Was collected at 1036 \N +189 33215 Was collected at 1036 \N +190 33216 Was collected at 1036 \N +191 33217 Was collected at 1036 \N +192 33218 Was collected at 1036 \N +193 33219 Was collected at 1036 \N +194 33220 Was collected at 1036 \N +195 33221 Was collected at 1036 \N +196 33222 Was collected at 1036 \N +197 33223 Was collected at 1036 \N +198 33224 Was collected at 1036 \N +199 33225 Was collected at 1036 \N +200 33226 Was collected at 1036 \N +201 33227 Was collected at 1036 \N +202 33228 Was collected at 1036 \N +203 33229 Was collected at 1036 \N +204 33230 Was collected at 1036 \N +205 33231 Was collected at 1036 \N +206 33232 Was collected at 1036 \N +207 33233 Was collected at 1036 \N +208 33234 Was collected at 1036 \N +209 33235 Was collected at 1036 \N +210 33236 Was collected at 1036 \N +211 33237 Was collected at 1036 \N +212 33238 Was collected at 1036 \N +213 33239 Was collected at 1036 \N +214 33240 Was collected at 1036 \N +215 33241 Was collected at 1036 \N +216 33242 Was collected at 1036 \N +217 33243 Was collected at 1036 \N +218 33244 Was collected at 1036 \N +219 33245 Was collected at 1036 \N +220 33246 Was collected at 1036 \N +221 33247 Was collected at 1036 \N +222 33248 Was collected at 1036 \N +223 33249 Was collected at 1036 \N +224 33250 Was collected at 1036 \N +225 33251 Was collected at 1036 \N +226 33252 Was collected at 1036 \N +227 33253 Was collected at 1036 \N +228 33254 Was collected at 1036 \N +229 33255 Was collected at 1036 \N +230 33256 Was collected at 1036 \N +231 33257 Was collected at 1036 \N +232 33258 Was collected at 1036 \N +233 33259 Was collected at 1036 \N +234 33260 Was collected at 1036 \N +235 33261 Was collected at 1036 \N +236 33262 Was collected at 1036 \N +237 33263 Was collected at 1036 \N +238 33264 Was collected at 1036 \N +239 33265 Was collected at 1036 \N +240 33266 Was collected at 1036 \N +241 33267 Was collected at 1036 \N +242 33268 Was collected at 1036 \N +243 33269 Was collected at 1036 \N +244 33270 Was collected at 1036 \N +245 33271 Was collected at 1036 \N +246 33272 Was collected at 1036 \N +247 33273 Was collected at 1036 \N +248 33274 Was collected at 1036 \N +249 33275 Was collected at 1036 \N +250 33276 Was collected at 1036 \N +251 33277 Was collected at 1036 \N +252 33278 Was collected at 1036 \N +253 33279 Was collected at 1036 \N +254 33280 Was collected at 1036 \N +255 33281 Was collected at 1036 \N +256 33282 Was collected at 1036 \N +257 33283 Was collected at 1036 \N +258 33284 Was collected at 1036 \N +259 33285 Was collected at 1036 \N +260 33286 Was collected at 1036 \N +261 33287 Was collected at 1036 \N +262 33288 Was collected at 1036 \N +263 33289 Was collected at 1036 \N +264 33290 Was collected at 1036 \N +265 33291 Was collected at 1036 \N +266 33292 Was collected at 1036 \N +267 33293 Was collected at 1036 \N +268 33294 Was collected at 1036 \N +269 33295 Was collected at 1036 \N +270 33296 Was collected at 1036 \N +271 33297 Was collected at 1036 \N +272 33298 Was collected at 1036 \N +273 33299 Was collected at 1036 \N +274 33300 Was collected at 1036 \N +275 33301 Was collected at 1036 \N +276 33302 Was collected at 1036 \N +277 33303 Was collected at 1036 \N +278 33304 Was collected at 1036 \N +279 33305 Was collected at 1036 \N +280 33306 Was collected at 1036 \N +281 33307 Was collected at 1036 \N +282 33308 Was collected at 1036 \N +283 33309 Was collected at 1036 \N +284 33310 Was collected at 1036 \N +285 33311 Was collected at 1036 \N +286 33312 Was collected at 1036 \N +287 33313 Was collected at 1036 \N +288 33314 Was collected at 1036 \N +289 33315 Was collected at 1036 \N +290 33316 Was collected at 1036 \N +291 33317 Was collected at 1036 \N +292 33318 Was collected at 1036 \N +293 33319 Was collected at 1036 \N +294 33320 Was collected at 1036 \N +295 33321 Was collected at 1036 \N +296 33322 Was collected at 1036 \N +297 33323 Was collected at 1036 \N +298 33324 Was collected at 1036 \N +299 33325 Was collected at 1036 \N +300 33326 Was collected at 1036 \N +301 33327 Was collected at 1036 \N +302 33328 Was collected at 1036 \N +303 33329 Was collected at 1036 \N +304 33330 Was collected at 1036 \N +305 33331 Was collected at 1036 \N +306 33332 Was collected at 1036 \N +307 33333 Was collected at 1036 \N +308 33334 Was collected at 1036 \N +309 33335 Was collected at 1036 \N +310 33336 Was collected at 1036 \N +311 33337 Was collected at 1036 \N +312 33338 Was collected at 1036 \N +313 33339 Was collected at 1036 \N +314 33340 Was collected at 1036 \N +315 33341 Was collected at 1036 \N +316 33342 Was collected at 1036 \N +317 33343 Was collected at 1036 \N +318 33344 Was collected at 1036 \N +319 33345 Was collected at 1036 \N +320 33346 Was collected at 1036 \N +321 33347 Was collected at 1036 \N +322 33348 Was collected at 1036 \N +323 33349 Was collected at 1036 \N +324 33350 Was collected at 1036 \N +325 33351 Was collected at 1036 \N +326 33352 Was collected at 1036 \N +327 33353 Was collected at 1036 \N +328 33354 Was collected at 1036 \N +329 33355 Was collected at 1036 \N +330 33356 Was collected at 1036 \N +331 33357 Was collected at 1036 \N +332 33358 Was collected at 1036 \N +333 33359 Was collected at 1036 \N +334 33360 Was collected at 1036 \N +335 33361 Was collected at 1036 \N +336 33362 Was collected at 1036 \N +337 33363 Was collected at 1036 \N +338 33364 Was collected at 1036 \N +339 33365 Was collected at 1036 \N +340 33366 Was collected at 1036 \N +341 33367 Was collected at 1036 \N +342 33368 Was collected at 1036 \N +343 33369 Was collected at 1036 \N +344 33370 Was collected at 1036 \N +345 33371 Was collected at 1036 \N +346 33372 Was collected at 1036 \N +347 33373 Was collected at 1036 \N +348 33374 Was collected at 1036 \N +349 33375 Was collected at 1036 \N +350 33376 Was collected at 1036 \N +351 33377 Was collected at 1036 \N +352 33378 Was collected at 1036 \N +353 33379 Was collected at 1036 \N +354 33380 Was collected at 1036 \N +355 33381 Was collected at 1036 \N +356 33382 Was collected at 1036 \N +357 33383 Was collected at 1036 \N +358 33384 Was collected at 1036 \N +359 33385 Was collected at 1036 \N +360 33386 Was collected at 1036 \N +361 33387 Was collected at 1036 \N +362 33388 Was collected at 1036 \N +363 33389 Was collected at 1036 \N +364 33390 Was collected at 1036 \N +365 33391 Was collected at 1036 \N +366 33392 Was collected at 1036 \N +367 33393 Was collected at 1036 \N +368 33394 Was collected at 1036 \N +369 33395 Was collected at 1036 \N +370 33396 Was collected at 1036 \N +371 33397 Was collected at 1036 \N +372 33398 Was collected at 1036 \N +373 33399 Was collected at 1036 \N +374 33400 Was collected at 1036 \N +375 33401 Was collected at 1036 \N +376 33402 Was collected at 1036 \N +377 33403 Was collected at 1036 \N +378 33404 Was collected at 1036 \N +379 33405 Was collected at 1036 \N +380 33406 Was collected at 1036 \N +381 33407 Was collected at 1036 \N +382 33408 Was collected at 1036 \N +383 33409 Was collected at 1036 \N +384 33410 Was collected at 1036 \N +385 33411 Was collected at 1036 \N +386 33412 Was collected at 1036 \N +387 33413 Was collected at 1036 \N +388 33414 Was collected at 1036 \N +389 33415 Was collected at 1036 \N +390 33416 Was collected at 1036 \N +391 33417 Was collected at 1036 \N +392 33418 Was collected at 1036 \N +393 33419 Was collected at 1036 \N +394 33420 Was collected at 1036 \N +\. + + +-- +-- TOC entry 5111 (class 0 OID 0) +-- Dependencies: 410 +-- Name: relatedfeatures_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedfeatures_relationid_seq', 394, true); + + +-- +-- TOC entry 4961 (class 0 OID 71120) +-- Dependencies: 424 +-- Data for Name: relatedmodels; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedmodels (relatedid, modelid, relationshiptypecv, relatedmodelid) FROM stdin; +\. + + +-- +-- TOC entry 5112 (class 0 OID 0) +-- Dependencies: 423 +-- Name: relatedmodels_relatedid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedmodels_relatedid_seq', 1, false); + + +-- +-- TOC entry 4918 (class 0 OID 70899) +-- Dependencies: 381 +-- Data for Name: relatedresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY relatedresults (relationid, resultid, relationshiptypecv, relatedresultid, versioncode, relatedresultsequencenumber) FROM stdin; +\. + + +-- +-- TOC entry 5113 (class 0 OID 0) +-- Dependencies: 380 +-- Name: relatedresults_relationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('relatedresults_relationid_seq', 1, false); + + +-- +-- TOC entry 4764 (class 0 OID 70056) +-- Dependencies: 227 +-- Data for Name: resultannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY resultannotations (bridgeid, resultid, annotationid, begindatetime, enddatetime) FROM stdin; +\. + + +-- +-- TOC entry 5114 (class 0 OID 0) +-- Dependencies: 226 +-- Name: resultannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('resultannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4919 (class 0 OID 70905) +-- Dependencies: 382 +-- Data for Name: resultderivationequations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY resultderivationequations (resultid, derivationequationid) FROM stdin; +\. + + +-- +-- TOC entry 4874 (class 0 OID 70688) +-- Dependencies: 337 +-- Data for Name: resultextensionpropertyvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY resultextensionpropertyvalues (bridgeid, resultid, propertyid, propertyvalue) FROM stdin; +\. + + +-- +-- TOC entry 5115 (class 0 OID 0) +-- Dependencies: 336 +-- Name: resultextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('resultextensionpropertyvalues_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4840 (class 0 OID 70527) +-- Dependencies: 303 +-- Data for Name: resultnormalizationvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY resultnormalizationvalues (resultid, normalizedbyreferencematerialvalueid) FROM stdin; +\. + + +-- +-- TOC entry 4800 (class 0 OID 70224) +-- Dependencies: 263 +-- Data for Name: results; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY results (resultid, resultuuid, featureactionid, resulttypecv, variableid, unitsid, taxonomicclassifierid, processinglevelid, resultdatetime, resultdatetimeutcoffset, validdatetime, validdatetimeutcoffset, statuscv, sampledmediumcv, valuecount) FROM stdin; +1 20224a83-c364-51b2-34ed-6eb29f23265c 1 Measurement 3 11 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2 4e405eb0-e3df-3fe6-bf71-0e8c0ec19313 1 Measurement 1 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +3 1561eb1b-036a-aa1f-afab-e63ed6f8e2ea 1 Measurement 1 12 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +4 f1303482-1de1-085b-8fd2-7ef0d1d9ef47 1 Measurement 2 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +5 c9fb7820-4ea6-f6e5-4769-e643665f1e23 1 Measurement 2 12 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +6 876bff67-940a-748e-eade-d1ba66248d15 1 Measurement 4 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +7 9a266bfa-9f0b-6563-ad80-87d2a350b4ca 2 Measurement 3 11 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +8 f6a07c1a-3df2-7e4f-3e8c-8a6743f0cc77 2 Measurement 1 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +9 2f0da2b7-9680-7d9e-1598-d35971b40008 2 Measurement 1 12 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +10 bd9b260a-103c-9bdd-a012-6934f4cc77e1 2 Measurement 2 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +11 7ee145e8-5598-6366-f53e-768d2d43f506 2 Measurement 2 12 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +12 f02677ce-c106-c694-1327-3210a9a9f540 2 Measurement 4 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +13 1c310af8-ae65-d850-9d16-b0bc02a9463c 3 Measurement 3 11 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +14 a89d5ed6-fd52-dd4e-b720-ffe820dfa534 3 Measurement 1 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +15 d3cc7b1a-ac0a-409c-90f5-5eb69ada228a 3 Measurement 1 12 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +16 d9a247c0-ffb3-5d88-7cdf-06ab22447d03 3 Measurement 2 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +17 f947bb62-8aa9-5a27-9c63-abb078cb71e6 3 Measurement 2 12 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +18 5eaab9ab-9b3f-83f1-0a8b-ea67f7fb154c 3 Measurement 4 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +19 355af147-3914-34df-cb9f-829d1e562f30 4 Measurement 3 11 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +20 c21b5f44-5a56-749f-033c-4dd77607147d 4 Measurement 1 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +21 5e608b6f-0132-7313-a6bf-62d8575f9d29 4 Measurement 1 12 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +22 94e446ca-d387-89e0-5ca9-b11d71872f02 4 Measurement 2 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +23 67408ddc-6ac1-39fd-401c-1b2d5dccf310 4 Measurement 2 12 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +24 2488ff29-5e4d-f27f-fb0a-2cfaf12cc28f 4 Measurement 4 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +25 32e31853-b5ff-6c1f-6260-dddeb154df1e 5 Measurement 3 11 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +26 02011cd6-d663-6ead-59a3-d61e5024d9b2 5 Measurement 1 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +27 8df27b9c-2e42-e269-4e3d-bd8f2db819ed 5 Measurement 1 12 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +28 b62209fe-8aa8-2374-356b-b2f64a20c682 5 Measurement 2 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +29 dc3220fa-6302-6fdd-e077-e89e68d9f418 5 Measurement 2 12 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +30 5ff54d87-a89c-6b8e-d394-56b301e1df73 5 Measurement 4 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +31 ba867a6b-0a1b-97e4-a8c5-78b476f03642 6 Measurement 4 1 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +32 6409048a-6b13-c8f6-4350-5e37ecc3ed00 7 Measurement 3 11 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +33 4e59bcd2-443a-9e61-d46b-163855b12547 7 Measurement 1 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +34 3df9792c-15f2-6842-d5ae-0a5c74bd8279 7 Measurement 1 12 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +35 547e7ee2-8928-c087-c74d-0ebb5adb1715 7 Measurement 2 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +36 046d3cec-e6d2-4ab9-e40f-f641429c4cc3 7 Measurement 2 12 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +37 cc623605-0e0e-592e-0fe6-8e5a8caf36bc 7 Measurement 4 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +38 017b5592-aff3-6f0b-6908-cd6ff5ec5a27 8 Measurement 3 11 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +39 d8a378de-35e4-1002-8e78-a3d2c75c1dc0 8 Measurement 1 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +40 9b3772bc-629e-0ea2-a40b-4ad45c14abcd 8 Measurement 1 12 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +41 bde95861-f442-7f09-16f7-a00194474cf5 8 Measurement 2 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +42 fb26da32-9e80-3416-cf90-fe60e513a7ed 8 Measurement 2 12 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +43 48cdbeda-b678-aa87-fd8f-40497692ebc2 8 Measurement 4 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +44 1c5dd788-7607-4a3b-fab5-5e042e0bf96e 9 Measurement 3 11 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +45 3367e0fa-624c-dc24-c3e7-7e23fdffa993 9 Measurement 1 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +46 5400d0fb-4cb4-e8ee-ec1f-b42c1688ff89 9 Measurement 1 12 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +47 ea6e62ec-430a-1afe-b154-ae080669df45 9 Measurement 2 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +48 9bdd4b89-29ef-44d7-dbfc-cce639dbd987 9 Measurement 2 12 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +49 a3ecb7df-42f2-ab7b-f8f6-88fb060be8dc 9 Measurement 4 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +50 fd2969f0-843f-820c-da83-7c584a92c159 10 Measurement 3 11 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +51 7738a9f2-51b9-8808-7c4e-ce8069c29568 10 Measurement 1 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +52 81a7b24b-fec2-bcfe-345a-40fb62657785 10 Measurement 1 12 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +53 7ea61aa7-e0fb-b804-0e58-193ee8736150 10 Measurement 2 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +54 2bb0e76d-55fc-2a5b-ac5d-6883ae271557 10 Measurement 2 12 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +55 dc7aeba7-e057-12ff-64ce-cc5ed0f50a03 10 Measurement 4 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +56 b0e06e1f-2d91-fb5a-1aa5-8c9ff6d35cbb 11 Measurement 3 11 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +57 f2991d30-55a4-d6db-9a7d-6326e026aa36 11 Measurement 1 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +58 bec23c10-2895-159f-5f84-4b21ef0ea223 11 Measurement 1 12 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +59 e3ed9417-4bdf-cdd5-b1e7-76b6ff98bbf2 11 Measurement 2 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +60 df121366-2b2c-fb63-6e4e-28d6097fab48 11 Measurement 2 12 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +61 052944e4-0e30-fd64-f6ea-2fc02c27e22d 11 Measurement 4 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +62 4c423916-16aa-5898-6912-80833a423867 12 Measurement 3 11 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +63 275c1ae8-a5ef-67b9-7cef-5feed4cd5904 12 Measurement 1 1 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +64 958ae55f-9030-88ab-64cb-0f025de62e93 12 Measurement 1 12 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +65 d13cf729-95a4-fd7b-c119-2ce2744f1cd5 12 Measurement 2 1 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +66 08043917-f661-0504-c0f0-b392392fa693 12 Measurement 2 12 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +67 bc6715df-1d08-80d0-0ad8-2c69c438197e 12 Measurement 4 1 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +68 bdc3ce30-a5f7-b6e0-fcc0-d3ff27b6df6a 13 Measurement 3 11 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +69 a11b8f3f-b491-ab3c-bc99-15cfd49e9315 13 Measurement 1 1 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +70 9b84899f-39a4-22d8-0ebe-673b9f60ebeb 13 Measurement 1 12 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +71 94d294a6-6428-d741-bd57-fd019d9a89d7 13 Measurement 2 1 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +72 0c9bebc5-88b1-ce15-f875-3b0865bc4771 13 Measurement 2 12 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +73 18b89f2b-dd49-ee09-7c7f-df567988df1a 13 Measurement 4 1 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +74 450f7181-2c6e-8d51-8988-dbcd72e45b01 14 Measurement 3 11 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +75 c1d24e83-75bb-cd94-50de-7399bef31a7f 14 Measurement 1 1 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +76 00ffc37a-8951-3800-726e-27d1e8e3b66a 14 Measurement 1 12 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +77 1d5b512f-a77d-0ca4-e91c-aa1395c95c8a 14 Measurement 2 1 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +78 cf93deaf-e010-e15b-2376-b26dedeed141 14 Measurement 2 12 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +79 4cd25580-aa58-3c53-53fa-b76a0c4130da 14 Measurement 4 1 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +80 5d96386c-e5c9-83e7-4c84-fc93f073dde1 15 Measurement 3 11 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +81 9567c898-b214-415d-cd98-d3b7665a1ab6 15 Measurement 1 1 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +82 da34a98a-1ead-de2b-50bd-1bb793540461 15 Measurement 1 12 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +83 89c72b14-fb45-474c-8c1a-15ba877792f8 15 Measurement 2 1 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +84 0f7d7c97-5b3f-1a28-5c2f-6e53fb9e8c22 15 Measurement 2 12 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +85 bfded399-55fd-c1b3-8a8d-405816f98ef7 15 Measurement 4 1 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +86 f31a8865-96cd-88bc-83ba-61548a846fd1 16 Measurement 3 11 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +87 09577a6a-75d9-d771-0e2a-f834e6f9c2bc 16 Measurement 1 1 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +88 4bad677c-f60e-2524-b1af-d23a4604cff1 16 Measurement 1 12 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +89 810b5b03-f05f-1271-9709-7e4c991ada69 16 Measurement 2 1 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +90 eb029390-929c-71b6-961d-59ad8bc8abcd 16 Measurement 2 12 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +91 ec3c6d6f-b118-8711-e349-05a9064ae33b 16 Measurement 4 1 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +92 6dbd3e19-5876-2b63-d581-9ce3af83c894 17 Measurement 3 11 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +93 8378de34-7b55-a68b-5f67-0664917e9921 17 Measurement 1 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +94 2a513c1b-815d-ca73-d60c-859e347f05bd 17 Measurement 1 12 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +95 bec7b36c-b8a6-2893-3c5e-1ca2b11dc61f 17 Measurement 2 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +96 19fb60cb-c8af-3cba-0f60-c12447b55429 17 Measurement 2 12 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +97 135a5eb3-e0a6-5b85-92e7-84fdeb076a21 17 Measurement 4 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +98 84a8bc8c-8e9f-4f86-830c-8f2846933d21 18 Measurement 3 11 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +99 3d5b6526-5fc8-b006-e7d3-df8126bda819 18 Measurement 1 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +100 4705d9ac-2b49-d157-5a60-079bdeb635ad 18 Measurement 1 12 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +101 29188d9d-a29b-61af-2725-327d2ff149d4 18 Measurement 2 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +102 5eb4faea-280c-3e9a-c930-81bcbcf3810e 18 Measurement 2 12 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +103 aebf0756-3b45-6d28-7b18-52a0cd70247d 18 Measurement 4 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +104 9f939813-3ac8-4ff8-0ce5-c03270bce39a 19 Measurement 3 11 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +105 ee256936-ba7c-d8a1-f2cd-7065e4770147 19 Measurement 1 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +106 092b99bd-678f-157f-3cd2-979b1e406596 19 Measurement 1 12 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +107 d27f7c34-a910-8110-cf4a-42f5ab37eb87 19 Measurement 2 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +108 86a98647-02cc-7d4d-f407-3403f6a78e11 19 Measurement 2 12 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +109 63179ee4-bd9a-bcb2-d7be-254a9f6aeb90 19 Measurement 4 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +110 83119ff7-874d-e74b-8d7e-abab15c6c4bc 20 Measurement 3 11 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +111 eb3d04c9-444f-feca-906b-00e509723f38 20 Measurement 1 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +112 e71d9ba4-9c89-a947-a41d-48e493dfe737 20 Measurement 1 12 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +113 661ba919-2ad6-118f-8d8e-aa7c4e5ba95e 20 Measurement 2 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +114 282e6ff7-c4f7-d0e9-80ce-a5382beae96f 20 Measurement 2 12 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +115 2cf82d06-e0f6-7993-bbcd-6004edd4972b 20 Measurement 4 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +116 b25cc79c-c951-406e-cf8b-e80beedd0796 21 Measurement 3 11 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +117 76e1a5a9-e74c-c921-7b31-6c675eb0cf15 21 Measurement 1 1 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +118 1ab0a951-0440-6cb2-f598-72d7eb9e6ade 21 Measurement 1 12 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +119 289e72bf-b4df-ca16-dfdc-a8c1d8323a5b 21 Measurement 2 1 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +120 4c4e2a2b-ac16-069d-4a90-093710c4125e 21 Measurement 2 12 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +121 e0a79da5-22df-d828-6941-f1af0bf26545 21 Measurement 4 1 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +122 bf6ec058-a243-fc4e-a0f1-610daf296ffc 22 Measurement 3 11 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +123 2bb0cebb-9da3-edee-f0a9-e94bbdd209fe 22 Measurement 1 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +124 fbd4feb7-c231-01df-8979-355e04033b64 22 Measurement 1 12 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +125 d641b995-9c7a-9f7f-4c06-f275e2545e63 22 Measurement 2 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +126 6f6cbe2f-4cde-4b92-65cb-87cdfe861dde 22 Measurement 2 12 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +127 f5c3810d-0c9c-b2aa-64f6-5951cb7cdadb 22 Measurement 4 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +128 115eeef7-d318-e73b-6329-cd284c2adea8 23 Measurement 3 11 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +129 2f01b571-51f6-0b05-b307-14356460a0c2 23 Measurement 1 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +130 1fb65c76-c5c2-3b93-a4bb-0b90af347741 23 Measurement 1 12 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +131 7712d845-d03b-23e1-7f69-23b67aa76eae 23 Measurement 2 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +132 97d342ed-3dd3-e2ae-4ce3-a874c862d7ed 23 Measurement 2 12 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +133 a1b3a38c-da40-2a84-f611-b62955971e1a 23 Measurement 4 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +134 9663bf80-612c-e748-84ff-4a0b2e4a57bc 24 Measurement 3 11 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +135 c9a46541-460b-ee9e-dedc-9f826f1a37fd 24 Measurement 1 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +136 6eb1f192-f057-a643-86b5-9961e5fb6086 24 Measurement 1 12 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +137 c8150f34-e5ee-ecf0-5a4e-0fb5f9a61c1e 24 Measurement 2 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +138 a2008717-6e3a-3ec2-ac81-80a50644a3c8 24 Measurement 2 12 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +139 784fa608-facc-3e0b-c905-f0efa7a2b203 24 Measurement 4 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +140 bfccd720-8f0c-0e48-97fc-5da83018057e 25 Measurement 4 1 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +141 9602afb7-7e86-e875-dee6-e358458160cb 26 Measurement 3 11 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +142 235c0239-420c-5039-e864-d056b5849c73 26 Measurement 1 1 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +143 3169b3a5-b99e-10ca-f018-a45da206fe3a 26 Measurement 1 12 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +144 7196155a-7635-87fe-39c2-1165f3bb8fb0 26 Measurement 2 1 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +145 0a696035-5bff-10c8-3390-f26eede7faa3 26 Measurement 2 12 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +146 b9bfdcf6-3a23-74b1-5d3c-2b406a419918 26 Measurement 4 1 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +147 10a88cb0-18e9-055e-4eed-0c13e46d94a3 27 Measurement 3 11 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +148 9c3c5b48-5f2b-d424-573a-f5293ee2758a 27 Measurement 1 1 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +149 4e334342-2a22-5a0d-1864-89de070c9a31 27 Measurement 1 12 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +150 e3b3d5a4-4821-9bda-2d1c-caf190e036a1 27 Measurement 2 1 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +151 d4977f9d-bc2b-4027-b617-a74e7bcdb864 27 Measurement 2 12 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +152 54322784-394d-1cbe-6473-3041f587a16a 27 Measurement 4 1 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +153 4f099bb0-74dd-affa-29d5-6161c5621038 28 Measurement 3 11 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +154 102fc19e-4b0a-0552-7abb-e93ad8bd3c8d 28 Measurement 1 1 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +155 e371a1cf-7757-23df-a72d-e0016162a327 28 Measurement 1 12 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +156 ec34b305-cbcb-4517-01a3-f6af9608235e 28 Measurement 2 1 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +157 ac2af36f-75fd-7704-8ff2-e973181e1f4d 28 Measurement 2 12 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +158 31b56e6f-cd83-9459-901c-28e5b74293b5 28 Measurement 4 1 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +159 fd63f52c-20fc-3441-7a67-7a58dc2ec0b9 29 Measurement 3 11 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +160 63d903e7-8fec-3d16-6ec1-441628d63060 29 Measurement 1 1 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +161 2fb9eff5-8be9-05d8-8197-c30a43b9dd1f 29 Measurement 1 12 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +162 39bf9ba1-9255-1471-634b-59aab5372b80 29 Measurement 2 1 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +163 71c15619-2579-ed9e-d3a7-ec4583fd4386 29 Measurement 2 12 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +164 82082dce-2ae4-2b3a-26ea-ba2d0fc1127c 29 Measurement 4 1 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +165 532e3157-c9d5-f1b4-0f97-faf85ba3bfbc 30 Measurement 3 11 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +166 e5ba2d70-1409-0609-56a7-bb7c5f2926f9 30 Measurement 1 1 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +167 50f67319-2e27-ad3a-a734-e36a115115dd 30 Measurement 1 12 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +168 f435ef90-7a88-bfe5-fb1f-f1c2d9609e05 30 Measurement 2 1 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +169 87427eb5-a135-fe8b-e87b-150dfd85f467 30 Measurement 2 12 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +170 c4e4726d-f6ef-d4bc-db9a-021a21bd94a8 30 Measurement 4 1 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +171 223154f3-592b-e58c-dbc4-02ee60256e00 31 Measurement 3 11 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +172 67519473-0e06-55d5-672b-c6871e814338 31 Measurement 1 1 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +173 45bcd870-bb9b-bed3-a6f2-d358eabf83b0 31 Measurement 1 12 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +174 89a4466a-aaa1-ee30-3056-9f707fb5c2eb 31 Measurement 2 1 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +175 70525ec1-6ffc-7814-06b2-3c2f7d96d169 31 Measurement 2 12 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +176 76b7a99c-f3d2-3b0b-ae08-05767257c9af 31 Measurement 4 1 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +177 007f2ef7-e7f3-adc6-3421-ed489b394b28 32 Measurement 3 11 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +178 1eca78a1-5124-1da4-234b-5db5037770a3 32 Measurement 1 1 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +179 ba7a808c-d279-1172-18ef-002d46453b67 32 Measurement 1 12 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +180 36c0515f-8c0b-cf2a-8ece-4020e08875f9 32 Measurement 2 1 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +181 7aa558d7-762d-8233-d503-d0f297cfe1c7 32 Measurement 2 12 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +182 803b6ab0-ddb6-0809-3fb3-2d37801fa20f 32 Measurement 4 1 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +183 5f6a95cd-15b0-c6ac-85b0-9d327e2a6fd7 33 Measurement 3 11 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +184 acaf24e4-c570-ef6f-e23b-cf01c2726a6c 33 Measurement 1 1 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +185 1385ceda-081f-55b8-5e6c-929d88296771 33 Measurement 1 12 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +186 5182f040-63fd-65e7-0207-e2b62051f64e 33 Measurement 2 1 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +187 91797f31-ee5b-0298-343f-f96f5042c70c 33 Measurement 2 12 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +188 87590222-7f41-02c5-0e4a-a07ec24e7bab 33 Measurement 4 1 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +189 edf6950c-3212-ae8b-da80-11068e1a0d75 34 Measurement 3 11 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +190 fce76c1d-2243-3129-f89d-f10289306835 34 Measurement 1 1 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +191 f1a44f2a-7df0-d081-425b-8eaf8909493a 34 Measurement 1 12 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +192 92ff4427-b035-aec6-7bc2-1a6a3b4ce4dc 34 Measurement 2 1 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +193 04c459fb-a586-310e-5d9e-f8470ec556d2 34 Measurement 2 12 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +194 b28b3820-9a60-8cc9-7d49-f33a79fc7048 34 Measurement 4 1 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +195 1cd6758b-f028-f8f5-645a-dbc4ea970ce1 35 Measurement 3 11 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +196 51aff3fa-6d90-f397-6e12-d5bae44c937b 35 Measurement 1 1 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +197 89400f38-7b51-7dcf-2d19-a9ca36d533ba 35 Measurement 1 12 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +198 a1c6b9f8-27d8-98a9-8f6b-1f925da0543b 35 Measurement 2 1 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +199 1a4293e8-a1b0-ce05-3faa-e2e8eee700f6 35 Measurement 2 12 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +200 5c53ec9d-8049-24b8-3340-017e39433097 35 Measurement 4 1 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +201 39e15d09-538e-01d4-4554-ff7beb5e4a9d 36 Measurement 3 11 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +202 e05e586f-3c39-c67a-0fe9-ce9e64ba7480 36 Measurement 1 1 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +203 b0321795-4787-9cec-99c3-7cc791fdaa39 36 Measurement 1 12 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +204 78304ea3-eaa4-681b-e5d3-7aaf2778ce37 36 Measurement 2 1 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +205 e8154dea-9690-493c-b0cf-a45270a9e69d 36 Measurement 2 12 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +206 be2a5964-3b45-d82e-89fd-eddacb28e026 36 Measurement 4 1 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +207 b9484421-f6e2-4462-61a9-67780b4a8401 37 Measurement 3 11 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +208 02b54231-3033-1735-3510-5e7a523ae558 37 Measurement 1 1 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +209 2cd15bcd-b8cd-863a-3b1c-c683cd90705c 37 Measurement 1 12 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +210 54cab52b-5ee2-8d3b-a5b3-8df751417ce5 37 Measurement 2 1 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +211 d8c5c792-ff04-0938-b2c4-29d67edda0b6 37 Measurement 2 12 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +212 92a122b0-ef9d-d13e-bf69-eb15c51d69f4 37 Measurement 4 1 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +213 1d52542b-8c25-d34f-0480-583758fb1463 38 Measurement 3 11 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +214 caac9e14-fc3d-c8b9-ae6f-062a4beb699b 38 Measurement 1 1 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +215 db289a13-9655-9849-aa7d-20a9a722e218 38 Measurement 1 12 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +216 4a1cb12d-d94d-24f4-2c65-641a5891b05b 38 Measurement 2 1 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +217 04772afd-066d-d55b-1c5b-50b3cc41aa8d 38 Measurement 2 12 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +218 bba9d799-af21-baa0-7429-4b588b80af2d 38 Measurement 4 1 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +219 e800fd3c-154e-03d9-5e8b-e68066d1fa2e 39 Measurement 4 1 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +220 599ed273-33c4-8cac-ff91-911ec01f8b30 40 Measurement 4 1 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +221 54dd51a5-e467-50ac-04ff-4a54e519e73d 41 Measurement 3 11 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +222 f454a555-3808-6c4d-5cd7-bb64f637867f 41 Measurement 1 1 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +223 4bdbcf85-5712-612e-dd58-4e2c4d4b2b4b 41 Measurement 1 12 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +224 b8f6720c-dc16-d0cf-174a-3ac2c638c739 41 Measurement 2 1 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +225 cab0edd3-59a6-38c0-64b5-38091fff82d5 41 Measurement 2 12 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +226 328b52c2-71cf-cfd5-c150-94180d828216 41 Measurement 4 1 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +227 e4d6f9a2-1025-f79a-46f6-9d3d7e2b34d4 42 Measurement 3 11 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +228 9b13b575-40c6-f515-79d0-48c954b0ad1c 42 Measurement 1 1 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +229 70bd746d-04e8-c6b6-00d1-f75a14c19989 42 Measurement 1 12 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +230 064a4203-44a2-0a43-5aea-046de0bea02d 42 Measurement 2 1 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +231 72bae803-28af-98dc-c251-c4174a326c24 42 Measurement 2 12 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +232 a3a812a7-a75b-7583-17ce-cbd19196bcf3 42 Measurement 4 1 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +233 cf20cdd8-a678-532e-e046-1a0e3acce337 43 Measurement 3 11 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +234 fefec6c4-73fa-df1d-0db4-235d3fb00b8a 43 Measurement 1 1 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +235 a1b0c1cd-b116-faea-c7a5-f7c6f3fbbde0 43 Measurement 1 12 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +236 ba44bae8-07c9-f156-64f2-890b2d3b72fe 43 Measurement 2 1 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +237 cd48051a-7337-c04a-bdbe-a3fcad45e7dd 43 Measurement 2 12 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +238 40dc7d0d-e337-02b4-1e41-4f136b7878ef 43 Measurement 4 1 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +239 1e22afe7-7cb2-e4c6-5aaf-c8744dbcee1d 44 Measurement 3 11 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +240 3002dccc-41fc-aa96-5849-b25b02e95c95 44 Measurement 1 1 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +241 0197d69a-9f8c-bf9d-ef70-6f808dae551b 44 Measurement 1 12 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +242 732789dd-65a1-e71f-69f9-e06c59587cf2 44 Measurement 2 1 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +243 fed6d6b5-9924-1c0f-9312-ba49fe83a861 44 Measurement 2 12 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +244 250c9ddd-e5e6-3599-2660-ea49a16443ad 44 Measurement 4 1 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +245 4e01204f-9051-24c5-a199-08f5aceb00fe 45 Measurement 3 11 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +246 0edf9ab6-af46-b0d3-dd3e-743a99cf1370 45 Measurement 1 1 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +247 9eed511d-aef6-13f3-0768-47daf5517b34 45 Measurement 1 12 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +248 c5f16b0f-cc7b-5f65-21fc-dc8c463ab653 45 Measurement 2 1 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +249 e8b43713-1481-438f-70cd-8e87d973ec80 45 Measurement 2 12 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +250 2ccc98ec-ff61-27f5-fd39-31da9012ebf3 45 Measurement 4 1 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +251 4cd0d94a-8507-4dd8-95a0-bef882145b65 46 Measurement 3 11 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +252 43017414-b02e-46fa-0dce-ff48a8428fe3 46 Measurement 1 1 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +253 bc36dca2-d305-1102-5bdd-fefbd30596e8 46 Measurement 1 12 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +254 5fb1f342-40eb-c317-30e0-66abb189d62c 46 Measurement 2 1 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +255 a78b74df-a43e-fa1b-8414-e151677724e8 46 Measurement 2 12 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +256 2d3e9cbb-5b23-3acf-f5fd-2a20b9bdec1b 46 Measurement 4 1 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +257 6389e3c7-96be-38ca-c9e0-39e551e8c53d 47 Measurement 3 11 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +258 2936a05f-866e-ce20-b145-b6c318593267 47 Measurement 1 1 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +259 14983c1f-3e8c-bc6c-be34-48386be89959 47 Measurement 1 12 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +260 c665259a-bf19-c3e1-6d5a-c60d616ef1bf 47 Measurement 2 1 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +261 fb690b8e-defd-1ae2-796f-5e604de53ada 47 Measurement 2 12 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +262 217da300-7065-907b-c38f-fbae5046e183 47 Measurement 4 1 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +263 02c15dcd-4d07-5628-9b93-aca5420e2aee 48 Measurement 4 1 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +264 da3ce57b-03e4-2062-c7dc-532c9b2369bc 49 Measurement 4 1 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +265 ff76d56a-2a63-88fa-e04f-97c2050126d4 50 Measurement 4 1 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +266 babf8edc-9dc0-4d53-5fce-5d4ea27c8aa5 51 Measurement 4 1 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +267 6b094a38-c31d-ce23-aa56-f356442cb27e 52 Measurement 4 1 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +268 f6084705-22b6-12ff-b628-2aa315649ace 53 Measurement 4 1 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +269 914f729e-b671-6bda-2afd-184d5e0aa7b8 54 Measurement 4 1 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +270 9e43a179-1966-49d6-7707-87eb31b4671c 55 Measurement 4 1 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +271 969af483-98d6-0b9f-8eb4-b38cc1353b51 56 Measurement 4 1 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +272 29a2ae56-ad54-5d71-1f19-4416f211df0b 57 Measurement 1 12 \N 1 1987-06-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +273 e2701096-8159-8b85-b2d5-fc562941196b 57 Measurement 2 12 \N 1 1987-06-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +274 eceac605-f5e7-59dd-edac-dd7822c90e27 58 Measurement 1 12 \N 1 1987-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +275 e0f0eae8-8682-9728-1a81-e5841b9456cb 58 Measurement 2 12 \N 1 1987-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +276 a05c9dfd-2a53-aa4f-9089-a4a82c56cbf4 59 Measurement 3 11 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +277 d1eb21b5-a4c5-82c8-c349-32e1331ae8ce 59 Measurement 1 1 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +278 f8c9c6a9-b07c-38d5-67ae-91641eefae35 59 Measurement 1 12 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +279 f6196d09-cfba-b060-72f5-1e9e559b44dc 59 Measurement 2 1 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +280 8e7d534b-820b-3b5b-887a-340702e0ab72 59 Measurement 2 12 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +281 40654871-f2be-8e90-8ec4-18e2e6c23791 59 Measurement 4 1 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +282 f9bba8e3-52b8-40f0-a381-e366e363f7d1 60 Measurement 3 11 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +283 3c575272-9163-da51-16c5-dbfd8a096aa1 60 Measurement 1 1 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +284 34f87b66-273e-5fad-49cc-b88f7605c9d4 60 Measurement 1 12 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +285 3291ca76-2691-d678-4c4b-2e5421bf4431 60 Measurement 2 1 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +286 6cc6ba37-e39c-ddd5-a178-eb03efed4d06 60 Measurement 2 12 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +287 7b21aaa5-1ec6-5508-050b-6ac7501913b2 60 Measurement 4 1 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +288 833d1abd-94fc-d221-7075-e179528dc02a 61 Measurement 3 11 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +289 7fe59ac5-ec0e-84e5-9b26-c43bacb4ec19 61 Measurement 1 1 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +290 94ca0a89-305c-b4fc-e4dc-55088733cfd6 61 Measurement 1 12 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +291 4eca8209-234d-4979-62d1-c6ef40c2f5d4 61 Measurement 2 1 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +292 a25e1343-c6e2-1d1a-149c-72e2ea6f3bd1 61 Measurement 2 12 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +293 fde7ec87-f7a3-9a05-7290-adcad06d88bb 61 Measurement 4 1 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +294 eafa9630-6448-7d82-ebbc-b89d7d3b4691 62 Measurement 3 11 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +295 704bf6d7-4cba-f50c-5654-b0280e5b135a 62 Measurement 1 1 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +296 d8c899c7-eae5-be49-a1eb-ae208aa57ba5 62 Measurement 1 12 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +297 9f5b7a61-1fba-b315-d105-f2334cd9759e 62 Measurement 2 1 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +298 ebff651a-37d2-dc12-b7e2-6ed0442582a6 62 Measurement 2 12 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +299 6133bc95-8246-325c-c637-0cba03ab8a7f 62 Measurement 4 1 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +300 ee914a9a-3cd2-935b-5acf-cc5a246ce07f 63 Measurement 3 11 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +301 de161562-a921-fa7d-b90d-ef061ef0aeb4 63 Measurement 1 1 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +302 5f22b67f-03a6-43f8-c0dd-18c6d3a01299 63 Measurement 1 12 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +303 5f82df0e-30b1-5714-c29a-9d0960c19643 63 Measurement 2 1 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +304 d9e34b71-cecf-657f-47d2-4f03b104f2e3 63 Measurement 2 12 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +305 a982e8f0-41db-9fd4-ea83-07f45fc1e843 63 Measurement 4 1 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +306 e2e459a2-cf3b-637a-83bb-8a9b3ed39227 64 Measurement 3 11 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +307 09464b0a-4455-3d9f-fe78-976ff12af4ce 64 Measurement 1 1 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +308 df894c32-11ac-b370-8e7e-a2101d0f0191 64 Measurement 1 12 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +309 6526c69c-15ec-71a4-a6bd-a3977cc4834d 64 Measurement 2 1 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +310 73f301fc-6912-1195-8fe9-f529d27053ed 64 Measurement 2 12 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +311 dab51b04-2083-3221-80b5-b8d2edcef324 64 Measurement 4 1 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +312 161c2a11-e9ad-2660-7d69-13cc5c82ca62 65 Measurement 3 11 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +313 fcf8ccde-3feb-234d-9962-e9d8e77c493e 65 Measurement 1 1 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +314 635d8cf6-fbeb-41bf-e258-f145e67263b3 65 Measurement 1 12 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +315 63efca46-d30d-b658-267a-74a1d3c3fc07 65 Measurement 2 1 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +316 8b7fabfd-dc36-d574-30f8-b83f35b589c1 65 Measurement 2 12 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +317 086f8f0a-d33c-6135-57f8-9cd1b76a7e67 65 Measurement 4 1 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +318 13752379-a443-b9fb-b683-bf75688e1511 66 Measurement 3 11 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +319 3b362b9c-0736-c0c3-fb80-42114cbb682d 66 Measurement 1 1 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +320 424525a0-880e-ea63-6647-95e2e785fbce 66 Measurement 1 12 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +321 45ff7f45-7dc8-e18b-7a23-f6e18d76fcd2 66 Measurement 2 1 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +322 08c61b77-9649-e0ea-e364-35352002941a 66 Measurement 2 12 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +323 0e2c9c07-2a7b-711d-b7f4-707ed6a6ba7f 66 Measurement 4 1 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +324 b79688a6-1913-c699-729c-9155dfa783e7 67 Measurement 3 11 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +325 ca9cdf4f-82af-cb0a-8abf-0b6dfa5ca205 67 Measurement 1 1 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +326 a62aaaa0-4dcf-4e2a-a957-101880962dee 67 Measurement 1 12 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +327 31f3fdeb-e807-89cb-39a1-34dd10ec77a5 67 Measurement 2 1 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +328 359421fb-b5f1-d909-4052-785060dd902c 67 Measurement 2 12 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +329 bea16d3d-2fe9-58ea-0776-6ef73c1416b5 67 Measurement 4 1 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +330 28e33274-dc08-e3aa-8d22-bb8f471f048f 68 Measurement 3 11 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +331 19a81e7d-b21b-97f8-6510-f45b60da8802 68 Measurement 1 1 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +332 838d6936-d62e-0841-e0c0-ef2f6340309e 68 Measurement 1 12 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +333 50051861-2630-c80b-270d-166f621278f4 68 Measurement 2 1 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +334 1f82d1d3-c440-34bc-92e0-47acd1b0697e 68 Measurement 2 12 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +335 76dd6d34-820c-bd99-7748-728a29ef8548 68 Measurement 4 1 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +336 25661121-3326-0de8-a1f3-ce58172a0511 69 Measurement 3 11 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +337 13dc3b0c-4c59-f714-3d30-f8668ee6b5e2 69 Measurement 1 1 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +338 e5d45ee2-5629-10f9-f020-b1a3c5fb1834 69 Measurement 1 12 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +339 f3848244-dc8e-feba-6f4c-387c67d8fa61 69 Measurement 2 1 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +340 5edbdb45-1949-daef-6026-be3d225b9b75 69 Measurement 2 12 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +341 cb93dd3e-c6aa-b83e-3999-c3abe46211c4 69 Measurement 4 1 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +342 678dcddd-889c-9b6f-370d-84b5ed1de474 70 Measurement 3 11 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +343 b9ec691e-39d7-5cc9-be67-22006a873023 70 Measurement 1 1 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +344 0ddcfff3-08cc-2fe7-7245-86eb669e2463 70 Measurement 1 12 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +345 9d2bb392-d864-072d-ee3e-0299948a1a96 70 Measurement 2 1 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +346 cd881670-17e2-11ff-9ab0-f73907493625 70 Measurement 2 12 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +347 a8effc6c-68eb-0689-1a52-fb0558e7288a 70 Measurement 4 1 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +348 b9d544b1-0bd7-7d4c-d3a3-b351f8516693 71 Measurement 3 11 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +349 2953f545-5190-912b-1181-79621c70503c 71 Measurement 1 1 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +350 00aed124-5fc5-a23e-4757-369b86d35dd9 71 Measurement 1 12 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +351 7c1c977f-3bc7-a259-8507-801d66ae5c5a 71 Measurement 2 1 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +352 34ec7251-ba27-d1ac-b8e1-61f341cb39df 71 Measurement 2 12 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +353 9eb26bb3-b65f-2192-0515-9f896aac1c20 71 Measurement 4 1 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +354 9cd03869-95f2-959e-8aa9-f6a19a7a2737 72 Measurement 3 11 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +355 838dd37e-48d0-ffa5-60c8-9140c499c2b3 72 Measurement 1 1 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +356 e1bd15d4-5ce0-f8dd-b64d-4a292d06d8c1 72 Measurement 1 12 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +357 4f3eabff-1ea7-2174-f874-bb7617b499f7 72 Measurement 2 1 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +358 fa25922e-ca7d-a253-186c-ca4e82268da6 72 Measurement 2 12 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +359 fff90c3d-646a-e7f0-8994-4e04491b962e 72 Measurement 4 1 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +360 fc0fd373-3daa-1254-cfb3-54be791ebbf9 73 Measurement 3 11 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +361 feb1dda2-9ca4-73d5-9a36-81938f41a8c4 73 Measurement 1 1 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +362 38b71d40-898c-7117-9e56-c2e9285e655a 73 Measurement 1 12 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +363 88cf24eb-c4f5-6b8b-f7bf-4c08a3f14981 73 Measurement 2 1 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +364 42956c43-0482-8972-b907-87b562eeb3e7 73 Measurement 2 12 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +365 624810d5-75d8-caa1-d866-15d53ccdf84d 73 Measurement 4 1 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +366 85c0542f-2d50-11d7-fc4f-142f13a9c6d5 74 Measurement 3 11 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +367 31524275-0c4d-2154-0967-6231deea834d 74 Measurement 1 1 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +368 bf6e400f-eb51-06bd-e987-e7027cc74fba 74 Measurement 1 12 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +369 9b5f5e08-ca7b-13f1-d1d8-f53c881b2b86 74 Measurement 2 1 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +370 a4fd5280-94f5-4f36-c30d-0068d0aedd97 74 Measurement 2 12 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +371 f77081ea-4084-b5c4-7eaf-8da189724954 74 Measurement 4 1 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +372 103c0629-4309-b60d-7d3d-c3a5e985cba1 75 Measurement 3 11 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +373 c4c7f93b-b5d8-e6e9-8d44-36d13d15d43e 75 Measurement 1 1 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +374 4b8490b2-9f32-5d26-550e-d7b66520e24d 75 Measurement 1 12 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +375 a77d2bf5-75d3-602a-4ec4-d9083d35052d 75 Measurement 2 1 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +376 aff906e7-8e1e-3292-e1bb-9e56f4a8d4d5 75 Measurement 2 12 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +377 7632c170-89d7-6a2e-f11b-8c0453ed03d9 75 Measurement 4 1 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +378 14032883-e98d-9837-c678-318c0dcdd4cf 76 Measurement 4 1 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +379 50376532-209d-5729-8e5e-7d3d709336ae 77 Measurement 4 1 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +380 fdafd633-1aa1-0707-f266-4b024c14dcdb 78 Measurement 4 1 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +381 2b9d493a-1a4b-0286-563f-b5ba033cad56 79 Measurement 4 1 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +382 7a93d736-f0a5-d2ed-d735-d7d9837452ec 80 Measurement 4 1 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +383 7decba2e-6dfd-d5e4-b7af-46f3386f6bea 81 Measurement 4 1 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +384 732d89d3-87b3-619a-7d56-d245170028fe 82 Measurement 4 1 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +385 f5713bdd-e5ed-9ae8-15f3-4730d4ccae74 83 Measurement 4 1 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +386 9894375e-ee94-edc5-d3ad-11347b930051 84 Measurement 4 1 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +387 5b06861d-1536-da04-8a97-907b04ff2037 85 Measurement 4 1 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +388 b2789f03-73ba-4a7e-8c62-e5fd49bcd90a 86 Measurement 4 1 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +389 ee5f4db0-ffda-2669-4b1f-eceb72df8669 87 Measurement 4 1 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +390 be5ae924-a5ce-6756-2449-726b777bb7b0 88 Measurement 4 1 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +391 36202df4-59c4-6323-53d0-d82250100e0d 89 Measurement 4 1 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +392 835e6c31-6948-37af-30a6-580e0ed8cbcb 90 Measurement 4 1 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +393 bfbd02c3-41d1-e4a7-6226-bfd1f89e7582 91 Measurement 4 1 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +394 b8a4ca2a-77f0-c082-c075-fc60d4e9ef1c 92 Measurement 4 1 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +395 7d7f6404-884a-9fbd-94b5-cd849e5f4537 93 Measurement 4 1 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +396 5abf7f70-0daa-d18f-c3f7-591a4ce5154e 94 Measurement 4 1 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +397 b45d77fb-3621-8266-84e1-2b8ffa3a16ba 95 Measurement 4 1 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +398 2a20bfa4-99b6-1b77-666c-c0ad9b1551aa 96 Measurement 4 1 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +399 f238014a-76f5-a806-52bb-bea51246f566 97 Measurement 4 1 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +400 3729e765-e4fd-7ba9-6f79-42eff42ec046 98 Measurement 4 1 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +401 0735d556-3071-af90-d80d-af237d1812a3 99 Measurement 7 11 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +402 a454e6b9-9800-ca39-1075-870cc29fe86b 99 Measurement 5 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +403 5c926170-7db7-02ca-45ce-22159cc9639b 99 Measurement 5 12 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +404 d6a2052e-3f30-9843-3fc6-1fd98436b271 99 Measurement 6 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +405 6b386a6e-91cb-dccb-3846-13340bf6018d 99 Measurement 6 12 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +406 c70e5db7-e15b-31ac-5c4d-cff8c626333b 99 Measurement 8 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +407 95fdd9b7-50ef-51c4-9313-85f5f67908f9 100 Measurement 7 11 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +408 6b2e9087-da27-41e1-ea60-1c7d24fbb5cb 100 Measurement 5 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +409 13bddd45-e5a3-c115-56c1-ea4824a95851 100 Measurement 5 12 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +410 4dc055b0-8af7-0599-7aba-9cb48820b84d 100 Measurement 6 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +411 3cfd769e-31ad-1a17-b6a3-8282a7cd523f 100 Measurement 6 12 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +412 2113f9ea-22da-91bb-286c-35f0ed60d493 100 Measurement 8 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +413 894aabf3-9159-1fd6-d51d-b6d2cfa1b241 101 Measurement 7 11 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +414 f6578351-3610-6899-d7a7-579548d41552 101 Measurement 5 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +415 b6fd47f9-1f9e-8c98-0722-09f4ce3f79ba 101 Measurement 5 12 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +416 c2f9e910-c15d-8d01-d95a-eabadf7f1c18 101 Measurement 6 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +417 a234baa0-1da8-6aae-579d-b9c5fdb9412b 101 Measurement 6 12 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +418 05f48dd9-da43-4aa5-8f38-5f0fa928424a 101 Measurement 8 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +419 24cc5fc4-16f8-2b38-fa30-806f319a9e13 102 Measurement 7 11 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +420 ac8c27f2-3ee6-5e84-28fa-f5bb228bedce 102 Measurement 5 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +421 53eca037-364e-ece0-cb12-01edd9b0865f 102 Measurement 5 12 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +422 dbb061ae-733d-ab3c-e0db-c6a2b57b0725 102 Measurement 6 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +423 03128a12-8b32-6b94-8291-ae15419c1e8a 102 Measurement 6 12 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +424 1322d954-3491-68c3-2a2a-d5f09f0742f5 102 Measurement 8 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +425 20776c17-4401-fcdc-ccfe-950886d8e973 103 Measurement 7 11 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +426 5a14baa9-0095-c87c-b5a3-605cac8f9c95 103 Measurement 5 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +427 d46e93cc-f012-cf25-cabf-3148ac12d154 103 Measurement 5 12 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +428 5f0c0e9c-c7cc-00dc-bac2-197ed79d17bc 103 Measurement 6 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +429 6e46f4e4-fef2-b241-66ee-e68ebb7ac05f 103 Measurement 6 12 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +430 74702d32-7a55-e5ad-ffff-83b1df46824f 103 Measurement 8 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +431 da75b801-2f8c-3c0f-48e3-eaff582d40e0 104 Measurement 8 1 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +432 cef6249d-233e-d0c3-0323-7e01b1e746aa 105 Measurement 7 11 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +433 5548e63f-01a7-2fbc-4677-a594e581cfbc 105 Measurement 5 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +434 30416560-3da3-d3bc-cc21-f7fde0b9d925 105 Measurement 5 12 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +435 ea757d39-04dd-a0d8-da91-83e106456e7c 105 Measurement 6 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +436 1d6f5d7c-7b2f-d80a-2c9a-b2b4ef21eaf2 105 Measurement 6 12 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +437 38176486-1219-ceeb-5405-d54bdafe08c9 105 Measurement 8 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +438 c862e119-3745-7b44-a744-53decea25810 106 Measurement 7 11 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +439 efde7d00-1d36-a002-b075-af58dc5257f4 106 Measurement 5 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +440 bb238b72-caed-b3d6-1ccd-7e50e61fb48b 106 Measurement 5 12 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +441 411d69e6-b241-8500-1452-c22bfe9024cd 106 Measurement 6 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +442 9ea7a1ac-bcd3-0c20-9314-72acda60ede9 106 Measurement 6 12 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +443 02006aa0-32f6-df08-1970-dcd8b356adca 106 Measurement 8 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +444 24aa99ac-aa36-8dc3-e8d9-5f9123cfa3c8 107 Measurement 7 11 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +445 a979ff59-5381-3790-62c8-f3c6788c35fb 107 Measurement 5 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +446 ff1aabfa-5386-d520-ded0-42dc399c90cd 107 Measurement 5 12 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +447 b6495800-7948-2e05-1d5c-1c6f6e24cd5c 107 Measurement 6 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +448 f9e17c8c-cae2-f7ad-7243-50709cfc229a 107 Measurement 6 12 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +449 c971c890-baff-a2fa-f806-a5f89bbfb2ab 107 Measurement 8 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +450 27e66ed5-6fd6-f3f5-c806-5a610f0a1cb4 108 Measurement 7 11 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +451 1f6921c0-491a-ac96-1e4b-6e14902586d5 108 Measurement 5 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +452 6fb4760f-1ef0-d655-34c8-493a97bedb9e 108 Measurement 5 12 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +453 b46094df-1fa1-2ead-8fad-8f6e27bb162e 108 Measurement 6 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +454 7e90ca13-b714-051d-7755-6059648d3846 108 Measurement 6 12 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +455 af2748fe-3fce-565c-502b-854cb6549dfd 108 Measurement 8 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +456 4df27d33-bc8f-08f3-83c0-5342321a3d11 109 Measurement 7 11 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +457 3906de93-ab5c-0f68-8584-dbcf86b14834 109 Measurement 5 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +458 f0cba4a6-1b3e-6153-7490-bb12c2eb1213 109 Measurement 5 12 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +459 249787f4-087e-2566-c865-547f0d209c14 109 Measurement 6 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +460 cb47509b-e15f-7d01-e6af-1b4ae531de5f 109 Measurement 6 12 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +461 25759ff2-f842-6a9a-7a50-033c1893cd18 109 Measurement 8 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +462 627ed6ba-4ce0-3850-1c45-41d2dcd1a7eb 110 Measurement 7 11 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +463 c311ac6d-587a-37cc-4cdf-49d5e4da2251 110 Measurement 5 1 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +464 2f818535-6057-bdfd-2500-14f9f3a246fd 110 Measurement 5 12 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +465 723c3578-1c3f-227a-895c-c5f503624e67 110 Measurement 6 1 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +466 60183386-73f8-0f05-1330-7485fe4b6c2c 110 Measurement 6 12 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +467 7232644a-ef99-dd4b-6c11-fad4d1e9e8cb 110 Measurement 8 1 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +468 e45ad464-0be1-5a5d-2408-deff4cf4db23 111 Measurement 7 11 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +469 301b9b12-fdc5-d66e-4eae-edf4be5714f7 111 Measurement 5 1 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +470 f2f62799-18d0-2ad5-98ef-ef415e01e433 111 Measurement 5 12 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +471 b32bc24f-5120-136b-6394-09146046c266 111 Measurement 6 1 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +472 83ac55c0-5d81-cf3d-330e-7041e56a1009 111 Measurement 6 12 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +473 3ae5fb45-9c09-d539-00b8-128d024ad9fa 111 Measurement 8 1 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +474 fd90172e-3591-8d3f-8b16-182c0b83c605 112 Measurement 7 11 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +475 ae0c1652-423a-d408-44fc-b2327755952f 112 Measurement 5 1 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +476 756169f8-f113-15cb-41f3-c83eace5fcd6 112 Measurement 5 12 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +477 8c641146-256e-078f-d16c-e3bd4edd8fc4 112 Measurement 6 1 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +478 291bd6f2-5f76-d5fb-2915-000853b01075 112 Measurement 6 12 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +479 2707811d-3beb-f90d-f6f6-bc3cb17fce34 112 Measurement 8 1 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +480 91270600-d649-9455-73f8-e2a9fbfc445b 113 Measurement 7 11 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +481 a4293957-fea2-dac8-d736-5ea232f9e0ef 113 Measurement 5 1 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +482 c25cb693-d346-13cc-46ad-bd498a2d6d7b 113 Measurement 5 12 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +483 003d2ccf-b1c7-e456-c39e-5920a355db61 113 Measurement 6 1 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +484 819b7284-e222-298b-21a3-362c54d95236 113 Measurement 6 12 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +485 b00e93f3-360d-dc89-c79a-22c8467b1805 113 Measurement 8 1 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +486 18ef0026-ae85-11ed-097d-050c10fd888a 114 Measurement 7 11 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +487 48a1aac6-4fd8-6481-8197-2ae9342d3568 114 Measurement 5 1 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +488 d8e98447-4b8e-9eb0-dc66-cddefa599a38 114 Measurement 5 12 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +489 ee1e6ca2-5948-3156-da23-ef2f406f7278 114 Measurement 6 1 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +490 462fdc1c-56da-933b-77cc-98e01e52a2c8 114 Measurement 6 12 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +491 e8eaace0-f048-a3d8-65a3-6635457e47c0 114 Measurement 8 1 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +492 747907b0-a6c8-e944-836a-649af735917d 115 Measurement 7 11 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +493 96fe7753-61f3-ac16-792e-9b1bd3351553 115 Measurement 5 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +494 3d4f33b4-801f-4733-5096-7774f84a385e 115 Measurement 5 12 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +495 562e9487-0fee-b289-7dd3-baaee809a3ed 115 Measurement 6 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +496 93875b97-f81f-bcf9-9ecd-85f518a69092 115 Measurement 6 12 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +497 473a6045-dd6a-4d58-4d51-fb40daa59f2c 115 Measurement 8 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +498 21fa32b1-d742-ee06-2b33-d385d0f73641 116 Measurement 7 11 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +499 7abacbb3-979f-f3c7-1a52-6046ce331bcf 116 Measurement 5 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +500 f28b1915-65f8-0da9-4fdc-22833323bdc1 116 Measurement 5 12 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +501 ccc5bfc0-a8d3-698b-416e-0d8aedf68f2a 116 Measurement 6 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +502 bd7620dd-068a-9da9-6883-988a750d40a4 116 Measurement 6 12 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +503 82c7eab0-16f8-8bc8-fbda-4ec96d99edf8 116 Measurement 8 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +504 e27987ee-e906-c39f-fbe4-6f5fdcd5d0d9 117 Measurement 7 11 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +505 6e56f2a0-8d59-8439-c8de-346d64eafbb7 117 Measurement 5 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +506 98a1be01-6452-4c68-e287-efe6ec924c21 117 Measurement 5 12 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +507 6915c0e3-128b-d9bc-5156-826ac241135e 117 Measurement 6 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +508 c832c00d-6b2e-42ba-6183-7b25bfd0fd44 117 Measurement 6 12 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +509 0df5a9f3-35dd-7b0a-1351-082edb5ca05e 117 Measurement 8 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +510 fae08c54-0746-2528-005c-da45499822f4 118 Measurement 7 11 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +511 239004e3-fe26-afeb-4148-269eb538f5a2 118 Measurement 5 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +512 eb7ab744-1fc2-3721-aaa2-c5cfb180bde3 118 Measurement 5 12 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +513 f0e8680f-6b14-1d56-b8e0-76924907e83a 118 Measurement 6 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +514 75ebba93-9bef-9e33-0979-c13473e1aef2 118 Measurement 6 12 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +515 bc240c2a-6cfd-e1d4-2bda-8ec795c2b6f4 118 Measurement 8 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +516 bb711383-6fa4-8daf-704e-ed3145d4518d 119 Measurement 8 1 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +517 6aa3d983-4e4e-9593-3da7-845493d8a357 120 Measurement 7 11 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +518 da58c7e9-b75a-188b-39ac-c160515b0675 120 Measurement 5 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +519 c4de6079-846a-beee-48f7-6ef36bf57392 120 Measurement 5 12 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +520 8143aaf7-e7df-545b-6ece-7ad5dcac8aab 120 Measurement 6 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +521 571b5883-9839-36b8-9665-64d488e59351 120 Measurement 6 12 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +522 2aed6914-236b-3b1b-40cd-719e859b495c 120 Measurement 8 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +523 f2ab5612-3b5d-4ccc-894a-fd1e3dd3aee9 121 Measurement 7 11 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +524 e47f0c15-9881-d46e-3cba-c653cc00c5d6 121 Measurement 5 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +525 3035edea-bdd8-e603-5daa-52e96810c629 121 Measurement 5 12 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +526 e50b8e1f-4c7c-8ee9-47d5-b3170f6d07ac 121 Measurement 6 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +527 c8ceb444-9e85-f137-aabb-bbcbe24b15c0 121 Measurement 6 12 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +528 3c53089b-5086-ca16-dd88-5e2cb5fcc72d 121 Measurement 8 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +529 cf0b30e7-55b9-615b-b1b8-69ac1c40bfae 122 Measurement 7 11 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +530 01a6b8ce-3bf6-ac5b-ed30-16a146296beb 122 Measurement 5 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +531 1ec69e5d-df37-8c3f-315e-822bcc4d5a73 122 Measurement 5 12 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +532 92bc8a9e-6452-0098-41cd-2c7bda03e2e2 122 Measurement 6 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +533 03b106e1-6d9d-bf76-30eb-5750b357f778 122 Measurement 6 12 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +534 fd8e9232-3b18-b284-a4dd-0e0862442691 122 Measurement 8 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +535 ee0a90d5-5c6a-3af5-4522-824ff86a3197 123 Measurement 7 11 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +536 1be0ff4c-2ebe-7618-b740-5532251e2777 123 Measurement 5 1 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +537 e20f6f93-9770-242c-623c-84036a49b505 123 Measurement 5 12 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +538 a69504fc-240c-d7d9-1410-2dbf95a1719a 123 Measurement 6 1 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +539 f4021546-4dab-5892-9fd9-39841322c957 123 Measurement 6 12 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +540 52a9b2e2-4e1a-b619-9ef1-8c37889f01db 123 Measurement 8 1 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +541 0589c262-9160-dde0-96ee-c490c9dccaf2 124 Measurement 7 11 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +542 5267c0e5-2b2a-0662-275a-fc076f18e1e4 124 Measurement 5 1 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +543 c03f3768-a2e0-91a0-14b2-3435d7fb7f32 124 Measurement 5 12 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +544 7dee69c2-9807-b74d-550d-7431e520f112 124 Measurement 6 1 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +545 e0316aec-0f55-b012-3eea-cf19ec58e4f8 124 Measurement 6 12 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +546 7c5b9cd8-6687-6416-cee4-ba1a96d9d206 124 Measurement 8 1 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +547 4f6329d3-1062-68e3-f044-60a55f9ee551 125 Measurement 7 11 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +548 55db5aa1-ab57-55f4-2196-4ee596a9f3d0 125 Measurement 5 1 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +549 85ffe09f-e125-b9e7-2160-6b51ae03f324 125 Measurement 5 12 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +550 e3c587e8-4576-8bb2-0d68-3a0999964353 125 Measurement 6 1 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +551 db686b80-b267-c338-69b6-4eb81e6d70fc 125 Measurement 6 12 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +552 46bc0e84-3150-90da-fd08-ce59f93c2d37 125 Measurement 8 1 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +553 06ada4ba-42e2-8f2c-b53d-06960c092d8f 126 Measurement 7 11 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +554 e90d6cf1-4c8e-96c5-3223-d2e564c577ca 126 Measurement 5 1 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +555 e293e406-5008-54b8-64c9-98c5aef485b0 126 Measurement 5 12 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +556 40bfeafb-c635-7fcb-422e-44f09904d24c 126 Measurement 6 1 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +557 d4312ca4-3ceb-8eb2-bdb9-193ad6ec38f1 126 Measurement 6 12 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +558 e67dd88b-776f-a934-341a-0bdfbf3695e3 126 Measurement 8 1 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +559 bdbfff45-3eb6-f9dc-dd37-c6e3cff0b7e3 127 Measurement 7 11 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +560 bdc16d9c-76a7-c2f7-e6cc-0739fbd2a22a 127 Measurement 5 1 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +561 e046a2e3-88dc-fceb-1c6e-cd27009624cd 127 Measurement 5 12 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +562 c7c9732b-8600-d14a-700f-4223b96b4aff 127 Measurement 6 1 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +563 579ddfcf-c68b-915d-af82-aa624d0eb7f8 127 Measurement 6 12 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +564 fd3e5cb2-156c-5fb7-b84f-becf41a21523 127 Measurement 8 1 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +565 53ac7309-51ca-b8eb-b146-24c7abea7511 128 Measurement 7 11 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +566 8a3b9a53-b5f0-2cb4-d334-3ed5c42b45c3 128 Measurement 5 1 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +567 9fe60ce6-a0b3-3a53-5e05-5d4f477ee64c 128 Measurement 5 12 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +568 3f6c798f-fde0-9da1-3e35-d508ee293356 128 Measurement 6 1 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +569 93729cf7-04cd-cd8e-062f-a3fb3edd5212 128 Measurement 6 12 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +570 ed90a618-b6e9-286d-f7b1-1f5b99aeaba6 128 Measurement 8 1 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +571 1c85d0c3-cbd7-3942-59d8-02821c129d4e 129 Measurement 7 11 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +572 c53a630f-1de3-97de-4a88-307e00c0e750 129 Measurement 5 1 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +573 1538afa6-e97a-19e9-6f4a-aa5148bc92bd 129 Measurement 5 12 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +574 49457b2c-996a-15a5-753a-e8581901ebcb 129 Measurement 6 1 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +575 8d440bc4-ca63-d8b9-1e53-df31c85796a4 129 Measurement 6 12 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +576 e72a3b90-2b22-2892-e67a-8dad9ea48778 129 Measurement 8 1 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +577 5053a669-e39c-0e92-c2c6-1cacffcbb1cb 130 Measurement 7 11 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +578 ec89e5c8-a37b-5fba-0f4d-5ac346e8f37f 130 Measurement 5 1 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +579 ce12b0d0-5693-95df-2dea-79ee8d19f2c3 130 Measurement 5 12 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +580 ab293f93-0ee9-9143-06a1-2bc0936dc123 130 Measurement 6 1 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +581 2eff8cac-e23c-4793-eb3a-1cb1724a0096 130 Measurement 6 12 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +582 cc11e5cb-c1ad-fc99-4995-9d3f9eb2e394 130 Measurement 8 1 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +583 599101d9-6b5b-e1b4-0d6c-2cefbd1ed312 131 Measurement 7 11 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +584 d6582943-e5c1-6987-a6d0-79ca19b58c90 131 Measurement 5 1 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +585 0076d618-8299-f079-07e8-a8aa9278e3a4 131 Measurement 5 12 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +586 15b9d7b2-c5b5-3933-bf44-0ed96ccdfc3a 131 Measurement 6 1 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +587 d36a516d-7154-f6cf-c6b3-344b9ab21035 131 Measurement 6 12 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +588 1371e845-2bad-54ed-6f14-32bb88b2279d 131 Measurement 8 1 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +589 97861bdf-cf91-0a29-46b6-4a081cc6e26b 132 Measurement 7 11 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +590 21315958-006f-8ae3-83e3-91280f3ea32f 132 Measurement 5 1 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +591 e5b0d2e3-e52d-b5d3-a111-9ac57186fa5e 132 Measurement 5 12 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +592 bc51257f-5868-0a84-77d7-132535285e50 132 Measurement 6 1 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +593 b1c90728-8c46-3e28-ae7e-ab3254bd9bbb 132 Measurement 6 12 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +594 03128f11-8368-d405-fd53-d79d09a32040 132 Measurement 8 1 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +595 af4dda43-46fb-2630-b07a-4e65e8fd9b3f 133 Measurement 7 11 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +596 c3f7c0d9-5652-e617-4deb-7c2ffcf57353 133 Measurement 5 1 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +597 b1a82f78-2534-7414-02c9-3def36aa5ace 133 Measurement 5 12 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +598 1a2f643f-8201-f506-8bc3-0dfc1bf4b95c 133 Measurement 6 1 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +599 35a1f00c-d9b2-14eb-3aa1-c91f266e2ff9 133 Measurement 6 12 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +600 e04e1431-d715-36e7-fa38-d785d4a0aa2b 133 Measurement 8 1 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +601 d00c5dee-8221-725d-3e79-8ccf1666ddb1 134 Measurement 7 11 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +602 46777265-2649-80b6-67cc-d118f942a09a 134 Measurement 5 1 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +603 f4b34159-847e-d023-d080-763bb0154e9d 134 Measurement 5 12 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +604 1310a011-6079-b4d1-6a78-56bbbc3e1737 134 Measurement 6 1 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +605 b9ac0f1d-6919-d171-a591-03bdd8a593ae 134 Measurement 6 12 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +606 e9bfc08b-abd9-79c5-f116-49aa4835174a 134 Measurement 8 1 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +607 a04e32a8-58a3-36c0-3bb2-3fa45c613ebf 135 Measurement 7 11 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +608 bb4e2530-1b39-d32a-fc42-672336a11cf2 135 Measurement 5 1 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +609 cebe2d13-89e8-d6df-b7a7-99327f92cb1a 135 Measurement 5 12 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +610 0cd590c2-5dd5-406f-bd44-55de42bb2cab 135 Measurement 6 1 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +611 44c30f73-9049-3535-83a8-2f029ee6ac63 135 Measurement 6 12 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +612 50c340cc-0b9f-420d-9a4e-77f8987fd1b2 135 Measurement 8 1 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +613 b0e61837-a91f-db73-8d20-45ad270893e0 136 Measurement 7 11 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +614 0333d1b0-5f45-9cca-cdf9-97c4196b924a 136 Measurement 5 1 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +615 d746fced-b30d-6c58-0331-ec3724f9ab0c 136 Measurement 5 12 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +616 ed0f7053-df2d-0183-dcaa-01126cd41c09 136 Measurement 6 1 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +617 f4c350b1-008d-5bfd-0504-5e78c87154ca 136 Measurement 6 12 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +618 cca94332-be6d-8ecb-7011-6d320bd3ce0e 136 Measurement 8 1 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +619 3e1c2228-0fc6-7e4e-5a4d-f3a3d32324a8 137 Measurement 8 1 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +620 10888532-1dc1-f58e-2d3d-5d7ed92c27d9 138 Measurement 8 1 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +621 f04d3e48-dd71-b055-3b9e-90e870990ff7 139 Measurement 7 11 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +622 826469a6-bbfe-d156-f713-947d7868bbee 139 Measurement 5 1 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +623 f57a604f-2af6-3cbf-7f75-2362d961f7bd 139 Measurement 5 12 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +624 b6904645-8b64-1042-0d0a-104ecb185743 139 Measurement 6 1 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +625 e1b3521c-5dc3-43e7-95fc-ba3567406f1d 139 Measurement 6 12 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +626 7de52149-6c88-ac4b-0be3-9168dea52132 139 Measurement 8 1 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +627 92a8d404-663b-16b7-4e7b-3d1a4acc06ac 140 Measurement 7 11 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +628 74423117-9728-22b7-0614-91b23eef2821 140 Measurement 5 1 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +629 822129d8-a9a1-1326-7379-bfd9b59debbd 140 Measurement 5 12 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +630 5128eae3-1c15-8f02-8022-b27ab12a0933 140 Measurement 6 1 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +631 76d69be0-24f3-faf1-00ac-1444a6f2235b 140 Measurement 6 12 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +632 9c279406-27f6-52cc-d6bf-e33833786061 140 Measurement 8 1 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +633 e18b6423-3aee-45bb-56cf-f5d51eb76280 141 Measurement 7 11 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +634 685ec555-961e-16f8-5336-7d4343a76f0e 141 Measurement 5 1 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +635 02b99e47-6dda-d336-e591-afea1fecc629 141 Measurement 5 12 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +636 ec8c1f8c-59bf-e520-5369-1fe4ba39fc24 141 Measurement 6 1 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +637 815ac2da-f4c3-47e8-7ae9-dcae81c9ae16 141 Measurement 6 12 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +638 2a5fa0f0-293a-570d-51a0-60657a5e67d3 141 Measurement 8 1 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +639 a7b47b3c-b37d-89bb-ff9f-42ff4c7d2bc0 142 Measurement 7 11 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +640 7ce0a4a7-424d-c783-6c0d-1a650211ae79 142 Measurement 5 1 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +641 b52d804f-45fa-8ef7-5945-065c54faa3d7 142 Measurement 5 12 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +642 10c4df2a-4350-edb2-de52-83e86103779f 142 Measurement 6 1 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +643 bfee51e8-0588-b4b2-5e8a-1977ee175e2b 142 Measurement 6 12 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +644 767951a1-8df1-e8b9-caa5-ca17be401407 142 Measurement 8 1 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +645 b1ecc883-3822-6b37-b44a-381aba53d8d7 143 Measurement 7 11 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +646 6ab5232a-1e7c-7bd6-4b5f-cb01686045fa 143 Measurement 5 1 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +647 7fbe23c6-4cca-4afd-60d2-0b28ed047430 143 Measurement 5 12 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +648 a4d02c83-4d54-5248-3b46-f5ae9de9a6bb 143 Measurement 6 1 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +649 75323509-d154-6ae4-aa34-6686d744ee89 143 Measurement 6 12 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +650 88a24f4a-7167-ffa4-4eaf-a7fd9b0c92ae 143 Measurement 8 1 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +651 85f1692f-2c24-8e47-7314-e52def3ac9aa 144 Measurement 7 11 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +652 35fef472-190d-7caa-3c40-028c5d1f3613 144 Measurement 5 1 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +653 2e4977b2-95f1-f270-1f0b-2bf8159eecf7 144 Measurement 5 12 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +654 fba9248b-9b67-02fd-e7fa-aa0f05a5f8e7 144 Measurement 6 1 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +655 66849d5c-2a00-9844-7637-c6d1c2e2544a 144 Measurement 6 12 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +656 7e1f3ec3-f121-9234-fb4f-3e30bc767ec0 144 Measurement 8 1 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +657 937556b4-7e74-8fb0-7369-406e5fdf32b1 145 Measurement 7 11 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +658 f42b5265-9cb8-7265-80f7-9724ed389756 145 Measurement 5 1 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +659 1254f510-ec25-3273-3fa5-8f15a9e65c34 145 Measurement 5 12 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +660 7a82abca-b2dc-46b8-6fae-4b475e5eb91a 145 Measurement 6 1 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +661 1f031961-0421-d48c-6bf1-607ad616e27d 145 Measurement 6 12 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +662 d885da8a-67c7-cad3-4fbc-21f722fefc1d 145 Measurement 8 1 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +663 961df4e8-17de-6d46-5b7a-2da97c35ab4e 146 Measurement 8 1 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +664 12d9e99f-14f2-7f25-1623-b98b08c5e92f 147 Measurement 8 1 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +665 5a2e1419-0ba6-8352-bdfd-8f797104d27e 148 Measurement 8 1 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +666 7c6e2a7a-4b41-2933-821c-717d66d0a97b 149 Measurement 8 1 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +667 08ae74ac-1e11-b425-ab81-753b068caf50 150 Measurement 8 1 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +668 804dd6b6-1838-2571-70b9-52bbd3f0c100 151 Measurement 8 1 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +669 1c7c3d33-77dd-d5f7-fafd-172eef3c74bf 152 Measurement 8 1 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +670 7ffe5804-d126-ae2c-1663-11c4806847cb 153 Measurement 8 1 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +671 2ca32ca4-c62d-7911-14fb-ff7812cb752f 154 Measurement 7 11 \N 1 1987-06-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +672 72e60938-9511-c12f-ad2a-7a9647995395 154 Measurement 5 12 \N 1 1987-06-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +673 e070cd13-501b-84ea-97dc-4dab8f57ca54 154 Measurement 6 12 \N 1 1987-06-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +674 7684e3b1-f235-b72a-6a77-2a2c3151bfec 155 Measurement 7 11 \N 1 1987-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +675 a80c81e4-c127-0d15-3e5a-2db26032b2bc 155 Measurement 5 12 \N 1 1987-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +676 de093b07-8410-671e-28d3-7deafb4e4a60 155 Measurement 6 12 \N 1 1987-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +677 91c0bee4-4a39-c812-8b1c-797352139d33 156 Measurement 7 11 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +678 73c8ca16-894f-9136-a6c1-b8b14ff70146 156 Measurement 5 12 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +679 5b993054-95b7-76f1-3607-07a64d6c7dc7 156 Measurement 6 12 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +680 948f8b50-7066-67da-20de-2f3a97fdf4bb 157 Measurement 7 11 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +681 bdf91d5d-0500-9def-29e2-44743a3af997 157 Measurement 5 1 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +682 8a865717-d69f-18c2-a738-ff5a8eeaaa62 157 Measurement 5 12 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +683 762ea16c-c2a6-8d22-94fd-1aa19e03d84f 157 Measurement 6 1 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +684 60f591e2-2ebf-312f-08ff-cdd371417659 157 Measurement 6 12 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +685 39ffd4f6-d64f-694a-3878-c08af5fc76af 157 Measurement 8 1 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +686 2a6f8494-f827-8831-a9dd-942d7c6ff859 158 Measurement 7 11 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +687 53492e6a-37f0-95e7-82ee-71cd69eb6b16 158 Measurement 5 12 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +688 351c70a7-2325-a41b-91a3-ebe85f9c5248 158 Measurement 6 12 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +689 6480cfec-f21d-c13d-b7f3-d5ed9a78a20e 159 Measurement 7 11 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +690 a06aa3f8-c1d3-fdb7-ab07-3ee984c14d1c 159 Measurement 5 1 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +691 11a87c57-f8ce-db6a-7a35-bfaad5eca030 159 Measurement 5 12 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +692 8d613dae-db51-cf5c-8963-0468296f53a0 159 Measurement 6 1 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +693 62bca03f-84c9-9d21-1083-2089518339f7 159 Measurement 6 12 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +694 3ecb4adf-4442-21e9-c793-2b35c6019f41 159 Measurement 8 1 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +695 adbedd84-ec20-a62a-bf05-995c12c53e53 160 Measurement 7 11 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +696 f0edc93c-7b59-bcb5-b280-6fe3999a30a0 160 Measurement 5 1 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +697 a2978b85-b356-655a-b257-bb598390b58e 160 Measurement 5 12 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +698 5d1a6a07-98f4-dff0-36b2-85e3b743b00c 160 Measurement 6 1 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +699 335a9575-0935-b5f3-f1b5-f8d36b02a968 160 Measurement 6 12 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +700 1c954fd2-3193-9dec-1453-e495e87e847f 160 Measurement 8 1 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +701 60697256-854f-5916-1a20-6ef56d219375 161 Measurement 7 11 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +702 4dc812c3-873a-7083-652a-fc4445bfdc29 161 Measurement 5 1 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +703 16fed41e-e0c0-ca5e-cf42-cec4a1177b32 161 Measurement 5 12 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +704 d9811bfc-3f0d-5c3b-e46e-71dae529a912 161 Measurement 6 1 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +705 06cb08a0-a221-a6e2-b2d7-13770d7293a8 161 Measurement 6 12 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +706 7f5d954f-8c3a-b926-68fb-3a535f591caf 161 Measurement 8 1 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +707 814d9b7e-3030-dd29-5f45-2df95302afc6 162 Measurement 7 11 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +708 1d48022f-a80b-5e09-8e94-534761254532 162 Measurement 5 1 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +709 6d3c0398-21f7-6b2c-88f5-49a5caee828e 162 Measurement 5 12 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +710 5659f3e0-e590-01db-a88f-63b9830f7410 162 Measurement 6 1 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +711 1d3fa773-6a40-6f61-0568-0ee6dac841a9 162 Measurement 6 12 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +712 691775a4-454a-5aa7-1637-a2609f5ff8d9 162 Measurement 8 1 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +713 f2b3c1b2-1b11-c1a6-4559-23ae4120dca5 163 Measurement 7 11 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +714 1ef3c739-5fba-f87e-d5c1-727a8e346eea 163 Measurement 5 1 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +715 caa74cce-141d-f8c5-5385-8fd36ff5efc3 163 Measurement 5 12 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +716 e8c6c512-f251-5a9c-74b5-3d82f6a9f8b5 163 Measurement 6 1 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +717 737bb1fe-e6f8-f47d-6fa2-cff6ec6f3700 163 Measurement 6 12 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +718 6c5d262d-cb60-30b7-8834-5824e8687c86 163 Measurement 8 1 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +719 75452801-352e-4c50-fa52-7d24c6864aa9 164 Measurement 7 11 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +720 4c030dc9-bbec-428d-b28e-5eb6085c98ee 164 Measurement 5 1 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +721 14a4dc6c-b09b-fab0-bbc6-8eb9186768e6 164 Measurement 5 12 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +722 3b72d133-dc6f-3bc1-2a93-0b26ddc3c79a 164 Measurement 6 1 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +723 fe96616e-aac6-6377-0f53-095ac5be9d22 164 Measurement 6 12 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +724 c5c7f178-a1a2-296c-df2b-e21a76f9812d 164 Measurement 8 1 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +725 73471153-bc7d-6c37-f878-cd81f6a5623a 165 Measurement 7 11 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +726 90d541b6-269d-ce0c-3749-1a8b05af7d88 165 Measurement 5 1 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +727 4161edfe-2ade-d6b4-39a8-74510c9dc871 165 Measurement 5 12 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +728 872d889a-84a8-8fb4-b231-8d4d38aca401 165 Measurement 6 1 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +729 679c9559-1cd1-be2d-91a6-a8569f48d703 165 Measurement 6 12 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +730 6526cca5-f75f-e830-e49f-d1b1e9b5cefa 165 Measurement 8 1 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +731 33cb33d8-3f69-f414-206e-e04f3a46c152 166 Measurement 7 11 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +732 497683a4-a9ba-9a16-2df3-82276158cb57 166 Measurement 5 1 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +733 6c162535-d8b7-aeed-9fe4-4cf5e6235b57 166 Measurement 5 12 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +734 a17fe2a6-58af-5663-ef1c-45f0d97051bc 166 Measurement 6 1 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +735 6577b33d-c4d1-e8e4-ca16-c9bf26f28e1a 166 Measurement 6 12 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +736 959acbb1-3f05-bb69-b700-17419c104e47 166 Measurement 8 1 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +737 0f35edbe-eeaa-8414-81df-d625ad7a85da 167 Measurement 7 11 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +738 1c5d026c-9d96-84cd-004a-e45db2d6ec45 167 Measurement 5 1 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +739 0742e4e1-66be-c28f-0b62-945554e8a78c 167 Measurement 5 12 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +740 29500239-d41f-edf8-2df1-5fcb1f82933e 167 Measurement 6 1 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +741 834fd300-066e-4973-2948-bdd0f2ad6c5e 167 Measurement 6 12 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +742 eff8cc29-090d-8396-b639-50b40882f4d6 167 Measurement 8 1 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +743 89116f23-5cdd-1d38-4db7-42e1a0bb3370 168 Measurement 7 11 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +744 227d7c8c-5fdd-bb66-c7b9-53f1095774b5 168 Measurement 5 1 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +745 d90b186a-8f24-dde8-ce83-71dc39b5d0b7 168 Measurement 5 12 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +746 cc5f515b-0452-dd09-2054-1a87a30754b1 168 Measurement 6 1 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +747 d655607b-7b43-b4f5-e76c-4043d5086b08 168 Measurement 6 12 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +748 8a151d35-9e81-0122-75ad-e5cc8c418c1b 168 Measurement 8 1 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +749 9492e7b1-e9aa-ea34-8626-bff4127b40b8 169 Measurement 7 11 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +750 33cd66bc-af55-5008-e02e-275790955299 169 Measurement 5 1 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +751 471c1e6d-88f6-52bd-faa8-b1f0a24fcd58 169 Measurement 5 12 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +752 4165470f-5570-93ca-7c16-c7c7c90df064 169 Measurement 6 1 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +753 38f5e9bf-35ca-6d38-ac78-ce8c5b92b49a 169 Measurement 6 12 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +754 133f1b38-bbc5-a1a3-834f-805cddc7e305 169 Measurement 8 1 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +755 66e78e67-a673-15e2-c82d-c9eb8bbc165c 170 Measurement 7 11 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +756 bd8a3ab1-98be-ea3a-9e92-ade772261f8a 170 Measurement 5 1 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +757 51b79fd9-81ba-bb3a-b43f-74f32489eb4b 170 Measurement 5 12 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +758 c28c5dd6-c8d5-abed-bf1b-c789f31f8fe9 170 Measurement 6 1 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +759 1166137a-eb0e-494b-f555-b112b570caab 170 Measurement 6 12 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +760 5bccdf3a-4e24-f8f7-2c6e-ddf4f3f24c05 170 Measurement 8 1 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +761 e0f54a00-c395-d530-85e8-0a3c95e090c6 171 Measurement 7 11 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +762 585a2c5e-8988-ad8c-915d-397e3c7af782 171 Measurement 5 1 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +763 0b950da4-0e6b-3ce1-9015-9d440c05a165 171 Measurement 5 12 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +764 4774257b-fbe9-bae9-fea2-cefb1dac28ad 171 Measurement 6 1 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +765 eb2732bf-6fe5-82a5-3e65-f32a492c9e58 171 Measurement 6 12 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +766 9405e940-d14a-d1e3-0f25-a1e51a0b03d4 171 Measurement 8 1 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +767 ec292635-ce5b-db6f-3e5e-b0f11afd580f 172 Measurement 7 11 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +768 267709fa-d06d-458b-5bd2-366bd1b388aa 172 Measurement 5 1 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +769 ab21349c-880d-f446-51b0-769f96688d03 172 Measurement 5 12 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +770 a2b39ab3-32a8-81e0-a048-63d72e8a1368 172 Measurement 6 1 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +771 e650a959-db51-94c0-c028-a0db83e3c073 172 Measurement 6 12 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +772 fbf95e80-0b3f-cb83-c783-8927dfc56db1 172 Measurement 8 1 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +773 4b90bc7d-ca60-b039-08cd-01b0763c3356 173 Measurement 8 1 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +774 b0b2f06f-04d5-ba6f-0d02-d32e46372440 174 Measurement 8 1 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +775 d87ed9ca-79a8-941f-2817-73a8b1bce5d1 175 Measurement 8 1 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +776 0d2de513-8411-f889-bf6d-0f579ec087fd 176 Measurement 8 1 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +777 d0430b8b-74e2-df9a-1d44-f9b4e54f66cc 177 Measurement 8 1 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +778 542e3dc1-baba-caeb-cfcd-7afc9657f4e1 178 Measurement 8 1 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +779 51539cfa-d38a-d384-2d08-110fe71ddf7d 179 Measurement 8 1 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +780 4644997e-03ce-3069-d82e-c0091b94892a 180 Measurement 8 1 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +781 da971fd6-47d4-a126-d745-4ccb744199b8 181 Measurement 8 1 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +782 caa6a665-4dae-b8c8-2478-653e76e23867 182 Measurement 8 1 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +783 77b4faa6-5394-96bd-8cc1-b2c1a13015d3 183 Measurement 8 1 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +784 9f4b5de3-ad43-e608-9a37-89526d8dc3f3 184 Measurement 8 1 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +785 3616f7e3-0ce1-e857-671f-b5d917702599 185 Measurement 8 1 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +786 dc50bc8d-3f5f-bfea-83bc-82a96c50a48d 186 Measurement 8 1 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +787 145661d3-be51-ba84-d195-aa5d6a43bfa9 187 Measurement 8 1 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +788 837af773-6884-1122-9e96-94ae89f8e094 188 Measurement 8 1 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +789 c87b4ecc-506d-d24f-28e4-3799685a5878 189 Measurement 8 1 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +790 a100e856-45aa-955e-927e-d307116c5ec8 190 Measurement 8 1 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +791 6cd6ef10-8b6d-e487-00c4-e02392726bc0 191 Measurement 8 1 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +792 82862873-27b5-4e34-d469-a78a91d8777c 192 Measurement 8 1 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +793 90fea32b-c423-b6bb-00d7-dedc7404ba2a 193 Measurement 8 1 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +794 ccfecc56-5a48-fcc3-9e55-ead7b35e6fb9 194 Measurement 8 1 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +795 ee7c1212-7a8f-1778-1892-a753e0e78de2 195 Measurement 8 1 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +796 fe818142-dd8b-c030-dbb4-cc190010e0c5 196 Measurement 11 1 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +797 74aae4b1-88b5-c5fe-edf6-7acee2999914 196 Measurement 15 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +798 c57995d1-ac57-948b-8e7d-be0342e2385b 196 Measurement 16 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +799 f49193cf-b8e1-17ab-9e74-541152e96a97 196 Measurement 17 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +800 c9056f03-2e7a-b1c8-6a20-a1bc1a78e7c1 196 Measurement 19 3 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +801 b0b1fb4c-6f55-2079-edec-4e71a069d767 197 Measurement 11 1 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +802 24509689-0cfa-8b42-345f-0df93613b8cf 197 Measurement 15 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +803 5faee2b4-d7e3-72bb-0c7c-08717cce1d4b 197 Measurement 16 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +804 e83e295d-3135-4382-8cbc-ff8e107b0b1a 197 Measurement 17 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +805 1e18973a-df3b-04ef-5f12-392dda872c79 197 Measurement 19 3 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +806 83e669fd-7db7-69a1-1cb7-807b3dfda23d 198 Measurement 11 1 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +807 12c83b39-ea9a-5c95-2121-df70661f58aa 198 Measurement 15 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +808 5870940d-9636-4376-9df5-914a681306c0 198 Measurement 16 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +809 e6ada27b-3fd5-bc93-a58e-bde952241e9f 198 Measurement 17 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +810 1e804daa-6f96-61d4-83a0-7ef43763e774 198 Measurement 19 3 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +811 9e1682a1-82f6-a7f1-dce4-6cbe5008988d 199 Measurement 10 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +812 fe9f271a-52a2-1435-8fa6-12eb424ac278 199 Measurement 11 1 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +813 e1934b3e-1751-7ecd-d786-0b74e282e648 199 Measurement 14 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +814 871e5fd4-46c6-fad6-d523-046914e81f1a 199 Measurement 15 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +815 401860ca-b940-3d81-d2fc-d1a84fded650 199 Measurement 16 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +816 0d753f8d-a8dc-2014-96b1-e3346b8306b3 199 Measurement 17 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +817 c9ff38c3-4d56-86b9-3405-762f3f8c0020 199 Measurement 19 3 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +818 27eae8a7-9a15-2762-e6e5-0116a3c62e41 200 Measurement 10 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +819 0f3feccc-59b3-57a0-efd1-a9a560420bf1 200 Measurement 11 1 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +820 ecb4b0be-a1af-22e8-8d3e-f284e8d327dd 200 Measurement 14 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +821 90471918-d7e7-87e8-5b40-0d4378c48fbb 200 Measurement 15 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +822 92e67d5f-e17f-5cad-c4f6-69d43c20f248 200 Measurement 16 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +823 414e643f-c049-c36c-aae1-13b9e8b3df3b 200 Measurement 17 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +824 79945b4c-93e8-8106-c8f7-0247f4c91bb1 200 Measurement 19 3 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +825 b545a760-dc57-4f8d-8623-da7a167ca283 201 Measurement 10 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +826 705ba444-0888-0018-8ab2-8ea67272ff65 201 Measurement 11 1 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +827 d17ad1f1-f577-8530-751f-d761f5e58583 201 Measurement 13 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +828 076b94ef-ecfb-a4a0-5fea-693f23468ba4 201 Measurement 14 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +829 cfa5ca1e-83e3-e2be-5969-30e26f89f6e7 201 Measurement 15 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +830 b30643bc-70da-2206-5961-c48e2dc190b3 201 Measurement 16 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +831 3715ccdc-f698-6799-21a0-02a268f3a570 201 Measurement 17 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +832 a5adc926-9259-e0c6-b9cd-a36e88059f98 201 Measurement 19 3 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +833 ad044fb7-2d6c-83e9-ddad-8e6acf4ac36c 202 Measurement 10 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +834 4958140f-a6a2-f4c9-415b-905f6172e48f 202 Measurement 11 1 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +835 42ef4e48-623d-c703-12e4-132da9f9d9a0 202 Measurement 13 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +836 71a40e0d-ec4f-6285-0ede-0f3fa9a0b7d5 202 Measurement 14 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +837 c8d31140-fad9-1f75-272f-3038989ee6b6 202 Measurement 15 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +838 e72b7d30-d57d-c37c-9ed3-44a866099834 202 Measurement 16 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +839 29e4a7b5-d400-5f30-25cd-3d7c5336a435 202 Measurement 17 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +840 af626f9d-01a9-5e88-a511-384b2cf1ed79 202 Measurement 18 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +841 4f2e7c6b-3f2b-b95d-b2ed-5b1c4436e7fe 202 Measurement 19 3 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +842 1a7a819d-3833-00ea-afef-526aa1385593 203 Measurement 10 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +843 d3a09362-65b2-aba2-971d-7329b5a2f02b 203 Measurement 11 1 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +844 0dac7f8b-fc70-c238-bb07-ee6fd6521a67 203 Measurement 13 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +845 85ed995f-b401-0f8f-64f4-6782462de4a8 203 Measurement 14 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +846 695dd12b-ee46-a007-cad4-19f6b0f922f6 203 Measurement 15 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +847 6e2ab7f9-5169-814a-f4ee-c16ffe5a96d8 203 Measurement 16 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +848 5f5dc796-e00a-ef33-5e1a-4911ad8b60d0 203 Measurement 17 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +849 e1fd8f9d-d0a9-5a70-f2d0-678814a734e8 203 Measurement 18 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +850 5cda3ceb-0706-f447-149a-aa0a3d29e013 203 Measurement 19 3 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +851 44086474-3a63-e3b6-ed7a-fd77c3e18fa0 204 Measurement 10 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +852 2686b1bc-2a47-71a8-8447-e67de65a0e42 204 Measurement 11 1 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +853 0fe2b502-6b31-36f3-402a-4287b7db7ec2 204 Measurement 13 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +854 413586a5-37a3-7000-37da-1a0628d686f5 204 Measurement 14 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +855 318e32a9-62f7-47a7-7d89-4504bf7174fc 204 Measurement 15 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +856 ea226a86-d85c-9afe-73cf-ca357fa8f455 204 Measurement 16 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +857 43ea7e35-3847-b1ae-e5b0-b94e97e3e56f 204 Measurement 17 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +858 911bbcb4-0273-3fe4-bde1-7c296ff9fb5b 204 Measurement 18 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +859 b15b664b-ae70-71e9-e0d4-668f00330c73 204 Measurement 19 3 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +860 8d8ef1e3-8ef5-43ce-0b11-d07e0b5f9c3e 205 Measurement 11 1 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +861 1f1267a0-43a2-482b-6e8c-87370c4b06c1 205 Measurement 13 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +862 18fe79b3-f0fb-ccb8-469b-60c0b82a19e2 205 Measurement 15 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +863 a1fb583b-9469-3109-2bc3-6949152ba270 205 Measurement 16 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +864 e6562b55-b94d-adbc-96a0-4040887eeae4 205 Measurement 17 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +865 aa34259c-45b2-841b-5be2-f1f4e2bd864f 205 Measurement 18 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +866 5dc964b6-bd89-e23e-d8ac-0db7df7b7193 205 Measurement 19 3 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +867 773148fc-e590-faea-ca88-16a48fa81890 206 Measurement 10 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +868 6313ac6e-fd82-1541-c250-0c5d0aff64b0 206 Measurement 11 1 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +869 7a432be6-720b-3459-833e-3cb2a75e1d6b 206 Measurement 13 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +870 7d406870-9e10-0743-e202-952646d8d0b6 206 Measurement 14 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +871 99660c9a-2c4b-2a8f-83dc-bd74914552a4 206 Measurement 15 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +872 e1c32295-bcd2-4746-1297-da190a39a48e 206 Measurement 16 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +873 628d26b6-83d4-6844-e495-77d8f2118cfc 206 Measurement 17 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +874 dc8ec669-6e09-d2de-806b-7d371fd794c9 206 Measurement 18 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +875 2fa1b036-f49b-aacf-a801-aa0841737f9e 206 Measurement 19 3 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +876 db5f86ca-194a-2a6b-5b91-84c03d50455c 207 Measurement 10 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +877 da6e091c-baf4-1ca6-d798-6c92e7999988 207 Measurement 13 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +878 fd8ca7be-7d40-ec7f-8cc3-f2d4b5825ded 207 Measurement 14 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +879 c83aa650-d428-4559-0a11-b21599a56d7e 207 Measurement 15 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +880 da5a66c4-fad4-f963-5c1f-83e130fa6a55 207 Measurement 16 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +881 ac7e7462-f2ca-7903-66ca-74b5b3a9e557 207 Measurement 17 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +882 cabff614-7958-6437-3aee-58a05b8e6eea 207 Measurement 18 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +883 ac2b4462-7487-1548-99ac-fea6acdb4b25 207 Measurement 19 3 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +884 ad577363-84da-24ab-c549-dea756f656c6 208 Measurement 10 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +885 09eec121-6ff2-6b6e-c63e-00522f4a7920 208 Measurement 13 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +886 572a4e10-87d0-c8ac-7910-73357d0650f9 208 Measurement 14 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +887 9bdf12a6-a74d-94a5-e96f-2881dd13929c 208 Measurement 15 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +888 9df0c716-7f68-a167-134d-718d482278bf 208 Measurement 16 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +889 98a5cfc6-0890-7a24-8202-1e47e0fc0835 208 Measurement 17 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +890 f690739d-0bed-7725-c7ce-9fccb03d5cec 208 Measurement 18 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +891 3eb63ee4-5944-df97-c6eb-ff4e72fc2cf5 208 Measurement 19 3 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +892 3fcd69fa-ef6c-0407-af51-8b0da9382aa2 209 Measurement 15 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +893 0b4bc43f-1fd7-e4a2-59ac-107c3c9ea325 209 Measurement 16 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +894 4e47c659-d534-72f5-6f3c-10274766a1b1 209 Measurement 17 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +895 a19146b1-5769-6ffe-1aa0-aab5a29f6944 209 Measurement 18 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +896 85230640-fd5b-e9be-3e18-fbfa3ba8cf2e 209 Measurement 19 3 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +897 773ec847-c60a-9b6d-e1e6-aab6b0682192 210 Measurement 10 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +898 88c81539-8aa3-8006-b2c1-c9bad612836c 210 Measurement 12 10 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +899 6497a0df-8a69-fb69-dbe2-cf3401718b37 210 Measurement 13 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +900 3cdb53a5-283a-93f9-f9d5-ce3b3ac7da67 210 Measurement 14 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +901 e4b4fdfd-bea3-05fc-ebaf-ab1e70ceb516 210 Measurement 15 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +902 7c317582-c93f-e5e6-b218-c1f51e08339e 210 Measurement 16 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +903 fef74f0c-f090-3a05-52c5-ed90c47e5bad 210 Measurement 17 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +904 8d1b3ef6-8c06-f92c-d7a6-86d99d217b94 210 Measurement 18 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +905 3fb95f26-a277-b437-4fbf-6ca8f20be83c 210 Measurement 19 3 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +906 30c481ed-975a-b4bd-ff61-9be4fd3059df 211 Measurement 12 10 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +907 1b55f6fe-ce0c-4197-3fed-50c03ac6b558 211 Measurement 15 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +908 e100e44b-fa5a-ebbf-1f5c-e64ddce9c9c6 211 Measurement 16 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +909 451c23bc-8c4b-324b-5078-40aeef626d5e 211 Measurement 17 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +910 2595086e-cefd-db6a-040b-0b943dd99e20 211 Measurement 18 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +911 ced2ee34-5298-0a1f-9dd3-b1564eaa9f69 211 Measurement 19 3 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +912 54a1f3cd-7cdc-9519-a67a-36effa2804e2 212 Measurement 9 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +913 61dc83ed-2435-ff78-593e-37c90c56e04b 212 Measurement 10 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +914 e86b76f3-b44d-6cbd-83d0-47b837b764ea 212 Measurement 11 1 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +915 941b42f1-6a40-4c7e-6fa3-e093142a1adf 212 Measurement 13 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +916 a41e8678-87e9-92b4-66f4-c9395609a444 212 Measurement 14 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +917 23ba3d3f-8f3b-8124-eead-4836f96f8502 212 Measurement 15 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +918 e8a410d0-fa79-1afa-86bd-be02ddd5feae 212 Measurement 16 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +919 099f3950-e7bd-499a-a496-fa0355175ad9 212 Measurement 17 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +920 55e17c58-e134-1e40-8689-c71f7643d412 212 Measurement 18 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +921 b13ae886-b277-1574-3bba-aecbcbd2fedb 212 Measurement 19 3 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +922 c4f7f3bd-3e03-5e32-1d5e-b74e5871a563 213 Measurement 9 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +923 6221e8c6-283b-7994-6144-bc885e47d5d8 213 Measurement 10 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +924 2198d9d1-b3e9-e2a6-83de-d23a7e35f426 213 Measurement 11 1 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +925 203acd0e-c9e2-51ab-c5ff-1bdc71a40d07 213 Measurement 13 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +926 00644786-e17b-42a0-95e6-1d3c1ab2a00a 213 Measurement 14 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +927 028bf855-b153-389c-18ce-4cdfd85f8c04 213 Measurement 16 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +928 8031d6c7-c5af-b789-7783-cfc109ee2864 213 Measurement 17 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +929 d8033de5-6736-45c4-481f-257763c976da 213 Measurement 18 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +930 eb286d43-bd84-1d94-dea5-684434340830 213 Measurement 19 3 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +931 3b87fbc1-2b18-ffd7-3047-e8de2f5b9af4 214 Measurement 9 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +932 5aae7226-dfd7-85b3-aeeb-2e0aa2d4fdb1 214 Measurement 10 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +933 139702e7-b361-d467-0546-bfc0eb3483db 214 Measurement 11 1 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +934 8eaa7df6-60d7-c153-a148-a9d5ecdeb6cf 214 Measurement 13 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +935 d59bbad6-c20f-3cd7-1663-98472d6d32f2 214 Measurement 14 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +936 62fbe64d-b0f3-d2ae-c289-b28e7bd47ad0 214 Measurement 15 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +937 5041934b-6950-bc50-d192-8d6272d8c381 214 Measurement 16 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +938 39875070-ced8-7cc1-9a83-d0a43d9bba2b 214 Measurement 17 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +939 f4eb1eca-327f-ab81-ed98-c0a82549a53b 214 Measurement 19 3 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +940 14371a97-7f92-71f7-2fb2-bed88ba37add 215 Measurement 9 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +941 eca65a7e-e06d-2f45-01fb-49f177b8a0ed 215 Measurement 10 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +942 223e8c28-28ee-e3e1-39d3-4ddc5aab5b18 215 Measurement 11 1 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +943 853268e0-90ad-1db4-9be6-2a00881d3e07 215 Measurement 13 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +944 16b7f1a5-b049-4117-2273-83bae90adc93 215 Measurement 14 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +945 76aaad44-bcba-b8d3-d626-b01c3ccc8b39 215 Measurement 15 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +946 75b66981-c8ed-433b-f8bd-206d6e0c07bd 215 Measurement 16 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +947 55e27b9c-2073-202b-99b7-969cde28d044 215 Measurement 17 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +948 90a839fc-e5ed-741f-8b73-848df04734d8 215 Measurement 18 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +949 bde4754a-8ed9-82c7-f728-37eca2a319a3 215 Measurement 19 3 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +950 a7709968-63ff-f497-fe87-94fcf7d4a202 216 Measurement 9 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +951 0da91805-fc6d-a3fa-b81f-ed13408268ad 216 Measurement 10 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +952 abf920e1-d8de-9674-151b-7448875f5143 216 Measurement 11 1 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +953 6bbeeef4-710f-a067-624d-f475368404f8 216 Measurement 13 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +954 55b347d3-2017-c536-c31a-3812de15cdaf 216 Measurement 14 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +955 7c8809e3-a3ad-aa67-0c61-f56c2ed6d12b 216 Measurement 15 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +956 31cc9189-9b51-6e9e-7142-0b8f55c642db 216 Measurement 16 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +957 46cdf222-4bde-4722-0552-c6c181b79a7b 216 Measurement 17 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +958 b4e17fe1-50d2-f35d-c299-c03cc9439022 216 Measurement 18 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +959 74370a7c-0c00-78d9-9046-8681cb2a1ac4 217 Measurement 9 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +960 666092d6-427e-0143-becc-1c82efa193ee 217 Measurement 10 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +961 ade38055-dd30-8b43-4d17-8bb945b0c532 217 Measurement 11 1 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +962 eeb35380-1927-1b2e-9182-fed6c481f582 217 Measurement 13 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +963 8e44e15c-925a-5a01-db83-cee1227d39a1 217 Measurement 14 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +964 64b4e9ae-db9d-e292-94aa-0ab0d8683b1c 217 Measurement 15 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +965 e7948f0d-b275-099a-4495-845b3a37166c 217 Measurement 16 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +966 a1628d92-a174-31b5-ca98-d9a4f58b8015 217 Measurement 17 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +967 1e7d1b92-7827-6348-b3fa-ab4a9808697e 217 Measurement 18 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +968 5c796573-948d-70eb-27af-dae4543f4765 217 Measurement 19 3 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +969 1a759b19-33ea-26de-4ab2-6ede1d7651d7 218 Measurement 9 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +970 eee0d2da-653a-eb8c-5e28-6f5c1ea9807e 218 Measurement 10 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +971 59aeb9e8-25e9-4ea0-3001-7549ed7c6bed 218 Measurement 11 1 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +972 0cb13dd2-325d-99dc-afc9-e8592cc6e55a 218 Measurement 13 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +973 d3003cb9-7aa0-179a-d60b-e7e9dbabf049 218 Measurement 14 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +974 ebf9bd37-7c88-1d54-2269-769fea539a1a 218 Measurement 15 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +975 437e16af-61b1-f36e-66d6-61242655577b 218 Measurement 16 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +976 60442e20-7760-e443-fe64-68bd30a01bfd 218 Measurement 17 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +977 357a352b-ea88-5c5c-9902-c7348c36bbf5 218 Measurement 18 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +978 d26f7ca8-9e37-39d2-ed77-b9bbcf7771c7 218 Measurement 19 3 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +979 302379ff-f0e9-e3dd-4ccb-a594d791d142 219 Measurement 9 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +980 f83bfb33-bf16-97da-28b4-5ca9da49e796 219 Measurement 10 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +981 4ce820fc-3c5d-5dfc-2afc-136ea479bf89 219 Measurement 11 1 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +982 a4f48e0e-075e-1d8d-108d-b6b0e1916f4e 219 Measurement 13 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +983 7e7a161c-9da6-dd5e-c64e-90855e453477 219 Measurement 14 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +984 487c7a95-3d33-c895-9189-91f3134a9ffc 219 Measurement 15 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +985 9351c573-42a6-9862-a46c-fcbd96794366 219 Measurement 16 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +986 209f2e69-2f4b-039d-d931-ad96de4fcd96 219 Measurement 17 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +987 41fe563c-366f-2cce-6875-367a226ff70d 219 Measurement 18 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +988 dd805967-12df-3ac9-2c60-a6bc6fc67490 219 Measurement 19 3 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +989 11a5fd0b-86a0-688a-52c6-09a6021153bd 220 Measurement 9 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +990 aada3202-166d-bf99-29c5-faabea2f723e 220 Measurement 10 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +991 cb981678-1d39-5b61-1aa8-305189255667 220 Measurement 11 1 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +992 c2e6381b-e081-efad-0312-edbd378b7c37 220 Measurement 13 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +993 6e9340e8-7d43-d7f7-15d9-2462a6401588 220 Measurement 14 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +994 283d4302-cce9-9919-252e-70155cb510c0 220 Measurement 15 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +995 5d943dbf-0d14-0cc9-b43a-e916ec660bce 220 Measurement 16 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +996 7a209ecf-16f1-9a1e-9bb3-ddd2479eb733 220 Measurement 17 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +997 aadfb99a-d979-0cea-6dff-6bfa53052d5f 220 Measurement 19 3 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +998 9cef2cd7-fa32-d1a3-721d-a1a2e1822e03 221 Measurement 9 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +999 3189b48a-9d63-a729-e180-76eb865b0395 221 Measurement 10 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1000 a856be5c-a6af-e683-0e2e-ea2c22c6e58c 221 Measurement 13 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1001 12228536-f5b1-42e5-2dfa-ebb33bbcf47b 221 Measurement 14 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1002 8cf3f1ab-2bb2-8be3-6aa6-12ff333955da 221 Measurement 15 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1003 b8323ccb-6b3d-882e-61aa-84f085f9fcc3 221 Measurement 16 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1004 bb0ced61-2943-9072-f85f-a21b08220c25 221 Measurement 17 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1005 6efcf79f-f671-b595-8a3c-363413f1b57c 221 Measurement 18 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1006 833bcb84-f37e-fac2-e6fe-42bdb53ee343 221 Measurement 19 3 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1007 2d065611-5a57-0fd1-8196-4325535e7632 222 Measurement 9 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1008 336668ae-6570-0874-d4a2-5fdb163d83a4 222 Measurement 10 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1009 33cf8f85-afac-bf5b-88ba-022812d955d6 222 Measurement 13 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1010 920a9273-3df8-9dc9-5f04-2b4f0ad5457d 222 Measurement 14 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1011 bc943fee-20b3-d621-7c75-d4a9ecf478fc 222 Measurement 15 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1012 dcc51f4a-b945-b104-0a47-6358bf8e4c32 222 Measurement 16 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1013 a82a6b0f-8e76-925a-1044-e1096a732151 222 Measurement 17 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1014 08c4fc29-0930-0de9-0ed0-bffa40be0f69 222 Measurement 18 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1015 5e057c4c-93cd-ffde-3ebe-d113aae8c907 222 Measurement 19 3 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1016 224a7477-8bb0-c337-ebb4-21814c5635d7 223 Measurement 9 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1017 6306bdc5-6e09-b1b9-35b2-4cdbdba8943c 223 Measurement 10 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1018 f7388129-91d5-4a00-a728-1012308f20b5 223 Measurement 15 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1019 47afa23a-3e7f-5943-57ed-1f324bcc98c8 223 Measurement 16 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1020 a111bfeb-e527-9026-135d-cd7d3d97a57e 223 Measurement 17 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1021 dd5f04e6-6fee-5809-897c-3dee468fd4c7 223 Measurement 18 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1022 ca68ad98-2d2a-bf3a-45c0-adce1349425e 223 Measurement 19 3 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1023 63b31ae1-0c83-b161-3c1e-197082e49330 224 Measurement 9 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1024 685c7528-c7c2-8188-6539-fcbed86a91fa 224 Measurement 10 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1025 b226dc27-6f16-88d7-ab30-48e829759275 224 Measurement 13 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1026 64123ef0-73d8-55b1-84ab-1329663863b1 224 Measurement 14 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1027 02d00878-0af4-1388-2232-5670a9e104ba 224 Measurement 15 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1028 1370c58f-507c-4de5-89c7-527c826934ea 224 Measurement 16 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1029 20c96a6e-db2c-48f8-08fd-616287f01369 224 Measurement 17 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1030 ece17ca4-b926-eebc-2ed6-69de21bf3860 224 Measurement 18 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1031 2b4dc9a9-c7f5-9ee1-c270-54427df47b60 224 Measurement 19 3 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1032 005f97db-f9f2-0953-f9a5-cb1b2f6e0a89 225 Measurement 9 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1033 c861353f-4dd4-f9bb-9beb-881f60969391 225 Measurement 10 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1034 344ba43b-9072-30bc-a7f3-cee2988eb993 225 Measurement 13 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1035 61a4685d-7e0f-6b60-4cbb-30d29c3a7bf5 225 Measurement 14 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1036 6746e8bb-f98d-9a23-f971-64ef9202a898 225 Measurement 15 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1037 0bef756c-0bad-7784-9d2e-44852890ced8 225 Measurement 16 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1038 4952ddb9-9cd0-c5c0-f6f5-40b88d691d3d 225 Measurement 17 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1039 13ad61c1-c003-d258-72ff-e872d42fbb0f 225 Measurement 18 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1040 3fb3f8e1-f91c-f293-4c28-3b896fd638c1 225 Measurement 19 3 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1041 95c577c6-9e40-55c4-a79c-bf26861bc5e0 226 Measurement 9 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1042 7a1d99a6-7d6e-4da3-713f-46a1fedecab3 226 Measurement 10 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1043 9dcfbbcb-2cb4-b928-4d8b-d871dab65504 226 Measurement 13 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1044 9fc5e810-fc53-9cc4-7430-c732af666cae 226 Measurement 14 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1045 b77410b5-1b19-e70a-e462-24399610b013 226 Measurement 15 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1046 7cb93b30-126a-4c7b-fcf0-39a5570687a8 226 Measurement 16 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1047 0bc35752-5514-3efe-d060-e27cd9353129 226 Measurement 17 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1048 7842a519-edf8-03ed-1b7b-93bf209f75d1 226 Measurement 18 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1049 02aeb38b-3a22-b975-b283-20e9efc08743 226 Measurement 19 3 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1050 06a39d26-b2fc-0fa2-4b3c-e56b59c2bb79 227 Measurement 9 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1051 b7e96edd-62f9-357b-94b1-0233b1678859 227 Measurement 10 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1052 6b347250-071a-fdc8-6dc0-5de92fead51b 227 Measurement 13 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1053 f8217ec7-a8cb-df38-0dba-9af41e1431b8 227 Measurement 14 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1054 80981ed4-fb52-01b3-8441-89d899fa45fc 227 Measurement 15 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1055 a7e9e62c-b894-f3a4-c71d-3e861c3ad199 227 Measurement 16 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1056 3faef8a5-5d33-acb3-aa95-31e2b3f0ce12 227 Measurement 17 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1057 55bf8557-6d96-5990-d578-831e5eadcbd8 227 Measurement 18 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1058 bbdd6705-e110-ad5e-e238-1506f6e285ad 227 Measurement 19 3 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1059 0c0ab64b-41eb-c04d-4e2b-5cb73bb71e4a 228 Measurement 9 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1060 76a1cbbb-a32a-21c7-b057-96b9f4cbaedf 228 Measurement 10 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1061 623d2d56-eaed-2901-785b-d380be362432 228 Measurement 13 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1062 5d5a5882-f17d-3fba-4076-a441565e1570 228 Measurement 14 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1063 568d0022-010b-99f0-3a4c-3c8315cfa70c 228 Measurement 15 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1064 e049c449-69e1-4224-f4a0-6a67874699f6 228 Measurement 16 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1065 7f1d68fa-87e6-c123-cff9-494b10798659 228 Measurement 17 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1066 e048c4cd-96bd-5453-a288-17e2cdbdb903 228 Measurement 18 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1067 35b7e926-f64b-350d-6173-123205252bbe 228 Measurement 19 3 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1068 e8065725-4ba1-38b8-d03d-1886caae28a3 229 Measurement 9 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1069 9ce7d2d4-70f6-4675-58be-8a2da6c44163 229 Measurement 10 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1070 b738d4cf-eabd-315d-af78-aa98deabbdeb 229 Measurement 13 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1071 00df6884-523e-af57-892f-dba6f918dc6f 229 Measurement 14 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1072 37e44d37-718e-15a2-7664-fe4dee15d22b 229 Measurement 15 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1073 e09f18a0-4ef7-c91c-afe7-1976d21e70ad 229 Measurement 16 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1074 e65ab665-25a7-607d-a681-97a97e326601 229 Measurement 17 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1075 dddcc69e-ddb8-bb34-8a01-7f06c1ead9e4 229 Measurement 18 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1076 7a80998f-933f-cc39-521a-59c8c8dc4f4e 229 Measurement 19 3 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1077 a319b308-82c8-3e36-c739-69f190960ecb 230 Measurement 9 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1078 eeeb042f-e683-7123-78a9-e4c663b0b31d 230 Measurement 10 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1079 7c42adfc-c715-a7b7-2c75-57f0c06c2f80 230 Measurement 13 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1080 86e7d815-7b83-a469-10ec-92cbcca0034c 230 Measurement 14 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1081 b8c28b66-66cf-ab68-4b1f-77e6853a4e5a 230 Measurement 15 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1082 50052f63-f380-1f86-1cc1-a5758e5ff338 230 Measurement 16 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1083 ea7f5668-a081-8669-67e1-2f209308a4c6 230 Measurement 17 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1084 aff54e95-aea3-ce6b-1a06-2afb09ac5e1c 230 Measurement 18 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1085 198ec6d5-35ee-437d-c5da-b12425138c9f 230 Measurement 19 3 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1086 af7fa3e2-a242-e420-cafc-493ec04139e9 231 Measurement 9 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1087 98d12186-6a35-f9af-9302-51faf44e6ef9 231 Measurement 10 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1088 6a8c1fa3-b108-604f-2b67-3c07a516f033 231 Measurement 13 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1089 94b29465-b1b5-70cb-b0e4-287fd315a8f3 231 Measurement 14 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1090 e74db5d6-0b5a-be81-cf11-5e15058e3908 231 Measurement 15 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1091 f7f51aa2-bfbd-b699-5391-2840acc2459b 231 Measurement 16 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1092 75cc62fb-582a-b23c-718b-5d755fcc3025 231 Measurement 17 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1093 50b7b42f-8da1-e6f0-6276-af3143e95e89 231 Measurement 18 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1094 b3277665-c8bb-b762-b124-a7447d30e460 231 Measurement 19 3 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1095 470972de-76e0-98a1-4fec-fd9bd79a4722 232 Measurement 9 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1096 1a307d47-38f6-5571-979e-8ee3fc3e4c50 232 Measurement 10 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1097 04be2956-a11c-9ac6-69b1-32e0ffefd40c 232 Measurement 13 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1098 7b3c6565-5c00-207d-b2ac-07c94ded4b6a 232 Measurement 14 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1099 d4953d0e-ea4a-4d34-6c4c-dca5d50224cd 232 Measurement 15 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1100 cd170a51-f08b-1f40-ddda-2fea9f509a4f 232 Measurement 16 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1101 58cf17e4-e3c8-026c-649a-4c99a005780f 232 Measurement 17 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1102 959fe53d-c530-3af1-a126-f42087ee18c3 232 Measurement 18 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1103 ce5503dd-b1ca-47f3-b30d-10f8bfe3db6f 232 Measurement 19 3 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1104 92a5a711-5364-df7c-529b-642beb390079 233 Measurement 9 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1105 2025eb48-2da0-d493-3abf-4c6e1d215bb0 233 Measurement 10 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1106 ec37e9a2-2ec4-be62-eb6f-8832b6a31754 233 Measurement 13 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1107 fefb39f4-27a0-f2cc-fc66-bab6c6f5c96a 233 Measurement 14 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1108 a2676648-8f94-9561-c661-535eea22474b 233 Measurement 15 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1109 19ba81c9-5e8a-fe92-4ee3-4386c4e303a0 233 Measurement 16 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1110 31d8e81b-a0d0-345d-8720-e90d68b1f8bd 233 Measurement 17 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1111 86e5e87c-37ea-e280-c149-2e613c7288f9 233 Measurement 18 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1112 3e8aeee4-3e3a-dda5-2947-10247f98988a 233 Measurement 19 3 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1113 f79d8e39-fcb8-d35b-ac34-e039db439935 234 Measurement 9 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1114 d084443c-6b4f-686f-3777-66e216bef695 234 Measurement 10 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1115 633e8126-3f06-b2b4-b95e-54584de4a2d3 234 Measurement 13 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1116 83fdf169-1a33-cbbd-d52b-fc45968e4cf3 234 Measurement 14 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1117 fe32ce6c-a3d5-032f-ba2d-c17990ac6bc1 234 Measurement 15 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1118 1acc5b1d-c930-69af-9563-970201d26b01 234 Measurement 16 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1119 d9a391c2-e034-3fd9-e3b1-6c3267081848 234 Measurement 17 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1120 060f17be-d757-e61d-390d-04e8d498ec48 234 Measurement 18 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1121 ca5e7ce2-6c3c-cfc3-6603-0d051825ac9c 234 Measurement 19 3 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1122 37c05db5-96bc-d52b-5d7f-ab0821415199 235 Measurement 9 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1123 77047f2d-547b-71bc-f108-3b7b87b45b4d 235 Measurement 10 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1124 6bc5d0c8-3fd5-4908-fdcb-c09263fee41c 235 Measurement 13 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1125 2f24bbca-d06c-13bb-264f-fd5e0d2672cc 235 Measurement 14 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1126 ac9d22af-405e-c1c0-3b92-552c5aae9567 235 Measurement 15 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1127 7d24b6fb-c021-0387-6055-7a23a49a04d2 235 Measurement 16 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1128 98007698-286a-9207-2a2b-db7eb0e48f45 235 Measurement 17 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1129 1e492324-fbcb-b491-a446-0d2732c27f29 235 Measurement 18 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1130 c836fac8-6330-e10b-47e4-1cdd814d425d 235 Measurement 19 3 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1131 f78d8208-0271-e086-91b9-30b5b8aee2c4 236 Measurement 9 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1132 ad76b908-5194-0167-1b16-9fdb72efba73 236 Measurement 10 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1133 b58ed6d9-3818-7944-f0fc-03360b2a5c1d 236 Measurement 13 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1134 3897aa7b-5f08-b966-93a7-b4c1e030c912 236 Measurement 14 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1135 ee2cdf0c-6dad-9ce2-58a7-45f326560302 236 Measurement 15 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1136 32229a1d-f9e5-8366-05d5-aa8702051a9d 236 Measurement 16 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1137 77bbd1c6-c0ff-783e-7ed7-d86e643286f7 236 Measurement 17 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1138 33e0e8b7-fd3f-e026-1d71-9efed48e5c74 236 Measurement 18 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1139 2140d2db-d6d9-7b83-e4cd-8d5d6b355ecb 236 Measurement 19 3 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1140 1088b8fd-e87f-093f-b6d2-566579f10051 237 Measurement 9 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1141 6a9f2d58-2eaf-dfb5-5fe5-77154f3fb565 237 Measurement 10 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1142 d33f1ced-ae0f-e92f-5e00-2659231587da 237 Measurement 13 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1143 56693065-e89a-3b6c-1ed1-c346f9fe1579 237 Measurement 14 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1144 fbaa8f36-239f-23d9-2f7a-906afbaa7f52 237 Measurement 15 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1145 025f3613-1314-4268-81f9-a34696cfe0a9 237 Measurement 16 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1146 8d18b5c5-35bb-bb93-2d11-c0864afeab45 237 Measurement 17 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1147 dd5066c3-c7ac-6cb6-5fe3-033ebf0474d3 237 Measurement 18 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1148 ff77a353-60c4-d741-2d9e-23bce52233f6 237 Measurement 19 3 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1149 051f75a8-aa02-cf50-ee88-b349b7f8002d 238 Measurement 10 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1150 bf709eef-2614-2b03-a82b-befa9fd74fd4 238 Measurement 13 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1151 8fa63689-ef96-e63b-9d01-b71734470106 238 Measurement 14 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1152 60475d6a-896a-6e60-ef6d-f3e57c2077d3 238 Measurement 15 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1153 b253bcdd-a9bf-2642-9b47-7033d0050a7b 238 Measurement 16 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1154 dce5c303-2b42-6297-88d2-f6e3fe16f40c 238 Measurement 17 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1155 5307ea7b-c6a0-f0e3-e69a-d9654d359fd6 238 Measurement 18 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1156 74a98e00-023b-c748-0c47-c19e74065bb4 238 Measurement 19 3 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1157 4995cd94-9d36-efe3-6003-ea70ad2973dc 239 Measurement 9 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1158 09ff18e7-0d5a-5390-7bd3-f77783a2e159 239 Measurement 10 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1159 2f44d877-b7b1-e0fc-f522-bf8477d6d913 239 Measurement 13 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1160 e8ac886f-b1c9-ef52-fe34-61f327f7b6fb 239 Measurement 14 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1161 e5b92cae-4e5e-1b5b-5f97-7f82d1eff95c 239 Measurement 15 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1162 976e868a-e31d-7056-006c-7277fd19fc72 239 Measurement 16 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1163 7f64f49a-ce22-c962-549e-3d46cce2438e 239 Measurement 17 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1164 05814f29-763f-74d6-af1b-374b10fbc3ce 239 Measurement 18 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1165 76b23435-55d0-64b4-45d7-89457e7240d5 239 Measurement 19 3 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1166 b365b94d-1492-777a-7532-0bbe702034b8 240 Measurement 9 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1167 91f8a258-e8f3-db98-679e-4e6bc53503e2 240 Measurement 10 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1168 570a186d-65c8-5e2e-0a43-60dfac325537 240 Measurement 13 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1169 d86ffbeb-b6e8-ad1b-67b7-51541ea0065a 240 Measurement 14 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1170 17def49d-038d-0813-6f09-0104c656d0c7 240 Measurement 15 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1171 b8b2cf2b-f0c5-f1d7-ee40-c9f7bb90e57a 240 Measurement 16 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1172 d15be106-9c66-959a-a60f-b44d5898202b 240 Measurement 17 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1173 41e56b10-561e-3a32-e84d-913fe45eb58d 240 Measurement 18 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1174 b723ed32-d4bd-1da4-2594-31732af25ec2 240 Measurement 19 3 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1175 f91e7580-ca94-29de-99e7-be705a3afa45 241 Measurement 9 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1176 e90dc630-99f7-6818-6bfc-8e8503023ac7 241 Measurement 10 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1177 dd16e284-eb49-4b99-85e4-3971b6433d40 241 Measurement 13 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1178 46b79e1e-fb05-5afc-733f-5f094a379848 241 Measurement 14 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1179 1311c0fa-12b6-c163-ef8e-0c555bd722d4 241 Measurement 15 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1180 aaeef12b-4508-2f35-33b6-90868913cc76 241 Measurement 16 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1181 3a50d78b-924f-f711-b9c1-033fef55c8ec 241 Measurement 17 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1182 cb16fe56-74f4-9c93-7da2-46df3fda6f7d 241 Measurement 18 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1183 00473e73-ff4b-5963-aa18-7fbedaa27d9a 241 Measurement 19 3 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1184 634f85c3-e940-c230-1748-d18baf75359b 242 Measurement 9 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1185 427a448b-f14e-bbe2-d856-7b90df06e046 242 Measurement 10 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1186 e7a6f78a-d632-b322-ea05-2ff9ebb9634e 242 Measurement 13 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1187 db9dc182-7d80-02c9-026d-0c7479748734 242 Measurement 14 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1188 3d6840f3-dff6-1a77-2e29-6d4df9e3af6e 242 Measurement 15 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1189 1c1a3c74-88f9-298a-d6db-e35916395325 242 Measurement 16 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1190 05e521f1-b568-fe89-9783-84aecbc1f193 242 Measurement 17 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1191 4fe0d23e-2a0c-38e2-8ad7-55d7fbd94a69 242 Measurement 18 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1192 bf30852b-e61c-beaa-1d2c-c55fd5858bdd 242 Measurement 19 3 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1193 7da60b1a-8500-cdd3-f0bb-7536cc49d91e 243 Measurement 9 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1194 792b37ff-8ac1-02a3-92a9-e1cda47e2bdb 243 Measurement 10 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1195 82a53784-43ff-3abb-15f0-cde241a8249c 243 Measurement 13 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1196 73481a07-6883-54a9-5aaf-3c76ae6aa727 243 Measurement 14 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1197 c29681b5-aef8-110e-891e-554d4d739dec 243 Measurement 15 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1198 38ff44be-363c-fe7e-391c-1cbbe815cf20 243 Measurement 16 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1199 b8e8a411-5452-10be-f655-ff78d0463a3f 243 Measurement 17 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1200 c691d605-3a7e-4e54-8ee6-8dd4fdaa6304 243 Measurement 18 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1201 38e25a43-3640-fd71-e54a-174c0db8fac3 243 Measurement 19 3 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1202 37b6cd37-f2b3-9a93-91bb-1c7c31791ed9 244 Measurement 15 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1203 dcb9f204-ac27-d665-dae7-11f3dc8966c5 244 Measurement 16 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1204 9b2ec744-1808-1aef-2797-45b1abf0b9fb 244 Measurement 18 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1205 fd920e49-faed-5b70-df14-2229020a31d4 244 Measurement 19 3 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1206 bb5b7cfd-398e-c626-b198-c68770b2b151 245 Measurement 15 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1207 36a3552b-4505-286e-8e0d-bd585871f14a 245 Measurement 16 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1208 86361dcf-add7-63c1-e5dc-6281896cc625 245 Measurement 17 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1209 6c331ff5-6323-0909-bd64-0632f536e9f3 245 Measurement 18 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1210 ac878729-e387-bdd5-f928-8d9d78a5a5a7 245 Measurement 19 3 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1211 7837c6ad-46f2-37a2-2770-d83b3b926fd6 246 Measurement 9 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1212 266c3976-36fb-9077-149b-1b7832e7b186 246 Measurement 15 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1213 a7e5c0ff-92aa-6272-0b76-63a84f23a5d1 246 Measurement 16 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1214 120be0ed-7471-e7b3-ee90-dd48c4f4eb15 246 Measurement 18 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1215 a5f45894-ef91-eb9c-123c-6b95fe35acc1 246 Measurement 19 3 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1216 34dd3d5f-19c7-a453-13b6-54f526a4c250 247 Measurement 15 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1217 64be6674-ca00-c169-4513-96404da36a14 247 Measurement 16 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1218 3b73ee28-1051-d09f-9904-dd6a381d0fb5 247 Measurement 17 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1219 ed2579cf-680b-d062-aec2-ddfefa0ddc46 247 Measurement 18 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1220 f7e94190-f987-4611-4c5e-a9942bbee92e 247 Measurement 19 3 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1221 ab42840b-d8ee-7890-fa11-c2ff6cd39e61 248 Measurement 15 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1222 562524d4-1a34-3cba-5ae4-ec42db52feac 248 Measurement 16 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1223 9d0d28e1-f4a9-484f-5fbc-c493cf570313 248 Measurement 17 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1224 3fb395fe-f4e6-f619-5917-de67fc3eb8a0 248 Measurement 18 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1225 23e4dd28-4ef3-9869-bd60-20b4792034ad 248 Measurement 19 3 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1226 73e68478-0f9b-cbde-0d23-4957d281e44a 249 Measurement 15 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1227 fe579826-8d2e-c374-bca1-06d1db48a9db 249 Measurement 16 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1228 5346b3c2-c135-6561-cd09-de50767df0ff 249 Measurement 17 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1229 78f15ff3-9323-a6a1-a2c2-30a1017405a3 249 Measurement 18 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1230 e4990ba0-9170-dc52-ca58-4dd6a4f8b318 249 Measurement 19 3 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1231 b9c55bf1-f794-1c90-e269-3d5978c5a40c 250 Measurement 15 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1232 3bb34f22-49ad-528a-16d4-cbf37482aef9 250 Measurement 16 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1233 810a85a5-621e-9de6-7837-56bb4e698462 250 Measurement 17 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1234 9f5fdaea-992f-d110-827f-201a2e9ce6fa 250 Measurement 18 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1235 e08e708a-4dea-e4de-83a5-44875654feb1 250 Measurement 19 3 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1236 c433b581-3d82-00e7-5f91-dd6bef03f4e4 251 Measurement 15 7 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1237 833a1e9c-9076-b6a4-3a74-eac839bfb67a 251 Measurement 16 7 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1238 6a1a155a-7155-3388-532d-abacfefdbd71 251 Measurement 17 7 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1239 d87ada72-afe2-392e-9bab-3e3059a9ff5f 251 Measurement 18 7 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1240 e765d87c-32e7-5d64-9652-b0e1fa207c1e 252 Measurement 15 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1241 4f91b80b-8071-e371-4e05-c91079d27ffc 252 Measurement 16 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1242 22462fe1-7b01-cdd2-cbcd-e93ef68f7d32 252 Measurement 17 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1243 3dad132f-2a46-42af-2c41-f1f1fec47c93 252 Measurement 18 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1244 2dfebaea-83ac-ab4b-d970-ed53d43a7d8e 252 Measurement 19 3 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1245 c965110b-2ccb-3ce1-db32-53bb6b3cea39 253 Measurement 9 7 \N 1 1987-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1246 f5e04c05-c22e-5f3f-9727-24a3cc7abede 254 Measurement 9 7 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1247 87b551a8-2005-44b9-b1b5-4de8677cc82c 254 Measurement 16 7 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1248 85d9bb4d-81c2-01e5-8d86-16276d0ebf91 254 Measurement 17 7 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1249 aecf97f5-8d26-f193-3f55-e7240fece56a 254 Measurement 19 3 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1250 0d0cf3b3-47ef-4deb-015c-a69090c6a0db 255 Measurement 9 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1251 7692ce22-62e6-3605-d0ca-a1dbc07cc205 255 Measurement 15 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1252 16d4a0af-9488-f7c9-f71f-0a8d3c6fd7cc 255 Measurement 16 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1253 4be22c54-94b4-041c-d6e1-75eb84e59021 255 Measurement 17 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1254 de7c8c79-ac8a-cdf7-90a6-b5ef1ee60442 255 Measurement 18 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1255 41bd345b-3d25-ac5a-a5b3-90ae54c86365 256 Measurement 9 7 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1256 19c4a4f4-11cc-a638-2917-2d19eca18ea8 257 Measurement 9 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1257 52ca0528-8180-1f68-068c-2c84ff70cb6b 257 Measurement 15 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1258 26662ffc-64f7-42df-3fff-d7ab2c5e43c7 257 Measurement 16 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1259 3886b6f2-82ce-a8a7-377f-60c38e4b0673 257 Measurement 17 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1260 01be3df9-ca6b-b897-bf03-793403a80ded 257 Measurement 18 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1261 3f5785e6-e807-9cec-866e-72cddc612070 257 Measurement 19 3 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1262 259dba56-004e-e788-f024-1db03250fd6f 258 Measurement 9 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1263 3ef0dd7f-4765-47be-c548-ada68c604e74 258 Measurement 15 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1264 3350f96f-9e02-85c7-a373-253e477ecc91 258 Measurement 16 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1265 077aa937-d18c-7430-2298-fa06813c5fbb 258 Measurement 17 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1266 32f81c58-5a44-14bd-9e09-70ae1678f2b6 258 Measurement 18 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1267 7e84019a-fd9e-c763-11f4-e3b9f36bb2c8 258 Measurement 19 3 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1268 1ff1097b-16e0-88dd-c03e-b39416159b97 259 Measurement 9 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1269 d9c91830-59fc-7d1b-2e26-99916b05f455 259 Measurement 16 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1270 172de150-9483-aec8-8e6a-8f7f09150651 259 Measurement 17 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1271 84b690e0-5901-567a-7db4-f07751fbafcc 259 Measurement 18 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1272 00af685a-9c07-84c7-dd28-ec19db763038 259 Measurement 19 3 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1273 43203394-666d-9751-84c4-0a853cab8e9a 260 Measurement 9 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1274 596349ba-6dc8-7c54-b66f-6e4b0c0f38bd 260 Measurement 16 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1275 b35d3e7d-b2cd-2424-5f19-6e0bd2942aab 260 Measurement 17 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1276 b81b6873-d2b9-f5cc-c160-5f6820e3e5fd 260 Measurement 18 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1277 edcc6f45-aeae-f448-b907-a58e7e61afc7 260 Measurement 19 3 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1278 5d82e569-f8a5-b11a-fb30-5d9d85cb0fcf 261 Measurement 15 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1279 5a8ef0e4-f67c-591d-9017-f78f76aff164 261 Measurement 16 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1280 35bb1e4f-9e5c-30c3-4a50-fff7874ebb82 261 Measurement 17 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1281 d75e1149-467b-a4ae-2116-34b0eeb134e4 261 Measurement 18 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1282 8fde38dd-0530-81f7-f070-d5920dd6f38d 261 Measurement 19 3 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1283 69baf022-5ced-fc2f-60e8-632c0bfaa5f2 262 Measurement 9 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1284 349d623a-91e4-1eea-fd06-f4d8847f27b8 262 Measurement 15 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1285 80737529-bdcb-95bd-c802-e3d2a26c2a93 262 Measurement 16 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1286 9a9c2d29-0db1-6c81-b897-3090ae7287be 262 Measurement 17 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1287 4c6af629-830b-f74d-9270-5413ba33e2ce 262 Measurement 18 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1288 d8c0b125-4929-663c-a80a-cd3261de6dea 262 Measurement 19 3 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1289 dac4aed6-50bb-6c5b-a81b-82c0a79fcb4d 263 Measurement 9 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1290 bdd1085a-2950-a7e2-c549-c8f6e307b739 263 Measurement 16 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1291 6061fa7c-3634-822b-de82-badcf34d0a65 263 Measurement 17 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1292 1aa40c47-d3a0-62fa-8c59-2f80e7868bdd 263 Measurement 18 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1293 805f58fd-9808-7273-3122-975a53800af6 263 Measurement 19 3 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1294 7724a753-b638-b759-b670-3cde221a5e2a 264 Measurement 9 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1295 d8e902b2-a293-a686-5ecd-622693909ee0 264 Measurement 16 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1296 8ed86bad-6d49-f94c-16a6-ce96ac86caab 264 Measurement 17 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1297 6fff1dfd-9e57-df12-9d07-35b22b60f276 264 Measurement 18 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1298 b80a4551-5595-c460-0f61-c4dd4286cfcb 264 Measurement 19 3 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1299 534ef4ee-8b99-31ab-7a34-6554e69cb44b 265 Measurement 9 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1300 f86d3231-6f5f-3fae-b4b4-41a7d1e044dd 265 Measurement 15 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1301 4778a692-fb4c-9b1a-9437-74a171b03449 265 Measurement 17 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1302 21dc1fb1-2851-b97f-d810-96bcee846c16 265 Measurement 18 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1303 5747abe4-3d38-2405-c992-b6ed942a4bc2 265 Measurement 19 3 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1304 c134edb4-a389-47c8-5455-7ebdc263ad41 266 Measurement 15 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1305 754423c5-7679-22ec-1b4d-b10e71f5e2f6 266 Measurement 16 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1306 0a4bf20f-83be-3251-3b1e-787c21deb492 266 Measurement 17 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1307 b7450381-a452-700f-3077-55ec06d8aed6 266 Measurement 18 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1308 f0df5724-8f0d-6897-9d8a-a0e83341af6b 266 Measurement 19 3 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1309 142a9296-be32-4f42-a59b-25b7eb916af6 267 Measurement 9 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1310 a8477622-b995-920c-0e4f-70602658c483 267 Measurement 15 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1311 f416c341-82ca-ee7f-614b-6d4ceebfd2be 267 Measurement 16 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1312 550fd0dc-c850-38e4-1f26-80b9fcdcdfaf 267 Measurement 17 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1313 49adc82d-d06a-3f93-86fe-33a2f95f349f 267 Measurement 18 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1314 fc0d4718-2b35-c6b6-2f97-cae25618e102 267 Measurement 19 3 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1315 67b9fd32-0b5b-c306-fef1-cc723388a6ab 268 Measurement 9 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1316 8cb529a5-7bec-4295-50a5-fcb8c15f1e15 268 Measurement 15 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1317 dfc3347c-4376-71dd-2175-a4b17df8c975 268 Measurement 16 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1318 977dabe1-26a7-9cca-8a51-c2e55d73ac4f 268 Measurement 17 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1319 1965bc7d-8831-b7bb-d9d6-d305ebef2110 268 Measurement 18 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1320 da2b1b41-db17-4ca1-9546-511452ea613e 268 Measurement 19 3 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1321 37c17fd3-711e-446a-9758-b4012c1ee505 269 Measurement 9 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1322 5097daac-085a-60b9-ad57-a5b139cc2fe6 269 Measurement 15 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1323 c09cadf8-8b2c-c155-7740-d98e75ea882b 269 Measurement 16 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1324 adebc49b-ca88-b797-fed7-487273d5f3c3 269 Measurement 17 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1325 a011c333-fbd3-6c8a-9c58-d206ea44c155 269 Measurement 18 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1326 9d0e20f4-bdc9-8b35-35a5-b278db19e4f9 269 Measurement 19 3 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1327 cf9d1b90-d492-cb24-c1e7-4aed43939be4 270 Measurement 9 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1328 50808111-be91-0cd3-1ea2-a814d59401df 270 Measurement 15 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1329 fb7fd882-811a-3b0c-b048-703517751810 270 Measurement 16 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1330 2af9d790-7702-122f-ef1d-29bd35b58a15 270 Measurement 17 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1331 8fee422f-0c14-2764-27f6-7132432dbf1b 270 Measurement 18 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1332 73e6c169-358e-50b5-317a-5ae88e2dabd8 270 Measurement 19 3 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1333 0e58b146-9875-44dc-f566-5fe28c80b509 271 Measurement 9 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1334 3bafb7e9-e15c-a4ff-c338-2204a5fc7366 271 Measurement 15 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1335 b69f68d6-ba48-0dbb-e76b-ed9c098d0e2f 271 Measurement 17 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1336 6d09808e-469e-42c5-2e16-93a6ec91c680 271 Measurement 18 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1337 e6954c82-c247-56eb-e752-004bdc929728 271 Measurement 19 3 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1338 a9c6e011-6a34-47ac-16d4-6b25fc42d7d3 272 Measurement 15 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1339 6e9fd040-ddc5-b2d9-b089-5b4f3daf1c41 272 Measurement 16 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1340 90b9d562-23a9-44f2-65a1-3e1b8538eb7e 272 Measurement 17 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1341 1cd632b2-6749-50a6-23de-523de1476c6e 272 Measurement 18 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1342 fdc96956-2b2d-4999-3b5e-5da124635a0b 272 Measurement 19 3 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1343 8f6cc824-e561-3818-ed21-00646079e8db 273 Measurement 16 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1344 ba00fc77-2fb4-0c87-8b64-67428880f83b 273 Measurement 17 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1345 91c27221-7ad9-25f2-67d8-e992cd6eacae 273 Measurement 18 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1346 5e901a6e-c313-a73d-d5ab-e334bdac3a67 273 Measurement 19 3 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1347 95cf1e2d-574b-0828-0786-019ed0d78bcf 274 Measurement 15 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1348 667d5dd7-b049-93f9-7843-c48ad30c80e4 274 Measurement 16 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1349 e0e26d94-9981-3afc-8151-bc9ab5253620 274 Measurement 17 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1350 7c9bba50-a264-2227-4db5-efb47d10e3cd 274 Measurement 18 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1351 93f20038-a466-30b8-7bcd-fbb557d297e1 274 Measurement 19 3 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1352 94a0932a-a7a1-af88-35e7-cda0a8d9f30e 275 Measurement 15 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1353 809b55b2-192e-e846-3464-bb717db632ff 275 Measurement 16 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1354 f551ac84-1b3d-ccd0-5466-30df8e0df874 275 Measurement 17 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1355 ac99d87d-f0e0-7888-420b-d5260ab0b458 275 Measurement 18 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1356 b2265169-01e6-daad-5994-43390233605d 275 Measurement 19 3 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1357 29d96d58-37a6-d77d-3b61-eccad4c116c6 276 Measurement 16 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1358 cb8ba611-c4a0-0c21-b7de-8b58a3447148 276 Measurement 17 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1359 f5ea23d3-88c2-7e0f-83cf-e8c4b4d6150b 276 Measurement 18 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1360 b8bcd292-b9a0-c854-4c64-f939629deec4 276 Measurement 19 3 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1361 e017aab0-fe0b-23b1-02a0-af8df2aa2f6c 277 Measurement 15 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1362 b20aca7e-7e4c-9130-e36d-b01ee9175ba7 277 Measurement 16 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1363 ef7bdc31-26a8-c733-6482-fd3feab0b0c4 277 Measurement 17 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1364 806e188b-700e-01b4-135d-72231c8b40c7 277 Measurement 18 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1365 b41edc93-f85e-dfbf-e205-89839c1088b6 277 Measurement 19 3 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1366 de8090f5-f6fb-3fda-fad9-262b228e59a2 278 Measurement 15 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1367 653353e8-0e0b-0dff-ac4d-c03f9210dcc0 278 Measurement 16 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1368 36fb283b-e403-b839-da44-9c8ae6e70eba 278 Measurement 17 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1369 fb663435-3872-6024-c690-46afb59ef956 278 Measurement 18 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1370 bc454ddd-8f3e-fdda-36b4-bcacf0277bfe 278 Measurement 19 3 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1371 28b7491e-2b2b-a65c-e8a2-f997fb27a782 279 Measurement 15 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1372 6dbecc23-f988-3450-fa8b-64ecc2971759 279 Measurement 16 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1373 7d67e63a-f7c2-36c9-8960-408dfeb01c26 279 Measurement 17 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1374 4a1cf472-17c0-b8b4-6513-4853dbe6f278 279 Measurement 18 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1375 b80185c8-32c0-8629-e2f0-9649a687989f 279 Measurement 19 3 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1376 fe544f5e-d1db-8f75-eadc-11d5e3e59c4d 280 Measurement 15 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1377 b7d5f67a-4740-d1dc-08fc-65708ed49cc0 280 Measurement 16 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1378 b99b0c7e-3903-82ff-4479-2e1d1bb6bacd 280 Measurement 17 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1379 e9fbc609-d265-5117-ca1c-a2fb431f2c14 280 Measurement 18 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1380 1d1121fd-e790-dbb6-8d22-85d060e4ad14 280 Measurement 19 3 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1381 1508a407-38f9-f24b-2c77-706b69e17e6d 281 Measurement 15 7 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1382 1baf522a-ac10-6326-233c-344978ad1876 281 Measurement 16 7 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1383 fc5b6668-060e-863f-9fb8-b90582456e14 281 Measurement 17 7 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1384 3dc82769-ced6-52d2-8f56-b800b420057c 281 Measurement 18 7 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1385 560e0c19-72f3-e3f7-3a1c-13ffbcb8a43a 281 Measurement 19 3 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1386 93942a21-8383-bd5c-d319-76ac4b730a30 282 Measurement 15 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1387 557246d5-7c27-d688-33e8-f018cbc82d9f 282 Measurement 16 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1388 b753e0d0-4cd4-1efc-3939-69044de8cad8 282 Measurement 17 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1389 864b5be4-86f3-9873-502a-c515c2d0764d 282 Measurement 18 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1390 022d8aac-723e-7eaa-c7ba-92cc319d7a5d 282 Measurement 19 3 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1391 d29064bc-5fcd-f384-3fcb-aea77c5f7881 283 Measurement 15 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1392 995282fc-d498-35b4-d84f-e51edd373ef0 283 Measurement 16 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1393 497308c6-f34a-f5b3-2b39-182603f94a48 283 Measurement 17 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1394 e0d8cca7-2562-cbdd-a939-1a785b2f4d03 283 Measurement 18 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1395 d4cb0a27-cf9b-8053-19bc-db148f7c6d24 283 Measurement 19 3 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1396 202bdefc-5624-1c53-37dd-c1f61c5ef4e6 284 Measurement 15 7 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1397 887e43b7-078d-0022-51d1-9101cafe72cc 284 Measurement 16 7 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1398 2ea1f7a9-1e58-aaed-dde6-d9e106d0fcb3 284 Measurement 17 7 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1399 5889e3ef-4630-8427-99cb-df8d8f019564 284 Measurement 18 7 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1400 22f0f7e2-b88d-c9ae-fcf5-9714de9c3e8b 284 Measurement 19 3 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1401 56a8d086-6b5c-eaa3-e170-f383cb7322b5 285 Measurement 15 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1402 5f3e39d1-87bf-de2c-6054-6fd9eb089837 285 Measurement 16 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1403 575eb2e6-3a87-f8c6-0905-c048aa315b35 285 Measurement 17 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1404 c0c7f2f7-22dd-1ed0-5519-a38e31b2fb9b 285 Measurement 18 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1405 cc70cca2-38dc-2a6a-8ec1-175d563d803d 285 Measurement 19 3 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1406 d5e50480-fed2-871c-fd0d-8b8e051b0107 286 Measurement 15 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1407 10b49fe8-dd53-76d9-3215-094273bb911f 286 Measurement 16 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1408 1e164b15-56b5-ac15-6099-a9e5dd6bbd08 286 Measurement 18 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1409 ff514205-4e98-eec2-7cc9-87e89474f7e3 286 Measurement 19 3 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1410 f5eb3276-a48c-667b-8f79-ebab39d67586 287 Measurement 15 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1411 0377a044-1ffe-3c52-824a-97f3922abb54 287 Measurement 16 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1412 afde8118-55e1-4b53-c4d1-108653af09c0 287 Measurement 17 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1413 8d6060b4-54fc-5556-a03b-80e4d12179e0 287 Measurement 18 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1414 93d0fd6e-d1be-7868-d9e5-522474d22be8 287 Measurement 19 3 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1415 8fc8b74a-9147-18c2-69ab-423c9a24c0b9 288 Measurement 15 7 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1416 b75c3f3d-db28-3e4c-f518-b0be7ad26bb1 288 Measurement 16 7 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1417 ef07f8ca-3876-b16a-8ea5-74b48d7cfe4b 288 Measurement 19 3 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1418 af7c9ca0-fb11-480f-98a9-aff657d4c248 289 Measurement 15 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1419 b70a1979-946b-e0c6-50de-de1fea9c4a39 289 Measurement 16 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1420 99ff11e1-5463-e0a0-0201-afc05cf2b4c4 289 Measurement 17 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1421 b7752e2a-3a12-4ba8-3911-d045ec8cf4a4 289 Measurement 18 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1422 6bae8c17-d4a9-a801-5b23-71b4ea5ea266 289 Measurement 19 3 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1423 9b520ad7-d1d7-a38e-4d65-6ce79d67feb0 290 Measurement 15 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1424 dfa6a660-2edc-1ef3-f71c-727dec0fa73c 290 Measurement 16 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1425 4d637cb9-9229-32ef-9c6a-a2b972a4edd3 290 Measurement 17 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1426 13e064cf-16f0-b5d7-a6fa-7c5af614ae9a 290 Measurement 18 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1427 e6d1ce63-5230-521c-0adf-73b5d47932ab 290 Measurement 19 3 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1428 72c41b88-716b-3698-3d15-fe7729e09eff 291 Measurement 15 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1429 8f7e502d-3879-857c-fb65-fec21893c41a 291 Measurement 16 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1430 dcd3ff7b-73fd-aefd-810f-9331673dd068 291 Measurement 17 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1431 1a1b1ed9-b414-38c8-4b83-3afb3666dce1 291 Measurement 18 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1432 d2980a4c-c0a8-6275-fabe-9f1cc36a8848 291 Measurement 19 3 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1433 a70abea3-0cb9-f469-36ad-485dfca9a538 292 Measurement 15 7 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1434 61794664-9f68-b75c-81ee-95e9306b5f4a 292 Measurement 16 7 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1435 aa9f454a-dbdc-3d07-5a5e-dedccffea063 292 Measurement 17 7 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1436 ae7f0a9a-5cc9-0f44-fa9d-94a7dd5c265c 292 Measurement 18 7 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1437 87db8f4b-b82b-e628-52c1-00979bd70dd2 292 Measurement 19 3 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1438 f64e1b1b-eb14-9a15-853e-95bb6aa8d56f 293 Measurement 15 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1439 e90d77cd-c7ed-bd5d-abb4-208a05f54de3 293 Measurement 16 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1440 b132cc9c-cbf7-7f7a-dde7-8c6d17be97d2 293 Measurement 17 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1441 2e997afd-9fbc-9cb8-8b4e-580b71ef9a7a 293 Measurement 18 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1442 aed51dcc-fd9e-ee7a-b769-70a802d4eabb 293 Measurement 19 3 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1443 3fade55e-9fc2-566b-9843-2b0cf4e3f79f 294 Measurement 15 7 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1444 8c286219-b9b4-c868-1fc9-8ddf1e9e4b38 294 Measurement 16 7 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1445 a45daa57-059a-4098-bc01-c30ac0b6c309 294 Measurement 17 7 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1446 6941d45f-8f31-2b74-26fb-ee1f13dcad92 294 Measurement 18 7 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1447 a5028e8c-32db-1406-0b1e-b048c9382cae 294 Measurement 19 3 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1448 00c694d4-6d25-6451-ad50-777f70d46a92 295 Measurement 15 7 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1449 d3251f2f-578c-b298-0b50-72a462acec12 295 Measurement 16 7 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1450 8cc9a03e-e1f2-a768-3242-dfe63165f1b0 295 Measurement 17 7 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1451 4d150365-51d7-1f0c-b957-1976899f3518 295 Measurement 18 7 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1452 1b2b2b2a-3f73-2a7d-dff8-f9319918becc 295 Measurement 19 3 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1453 d8c8bb80-f467-2567-c5ee-a749005a2237 296 Measurement 20 6 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1454 4b3e61ef-fc40-1289-cad7-9717638a0526 196 Measurement 20 6 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1455 974dbb23-0a82-438a-1c11-fe17a54bd5c9 296 Measurement 24 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1456 8e99c5b2-7f83-cbe0-2721-5777238e2c3b 196 Measurement 24 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1457 bec96dee-0ec5-6760-23d4-4dbef7b912a2 296 Measurement 21 10 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1458 1093fe92-84bf-ed85-1f30-7b3914deaaf4 196 Measurement 21 10 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1459 aecbd936-960f-37b4-6b6b-c10225d442a1 196 Measurement 22 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1460 ecdfbb0c-fb48-0987-d37b-6f6a9e6dcb0f 296 Measurement 22 7 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1461 de487213-bade-88e5-4503-4ea3f801759d 296 Measurement 25 8 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1462 233bb4c9-c238-1abd-ce10-9350c61a14b4 196 Measurement 25 8 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1463 63deb6a6-142d-82cf-ee5a-cbef928c227f 196 Measurement 23 4 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1464 0232e5bf-0b2c-d75a-cc08-87ab16b0dbcb 296 Measurement 23 4 \N 1 1983-01-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1465 3a4f9def-d9b4-8f30-82e2-0346ec6459d1 297 Measurement 20 6 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1466 36858b82-2aa5-3e4c-e7b9-d1b4fd74d18f 197 Measurement 20 6 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1467 1202be9d-88f1-45d0-1eb7-7feebb787ab3 197 Measurement 24 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1468 0b479d4e-ffb8-a9cc-8308-d493cb4e2111 297 Measurement 24 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1469 a9ba040d-1045-329d-c028-5c0a7fe7f631 197 Measurement 22 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1470 ba91131a-051a-3170-2e2d-4cadf2a71d22 297 Measurement 22 7 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1471 e1231fd0-86ee-ceb8-b021-ff3ddec1ad7a 197 Measurement 25 8 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1472 c0415f47-f477-8c5b-f927-ebd68f07ed8a 297 Measurement 25 8 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1473 726722fe-421d-0afc-6681-0d9867e1a794 197 Measurement 23 4 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1474 74d76da4-5954-8d9e-4f59-b9308bfebfd4 297 Measurement 23 4 \N 1 1983-01-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1475 849735a0-f13f-ef70-f453-a2b97f58d9b6 298 Measurement 20 6 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1476 0be192a5-7093-7990-208a-74b0264d4768 198 Measurement 20 6 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1477 f1850dff-1cb4-21d5-89ba-f74e49a636cd 298 Measurement 24 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1478 833a2255-562e-b984-9b68-0f9575693cfe 198 Measurement 24 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1479 42f3920c-3d03-61eb-5faa-3086727c6364 198 Measurement 21 10 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1480 f7886fbe-aaa4-704a-d4e6-8e6b92fb1894 298 Measurement 21 10 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1481 2b6eb5a0-6151-8fcb-9bee-dfc0f5260644 298 Measurement 22 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1482 ae27e2b5-1789-f70b-7e64-f7af1f53c61b 198 Measurement 22 7 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1483 f05ab902-a927-e6b8-fca1-8c084a0fdba7 298 Measurement 25 8 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1484 545361bc-786d-aaf8-a030-49e9c76b8db7 198 Measurement 25 8 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1485 a33e2dbb-afe9-976c-6d77-d8b8bc10745c 198 Measurement 23 4 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1486 43d1a4ff-8822-aca2-e49b-b406a379b64f 298 Measurement 23 4 \N 1 1983-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1487 2f3e799b-8ab6-c58f-2920-4447b4054e69 199 Measurement 20 6 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1488 4decace9-b0de-ddad-e005-544b025389db 299 Measurement 20 6 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1489 4f8edf62-bba4-0daa-f855-e0faafd77b6f 199 Measurement 24 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1490 63809fe9-3f7c-37f4-b1f1-aa7babd34a57 299 Measurement 24 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1491 798ec493-2c98-1e1e-0777-e4e9a8c6efb0 199 Measurement 22 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1492 25c154c3-534a-f435-6d27-4eca33568d0e 299 Measurement 22 7 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1493 db47ebc6-b28f-8451-4349-4a997de4db7f 199 Measurement 25 8 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1494 7f33dd8d-3b9a-ec81-7665-3657c3a0df1a 299 Measurement 25 8 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1495 bdb785fc-2242-9fb1-84ab-89b131b61c95 199 Measurement 23 4 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1496 2ce2b150-2d27-7618-4c8a-3ebc394b5462 299 Measurement 23 4 \N 1 1983-02-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1497 1caedd20-76f2-e293-ece2-a56dd5cbbbc7 300 Measurement 20 6 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1498 04abaec8-8299-a3a9-0373-d4b951752f26 200 Measurement 20 6 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1499 20568d0e-6352-8e7d-b0ea-2ab59384b95c 200 Measurement 24 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1500 fe229af2-02b1-8538-6d9e-7e7a9614160e 300 Measurement 24 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1501 5b644d85-6e79-634c-cbcd-587faf99bb52 300 Measurement 21 10 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1502 c410826a-feb6-1dea-9d62-b50bb54bc8d7 200 Measurement 21 10 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1503 16880d23-4ad0-5bc9-34f4-0e9b629997b1 300 Measurement 22 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1504 a83f8bb4-e646-50be-f7f9-00f47c668056 200 Measurement 22 7 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1505 fcb45807-efb4-1b83-fa95-ccdc8267fdc4 200 Measurement 25 8 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1506 dbf34c22-a3a5-ae17-910a-76142b6f607a 300 Measurement 25 8 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1507 7ee40548-7ec0-488a-0eab-eebe87d93245 200 Measurement 23 4 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1508 85de7942-9206-f018-3256-3da42cb78c0b 300 Measurement 23 4 \N 1 1983-03-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1509 23a073f5-2835-f252-8e7f-b04f28f2ab5d 301 Measurement 20 6 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1510 acc26fd9-8f25-2e2a-3733-294aa2f754c4 201 Measurement 20 6 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1511 d57b3e58-3454-c0e2-0540-6e55ba8f310e 301 Measurement 24 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1512 0ef49f1b-2a29-bfbd-d8cd-09ba67ee1c20 201 Measurement 24 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1513 75e0b2ca-5e7d-7020-d9fa-06c0f22e651b 301 Measurement 22 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1514 29fde363-5cad-1e1f-e57a-2efee498b700 201 Measurement 22 7 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1515 7ad0cc49-452e-f8cd-0f58-2da2c6aee2fd 201 Measurement 25 8 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1516 5dc77a40-f675-301c-74d0-512d1d3ca4ed 301 Measurement 25 8 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1517 4e4fe884-6378-4035-ff36-4549b2570962 201 Measurement 23 4 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1518 dc609f1a-3a57-121b-7e54-0e5b7a2af89c 301 Measurement 23 4 \N 1 1983-06-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1519 ee945ad7-c5bd-c73d-e413-1665c37cbd7c 302 Measurement 20 6 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1520 84b65165-23d9-c121-386b-d40cf061f0f6 202 Measurement 20 6 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1521 2aeff66e-16ea-57d9-f834-5fe99b4e75b1 202 Measurement 24 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1522 9648f986-c72b-c39d-6367-cf4ff065eb9c 302 Measurement 24 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1523 08620574-494a-2e84-81a7-0ee36f110973 202 Measurement 21 10 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1524 155028de-eeb6-0a03-8d34-4740bd53cee6 302 Measurement 21 10 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1525 6583f8e4-fa1c-70b6-58c0-f89c414b2a77 302 Measurement 22 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1526 43245152-0066-84fa-770d-2058bb1c8e28 202 Measurement 22 7 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1527 7a992ea4-4bd5-c1eb-db26-38446677ff89 302 Measurement 25 8 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1528 c5c30b87-1ef2-b1b5-8bbb-8ce6d56ef52c 202 Measurement 25 8 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1529 f236b6ad-54d3-ee3e-5030-4e2b326ba53c 202 Measurement 23 4 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1530 94514788-ef2d-eefa-0ae5-2cdd0b9e8300 302 Measurement 23 4 \N 1 1983-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1531 7ddcb0d3-9063-3f85-0c56-424cec4644f1 303 Measurement 20 6 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1532 b29293f6-d2ec-20ad-e4c0-0f115170deeb 203 Measurement 20 6 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1533 fb0c79b2-1e58-ecc2-532b-fa447727349d 203 Measurement 24 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1534 cecd8382-3a18-425d-550d-43a10095fb89 303 Measurement 24 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1535 90bd69c0-4394-8274-b6df-37d71d49d590 303 Measurement 21 10 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1536 d62104ae-0660-2b29-169f-3bf78cff61ed 203 Measurement 21 10 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1537 bdfd44e5-0e95-3db2-4573-6f70b4b7bd28 303 Measurement 22 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1538 6d43353c-b865-5716-3088-ee02e21d4e0c 203 Measurement 22 7 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1539 a01349f8-90be-d7fe-25c4-38e1ba1e248c 203 Measurement 25 8 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1540 bd6bfbc3-5a0e-d122-ef8b-55e6d06515bc 303 Measurement 25 8 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1541 47ff1d84-0429-b99d-2226-368eeeb8a926 303 Measurement 23 4 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1542 36ed4a29-a189-18ed-9232-a894a650aeac 203 Measurement 23 4 \N 1 1983-08-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1543 61d2a270-c146-3e08-8619-0b9754fb285f 304 Measurement 20 6 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1544 ba3f3b42-3018-0f54-803e-8e11a2765970 204 Measurement 20 6 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1545 014cf94d-1823-f2ad-a24a-c37562398a5a 304 Measurement 24 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1546 420c6222-36ed-9f73-4f4b-8dea39777c93 204 Measurement 24 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1547 d21733b4-5516-3992-c9fb-a44c7acff28d 204 Measurement 21 10 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1548 3cff1ae6-90c7-cdea-3a3a-7d0fa333bd53 304 Measurement 21 10 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1549 264ea7fd-4241-775a-f185-2040e11b0b61 204 Measurement 22 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1550 641619dd-2850-bd8a-bdcd-c63df3a7d865 304 Measurement 22 7 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1551 e4ecf101-83ec-d879-19d3-9ce91d09f879 304 Measurement 25 8 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1552 bb8e069c-0f6b-367c-38d2-88a2aacc744c 204 Measurement 25 8 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1553 2aaa945a-26ba-6c95-ed3a-45e8240d0794 304 Measurement 23 4 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1554 b98c71b2-6632-0809-3160-39ede239d0fe 204 Measurement 23 4 \N 1 1983-09-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1555 64a9a5a0-99c0-f95d-12dc-90891cf4eb26 305 Measurement 20 6 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1556 b1e7a92f-a798-324d-c7d3-f3a4670e7c02 205 Measurement 20 6 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1557 f1d31851-5ab3-a0ef-ca98-6e22d176a4a2 305 Measurement 24 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1558 ab6b99f9-5570-adc6-88cb-02d70f017986 205 Measurement 24 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1559 155dd559-e121-95bc-9aca-3abd4e2eaef5 205 Measurement 21 10 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1560 9bce951d-8c85-8a18-ea0e-4a0ef446d836 305 Measurement 21 10 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1561 41589d5f-6151-04ed-8566-b23b7c4a135b 205 Measurement 22 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1562 d52bb9ec-d832-f034-da28-411e22a3d781 305 Measurement 22 7 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1563 202b20e5-4b4c-e4b6-2a61-a31e4c1a21b8 305 Measurement 25 8 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1564 626312cb-c40e-9e96-402d-998b1741f0b3 205 Measurement 25 8 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1565 058facc3-9674-7b09-97d2-c2bf919aae4e 205 Measurement 23 4 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1566 74dc140f-5658-42ec-d9a3-b4f74a1c456e 305 Measurement 23 4 \N 1 1983-09-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1567 54e1070c-8226-135b-bffa-b5c9e1241473 306 Measurement 20 6 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1568 868c312a-1b19-ee90-26f9-7de62a3e7bcd 206 Measurement 20 6 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1569 390f916d-e993-5cf6-a8e4-3269abca564e 306 Measurement 24 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1570 01f68979-5ca8-5227-d9e4-35334fb8e9e0 206 Measurement 24 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1571 5d13c533-5a58-9562-8eca-b1c7120911ad 306 Measurement 21 10 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1572 b16585ec-5252-2635-7617-58a4db417acf 206 Measurement 21 10 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1573 ea96614f-6e44-fac3-bfb1-24000a39da6c 306 Measurement 22 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1574 71df903b-4eef-4020-9bbf-4ff0138e0674 206 Measurement 22 7 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1575 a7883dc3-9819-e18a-7538-a92e77d08969 306 Measurement 25 8 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1576 1428d371-2a85-d0fe-2c13-12c24986ec2b 206 Measurement 25 8 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1577 590030f7-baa0-a840-23a5-36fbb5979a02 306 Measurement 23 4 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1578 5d1baeef-75b4-3682-e99c-6bc024a22369 206 Measurement 23 4 \N 1 1983-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1579 fa2a9991-6a01-a07c-0583-83813bab8b59 207 Measurement 20 6 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1580 f0ca8ba7-76ac-a35c-a768-4049e0c1afa8 307 Measurement 20 6 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1581 bced5d83-5933-a7a2-1fc3-49e98100375c 307 Measurement 24 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1582 cd619484-2af0-8b34-2f52-eb1dc69b85e5 207 Measurement 24 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1583 95d749f5-0dbc-4769-8a0a-145f765107f8 207 Measurement 21 10 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1584 e01df1a7-eca3-e96f-8c44-1791270554ff 307 Measurement 21 10 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1585 f2a2b133-b1ef-b4f0-eead-2e0348ebf66b 207 Measurement 22 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1586 5df467e7-8bcd-47df-97f3-9cfa87943403 307 Measurement 22 7 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1587 ef1e5ae1-978d-23cd-5b8e-f2ce95f42cb6 207 Measurement 25 8 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1588 6a617081-40e1-3722-f57c-5ad8569f6f82 307 Measurement 25 8 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1589 c0336eee-d1b8-a6e6-13af-ecbc02bbfede 207 Measurement 23 4 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1590 5a9f5ac8-858d-9d65-66ff-732e3768583e 307 Measurement 23 4 \N 1 1983-12-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1591 1408ed27-6099-5574-ca68-68078945096f 208 Measurement 20 6 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1592 4ca654e2-27bc-6d15-4da2-852c1fc620d6 308 Measurement 20 6 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1593 57824c86-29e1-891e-c2d3-7ecb0f8e4fb7 208 Measurement 24 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1594 3267816b-3d34-8cba-449a-b613ec01f762 308 Measurement 24 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1595 9ac319a3-85ce-5de3-142c-a85041890c5a 308 Measurement 21 10 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1596 d7ea1ad8-f7d2-1407-2f28-bc0ce1d9d2e6 208 Measurement 21 10 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1597 9d76890c-90c4-8089-80f6-939e8ff6daf9 208 Measurement 22 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1598 52e16599-ef4e-8da0-2b84-43db23d6402f 308 Measurement 22 7 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1599 cd5a8c89-7168-9015-ab55-67860de64587 308 Measurement 25 8 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1600 512dcc57-7bc1-4a06-9ab8-76a026fc9a5b 208 Measurement 25 8 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1601 246fdd13-6482-d917-add1-c5a08e4669e7 208 Measurement 23 4 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1602 1337a527-6285-fff3-fce5-d68169665e5d 308 Measurement 23 4 \N 1 1984-01-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1603 74de1022-e366-daad-b526-db3a6555d104 209 Measurement 20 6 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1604 6ecebcc4-ad17-693f-2472-69c34053ae28 309 Measurement 20 6 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1605 46e5e618-623b-43d6-2754-53dd859c1989 209 Measurement 24 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1606 66e11d71-de3c-0192-7058-4005f6629711 309 Measurement 24 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1607 b14841da-8f3e-58f5-6658-df8dc9f08024 309 Measurement 21 10 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1608 4779f3dc-9b79-82f5-b2f5-2aa9b4dde5dd 209 Measurement 21 10 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1609 98b2332b-be1b-68bd-ebaf-d3b7bff3dd2e 209 Measurement 22 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1610 4d8c86d5-f3b5-8594-4bcc-ec2b4ec1845b 309 Measurement 22 7 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1611 2fde44dc-b61f-83c5-195a-51e244bc284d 209 Measurement 25 8 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1612 389f4687-8090-c5a0-8070-acc31245beb8 309 Measurement 25 8 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1613 78cb6a33-6970-c27d-958e-ae4b36e0c47b 209 Measurement 23 4 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1614 82c5828c-fba2-d667-b720-26b04d1af354 309 Measurement 23 4 \N 1 1984-01-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1615 3f5ff8b5-8004-e382-e5ae-d0fb8b948b96 210 Measurement 20 6 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1616 a764adf0-0aff-8924-d68b-40a7887631ce 310 Measurement 20 6 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1617 0605b3ca-35fa-6a79-2740-204c32d171b4 310 Measurement 24 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1618 fd9edea9-45c3-f502-a47c-aff24733566d 210 Measurement 24 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1619 31e0d00c-7f63-a5f3-9acb-5950cfe80baf 310 Measurement 21 10 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1620 3d11f91e-cb07-785b-dcc0-8adfd307d062 210 Measurement 21 10 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1621 e3c1c45b-d5eb-0345-6781-8c32db9ae38f 210 Measurement 22 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1622 308246fd-d063-ca93-ac8d-dd84ee0ad903 310 Measurement 22 7 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1623 c022f72a-22ea-3828-9b03-eda030faf5d1 310 Measurement 25 8 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1624 1bd1eabf-d7c8-b6ce-ab40-0b6bff93bb5e 210 Measurement 25 8 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1625 c3461394-9945-eccb-db70-8a66b4d0bafc 310 Measurement 23 4 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1626 ad3f776a-77ce-856f-8182-efc227e1c19d 210 Measurement 23 4 \N 1 1984-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1627 95b0fbff-3c63-48e0-41d6-1abbab750cc0 311 Measurement 20 6 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1628 584cd837-6e19-761c-c9c0-f7ab2179886f 211 Measurement 20 6 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1629 2e295dac-6c33-6775-4e4e-ca85e8c39908 211 Measurement 24 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1630 7415c737-55c9-6abd-75b3-58334b721b2b 311 Measurement 24 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1631 c219deab-56ea-ca79-6673-bb3c2e84521e 211 Measurement 21 10 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1632 7c12ab89-9b57-3c5d-7d33-128cc655d182 311 Measurement 21 10 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1633 3bf55be8-2123-999d-ce21-c7658b6a0b5f 211 Measurement 22 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1634 bae5c3ed-dd07-c3a9-3dcc-5d454c13ceea 311 Measurement 22 7 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1635 e1f36a15-65ea-b121-68a8-9c8ac0782465 311 Measurement 25 8 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1636 e440d4f0-f7c1-2af1-0aa7-7a2de73dea21 211 Measurement 25 8 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1637 eb01a749-1286-575f-db12-54f8ac631c0d 211 Measurement 23 4 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1638 198da5e0-a7bd-9f52-03f5-a45df2bdf076 311 Measurement 23 4 \N 1 1984-04-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1639 2255d31f-99af-6316-eba7-fc0908e338e6 312 Measurement 20 6 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1640 c318fdf2-61d4-d3e2-2489-999f705c2880 212 Measurement 20 6 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1641 6057046b-a8dd-cc65-552f-772b3816bc8c 312 Measurement 24 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1642 ba0dc404-4fcc-0bc2-bdaf-2c8ee72a21cc 212 Measurement 24 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1643 89b56324-550d-7b43-90e6-5cc7d2420ccf 312 Measurement 21 10 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1644 df85ce13-f0df-c4ff-ab66-f54433904c6c 212 Measurement 21 10 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1645 54af5dcd-e98b-b7c9-c80d-ed8bd9c5acbf 312 Measurement 22 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1646 58ccc130-bf53-18c5-1f55-d3e9d6818ce1 212 Measurement 22 7 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1647 6bc26bc9-ebb5-345c-97f5-bf9a325d276f 312 Measurement 25 8 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1648 6271bdc2-7d7a-a682-fda4-4330be2c4bf1 212 Measurement 25 8 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1649 05954259-984e-bad2-6f07-c87f156cfed0 212 Measurement 23 4 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1650 008ab1ff-7da4-ac13-3025-42daf63555ff 312 Measurement 23 4 \N 1 1984-09-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1651 deb8138b-b20d-7379-bb5b-69e4c919cbb7 213 Measurement 20 6 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1652 a9486b6b-b84e-effb-e7d2-af059d64c4a6 313 Measurement 20 6 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1653 875bcec9-fd10-0127-b9e6-91a7a97812e8 213 Measurement 24 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1654 22c46497-0737-94ac-3295-c592b86c6e54 313 Measurement 24 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1655 0989599c-045a-73b6-4444-a8f8a0d5f2e1 213 Measurement 21 10 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1656 23b5b3ab-460a-e10a-2980-9405e5291cc0 313 Measurement 21 10 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1657 c1b2e31c-31cb-7169-ce3c-d60f7fa7b077 213 Measurement 22 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1658 8e25177a-eda6-6ee4-e0c1-cedcc46baab3 313 Measurement 22 7 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1659 bf60b72b-2e2b-8c41-d44b-fbace37ff6f3 213 Measurement 25 8 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1660 d9e8c2e9-421a-d3b0-c665-bff73c2c4073 313 Measurement 25 8 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1661 6a2e3207-450e-4b1a-0296-0e0dcd169415 313 Measurement 23 4 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1662 e6f388d4-c7a6-6ef2-7ee6-308416b0ac13 213 Measurement 23 4 \N 1 1984-09-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1663 767095c3-d654-ca2f-9c20-a52a5dcd76c3 314 Measurement 20 6 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1664 ce4dfc1f-2b0c-bde3-f538-37cb9eb7da23 214 Measurement 20 6 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1665 e1337287-07c5-72b1-f992-5f3a245d19f0 214 Measurement 24 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1666 d3c47d9c-a615-feaa-ae9c-7380852ebd40 314 Measurement 24 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1667 dd60c771-3279-2294-5962-8a20d0046552 314 Measurement 21 10 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1668 11fecea6-3535-3a6b-795a-842e2f8a9d4f 214 Measurement 21 10 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1669 d85de936-157b-eeae-7244-81d0ef4938e7 314 Measurement 22 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1670 c27c630b-9c78-d492-9689-0971f33552ac 214 Measurement 22 7 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1671 e74a034d-2032-d657-5c77-cbf1deddc628 214 Measurement 25 8 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1672 c6103373-96b1-820b-b5f4-f599af61c7e1 314 Measurement 25 8 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1673 1d0875c3-beee-a885-d2e2-6951be394599 314 Measurement 23 4 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1674 f63a40d4-8fc7-97be-096a-6c74487c61b5 214 Measurement 23 4 \N 1 1984-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1675 b078f507-8f53-62f2-31f0-2968df152f79 315 Measurement 20 6 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1676 fd8c06b7-3727-dfa6-3121-2985feb83a5d 215 Measurement 20 6 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1677 f62da98e-fa07-0da5-6b43-725fecc83dd9 215 Measurement 24 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1678 3d6d58cd-4027-ee7e-6106-3522437f9dc0 315 Measurement 24 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1679 ea20ec6e-48db-ff3c-6bd3-167f2148f893 315 Measurement 22 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1680 49a74e22-2edc-ccf4-bdaf-8b9191aef89b 215 Measurement 22 7 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1681 ad18809b-fdf5-e0ea-db9a-75dca6c30508 215 Measurement 25 8 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1682 8114bc43-9ea4-6cda-1d2a-851c038ccc90 315 Measurement 25 8 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1683 26417027-82c0-322f-b0fa-b50505cd307e 215 Measurement 23 4 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1684 1d1b596c-04f3-ad0b-4b5f-2a9bad9c1437 315 Measurement 23 4 \N 1 1984-10-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1685 913124aa-4d21-7ea0-a1c9-690d061bcf1e 216 Measurement 20 6 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1686 451135b9-71a7-93b9-c34d-b5a17d72cdec 316 Measurement 20 6 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1687 0deac154-9372-36ed-a781-db24e30ff53f 316 Measurement 24 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1688 40ff12d5-b50b-8d1a-2929-ace3d64bb455 216 Measurement 24 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1689 76b5d747-f6c8-b4f5-2629-80f47bc2ed7f 216 Measurement 22 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1690 5dce797c-27ff-30de-6274-00ba62e8b9d7 316 Measurement 22 7 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1691 f93fad9a-315a-4d09-ff4e-7174297689de 316 Measurement 25 8 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1692 65e77700-6a6b-42b6-98e9-f6c55298833a 216 Measurement 25 8 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1693 8ced6ef1-ae7b-a916-52f3-29f851d24cc2 216 Measurement 23 4 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1694 543531d1-aa4b-26e9-2335-f99e794e3d78 316 Measurement 23 4 \N 1 1984-11-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1695 08ac3b63-33c7-2c83-cc2d-bfab6a9b5da9 217 Measurement 20 6 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1696 a88f7a2f-d119-4010-cbf3-7a9dde878abc 317 Measurement 20 6 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1697 1527a6b6-a4c6-dc51-d0f6-d02b9f6cdd77 317 Measurement 24 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1698 36d0cec4-2c65-322b-3fb0-7b00daa71ad9 217 Measurement 24 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1699 85f2b9e1-c530-7f33-439a-9e1c8b18b958 217 Measurement 21 10 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1700 b13ec5d2-2d47-dfc5-0677-a73b700ac85c 317 Measurement 21 10 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1701 b58c9c55-9658-2f50-2674-aa1057fb4acd 317 Measurement 22 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1702 bb5673d7-4fb0-0d02-b492-350fd167be39 217 Measurement 22 7 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1703 4c7b1ac6-99ab-a173-cc1c-bf92b175b220 317 Measurement 25 8 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1704 4a846572-d3d4-2bdc-27c8-28fd6ce4aa3b 217 Measurement 25 8 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1705 73867bce-5465-fe70-de0a-86b49df25055 317 Measurement 23 4 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1706 59997eb6-a241-dae9-162f-48884fece931 217 Measurement 23 4 \N 1 1984-11-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1707 dac0fd43-eb55-66ba-3275-fd4b6aa1e413 318 Measurement 20 6 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1708 2d0121a7-f010-c154-8e37-47fa3b548a8c 218 Measurement 20 6 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1709 b1c876aa-4bb0-cdb8-a05a-abf242e4b95c 318 Measurement 24 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1710 86eb7614-ecdf-d8f4-2ed0-ec06ff669e54 218 Measurement 24 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1711 4c9fa855-39b1-0b78-c75e-987485203bc9 218 Measurement 21 10 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1712 7a6f358a-d982-4923-80f4-3d8c6824accf 318 Measurement 21 10 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1713 fcbde2b1-3f0d-6494-d844-d8970b7dcd47 318 Measurement 22 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1714 0372b712-8398-5b40-6319-73c3c301633e 218 Measurement 22 7 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1715 d869ffa8-5217-f9d8-8373-c91ac2d5a621 218 Measurement 25 8 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1716 7a623c49-a12e-66df-dd56-d8b41968f802 318 Measurement 25 8 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1717 a36f5bb4-f9db-2d75-579c-074be572f926 218 Measurement 23 4 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1718 88462908-3ea5-ebcc-c762-4efefb776369 318 Measurement 23 4 \N 1 1984-12-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1719 178a8e63-56ec-54f6-8ed9-91203b2eaf04 319 Measurement 20 6 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1720 40459d57-52ea-288b-4870-456648de8927 219 Measurement 20 6 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1721 0492b396-2948-4733-2d49-62f57fcaeb93 219 Measurement 24 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1722 13356a72-b279-91cb-0f52-760bbc47c970 319 Measurement 24 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1723 38123eb8-afdd-7530-123d-f3d1e5435063 319 Measurement 22 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1724 838d907b-6847-10da-4fc2-d9b744a15064 219 Measurement 22 7 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1725 f6cac353-0523-d652-c375-630d1c5d8704 219 Measurement 25 8 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1726 3e035db7-8e98-2855-2cfb-f16a59cc38f2 319 Measurement 25 8 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1727 a7f24527-9598-3b36-f14c-8e20eb3c0bfc 219 Measurement 23 4 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1728 63ba9de4-a07c-3429-c2b7-cddd2e630dce 319 Measurement 23 4 \N 1 1984-12-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1729 12b893dc-f9bb-f6db-2285-0cc1f1cd844a 220 Measurement 20 6 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1730 2cfcafb2-45bf-e9a6-404e-a4514b7e4fce 320 Measurement 20 6 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1731 7d3ebc91-c54a-19b0-8101-dc3f510011fb 320 Measurement 24 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1732 c32e5070-4e4e-b8f8-b974-1d95dc330bc1 220 Measurement 24 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1733 2007d91a-1e9c-6642-d1f8-017e16dc7ce7 320 Measurement 21 10 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1734 60ab06f6-12cb-9dde-9748-402cd4314808 220 Measurement 21 10 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1735 85c9a879-1c9c-c82c-2ad2-2c9df09a321b 320 Measurement 22 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1736 bd339466-9cdb-dbf0-4d0a-f0d2f72ecffb 220 Measurement 22 7 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1737 b63c7223-dc80-ef82-fbb5-295bc1a541b3 220 Measurement 25 8 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1738 9f790395-9444-0656-281f-80f74efdbcd7 320 Measurement 25 8 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1739 c1f171e1-37de-f9f7-3446-57800b8dd5fa 320 Measurement 23 4 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1740 da2fc6ae-f514-79f5-9f61-8978579d68a2 220 Measurement 23 4 \N 1 1985-02-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1741 a9bd4beb-1c73-d603-0a92-a20c704fb3cf 321 Measurement 20 6 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1742 b1e38141-0a50-36f5-6e6f-8e5deea2ceaf 221 Measurement 20 6 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1743 ff232275-43e5-7350-8f08-8b4c3aefb8ec 321 Measurement 24 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1744 315ae2fb-5908-f7f8-877f-239a0ac4c62d 221 Measurement 24 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1745 bd10a4ee-9e28-cf6b-a4dc-59db5f96f03e 321 Measurement 21 10 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1746 5d0dccbb-3c3a-28ca-0666-b5f8a9eb37b9 221 Measurement 21 10 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1747 ed594418-706c-1984-d855-4dcbe980507e 321 Measurement 22 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1748 aad72590-0e54-8e34-2b39-8a4fc2ce753b 221 Measurement 22 7 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1749 a7d28cc8-8f2f-3031-6be8-11f4c3d799d4 321 Measurement 25 8 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1750 b0a360c8-807e-8fdd-a3df-b06cab49dcb7 221 Measurement 25 8 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1751 348a802b-71d9-597d-6b79-a224eec90977 321 Measurement 23 4 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1752 aba38ca8-5f0b-047d-c9b0-4d70bfe3a63d 221 Measurement 23 4 \N 1 1985-03-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1753 c32e3371-8a0b-d935-57a7-568e88d30a57 322 Measurement 20 6 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1754 2538162c-085b-ac7a-9229-d27ab9ba4f26 222 Measurement 20 6 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1755 649c9656-8148-d20b-f199-7488220b3fa8 222 Measurement 24 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1756 d0a38913-d911-61e8-e506-763b1b43e7e8 322 Measurement 24 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1757 fa97a9fc-3764-0f93-7b00-409f5eb44be3 222 Measurement 21 10 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1758 9b7c045f-fe8a-937b-e8ee-ce0e9e8b77fc 322 Measurement 21 10 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1759 fc19f406-e88c-61cd-3eae-954d7c8c941e 222 Measurement 22 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1760 ee249fc5-9288-9d3b-d797-38020f175838 322 Measurement 22 7 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1761 4a3a8b83-5ec1-db4f-bc78-4a9e5b935a0f 322 Measurement 25 8 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1762 8eb41515-6bd0-aba6-5d1e-87c8ba934a57 222 Measurement 25 8 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1763 f2b20f15-2f55-085f-82d3-60dc5ac6fcdc 222 Measurement 23 4 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1764 b3e8483d-77da-39ac-bc51-b426851f5c2e 322 Measurement 23 4 \N 1 1985-03-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1765 df05a2d8-4887-09c6-ec25-32bbe825d90b 223 Measurement 20 6 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1766 a248e14f-5b49-2878-9947-1bd71f009b2d 323 Measurement 20 6 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1767 5113c9aa-03d5-d09e-fad4-a90fa5cc1e24 323 Measurement 24 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1768 41e1b54f-1c10-b04c-7f1b-fb24df07be07 223 Measurement 24 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1769 a75d9115-1684-d7d0-5c53-e99d6ef15b63 223 Measurement 21 10 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1770 1f9ae6a1-0234-2632-72bb-87f77f15741e 323 Measurement 21 10 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1771 f4ce3af9-7995-d9e8-6fa4-203661b622fd 323 Measurement 22 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1772 e1e0298b-0e55-ee1e-75f1-5ac3b14efb55 223 Measurement 22 7 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1773 629fafdd-f8c1-b2ab-6a5a-21b20d90245f 323 Measurement 25 8 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1774 6fe4c492-5134-3403-3e25-66f4dbc945b6 223 Measurement 25 8 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1775 e365e37b-abdb-3bac-1277-5b14dde5e66e 323 Measurement 23 4 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1776 a32f418e-ac13-5a80-c3e7-f21b5bfe9b98 223 Measurement 23 4 \N 1 1985-04-03 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1777 c39d8f4c-c018-2b36-6ebc-067f411d98d8 224 Measurement 20 6 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1778 a164cb23-ac38-9354-a8b2-497abc095587 324 Measurement 20 6 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1779 ebdb71c4-877f-a94f-313e-436316f37b07 224 Measurement 24 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1780 01c1529b-f8f6-44c3-3eaa-5644e8b23a4e 324 Measurement 24 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1781 c1bb067b-d1ee-07cc-72fb-77f920ef3c5f 224 Measurement 21 10 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1782 ca5bb9c8-e267-9f24-4440-1486fe8a4acc 324 Measurement 21 10 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1783 325ba36d-74f3-cd18-4ad6-de9daa6a4ae3 324 Measurement 22 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1784 b5450d81-e7a4-c60c-9ee3-95125fa64f81 224 Measurement 22 7 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1785 ea61f015-078d-3c2b-a99f-199b2714cb83 324 Measurement 25 8 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1786 67430611-1dea-99c5-594c-da701c4d45f9 224 Measurement 25 8 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1787 ebfe42dd-99a4-ecd6-9e57-2eb0b3e572d6 324 Measurement 23 4 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1788 1f8eebcf-34c1-1d98-38fb-0e06858ca98d 224 Measurement 23 4 \N 1 1985-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1789 31b228ad-97a4-d384-bbac-831c8575e630 225 Measurement 20 6 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1790 c9fa0772-d996-9e08-76e1-218e7ef3ea7f 325 Measurement 20 6 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1791 9549f204-c901-5f39-a291-d77dcbe8b718 225 Measurement 24 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1792 3de86299-bef1-6090-edb7-a5b39c172b84 325 Measurement 24 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1793 fa3968ee-c76e-e709-8f63-255aaddaab91 225 Measurement 21 10 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1794 aed703a6-4475-432b-33e5-273ad223b1a0 325 Measurement 21 10 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1795 5288f44b-0692-5864-b86e-cef93b1b496c 325 Measurement 22 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1796 61ae75ef-d113-919b-440b-01a88a59a5cd 225 Measurement 22 7 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1797 387cbed0-19ff-a512-6746-cb080a8c4ee6 325 Measurement 25 8 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1798 be235526-00ef-e713-3e92-879eeeab2adb 225 Measurement 25 8 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1799 abbcff9f-11ad-88a8-5481-40a577fee95e 225 Measurement 23 4 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1800 1cf150e3-676f-29f8-04c5-219ce6b75bd2 325 Measurement 23 4 \N 1 1985-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1801 71dec81c-fcd7-38b1-98a5-ac4140db2e1b 326 Measurement 20 6 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1802 80e4a040-010c-602c-1df8-d02631774fa6 226 Measurement 20 6 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1803 cd92ae96-b5e9-2ee3-d5c2-31e2b19506d2 326 Measurement 24 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1804 a3fd2293-88ce-5a6a-006d-f699114f2019 226 Measurement 24 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1805 e602d836-d7d7-0950-b025-a69b7aac5d84 326 Measurement 21 10 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1806 6b46b0c0-2209-a399-6a7a-e731d01c104b 226 Measurement 21 10 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1807 96904039-4f68-23a6-d51e-c35c04f35dcb 326 Measurement 22 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1808 4890b977-bf68-94bf-4f9d-58275d937678 226 Measurement 22 7 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1809 b87aaea1-8ae0-79d2-f4ae-2a276e1b4664 326 Measurement 25 8 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1810 2d3606cd-adc4-96dd-b817-1b09bfde7b58 226 Measurement 25 8 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1811 cdf282f3-e1e1-f723-4736-4f264c411d1f 326 Measurement 23 4 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1812 948ffd53-cd51-472d-9d6d-3cbe51e9b914 226 Measurement 23 4 \N 1 1985-05-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1813 7289d222-b735-9fad-bc8d-0b39c7ea847d 227 Measurement 20 6 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1814 293435b5-f152-c7c1-428e-48321221c9d7 327 Measurement 20 6 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1815 f43aa412-6737-5d2d-1a20-4a412f749a00 227 Measurement 24 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1816 19004daf-4bb9-a0f1-6365-e399e5d48780 327 Measurement 24 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1817 2095bee9-de7a-029c-243d-1a5ecf7e8c6d 327 Measurement 21 10 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1818 406ac230-d92d-8a8b-cc18-a048fd78f7f9 227 Measurement 21 10 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1819 5e661fcf-625d-5615-a8bd-4207449893e9 327 Measurement 22 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1820 1a800225-0103-49ad-7f62-8e6f8643c0d5 227 Measurement 22 7 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1821 af462f8c-4430-419a-b540-946fa7a453f9 327 Measurement 25 8 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1822 8694cd94-7336-4d7d-1507-3671c678663e 227 Measurement 25 8 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1823 fe7184b0-bc17-c7e2-dd87-825d63b08635 227 Measurement 23 4 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1824 c097d060-1ccf-5eaf-df90-37a57d600a49 327 Measurement 23 4 \N 1 1985-05-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1825 a4d862d8-5a35-fe8b-843e-4fd572647931 328 Measurement 20 6 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1826 e7ab0ddd-8eae-c420-240a-792c4d7a7416 228 Measurement 20 6 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1827 42fa66e8-cdf0-7b80-a966-508d2eacc97a 328 Measurement 24 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1828 76e4568b-7065-4d2e-1918-2e6f31392120 228 Measurement 24 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1829 5b5d78ce-cac4-48ba-3f62-c76f0a4993c2 228 Measurement 21 10 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1830 53279d0a-1e8a-9b54-1229-0690e54a67df 328 Measurement 21 10 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1831 0a553e25-db62-697b-297f-319bfb2d7030 228 Measurement 22 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1832 e9a6767f-8858-9c54-b70a-5015bea3061c 328 Measurement 22 7 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1833 fe69910c-8304-3492-c73a-0d2e3c7d0d23 328 Measurement 25 8 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1834 de4ef88b-cbd6-2253-310e-944284c65136 228 Measurement 25 8 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1835 e2ea6a08-802f-4753-cb7a-b94a994b6baa 228 Measurement 23 4 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1836 ab6ab7ba-3c07-bc80-2653-2cd32533ebc5 328 Measurement 23 4 \N 1 1985-06-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1837 aea7d5e9-5404-3f0d-4c35-cafa6677bd79 329 Measurement 20 6 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1838 2a1b4b78-80e3-5df0-0a7a-adcba25a3f0c 229 Measurement 20 6 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1839 19214724-bea7-2862-2899-3ad34f4452bf 329 Measurement 24 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1840 aa9fcc28-3964-e3aa-243d-bb4ca9e0835d 229 Measurement 24 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1841 cb6a6c74-30a9-c21b-3936-243b25c28f24 229 Measurement 21 10 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1842 897bb831-bfbc-fcf3-7fa8-0ed12b4e8d3c 329 Measurement 21 10 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1843 3b5bf3fd-accf-2ba2-bf3d-c88d7e16f42f 229 Measurement 22 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1844 e43b0ea0-021a-1483-cb10-c4c93b26b6cf 329 Measurement 22 7 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1845 a9fdcaed-a50b-fa70-216b-5c54eec67a75 229 Measurement 25 8 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1846 6980debe-be45-4bec-6833-117175e33a1e 329 Measurement 25 8 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1847 b303ef7f-6ccd-43ef-16d2-6dad1e4b982c 229 Measurement 23 4 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1848 eda870d1-fe36-feff-03a4-5e3397745dd3 329 Measurement 23 4 \N 1 1985-06-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1849 49b288c2-1b13-5b8e-65bc-a53d3aa67b62 230 Measurement 20 6 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1850 e532aa9c-4b83-27b3-b272-39ccde692c9c 330 Measurement 20 6 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1851 8afbcb0a-9623-6ab8-154c-c16bf4f5a1ed 230 Measurement 24 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1852 d4e3df56-18b1-1bc1-9116-b6b64ca2bcc1 330 Measurement 24 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1853 8c9f05c7-6343-3502-8da6-9554053f991c 230 Measurement 21 10 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1854 6fb2dd67-0be9-af6e-4658-8d69c9cf1fc1 330 Measurement 21 10 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1855 ce2470d2-3885-e57f-96db-03d4513aec7f 230 Measurement 22 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1856 9f55d985-ff3d-d645-8b0e-903b6e280257 330 Measurement 22 7 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1857 b236b538-9533-0b29-c866-b6a28acf3fb1 330 Measurement 25 8 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1858 e7f967f0-2311-5ec6-e17f-331560ee67c4 230 Measurement 25 8 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1859 c388c4ff-1ab3-f597-8a0e-a11368cec876 330 Measurement 23 4 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1860 706b151d-b1ea-53c3-9b90-d5b7235e463e 230 Measurement 23 4 \N 1 1985-07-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1861 cc217691-4895-4f00-84fd-c1817020b526 331 Measurement 20 6 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1862 5a4b173d-f3fc-aca2-f4e0-b0262ae7892a 231 Measurement 20 6 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1863 3fa462cb-f8b5-3ece-030a-c5a04f7bb631 231 Measurement 24 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1864 a7eaf40b-82fc-de1e-8e12-e74fcb1ab597 331 Measurement 24 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1865 7998dd1f-d8ba-b057-9420-45e8af98a753 231 Measurement 22 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1866 b19fa233-ced3-72c4-d6b4-aa1c7efb0be9 331 Measurement 22 7 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1867 885c77c4-e585-37b7-e04f-103c3ea001e1 231 Measurement 25 8 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1868 0101ddea-e50d-3993-d20a-534268bee90b 331 Measurement 25 8 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1869 b940d521-c476-044b-75ad-1c4ee7e10267 231 Measurement 23 4 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1870 6fe6c5bb-cda3-4fb5-be5d-4a3f0e1c79e7 331 Measurement 23 4 \N 1 1985-07-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1871 b639a788-db1b-cb15-fcac-c0109a2f4511 232 Measurement 20 6 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1872 a915543b-4d3e-075c-4937-873091e31be2 332 Measurement 20 6 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1873 81ad023e-138b-b997-60ba-37fc01e7435e 232 Measurement 24 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1874 327c10f9-c3bb-1b31-5398-47e9f97996f4 332 Measurement 24 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1875 4dceb752-c949-d5c3-473d-4f51325a9a50 332 Measurement 21 10 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1876 446825b6-d1b0-317a-73ca-38ff02b2724a 232 Measurement 21 10 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1877 c45cbcec-d2cb-8a26-53a2-be98236cd895 232 Measurement 22 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1878 a2d69b21-890d-f6fa-bed7-d84f556e152a 332 Measurement 22 7 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1879 446b8afb-a2d0-2df1-71d5-87f2a6c5a076 232 Measurement 25 8 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1880 6afb99d3-a1dd-67b1-4aa9-8d29ead18c81 332 Measurement 25 8 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1881 0fd9a15d-6854-bab2-314d-9f2f22475010 332 Measurement 23 4 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1882 302d7476-0a30-2cfa-d92d-5d25ad06e89d 232 Measurement 23 4 \N 1 1985-10-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1883 bbcde685-8d90-1049-a640-8a7a4fce508e 333 Measurement 20 6 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1884 06dc36a9-5bdb-bb71-f8c3-59dada4ad166 233 Measurement 20 6 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1885 eb0a086c-ee7e-2d86-8d98-fb0aa11348f4 333 Measurement 24 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1886 0f099294-600d-d09b-68e0-d04346417163 233 Measurement 24 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1887 b431677d-03d5-69e0-68c9-0ca462941133 233 Measurement 21 10 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1888 67aa3069-bd96-4671-1b06-96253ea0c6da 333 Measurement 21 10 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1889 ecfa78b1-974d-7d26-f427-a7a9ddbf6f6b 333 Measurement 22 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1890 c99069bb-629b-84b4-bcc0-c705b9a5eb5e 233 Measurement 22 7 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1891 8d4fe888-66da-8a9b-6966-1a4e05d0d40d 233 Measurement 25 8 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1892 b2899349-6dbe-d083-c589-f656af52a6b1 333 Measurement 25 8 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1893 0354ada8-c540-311d-263e-c0732d33caf2 233 Measurement 23 4 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1894 d98f7623-1bb1-2f3c-614a-ccc89befb118 333 Measurement 23 4 \N 1 1985-10-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1895 5e3300ff-c0b6-7fef-0c12-9950fae1e685 234 Measurement 20 6 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1896 253911d9-d8f0-8871-613d-f2ce13525eea 334 Measurement 20 6 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1897 c4ad0603-d1b8-af7b-5b64-ea7312506533 334 Measurement 24 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1898 6b923d70-d10d-c5e3-a5b7-041540903389 234 Measurement 24 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1899 944a514a-da06-2c38-2d2a-8e9307700eb7 334 Measurement 21 10 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1900 97eb733e-bb42-39c2-948c-0ba8f84cbb42 234 Measurement 21 10 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1901 1a9d40fe-686c-54c0-4b04-e447eb6df333 334 Measurement 22 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1902 83ed5409-1c1c-a18f-ecbc-de46308a661f 234 Measurement 22 7 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1903 ad04dac5-71a8-a791-bb24-920ed4c4fa2a 334 Measurement 25 8 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1904 4733d28b-4d89-8d3d-3223-130893c94385 234 Measurement 25 8 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1905 e14f284b-1484-d610-c01b-a878b9d231c6 334 Measurement 23 4 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1906 5e6dff81-3df3-4b18-995e-ec70739a85fc 234 Measurement 23 4 \N 1 1985-11-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1907 ada73ac1-7bee-d1c1-06b5-2c0912c6e3cd 335 Measurement 20 6 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1908 a983d39b-ecfa-ff71-d45a-37a19a6a9309 235 Measurement 20 6 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1909 96b133d5-3903-03dd-be21-448bc147d119 235 Measurement 24 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1910 0b5ae18c-9514-c4a1-1720-e59aae4b50d2 335 Measurement 24 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1911 c43644f6-7b4f-9470-7151-e72c75a591e4 335 Measurement 22 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1912 c42841c3-981b-47d2-e27b-250f75620e9d 235 Measurement 22 7 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1913 8a1e7e1c-50fc-a19d-3a9a-ae2b74c9c8b4 235 Measurement 25 8 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1914 c69aa467-ee0e-ef2c-4c20-c33f35dbbd5c 335 Measurement 25 8 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1915 5bed821b-85a3-9689-14da-b332edf890a3 335 Measurement 23 4 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1916 4901ab59-bf25-9f23-50ae-55513123d88a 235 Measurement 23 4 \N 1 1985-11-27 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1917 9fa1f39a-3942-1290-1f9b-fafabb9cfdf7 336 Measurement 20 6 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1918 8c57dadb-f87c-4c88-5ddc-3a06fbaf554a 236 Measurement 20 6 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1919 788115e3-062e-8977-9576-5eb249be2891 236 Measurement 24 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1920 84ae73d0-f380-d86d-c26f-91c3ca0e09cc 336 Measurement 24 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1921 3db7a04a-0b64-65a3-51f0-afd0f28a0066 336 Measurement 22 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1922 72ad5be4-2479-b0ed-1534-efd8e89ce868 236 Measurement 22 7 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1923 80131d35-de29-ad55-25b2-d6a8923767bb 236 Measurement 25 8 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1924 f28f624d-6d30-064e-6e42-dfc1f0052085 336 Measurement 25 8 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1925 031d71a8-95ca-d2cf-eb37-a1efb20a049b 236 Measurement 23 4 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1926 a32e76e5-f6e6-d1d7-cc5d-68f01ffdfba0 336 Measurement 23 4 \N 1 1985-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1927 0e31bb74-aa14-14a0-d5ce-d3264fbf702e 237 Measurement 20 6 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1928 04dda7ba-e1db-6ae1-8857-3cf574b5bd3e 337 Measurement 20 6 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1929 5524a5cb-b690-1604-c87c-e8d7d74be8aa 237 Measurement 24 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1930 79accd4f-bc1b-e0d8-5201-3ac22f44f6e8 337 Measurement 24 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1931 14917d9a-78ce-b747-5221-879419997e9a 237 Measurement 21 10 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1932 c9d9966e-b7d1-4f8c-05f1-1dff4eeed85c 337 Measurement 21 10 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1933 13cbf066-7bd3-cad4-0cfd-e6c98b5b63b6 237 Measurement 22 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1934 390caeeb-9850-8c28-edf5-45394bad3299 337 Measurement 22 7 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1935 95a46f98-e29f-4974-daba-e9c37341e8b7 337 Measurement 25 8 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1936 cdcb8945-75cf-e25a-470b-f9fccc40026f 237 Measurement 25 8 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1937 757efa99-a4ea-d5e8-9a82-6004f85231e5 237 Measurement 23 4 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1938 7ebcd44f-1f82-a5d6-8a3d-17bead551327 337 Measurement 23 4 \N 1 1985-12-26 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1939 cfee7503-ad2f-2357-a05f-21ceeac3f04e 338 Measurement 20 6 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1940 a8de4231-08f1-e310-cdf3-63d38496abc3 238 Measurement 20 6 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1941 61fbf26d-8549-2eb1-f463-239a2d1d1ccc 338 Measurement 24 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1942 b89778e2-2c87-ef8c-2024-e88c45b5ce09 238 Measurement 24 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1943 e016784e-304f-7c0e-6a02-82161080f5d5 338 Measurement 21 10 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1944 274c63d3-030b-1ff2-0721-cda3608424ee 238 Measurement 21 10 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1945 2b3188ef-871f-c37e-553b-cca4398551d3 338 Measurement 22 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1946 7404f923-e102-3e91-8d94-74f66d6c2c0d 238 Measurement 22 7 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1947 7584756f-878f-846b-9a13-f1daf1471c1b 338 Measurement 25 8 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1948 2c3905ca-e089-ca70-8759-64bfa61a8d21 238 Measurement 25 8 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1949 38b54d21-5350-eab8-f25d-f335ae2363cd 238 Measurement 23 4 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1950 5d7e3584-cab8-5910-90c8-532af54596aa 338 Measurement 23 4 \N 1 1986-01-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1951 4fb33a97-dea0-acc6-2c87-f29eb1ca32bf 239 Measurement 20 6 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1952 f02e1650-5c32-15b7-b60c-ed97e4094580 339 Measurement 20 6 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1953 1c79a4c4-d8d8-b9e3-7f4f-755676e4db61 339 Measurement 24 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1954 54655d71-694d-c826-bb2f-7c1d9447b748 239 Measurement 24 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1955 6afed83d-b911-132f-57d8-cc0f36da629f 239 Measurement 21 10 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1956 2d0ff283-bd05-d709-42a6-ff22af8712c1 339 Measurement 21 10 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1957 5dbc39b4-f744-fb8d-c2bf-f11930aada40 239 Measurement 22 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1958 6f7b3756-ca6c-f435-451b-0a2b392bb816 339 Measurement 22 7 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1959 f9a34780-45ec-2c7b-0268-b62d39282017 239 Measurement 25 8 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1960 ec2bd109-9846-e04b-1ce3-5d0263a64760 339 Measurement 25 8 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1961 fe7e8347-2fba-6aee-7e7c-7f4daee50c93 239 Measurement 23 4 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1962 b1393ef0-d57c-301d-598b-bd5543232ed3 339 Measurement 23 4 \N 1 1986-01-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1963 b3c04e56-8356-26fe-62ca-4a147d2931fe 340 Measurement 20 6 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1964 d85a4eb7-78f2-1341-0392-d662012d9d36 240 Measurement 20 6 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1965 ae9e986c-e513-b97f-d3ad-f8af4fe919cc 340 Measurement 24 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1966 9e59ee66-71bd-4bbb-8057-76e1058862b1 240 Measurement 24 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1967 17a6dcd5-0716-4e01-83f4-cb9a47046bdd 340 Measurement 21 10 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1968 b5f10848-d6ca-f1b4-8272-1dd4289f03c7 240 Measurement 21 10 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1969 f2b618e2-de57-58df-af94-36709ffb0ba6 340 Measurement 22 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1970 1b82bbc0-fdcf-80a8-6d8e-4a6b40157d63 240 Measurement 22 7 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1971 c2206598-5a95-c166-4d93-d798148d6cce 340 Measurement 25 8 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1972 35b7888c-4eb3-1e8b-4910-157e1326bcf4 240 Measurement 25 8 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1973 86a52c5e-affe-532a-ef96-4594c44804eb 240 Measurement 23 4 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1974 4ebfbe49-6290-a912-ae5c-fcf54bcab33c 340 Measurement 23 4 \N 1 1986-02-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1975 a05e7ca7-f1f8-b021-132f-6b63b37a2774 241 Measurement 20 6 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1976 2a309591-7ada-316c-dafe-dca69dfd3b7d 341 Measurement 20 6 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1977 51e3e3c7-a7a9-4116-a823-77089b1e38c1 241 Measurement 24 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1978 810392b3-8510-f919-3670-797959cf0e3b 341 Measurement 24 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1979 5fc6ef3b-6396-78ad-d6d6-a23237c8d719 241 Measurement 21 10 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1980 ac4b4a52-b3bb-9f35-d5dc-a85f393bacbe 341 Measurement 21 10 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1981 76896116-515a-4ef9-8e72-856625b3543f 241 Measurement 22 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1982 3ed1fdfe-ca3b-a05b-2a37-893795b114dc 341 Measurement 22 7 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1983 2bcb3d82-6d5c-a9e5-4b94-c55ae00c2406 341 Measurement 25 8 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1984 9375565b-0947-f490-2079-9d5c25eae86c 241 Measurement 25 8 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1985 3d3428b0-a041-5c51-cb04-43cb69820209 241 Measurement 23 4 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1986 8087bcec-e332-00d7-fe74-c06fa09dc55f 341 Measurement 23 4 \N 1 1986-03-04 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1987 aff8078f-4314-9978-3507-6516e12e9902 342 Measurement 20 6 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1988 07eee69c-577d-a8da-1f5c-baf6bccbf4c8 242 Measurement 20 6 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1989 c39959e5-cbf4-594f-d697-227a61e091fa 242 Measurement 24 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1990 16c39f45-45d1-813b-fdb3-2ade925d654e 342 Measurement 24 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1991 2682eb44-44d8-bdf4-275f-9b8baaf91775 242 Measurement 21 10 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1992 e79bc880-44f4-d745-e0f2-ac4a69fb6e02 342 Measurement 21 10 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1993 1475ead7-4d10-e1ef-9d66-87554e47c364 242 Measurement 22 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1994 8b5caa08-f3c9-1e74-1f45-21dc55079eac 342 Measurement 22 7 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1995 57a77e5e-50a3-069c-3e9b-3d3a76e4e079 342 Measurement 25 8 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1996 3fd350e6-e66a-db2e-1c21-14af13aa165d 242 Measurement 25 8 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1997 601f5da1-edd9-71e2-d082-e584bb370435 342 Measurement 23 4 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1998 d1666a8a-29fe-642a-fe8a-edf5c57f37d4 242 Measurement 23 4 \N 1 1986-03-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +1999 2453c0bc-1f73-1f20-10a4-fcee938cb4f2 243 Measurement 20 6 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2000 1d7718c9-b960-9597-0421-05f18ee41a94 343 Measurement 20 6 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2001 3b170387-ef2c-e92a-e2b9-1a5f194e68ed 343 Measurement 24 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2002 0c176f34-da2f-40c2-7ba1-780f2eaed2fa 243 Measurement 24 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2003 2aa745d8-6ec3-67e8-2e3c-821335cdd1c3 243 Measurement 21 10 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2004 94ec0a90-59a9-0629-96b9-e9cc7500aa30 343 Measurement 21 10 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2005 c80cd3bf-a98f-408d-af0f-01637d8013e5 343 Measurement 22 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2006 edd39ff7-5c35-cb41-2430-e9af7da19d53 243 Measurement 22 7 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2007 1f836a52-d17a-c0c2-faa8-5eae2c10159e 243 Measurement 25 8 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2008 42ca64b1-3011-cca6-f288-d771cab90f81 343 Measurement 25 8 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2009 d86fc860-be19-d838-c5da-7d5ab2b8afb5 343 Measurement 23 4 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2010 78643c79-4066-9e57-a2f6-69c8fe56cb35 243 Measurement 23 4 \N 1 1986-04-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2011 a0e61d27-7ce1-0d01-4b00-bdef0acc7ead 344 Measurement 20 6 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2012 55364f53-1c53-9511-d457-7b59d5dfa53f 244 Measurement 20 6 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2013 193668ad-aa4f-b379-f751-df6ea61dd3c8 344 Measurement 24 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2014 b777a221-4775-bd03-7cc8-5ba08c5b8089 244 Measurement 24 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2015 b8c3e90a-ce9f-0732-4488-1b9cdb0f20ad 244 Measurement 22 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2016 054dc6de-dc33-cbd4-af37-46d280dc856a 344 Measurement 22 7 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2017 ab2e4904-0aca-8853-4a84-363642a82f34 344 Measurement 25 8 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2018 6214503c-7d32-2d7b-3b3e-1a6b0d815bc7 244 Measurement 25 8 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2019 e0c06d79-7096-6773-13c7-a21b4b1c4b54 344 Measurement 23 4 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2020 58ceac81-2912-cace-214f-28516ed4bcc3 244 Measurement 23 4 \N 1 1986-04-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2021 5b1865a8-2e10-5f4a-8b17-10bf32386536 245 Measurement 20 6 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2022 f699c40d-0f26-46c1-2ed1-4702b4f85985 345 Measurement 20 6 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2023 420fa030-bf93-74b1-93da-c27b478f70b7 345 Measurement 24 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2024 087435dd-7967-ad86-2b1d-182e69029926 245 Measurement 24 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2025 b97c623e-8311-ce65-d5bc-06d15a0a9ae3 345 Measurement 22 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2026 26043d11-089a-94a5-082a-34b9430524d3 245 Measurement 22 7 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2027 9f2d687f-48a8-9b85-29a0-a3c8012efad0 245 Measurement 25 8 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2028 afa09d6b-b270-c043-6f10-3e7a4c22e252 345 Measurement 25 8 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2029 cf44e46c-d33f-4940-f9f2-adaf3a96a614 345 Measurement 23 4 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2030 71ddbb9e-5a9e-968b-8864-d26b959c76c2 245 Measurement 23 4 \N 1 1986-05-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2031 2cc7019e-dc1e-557c-dac8-34706dcff873 346 Measurement 20 6 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2032 b2c428c2-73e3-353e-b1c0-eef86b419e39 246 Measurement 20 6 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2033 c98ab8a6-24d4-ef96-fbd8-85b905ec2e24 346 Measurement 24 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2034 c2e8e189-57d6-ee96-17dd-14845e6fc02b 246 Measurement 24 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2035 9ace4322-948c-09df-0fd8-b648e678ab87 346 Measurement 22 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2036 eef6c9fd-a244-8801-25f2-24fd40d23c8b 246 Measurement 22 7 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2037 d07f8dd8-66da-42c9-c3d0-dd43fb268890 346 Measurement 25 8 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2038 1e0acd2d-19e6-b233-8850-87cc70911228 246 Measurement 25 8 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2039 65dbd6dc-dbd0-db48-fe6e-80a794c8a36d 246 Measurement 23 4 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2040 d91693b2-87e0-3772-d617-2a1f9752a102 346 Measurement 23 4 \N 1 1986-06-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2041 da69f215-15ad-78d3-6a0e-c1368902ca3a 347 Measurement 20 6 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2042 47cd6d8f-9e20-b9e7-76bc-839af2290591 247 Measurement 20 6 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2043 7197a84a-7a98-a70f-866a-18178db2dd0a 247 Measurement 24 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2044 53d50436-9d08-f9ca-126b-6de7efd67370 347 Measurement 24 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2045 4e0ceea2-6d6a-e58f-493f-c113b13d88c7 247 Measurement 21 10 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2046 7d7fd193-c945-ac6c-656b-f2826e6a4286 347 Measurement 21 10 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2047 f551b6bf-dfa3-be47-a3b1-012aee7ee28e 347 Measurement 22 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2048 223d8031-5351-e43a-dcad-b899c9f7d0e6 247 Measurement 22 7 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2049 8731d314-8a86-4f25-cf3e-ab4cbf64b51b 247 Measurement 25 8 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2050 70ad10c6-e50e-aeca-257c-1f9914091444 347 Measurement 25 8 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2051 200c7670-899e-b2b5-6266-1c0e204e5adf 347 Measurement 23 4 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2052 f6383c1b-8e57-2071-f56b-b72d744cc4f0 247 Measurement 23 4 \N 1 1986-07-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2053 b01a1745-3773-51cd-9fbe-133e8dcdd734 248 Measurement 20 6 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2054 43f6a9ce-4f00-b6c9-d8c7-fbbc6b13e1cc 348 Measurement 20 6 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2055 3f126ca0-9568-cdcb-d34a-0b1b74a58504 248 Measurement 24 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2056 7622bde7-bf0f-4523-ca97-54da59dae7f9 348 Measurement 24 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2057 a7a88074-fc1e-c709-766a-2f1c2a46c6b1 348 Measurement 22 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2058 3760bc77-b374-94e0-6a61-5d625430afed 248 Measurement 22 7 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2059 a1995730-20b9-d192-5650-e77acbf56a9b 248 Measurement 25 8 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2060 0612a787-cdcd-2f66-4493-0690b8bba6ed 348 Measurement 25 8 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2061 b4b67fac-1fdb-fcb3-fff2-f83e40ba62a6 348 Measurement 23 4 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2062 58e46f0e-22dd-5bc5-f702-dfc291a28b84 248 Measurement 23 4 \N 1 1986-08-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2063 8e019c89-a27b-ff6d-a9a8-ce0e675cba96 249 Measurement 20 6 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2064 38ac9594-b565-3558-79eb-d1ab1321ad82 349 Measurement 20 6 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2065 6901da1f-d323-11d3-9920-d90f5f67a1d7 349 Measurement 24 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2066 94fc130d-b26a-4e8e-89c2-c48190a894e6 249 Measurement 24 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2067 5afa767d-797c-013b-b7bd-5303ad5421c5 249 Measurement 22 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2068 2df25617-7833-fb64-2c56-96b83b1d1154 349 Measurement 22 7 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2069 577ebf58-b4eb-454a-3c97-ed19b1d1005a 349 Measurement 25 8 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2070 96822c46-2294-fd8b-fd8d-193f662d7759 249 Measurement 25 8 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2071 fd3c3256-0504-9626-28c1-8b7af61dd5ba 249 Measurement 23 4 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2072 0fd22ef1-cbcd-b5e6-cfe9-a54c35be3967 349 Measurement 23 4 \N 1 1986-09-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2073 b2e18ed4-2345-3933-2d69-ae799b771a52 350 Measurement 20 6 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2074 85c08d24-92ab-fa93-d1d0-4914d3c4627d 250 Measurement 20 6 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2075 a49aacfd-cdfa-70c4-229e-3f457ff46b0f 250 Measurement 24 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2076 00904889-3307-e45f-2b3b-1bf48591c72d 350 Measurement 24 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2077 3006e2b5-9bab-a826-53fc-58483a2ea62f 250 Measurement 22 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2078 04e769ad-3e36-93de-20b7-d3adaab89d2c 350 Measurement 22 7 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2079 33ece18e-3e9c-0ba6-b693-54678ee7c4df 250 Measurement 25 8 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2080 318759ac-8ded-5bfd-5718-11da62fc31e9 350 Measurement 25 8 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2081 22c733a5-a026-08e6-8115-8b794d6d3ad3 250 Measurement 23 4 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2082 fe0c5d53-247c-a0ad-3f80-18de73009134 350 Measurement 23 4 \N 1 1986-10-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2083 766487ca-afb4-87e5-6e8f-be860eaf9137 251 Measurement 20 6 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2084 78a1e498-ec78-166f-ad02-c0b4f33ca461 351 Measurement 20 6 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2085 66b26c21-9b32-7a66-d7d4-680826772875 251 Measurement 24 7 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2086 07995f22-6a40-e057-c9fc-37ecb91c17d7 351 Measurement 24 7 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2087 fa47dc87-12e2-00a3-948e-ccf5f906ed15 251 Measurement 25 8 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2088 45748504-9d57-42bf-b47c-b573fa134a05 351 Measurement 25 8 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2089 b4d4eec1-ddb4-3554-b91f-be1072565e96 251 Measurement 23 4 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2090 1a7a6616-658e-d457-01d9-ceef99100271 351 Measurement 23 4 \N 1 1986-11-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2091 58bb7634-2bd1-278e-7195-24f68a3a4bef 352 Measurement 20 6 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2092 7604d45e-8aef-e91a-51a2-ae22c35762b7 252 Measurement 20 6 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2093 f0b09245-503d-dac1-71df-c6723252be3b 352 Measurement 24 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2094 89b86890-c09b-5096-bf10-a8987500d310 252 Measurement 24 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2095 acf43179-3717-db0e-9638-e9e58a95180a 252 Measurement 22 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2096 6e6bcf09-623c-a637-f6b2-c54314d3bc63 352 Measurement 22 7 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2097 133a6015-8f30-f77e-05ee-ac45a461da72 252 Measurement 25 8 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2098 f789ef53-ca12-9651-e703-9c58ce48b621 352 Measurement 25 8 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2099 5317a91e-32ab-0817-36d1-8b529c01f064 252 Measurement 23 4 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2100 4190f624-815a-c7e7-bd22-ded477ed7bff 352 Measurement 23 4 \N 1 1986-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2101 1dabec96-e271-7ebf-98f4-eff74ed766dc 353 Measurement 22 7 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2102 330cb1cb-72fb-65dd-8e64-8c3bd1e31162 254 Measurement 22 7 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2103 6a290f10-17bc-094b-c685-3ca6f518bcd5 254 Measurement 23 4 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2104 2400a161-31f7-210b-c27c-da864c3108fd 353 Measurement 23 4 \N 1 1987-08-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2105 6ce064d4-aa2f-8a41-bf79-716a26667a60 255 Measurement 20 6 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2106 a8576279-8aac-af0b-9032-05b82c41170c 354 Measurement 20 6 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2107 24157a6e-6d92-8e07-2056-48f4a4151af5 255 Measurement 24 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2108 40e8de11-0723-d580-bed9-059645f3a209 354 Measurement 24 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2109 22d782c1-7e2d-2c76-3045-02337d560910 255 Measurement 22 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2110 10497c34-b7d1-f743-3457-b0360099403f 354 Measurement 22 7 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2111 c390af7a-af84-a99c-7597-589caa3780c6 255 Measurement 25 8 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2112 ab713209-f52f-a125-6568-4c7dfe208369 354 Measurement 25 8 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2113 e977235f-4182-8383-b5ff-0a065ba34238 354 Measurement 23 4 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2114 01e861f2-4eb5-74e8-52af-5bf41017c646 255 Measurement 23 4 \N 1 1987-09-30 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2115 f3de5475-db5d-1795-6305-ac532fa0386c 355 Measurement 20 6 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2116 cd441856-62b6-86e5-9270-afa848d887af 256 Measurement 20 6 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2117 fed6fdd1-16cc-0ea4-0c1c-02660a9ab341 355 Measurement 24 7 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2118 eb6c3c31-3fc6-8214-44e9-6312a3b504ac 256 Measurement 24 7 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2119 7d9dd129-afb0-0610-f2fe-40a29c96e8c8 256 Measurement 25 8 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2120 00718925-caec-30dd-3d41-89cc8ac63b02 355 Measurement 25 8 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2121 6a20f073-9a0f-14ec-df1a-b9faacfec7d6 256 Measurement 23 4 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2122 ad2aec81-9ff2-bfa7-3954-d0a1b5e8df82 355 Measurement 23 4 \N 1 1987-12-07 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2123 9d748a3d-bcf5-a10c-5563-db3f3050e087 257 Measurement 20 6 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2124 2e4628d1-48ad-407c-c98e-a95cf8e57094 356 Measurement 20 6 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2125 18fa0ec9-0d40-ac2c-a92c-016d1dbf5b29 356 Measurement 24 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2126 3c1fa686-9386-7ac2-ca54-9e07bd531323 257 Measurement 24 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2127 414457d9-4e39-2ac3-cebe-69d2c2e13777 257 Measurement 22 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2128 8fde324a-96ba-302e-8e90-19c1ff1b4c45 356 Measurement 22 7 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2129 4cf17545-2971-3d97-ce8e-4bcd12600af7 257 Measurement 25 8 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2130 b67455a6-d3df-e619-1e2a-7a8a61b7dc50 356 Measurement 25 8 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2131 bf2b8341-35e4-c8bc-95c8-5f375f3f5c6f 356 Measurement 23 4 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2132 e0a1c0c7-7358-38c6-efc5-bf5ea1ce1d1e 257 Measurement 23 4 \N 1 1988-01-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2133 b85c1789-5adf-a686-4f47-43e267b2e369 357 Measurement 20 6 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2134 d3137327-2de1-75db-06df-66be09aa6795 258 Measurement 20 6 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2135 3648d9a2-bc5f-327e-ab81-952a486ebb3b 357 Measurement 24 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2136 f66066c3-96c3-78e6-8151-6274569c3d83 258 Measurement 24 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2137 5d09edc5-7e16-4078-8928-edcf6d65de0b 258 Measurement 22 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2138 ae3807e9-10e8-3f21-6bc4-bca065bf8543 357 Measurement 22 7 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2139 507fb6e2-7255-dc5a-f642-c63efffefcfb 258 Measurement 25 8 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2140 1732abc6-1c2f-6d72-6e72-f3761e271e9e 357 Measurement 25 8 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2141 de42b29f-9562-3e70-ed5f-96308931c022 258 Measurement 23 4 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2142 6822a224-59ad-c5b9-6766-bb3756495f80 357 Measurement 23 4 \N 1 1988-02-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2143 439726cb-1d4a-9367-f035-dc788ff7bd3c 259 Measurement 20 6 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2144 1cf5e7e3-3a8a-25f5-c44a-625d439b1fcb 358 Measurement 20 6 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2145 85a29d78-bc0a-aecb-7f81-85c552bf015c 259 Measurement 24 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2146 02437b09-c3d8-76cb-2b40-e7e1fe19b7bf 358 Measurement 24 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2147 2ba10028-9818-0b13-8054-bbb64f1df80d 259 Measurement 22 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2148 92c6e34c-d867-27bd-9602-771a63322be5 358 Measurement 22 7 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2149 7e600895-af9d-081f-aec5-dfa1271077fd 259 Measurement 25 8 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2150 e0c9971d-d7a7-b097-cbc0-9290fad69a7a 358 Measurement 25 8 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2151 e2a12cba-287c-32cc-a757-f50e5123b3c7 259 Measurement 23 4 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2152 9591df11-8061-7723-287a-50f7b99dbe06 358 Measurement 23 4 \N 1 1988-04-21 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2153 f19a75b0-2a2b-b02b-01df-79e7670f67ee 359 Measurement 20 6 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2154 49770161-c941-db0e-7799-70c2452d9d45 260 Measurement 20 6 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2155 dd4261ca-e0a6-6499-2629-5928d5900f95 260 Measurement 24 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2156 d6ae66bf-6e16-cbb6-b875-c330f9e07b48 359 Measurement 24 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2157 74b9e9ef-da9c-6341-648b-f7edede87e81 260 Measurement 22 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2158 8ce07195-af4e-ceb8-3bc0-6b0622aee06c 359 Measurement 22 7 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2159 3e775577-2694-7612-8d21-ae8c338f7c9d 260 Measurement 25 8 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2160 0559532f-1880-4d8b-e433-66446fc16e0f 359 Measurement 25 8 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2161 647180df-27b1-c335-bdcf-8c54c0fee954 359 Measurement 23 4 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2162 23f65493-fbc3-89ae-02db-5b24432a814f 260 Measurement 23 4 \N 1 1988-05-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2163 aa72f886-d839-2e23-cacc-c88893eb82bf 360 Measurement 20 6 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2164 34d3bb6d-e6ba-ff08-bb4b-db2345c628f7 261 Measurement 20 6 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2165 2bd1b6b5-6dd4-c958-a984-2718a41e4974 360 Measurement 24 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2166 5b87d8dd-c88e-78f7-d58d-4740aec1b55f 261 Measurement 24 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2167 badcd32c-57e0-2eb9-58b4-9711a08632d7 261 Measurement 22 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2168 fc282733-8e91-7446-4de7-2722eb58b586 360 Measurement 22 7 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2169 441439a0-a9fc-9cbc-81f9-a31070f4cbf7 360 Measurement 25 8 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2170 d1e5a49b-d5ed-677d-a14a-51aef2d51177 261 Measurement 25 8 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2171 b39d9db8-6ad3-b882-563c-294c5af8b866 261 Measurement 23 4 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2172 617a0902-6ea8-2de0-0c44-8ab14977a615 360 Measurement 23 4 \N 1 1988-06-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2173 943fedfb-dca4-01c3-6edd-e2af95e246bc 262 Measurement 20 6 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2174 336c3899-8b20-7ce8-6359-b7aea9664d81 361 Measurement 20 6 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2175 66f2dc3a-ca9c-8474-1285-2ab00e39d224 262 Measurement 24 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2176 7a9af0d0-f2ec-7464-7e5b-cf1aea9723d9 361 Measurement 24 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2177 85dc9310-7099-d70a-0eb1-d2e4e3b54cbf 262 Measurement 22 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2178 b6047347-fa0e-a6af-5491-67a742c2e5f3 361 Measurement 22 7 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2179 7719e70d-cd62-c5b0-21a3-6e9c81553b02 262 Measurement 25 8 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2180 c407bc32-522f-5b00-0daf-ae1da5d21823 361 Measurement 25 8 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2181 0a78b7f7-78c0-dcbc-145d-1c6a4e2fdda5 262 Measurement 23 4 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2182 91f82882-f25f-f867-5ebd-8d4ed2f76f02 361 Measurement 23 4 \N 1 1988-07-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2183 0162dc78-4676-5c41-d5ef-271eaeaca2cd 362 Measurement 20 6 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2184 7ce48481-c29d-6683-03ec-11f74f54e0b4 263 Measurement 20 6 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2185 fc11d0ad-eac3-d82b-9657-54d270501273 263 Measurement 24 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2186 2a0d4f76-f3a6-2554-7384-d1866b48da93 362 Measurement 24 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2187 93cab6e4-3463-8763-03ed-4830564039fd 362 Measurement 22 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2188 504039f6-ef59-8ab7-8d94-3939085bcfe1 263 Measurement 22 7 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2189 c8d4d8f6-346c-a2cf-2bbc-bcea2a38d81b 362 Measurement 25 8 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2190 fb883a7e-21cc-4254-d3ab-d819a0ad0d13 263 Measurement 25 8 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2191 246c5542-ff09-b370-4d2a-05efb871e973 362 Measurement 23 4 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2192 c6675a9e-4231-1d00-f9bb-149047381992 263 Measurement 23 4 \N 1 1988-08-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2193 3e40783a-04be-cfc1-2cab-d45f997ffab0 264 Measurement 20 6 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2194 ac486f8f-44ee-77f1-d9c7-22d15ae09364 363 Measurement 20 6 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2195 b561f7ec-d9b2-2252-1ba8-ced0d197a21d 264 Measurement 24 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2196 bfce120a-64df-0f3a-1678-2595086a7cae 363 Measurement 24 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2197 dbe79c47-f8da-49cb-a330-4fdc953dc2a0 363 Measurement 22 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2198 47b916ac-4c66-f44c-d2c3-47c42c494b82 264 Measurement 22 7 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2199 62f916f6-c60c-972e-4f07-212560915646 363 Measurement 25 8 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2200 72d66952-e5e1-e03b-2bed-2cf78f05c44b 264 Measurement 25 8 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2201 452e1402-ce89-f542-312a-e866b2af6df9 264 Measurement 23 4 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2202 3abeacb4-63ba-570a-2938-9aeabe0ef528 363 Measurement 23 4 \N 1 1988-09-23 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2203 bc78d75a-3142-1460-b5bf-ba286ce6a5b4 364 Measurement 20 6 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2204 0de8c0b0-d00e-d430-6920-d7d2c2d6f423 265 Measurement 20 6 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2205 8737922f-83b9-339d-44cc-d4214dbcbd7e 364 Measurement 24 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2206 9f06af2b-5947-c7e8-fc7e-aed15cf84897 265 Measurement 24 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2207 135b9bcc-ac71-a242-192e-748c93c10f87 364 Measurement 21 10 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2208 36d7d2f7-f89b-e5ea-ccc9-4938d2fb8908 265 Measurement 21 10 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2209 2d3ab776-67bd-478b-0328-00dc4383a415 265 Measurement 22 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2210 2a51fee6-18b1-472b-dca0-8d22490f8c81 364 Measurement 22 7 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2211 80d3fa17-dc88-8239-6ca2-5939c166696e 364 Measurement 25 8 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2212 538d6544-da95-418c-9eeb-d53d80275752 265 Measurement 25 8 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2213 0fdff2c5-08c5-f9df-1985-f1b68a80bcd6 364 Measurement 23 4 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2214 b90bc4fd-d4ad-4f72-ae63-336f544a18b0 265 Measurement 23 4 \N 1 1989-02-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2215 ec205fb7-fc44-aaff-49f7-920b632bb6d2 365 Measurement 20 6 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2216 cef783ef-98ad-13e4-9b75-de3ff8f0715a 266 Measurement 20 6 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2217 1e9af66a-789d-ac8b-107d-7240dedd3fcc 266 Measurement 24 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2218 4e45c909-113c-8946-b050-ea1d784de880 365 Measurement 24 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2219 4060be25-82f9-ae85-2d83-02203ff831db 365 Measurement 21 10 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2220 6942ab40-f7fa-398e-7ffd-472e22bddf3a 266 Measurement 21 10 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2221 536b9fee-73fa-39b1-ad9d-01c97d35fbe8 365 Measurement 22 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2222 829553e6-ddf9-a0b9-4bd2-885ea3d9115f 266 Measurement 22 7 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2223 0d10c7f8-c67e-9383-154d-398ae7d17130 365 Measurement 25 8 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2224 ea9b9fd1-c63e-4250-761c-ba79a247611b 266 Measurement 25 8 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2225 8ab44131-8784-d126-5b6b-7762af02947d 365 Measurement 23 4 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2226 2dc94e0d-f366-a2c9-8222-89245a74990e 266 Measurement 23 4 \N 1 1989-03-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2227 8619f7a4-c023-0346-5d1d-4db84738efde 366 Measurement 20 6 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2228 ca363849-0dfe-4a25-c0d6-36324b487504 267 Measurement 20 6 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2229 096f3e86-33bb-9ca6-9e7c-a73721033f85 366 Measurement 24 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2230 509dc304-215e-cfe1-d9d6-1d57af6f13a3 267 Measurement 24 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2231 8b48d9cc-faa2-4ebc-0497-e74c1a65ef74 267 Measurement 21 10 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2232 ac878415-313e-5a8e-874b-d5fb33c2b504 366 Measurement 21 10 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2233 b4d1bbe8-9aa6-3d7b-0259-aa48aa1a533a 267 Measurement 22 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2234 d9705853-7b11-391a-c576-5e5340971a14 366 Measurement 22 7 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2235 efa9f945-5d51-907d-ff0a-4277ae030353 267 Measurement 25 8 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2236 79918015-2136-d4fe-bee3-d6b303c32469 366 Measurement 25 8 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2237 b9e00e5d-aa83-3f52-7c52-5b43b8ce3d75 267 Measurement 23 4 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2238 0ce02ace-e650-d0e8-d4e2-19becb274740 366 Measurement 23 4 \N 1 1989-07-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2239 268832f4-a7bd-2f48-a2a6-ae229d341789 367 Measurement 20 6 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2240 0e1cb882-822d-00ec-0d5b-b03d19d5867e 268 Measurement 20 6 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2241 94877b1d-9541-3cef-5f8c-c2bfcd80d873 268 Measurement 24 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2242 9ec9bc99-28f6-4624-7db7-e962c73a3dd1 367 Measurement 24 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2243 b3fbd895-7197-37b9-ce83-8c381702e173 268 Measurement 21 10 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2244 15c52498-4c47-ef58-67b8-15e31375fe5a 367 Measurement 21 10 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2245 cbaffa15-479b-8c54-de85-4c779a204cd7 367 Measurement 22 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2246 8f854cfa-4941-c534-7a8a-1d320247090b 268 Measurement 22 7 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2247 b63f523e-5e2f-2450-f97e-553955d413e0 367 Measurement 25 8 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2248 9400ad17-c086-2440-5d2a-d919f38d376e 268 Measurement 25 8 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2249 640e1095-7fbc-3146-4391-7b173a443bc7 367 Measurement 23 4 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2250 ff233020-825d-5c96-92a6-788cc96d3615 268 Measurement 23 4 \N 1 1989-08-10 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2251 2c943a5d-a52d-f7b3-a942-a82924de8f8f 269 Measurement 20 6 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2252 724d7983-7b1d-0387-3581-ce4f3d92d092 368 Measurement 20 6 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2253 b922b958-f2b8-81ca-b08e-d76a62f32855 269 Measurement 24 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2254 38216a7a-d9e0-a870-afed-985cafe45bae 368 Measurement 24 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2255 ea271ad1-6207-192c-f9e4-23fe85fe70a1 269 Measurement 21 10 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2256 43d24dd1-7701-bc7d-2aa8-99086bf929c1 368 Measurement 21 10 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2257 1ea23a41-a0cd-77e2-27b9-6269f55596e3 368 Measurement 22 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2258 6ac7f4e9-75b1-d766-759c-897b204413e5 269 Measurement 22 7 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2259 66e33000-98e0-9866-3bb9-b0eca31ae4e4 269 Measurement 25 8 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2260 710911b2-d547-9bfe-2710-6b73884d4433 368 Measurement 25 8 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2261 fbb96886-d819-8fbf-5643-cb58573aeb15 269 Measurement 23 4 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2262 34677d80-d0eb-f69a-0427-a444ef2722dd 368 Measurement 23 4 \N 1 1989-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2263 16851e1d-5366-736f-418a-85f55e824b8f 270 Measurement 20 6 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2264 d5aa6291-9912-75c2-0f4b-f5b63b3c7146 369 Measurement 20 6 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2265 988ebf32-2952-238f-f663-9222145b85a7 270 Measurement 24 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2266 d37319be-e515-ea00-4857-103ad3b36beb 369 Measurement 24 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2267 6e010a95-6945-7b69-540e-ffe1bf4fa364 369 Measurement 21 10 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2268 1f76cced-4d83-688c-c1ee-a02171777a98 270 Measurement 21 10 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2269 149f74b7-dfe1-ff29-a198-41a1e4e312db 369 Measurement 22 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2270 26f3e81b-6512-2c9d-39f4-2dc573e9c919 270 Measurement 22 7 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2271 a9e80a97-df12-e8eb-9a3d-9b57cf9c81b6 270 Measurement 25 8 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2272 662199d3-8ad7-1505-99bc-be4488f2c33b 369 Measurement 25 8 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2273 8c2d006a-6b6a-8ffa-f253-78d883e67623 270 Measurement 23 4 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2274 fba994f7-98f6-9c38-9432-5a9c914ad1bd 369 Measurement 23 4 \N 1 1989-11-19 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2275 b9ec7ff6-233f-492e-c198-872f0d369841 370 Measurement 20 6 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2276 d6480a6c-ac75-001c-52ad-3388590404e6 271 Measurement 20 6 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2277 828fef89-5ed8-be77-753e-bcddc196740f 370 Measurement 24 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2278 4a5d25e4-34ef-e0cc-859e-878e7aeb54e9 271 Measurement 24 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2279 ba73dbac-e264-8261-3ff4-385c9f0198ab 370 Measurement 21 10 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2280 a4c90bc3-bebb-d33b-2257-56d66e013833 271 Measurement 21 10 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2281 17b79d47-b18a-eceb-fea0-bdf374259b16 370 Measurement 22 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2282 3c17965e-dd22-e74e-8aac-fd294f96b4c1 271 Measurement 22 7 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2283 bdbeffcd-bbdf-2fe7-0a64-bc1ae49e4e13 370 Measurement 25 8 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2284 cf260b7a-f33c-002e-117a-31ccdbdd5fcb 271 Measurement 25 8 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2285 f760f6e6-cd29-48fd-e9e2-d9f8520580ca 370 Measurement 23 4 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2286 6c77b0df-c44a-b523-1236-28adf2d359b0 271 Measurement 23 4 \N 1 1989-12-12 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2287 7223458a-212c-c16b-64a0-e52665bf91dd 272 Measurement 20 6 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2288 3ee8936b-bec1-f3b4-5022-6898fc4408a6 371 Measurement 20 6 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2289 f1e93837-1db5-8faa-c99e-3870e6a7c34f 371 Measurement 24 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2290 84ca8878-56ef-0e2f-af51-043c08b8fac6 272 Measurement 24 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2291 854a6fe6-3541-4603-6116-1f4f14d8ad8d 371 Measurement 22 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2292 64be9306-53a5-8d87-1067-0a4dd593bb6d 272 Measurement 22 7 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2293 c5bf2c54-8abd-7536-1b85-68cf66d2b3d9 272 Measurement 25 8 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2294 04e0ee2f-c521-4cb0-857f-6a35f2e0149b 371 Measurement 25 8 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2295 cf8fe588-946a-2eba-5077-ea25103e4a87 371 Measurement 23 4 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2296 1af55490-0ea9-acca-9201-8aefea975b00 272 Measurement 23 4 \N 1 1990-03-13 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2297 ecc84f03-a390-9fe4-7377-2c6c3df538a6 273 Measurement 20 6 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2298 a5f5bd4b-c235-25e2-03d4-1530a62ff1f8 372 Measurement 20 6 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2299 567d299e-1b9e-93cf-f8d1-aa9acc93ccf9 273 Measurement 24 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2300 191cc3f0-582f-d3eb-7ab7-ddafe8d05068 372 Measurement 24 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2301 bc14ee74-91cb-4f8b-34ef-43a94d36895a 273 Measurement 22 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2302 b76f4c3b-2c5a-a0f5-9395-5e3e3125eb56 372 Measurement 22 7 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2303 85824f67-9f94-5f7c-a26b-8b6bbd4270e0 273 Measurement 25 8 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2304 372233d6-9409-af0b-28cb-67e446435941 372 Measurement 25 8 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2305 88ec203f-49de-3c12-b833-8749b22b04cf 372 Measurement 23 4 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2306 78ca243a-be30-d997-e803-3789c4fea2fc 273 Measurement 23 4 \N 1 1990-05-02 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2307 60a59e0e-415c-9de1-bcd0-1906856046c2 373 Measurement 20 6 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2308 3166f081-779e-2373-014c-9b539c227997 274 Measurement 20 6 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2309 0089bc32-7bbc-b977-a890-92c0a89ac385 373 Measurement 24 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2310 586a4e6a-f30a-b82b-5450-bd3c28bf5107 274 Measurement 24 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2311 9cc91c0b-237b-3ac8-8e3e-45c02a7af242 373 Measurement 22 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2312 0da7bf18-c03d-61cd-7755-a623cbcd0fcf 274 Measurement 22 7 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2313 76ca6f43-fdc6-2983-bf17-fb71594f7df1 373 Measurement 25 8 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2314 a5682768-452f-3ffe-97b3-a764acd93b6e 274 Measurement 25 8 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2315 d5fb3a09-bd30-1867-39ee-d1bf0d68f1e5 274 Measurement 23 4 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2316 a2690c15-556d-36e7-ec06-3023c8ff2d94 373 Measurement 23 4 \N 1 1990-06-11 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2317 b4e72a9b-e359-038a-78f8-0fab55277231 275 Measurement 20 6 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2318 d94462e8-3d6e-049f-d6f7-1c2a1e189008 374 Measurement 20 6 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2319 875813a4-1000-d811-5336-31dbe0386055 374 Measurement 24 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2320 c1651858-11bd-b6ea-eb82-d09bdaf3672b 275 Measurement 24 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2321 c0fdc9d4-a70b-f84c-e952-386e898f5141 275 Measurement 22 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2322 aefaba82-898e-f260-1812-7484a225972e 374 Measurement 22 7 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2323 df047f51-4c8e-ea6a-9eb3-42fde124a979 275 Measurement 25 8 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2324 ea80604e-400f-9c8d-7ecc-6864ea1d2d00 374 Measurement 25 8 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2325 c2fa71aa-5bdd-8e77-e30b-d0cdea0876e1 275 Measurement 23 4 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2326 9ad53d63-a702-93b7-cc5f-c96ac0694d7a 374 Measurement 23 4 \N 1 1990-09-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2327 d362ebde-cd4e-fe70-6487-a0e7c4059079 375 Measurement 20 6 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2328 cf483a45-bf52-6b0f-15cf-7338279e23df 276 Measurement 20 6 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2329 c58809b0-19ce-4a78-dcd3-08f8286b8c85 276 Measurement 24 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2330 c10198a4-92ce-e763-af52-aeb538530ca9 375 Measurement 24 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2331 b1ffc8ba-4e2a-04f5-68bc-88a89694122b 276 Measurement 22 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2332 a81d54cd-c3c8-be41-d134-8149f1b72fef 375 Measurement 22 7 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2333 07ede731-516e-86aa-7045-f777f9f73358 375 Measurement 25 8 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2334 bf837a03-c392-1645-6a19-71c29346620a 276 Measurement 25 8 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2335 898d766c-cabf-f5a3-cf62-bc63ca505ecf 375 Measurement 23 4 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2336 846d316b-3ca0-5206-99da-f7b4325db1d7 276 Measurement 23 4 \N 1 1990-10-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2337 6123ea95-101f-14a8-09c4-b665ade87961 277 Measurement 20 6 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2338 d40eb77b-b128-7f59-ef0b-cd4be631dd2b 376 Measurement 20 6 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2339 0f1a843a-df9d-66bd-f6ad-3db6cde1bc26 277 Measurement 24 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2340 ca47f1b8-602d-c848-2aa2-9fcb4750722e 376 Measurement 24 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2341 b7cdbbb1-772a-01d9-4e48-8b3f982c5515 376 Measurement 22 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2342 45960253-fd15-e8ff-e591-2cbf085a2c46 277 Measurement 22 7 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2343 f63a1476-66ab-5097-643e-be71f6281811 277 Measurement 25 8 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2344 28c4aa79-c2a1-5c3f-ad4a-771c846e9ef6 376 Measurement 25 8 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2345 6b8b7e57-5fcf-f2bc-965f-824f9242cb0d 277 Measurement 23 4 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2346 90dffac8-5916-4ec7-0174-06c037a7a572 376 Measurement 23 4 \N 1 1990-12-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2347 2e3fefaf-b3a6-4dab-bcb1-4d7a8b6f6d6b 377 Measurement 20 6 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2348 e5b91fab-4725-cae5-4d4c-2b527e518a73 278 Measurement 20 6 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2349 4fdfc02a-37c2-6f0f-159c-0f5f847728a9 278 Measurement 24 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2350 bd6c0db1-206d-6fb7-5336-60cd24a8efb6 377 Measurement 24 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2351 7f41e769-629f-ff9c-42c5-5867c2d11e26 278 Measurement 22 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2352 e7837332-6b59-2c16-a95d-75fcbd61d70e 377 Measurement 22 7 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2353 a26bb989-6437-d74c-3799-5da0719ffe8f 278 Measurement 25 8 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2354 cf3045c5-9f42-5129-23f5-f86737924f54 377 Measurement 25 8 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2355 4a0c7b72-9fb0-cf56-cf55-94ed2b8141a4 377 Measurement 23 4 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2356 dec192ee-9812-7c13-1833-1f79fa50fcfc 278 Measurement 23 4 \N 1 1991-01-15 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2357 da199e30-e8c0-c913-410f-9d6a0640d060 279 Measurement 20 6 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2358 6128b155-d6d6-ed43-83d2-d2e0bc546925 378 Measurement 20 6 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2359 459819b7-a6f1-9388-3235-1567966b49ad 378 Measurement 24 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2360 50440f14-c5f9-fb01-5378-aceac131a696 279 Measurement 24 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2361 e598fd73-e851-4677-3608-59c0c7f0e9a3 279 Measurement 22 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2362 47c51b67-14e1-287d-5c8b-0a7f7dc460e1 378 Measurement 22 7 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2363 92d124da-0c5b-6813-b190-5a437f6cd654 279 Measurement 25 8 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2364 48f19153-9480-8c0e-7c30-64ee51bc7beb 378 Measurement 25 8 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2365 3bdeb6ec-9514-8424-b260-14944e9820d8 279 Measurement 23 4 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2366 025b7dd1-8db3-76de-60db-223e82a9a0ca 378 Measurement 23 4 \N 1 1991-02-08 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2367 7633790e-aaf6-fcaa-93ab-7e8e4ba78b7b 379 Measurement 20 6 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2368 d0c954cd-268a-3877-572b-697f5ccf2a65 280 Measurement 20 6 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2369 13d3d231-a370-cdef-0d64-0eecf34ffab9 280 Measurement 24 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2370 9db26d6a-9425-3223-4fe9-749961459a00 379 Measurement 24 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2371 b4619af2-3203-00d5-d4b9-093be967c327 379 Measurement 22 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2372 a33eef1a-3e8f-1f5c-a97e-06fa49f60f63 280 Measurement 22 7 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2373 9d6c2dc5-d8ac-76c1-bc2b-223366b5d2a5 379 Measurement 25 8 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2374 433e8ef5-0662-188c-5767-7fb326b034f3 280 Measurement 25 8 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2375 1a3a395e-4a9b-6912-81b5-c64b5274f1e9 280 Measurement 23 4 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2376 916d463d-e03d-71b4-b4f3-d9d8a56529a4 379 Measurement 23 4 \N 1 1991-03-25 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2377 d81d347a-6add-60c5-45b1-7b220dd07e93 281 Measurement 20 6 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2378 b87933cd-2385-0b7f-82c0-6fee3b0e64c6 380 Measurement 20 6 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2379 02211b30-953c-0c64-45eb-7ea69afa3f94 380 Measurement 24 7 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2380 94450da4-b475-69b7-95d9-f8a3e29a8df2 281 Measurement 24 7 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2381 1a2bc63b-c557-34b4-954d-631767f7f38f 281 Measurement 25 8 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2382 5d569eb4-1b26-f9e4-c63f-32c6b92fd6f9 380 Measurement 25 8 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2383 636ed682-cf59-699d-51f6-bbaff3c5df7f 281 Measurement 23 4 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2384 91ce76e3-63ab-fd7f-e817-cf04e0fe2ccd 380 Measurement 23 4 \N 1 1991-06-28 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2385 a5c565e5-5a6a-4870-1d39-40570384800a 282 Measurement 20 6 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2386 42af948b-a31c-5bf4-8ebc-9b8fd42693cd 381 Measurement 20 6 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2387 f55c5c8e-fd2f-9860-02c8-a2fe6f7a2402 282 Measurement 24 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2388 a4d4ccbc-61e0-6bcd-89ef-ae5598ab81cb 381 Measurement 24 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2389 93a291a0-97ef-eb47-9e91-5a2fd1a10f86 381 Measurement 22 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2390 c7427cae-ebef-e467-418b-67421f046dd5 282 Measurement 22 7 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2391 5fb5b8c1-eddd-5d2c-e9d6-ecc63c436d70 282 Measurement 25 8 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2392 f0966c09-1a37-70a5-c057-82ccf9c7b2c9 381 Measurement 25 8 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2393 835a8df9-3114-19ff-b318-184fb221d35d 282 Measurement 23 4 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2394 5a65a5b4-985a-0b97-3a25-dd6517a12c72 381 Measurement 23 4 \N 1 1991-08-01 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2395 a9fb087e-245c-9223-17aa-d183c514ac32 283 Measurement 20 6 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2396 45cf4787-6a63-01ad-3d43-d7196f7fa505 382 Measurement 20 6 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2397 bed74fcf-16f5-ed58-18ea-2d396a65720a 382 Measurement 24 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2398 32160bf4-29f0-0776-fcfd-58add83df08e 283 Measurement 24 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2399 00a47b3b-49be-751f-5a34-5c2d961e8a7b 382 Measurement 22 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2400 1aaef7a1-ef4e-4461-6519-5a4406eaa585 283 Measurement 22 7 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2401 c0378096-8fc4-f1b3-50fa-8c35ac54238b 382 Measurement 25 8 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2402 d2bac47d-ae3a-a63a-7360-7c2daaff06ea 283 Measurement 25 8 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2403 8642de5c-7fef-e0f6-7abb-cf09ec6b2ead 283 Measurement 23 4 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2404 2ed8ee87-f669-9b27-64d2-4f626b4484be 382 Measurement 23 4 \N 1 1991-10-05 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2405 e67ff159-8b6c-0c36-4b4f-ccdaba6f6406 383 Measurement 20 6 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2406 02b94ddf-bc89-07a6-3694-757cbdbcf159 284 Measurement 20 6 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2407 6d9cddde-4a81-b043-07ea-d1a942f3075e 383 Measurement 24 7 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2408 5e8329f6-b2ee-55b9-5ac9-a755456d7de6 284 Measurement 24 7 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2409 efef0a98-b6b5-502b-5272-3f8e4d8d3dce 383 Measurement 25 8 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2410 16e48103-ce4b-8096-26e8-c5dc88a58bd3 284 Measurement 25 8 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2411 09a3c2e5-0ea4-7720-0fe7-76ac2df4ccbe 383 Measurement 23 4 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2412 25395b1d-d61a-2d7d-b44d-190eb22428fb 284 Measurement 23 4 \N 1 1991-10-29 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2413 492813d7-faee-94c7-1a3c-6f047d7b1e6d 384 Measurement 20 6 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2414 5704f098-06ea-6d61-7ffe-eaf8491eb987 285 Measurement 20 6 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2415 dcc9db12-2a9c-4bc5-8378-3f8a07cbcd61 384 Measurement 24 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2416 e54513f2-5bab-f179-2d7d-99bb9fcbf712 285 Measurement 24 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2417 c3e04c0d-8302-4137-4f8f-b9ffc22c40db 285 Measurement 22 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2418 e213898f-377b-bb26-8c4f-8d82cf0dff36 384 Measurement 22 7 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2419 34d9696d-bbbf-ece2-24e7-8d72f82024b8 285 Measurement 25 8 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2420 5f2a2f4f-ba2a-e22c-c5ca-c35931c13f93 384 Measurement 25 8 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2421 9f3ada53-3f02-c27f-cd2c-8817348baefa 384 Measurement 23 4 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2422 35630d8d-c81a-286a-5f36-ea2b9e361e8b 285 Measurement 23 4 \N 1 1991-12-06 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2423 850aa9af-9da6-fd6c-763e-90aa88ff7c8c 385 Measurement 20 6 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2424 7304d62b-6032-5342-b65d-78e21844022a 286 Measurement 20 6 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2425 e18f8c20-ebb4-01ff-d25a-982a4983f968 385 Measurement 24 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2426 9ed2ab46-6ab3-2e0b-fe85-fdfd0ae015dc 286 Measurement 24 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2427 2ba50192-36f4-ab59-d946-f0ef583961c2 286 Measurement 22 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2428 bb6d3470-ffb9-ac1d-ae88-89693756c81c 385 Measurement 22 7 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2429 560bd9a6-ceac-6759-5246-a0ea651a8d22 385 Measurement 25 8 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2430 42d873f3-bbf7-190e-0d4b-2da442521988 286 Measurement 25 8 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2431 98a80195-f76a-2346-9c58-f1be26a95fca 385 Measurement 23 4 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2432 4889d340-cb33-2625-8596-1a22c96f680d 286 Measurement 23 4 \N 1 1992-01-18 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2433 2ac16890-a401-1b67-b1fa-3b6327182b44 386 Measurement 20 6 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2434 118e961d-4a39-0ab2-6163-f2fc4ca4c960 287 Measurement 20 6 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2435 590500f4-b942-b002-5ada-9b405f7d20b9 386 Measurement 24 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2436 ccc72f15-afe3-3150-7b8c-f7f13a95db1c 287 Measurement 24 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2437 142051a0-35f6-1867-98ee-f5481e3da527 386 Measurement 22 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2438 db85967b-f1d5-3270-0824-ec32e410eab0 287 Measurement 22 7 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2439 ec6ce25c-8b9b-2358-b91c-dc43e00d2ace 287 Measurement 25 8 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2440 6ecd9eaa-0776-e852-41b8-c7a74e124002 386 Measurement 25 8 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2441 cadb4e80-665e-fb41-1cf2-c9ae4b3367a0 287 Measurement 23 4 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2442 aa14493e-9ef5-15aa-568b-486322247b33 386 Measurement 23 4 \N 1 1992-02-22 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2443 b4ee09b1-fdac-048b-0cea-aa649564d561 288 Measurement 20 6 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2444 f9574bd1-a9d6-cfe3-830c-f3969d47a13e 387 Measurement 20 6 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2445 50138c81-9adf-d918-0c72-8bc4c0d91d89 387 Measurement 24 7 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2446 4695a687-9ba4-f871-28ca-170b33445f94 288 Measurement 24 7 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2447 c9b40e57-9143-226d-b3dd-e7990a1f6bdb 387 Measurement 22 7 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2448 c31f79aa-cf48-140e-f71b-147417d416e9 288 Measurement 22 7 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2449 fd65d1ee-eaef-b056-ef14-9b51d651c236 387 Measurement 25 8 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2450 66a6ed53-5f30-cf35-f7ee-ead95dc6d83a 288 Measurement 25 8 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2451 84b84f39-765c-a202-5ef3-1555c38811c3 288 Measurement 23 4 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2452 29c17a79-42c0-b88e-281e-8b2134e028b7 387 Measurement 23 4 \N 1 1992-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2453 b59a1a25-e947-28a0-7208-34fd672d25df 388 Measurement 20 6 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2454 d09e6d9a-e732-9995-f36c-bbb8ea875c25 289 Measurement 20 6 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2455 4a7a1cf6-8e52-24ac-d27b-2900264250af 289 Measurement 24 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2456 c14d33d2-e727-492b-8e1d-9af65a0fa3c0 388 Measurement 24 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2457 ad99a9d8-d797-7d68-645c-a6a57384dd7f 388 Measurement 22 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2458 59619db5-ffea-36de-a17d-1f1b0d985888 289 Measurement 22 7 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2459 5d4be8ad-e59b-b5ca-21cf-bbd827838631 388 Measurement 25 8 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2460 98092146-dc56-69d9-0666-32fb1a79f7e6 289 Measurement 25 8 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2461 b41a3c1c-39e6-316a-0694-612d600216df 289 Measurement 23 4 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2462 b2715ef1-ed57-b015-9e12-494d7588c348 388 Measurement 23 4 \N 1 1992-04-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2463 e8976185-6863-b2fa-c42a-c535c57d786c 290 Measurement 20 6 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2464 cfc09330-b8e8-c2c2-e2e7-b618dfb69dd7 389 Measurement 20 6 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2465 dba0e87c-58d9-b9a2-2750-bd51989e7bcd 290 Measurement 24 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2466 c0cb6ede-4e50-f556-d9ef-79e4928d40ed 389 Measurement 24 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2467 0ea8af1c-c880-c9cf-e0e8-2f03471abba3 389 Measurement 22 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2468 5285c4ce-06a9-9312-07c3-affe8c370036 290 Measurement 22 7 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2469 3e02f1e9-8089-0d91-52b9-22d361b5aaa2 389 Measurement 25 8 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2470 2659bb40-3bea-4951-8468-79dc1870e656 290 Measurement 25 8 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2471 422e5602-0992-a5d5-2e5e-1bc32a45197f 290 Measurement 23 4 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2472 06e8292d-160f-01ff-7265-91216fedad81 389 Measurement 23 4 \N 1 1992-05-14 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2473 1f6bd3ff-dc65-8bba-194a-31c43b944a48 291 Measurement 20 6 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2474 58da5510-cfc0-d830-49e5-50b5fe360d09 390 Measurement 20 6 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2475 d235b8d4-c885-d1ef-d569-60b58e668f77 291 Measurement 24 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2476 bf26e2e5-525a-cf19-5743-28029e5a5d1c 390 Measurement 24 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2477 2cf2d94d-df72-cab5-db23-d35f7aec3982 390 Measurement 22 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2478 62e9afef-6a38-494b-d339-fa5154becd3c 291 Measurement 22 7 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2479 96e70760-3e9c-abad-7e85-a1d4635bd469 390 Measurement 25 8 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2480 442708bf-aee3-5aa7-5612-fe7c6f65efaf 291 Measurement 25 8 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2481 a81b7542-10f3-5c90-8512-373ca2436440 291 Measurement 23 4 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2482 28afa7dd-d6a1-eb25-649c-c43525977d0a 390 Measurement 23 4 \N 1 1992-06-16 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2483 1b49ff7c-333f-ff62-0c8a-7a77f1a4f5eb 292 Measurement 20 6 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2484 32f522db-316d-98b6-37fc-cbc4ec39a37f 391 Measurement 20 6 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2485 105190da-3a69-c4c3-ac72-db381e42f69d 391 Measurement 24 7 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2486 a08ab3f3-226c-238d-1979-821bfe2a9622 292 Measurement 24 7 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2487 8213c475-7061-d665-4cdd-a7d1f3de67fc 391 Measurement 25 8 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2488 965f9f56-37ac-e63d-d66e-c45fda7d0a04 292 Measurement 25 8 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2489 92bc0f1d-239f-644c-e2cd-34a797ab93b2 292 Measurement 23 4 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2490 8d580304-67ab-8576-0881-2f29534c151d 391 Measurement 23 4 \N 1 1993-03-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2491 6c0f6bc8-cbf0-e476-744d-4dddf1f71ffc 392 Measurement 20 6 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2492 31744ad0-bf6d-f492-ebef-e972b465a497 293 Measurement 20 6 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2493 d25f1f63-856f-6d74-f679-58e72ef01a92 293 Measurement 24 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2494 709a8042-509d-cbf9-cd6e-72d1dd418c57 392 Measurement 24 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2495 6061ba22-2780-5595-0e97-10e2ddb5bddb 293 Measurement 22 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2496 d4d8d97d-dea6-757f-3044-7976c6da8cef 392 Measurement 22 7 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2497 3572c620-64e8-e775-1fe3-6f8ab25debd8 293 Measurement 25 8 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2498 c3404f45-f6d1-4ac4-a405-850bc33b5fa5 392 Measurement 25 8 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2499 076ed266-ad9b-0bb1-bf58-09b838b4264a 293 Measurement 23 4 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2500 adae1b8b-0ad1-1806-ccf8-9fa466580b66 392 Measurement 23 4 \N 1 1993-04-17 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2501 6e63ab1b-e956-991c-8f05-da7fb7f181ec 294 Measurement 22 7 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2502 86781347-2b22-55e5-735b-7230e62c2233 393 Measurement 22 7 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2503 33e875ba-7b6d-a98a-d5a2-4f2517ee9522 294 Measurement 23 4 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2504 5a3c49b2-08a8-8f7c-270d-2f62f33aef28 393 Measurement 23 4 \N 1 1993-06-20 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2505 2e7d67b8-537a-55a9-998e-9f3320e822f4 394 Measurement 22 7 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2506 5b90f41d-1471-f403-dc08-41c625d5476a 295 Measurement 22 7 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2507 ef895afb-6118-6788-dd1f-19bec2dc13b8 295 Measurement 23 4 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +2508 a741f730-3fbe-4503-87e2-19b448c207f1 394 Measurement 23 4 \N 1 1993-08-24 00:00:00 -5 \N \N Complete Liquid aqueous 1 +\. + + +-- +-- TOC entry 5116 (class 0 OID 0) +-- Dependencies: 262 +-- Name: results_resultid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('results_resultid_seq', 2508, true); + + +-- +-- TOC entry 4842 (class 0 OID 70534) +-- Dependencies: 305 +-- Data for Name: resultsdataquality; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY resultsdataquality (bridgeid, resultid, dataqualityid) FROM stdin; +\. + + +-- +-- TOC entry 5117 (class 0 OID 0) +-- Dependencies: 304 +-- Name: resultsdataquality_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('resultsdataquality_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4766 (class 0 OID 70064) +-- Dependencies: 229 +-- Data for Name: samplingfeatureannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY samplingfeatureannotations (bridgeid, samplingfeatureid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5118 (class 0 OID 0) +-- Dependencies: 228 +-- Name: samplingfeatureannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('samplingfeatureannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4876 (class 0 OID 70696) +-- Dependencies: 339 +-- Data for Name: samplingfeatureextensionpropertyvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY samplingfeatureextensionpropertyvalues (bridgeid, samplingfeatureid, propertyid, propertyvalue) FROM stdin; +\. + + +-- +-- TOC entry 5119 (class 0 OID 0) +-- Dependencies: 338 +-- Name: samplingfeatureextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('samplingfeatureextensionpropertyvalues_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4889 (class 0 OID 70764) +-- Dependencies: 352 +-- Data for Name: samplingfeatureexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY samplingfeatureexternalidentifiers (bridgeid, samplingfeatureid, externalidentifiersystemid, samplingfeatureexternalidentifier, samplingfeatureexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5120 (class 0 OID 0) +-- Dependencies: 351 +-- Name: samplingfeatureexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('samplingfeatureexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4802 (class 0 OID 70235) +-- Dependencies: 265 +-- Data for Name: samplingfeatures; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY samplingfeatures (samplingfeatureid, samplingfeatureuuid, samplingfeaturetypecv, samplingfeaturecode, samplingfeaturename, samplingfeaturedescription, samplingfeaturegeotypecv, featuregeometry, elevation_m, elevationdatumcv) FROM stdin; +1000 7b95d5ee-f07c-1526-7763-ccab6b2ee502 Water quality station Obi Obidos Station ID 1000 Point 0101000020E610000053D0ED258DC14BC099D87C5C1B2AFFBF 23 Unknown +1001 6695162e-90b6-5cb8-35c4-e218c6058d99 Water quality station Pau Paura Station ID 1001 Point 0101000020E61000008716D9CEF7B74CC07689EAAD812D03C0 13 Unknown +1002 c3e4de6c-4e68-0a5d-cad1-5fc46a203266 Water quality station SJA Sao Jose do Amatari Station ID 1002 Point 0101000020E6100000B6BE4868CB7D4DC0FFEC478AC8F009C0 20 Unknown +1003 824ee6dc-810f-7814-db88-8a76c9a82f3d Water quality station Man Manacapuru Station ID 1003 Point 0101000020E6100000C364AA60544E4EC0BF60376C5B940AC0 28 Unknown +1004 85f1c9f7-37bf-7f63-4347-6607073f4888 Water quality station Ano Anori Station ID 1004 Point 0101000020E610000010069E7B0FCF4EC09886E123628A0EC0 34 Unknown +1005 b761b525-e2c6-fc41-2376-3d58870dd6be Water quality station Ita Itapeua Station ID 1005 Point 0101000020E61000000395F1EF33824FC08386FE092E3610C0 38 Unknown +1006 11f5f951-31f9-86f4-3699-ae20a022cd9a Water quality station Jutc Jutica Station ID 1006 Point 0101000020E61000003A3B191C250F50C04F232D95B7230DC0 42 Unknown +1007 f73ea4ad-ab44-6509-0e53-37ad6db40af7 Water quality station Tup Tupe Station ID 1007 Point 0101000020E610000045813E91277750C020D26F5F070E04C0 55 Unknown +1008 f8085b5d-f3de-8389-1c4d-fcffeb390f3a Water quality station Xib Xibeco Station ID 1008 Point 0101000020E610000058E2016553CC50C0357BA01518B204C0 62 Unknown +1009 023820a0-2176-6a3e-fcae-0ad8e5820463 Water quality station SAI Santo Antonio do Ica Station ID 1009 Point 0101000020E6100000B70BCD751AF950C06A6AD95A5FA408C0 66 Unknown +1010 6018a990-c8fd-3a2a-4eb7-ba0bd79730f7 Water quality station VGr Vargem Grande Station ID 1010 Point 0101000020E610000043041C4295F650C00938842A353B0AC0 70 Unknown +1020 398fd3b5-d0af-1af6-322c-04ada61757b9 Water quality station amz_iquitos Iquitos Station ID 1020 Point 0101000020E6100000ACFF73982F4752C0B37BF2B0506B0EC0 106 Unknown +1021 8b5e4738-1dc4-4d20-9a52-44262b48180c Water quality station amz_abvnapo Amazonas above Napo Station ID 1021 Point 0101000020E610000027DA5548F93952C0F6285C8FC2750BC0 105 Unknown +1022 ea06f6db-b04d-e4a1-865d-325b98c9347c Water quality station amz_blwnapo Amazonas below Napo Station ID 1022 Point 0101000020E6100000CBF8F719172252C08CF84ECC7AF10AC0 102 Unknown +1023 5176a91e-4f85-a781-8e01-3a14833c8d52 Water quality station amz_pebas Pebas Station ID 1023 - Stallard: Pebas, and below Pebas Point 0101000020E6100000DC63E94317F251C05F24B4E55C8A09C0 99 Unknown +1024 6b879232-5cae-c375-2a18-e1b90980a89d Water quality station amz_leticia Leticia Station ID 1024 Point 0101000020E61000003ACC9717608351C0AED85F764F5E10C0 87 Unknown +1025 dab762b4-c6e0-ee67-508d-076b7fde8d6f Water quality station solim_assac Ilha Assacio Station ID 1025 Point 0101000020E6100000166A4DF38E5D51C0E84D452A8C6D0EC0 78 Unknown +1026 8fd75300-7179-7ae7-1f0e-96371253602f Water quality station solim_spo Sao Paulo de Olivenca Station ID 1026 Point 0101000020E6100000EECEDA6D173051C00C1F115322890BC0 72 Unknown +1027 d346f3df-d8b2-9272-fe98-fbb626e879c8 Water quality station solim_blwjut Solimoes below Jutai Station ID 1027 Point 0101000020E61000004CE0D6DD3CB350C0ABB2EF8AE07F05C0 60 Unknown +1028 4a14898a-9dfb-cdd8-77d5-ec6ba5c66bc4 Water quality station solim_fb Fonte Boa Station ID 1028 Point 0101000020E610000014D044D8F08450C086032159C00404C0 53 Unknown +1029 42a61b15-dd3c-cadc-a089-564ae706ad20 Water quality station solim_alvar Alvares Station ID 1029 Point 0101000020E61000007099D365313750C0D595CFF23C3809C0 44 Unknown +1031 6438e4b1-7f35-4f16-9189-4b86274b2bca Water quality station solim_laranj Laranjal Station ID 1031 Point 0101000020E61000006A87BF266BB84FC01B2FDD2406810EC0 40 Unknown +1032 deae2307-37a7-0c64-913c-b52a20325786 Water quality station solim_cop Solimoes-Parana Copea confluence Station ID 1032 Point 0101000020E610000015E3FC4D28A84FC0DEB06D5166430FC0 39 Unknown +1033 eda7b9ba-1469-b3fb-b642-a160015d63fb Water quality station solim_coar Solimoes above Coari R. Station ID 1033 Point 0101000020E610000067F2CD3637924FC0732EC55565DF0FC0 38 Unknown +1034 97aac432-0aff-7bcd-00b0-e17c773c5e1e Water quality station solim_cama Camara Station ID 1034 Point 0101000020E6100000DB8AFD65F75C4FC0AB21718FA50F0FC0 38 Unknown +1035 d92cafca-1451-d8d7-eeb3-91032001f26a Water quality station solim_iuara Ilha Iuara Station ID 1035 Point 0101000020E6100000D00A0C59DDA64EC0CDAFE600C1DC0CC0 32 Unknown +1036 9d44acc1-c4f0-22f6-e4fd-e1d21ebb60eb Water quality station march Solimoes - Marchantaria Station ID 1036 Point 0101000020E6100000DAE6C6F484014EC0D5CF9B8A54580AC0 24 Unknown +1037 5fc5201a-c6ec-6e53-7355-80cf87c74c9d Water quality station amz_blwnegro Solimoes-Negro confluence Station ID 1037 Point 0101000020E61000002A745E6397E44DC01E8A027D220F09C0 23 Unknown +1038 989cb998-5c4a-5b92-f3bb-28b70f743e03 Water quality station amz_itacoat Itacoatiara Station ID 1038 Point 0101000020E6100000DC4B1AA3753C4DC0598638D6C52D09C0 18 Unknown +1039 1dfdbff1-2468-8fa8-49c7-bcce8dba8df0 Water quality station amz_parantins Parantins Station ID 1039 Point 0101000020E6100000C87BD5CA844F4CC0BEA4315A479504C0 12 Unknown +1040 7ba02369-c19b-56b4-76a3-7f478e0759c2 Water quality station amz_apixuna Apixuna Station ID 1040 - Stallard: Apixuna, and above Tapajos confl. Point 0101000020E61000009D465A2A6F874BC09291B3B0A7DD00C0 18 Unknown +1041 c3866e65-e836-3977-7320-3f4f044f1b78 Water quality station amz_ituqui Ilha Ituqui Station ID 1041 Point 0101000020E61000005070B1A2061B4BC0CCEEC9C3422D03C0 11 Unknown +1042 cff498b4-f764-2bf4-8f28-46dd6d8f8611 Water quality station amz_abvxingu Amazonas above Xingu Station ID 1042 Point 0101000020E610000019CA8976153A4AC006F52D73BAACF8BF 2 Unknown +1043 0db328db-5668-a14e-f2b9-ccb9df2d1e4f Water quality station amz_gurupa Gurupa Station ID 1043 - Stallard: below Xingu Point 0101000020E6100000FB912232ACF649C0126BF12900C6F5BF 1 Unknown +1050 b2abd54c-1923-236f-05f4-970c1972acf9 Water quality station Solim_Neg Solimoes above Negro Station ID 1050 - Encontro das Aguas, 1 km upstream of confluence with Negro Point 0101000020E61000000586AC6EF5F04DC0C11C3D7E6F5309C0 24 Unknown +1101 9a894dda-6fea-3d90-89d9-c13b1eedf710 Water quality station pdeva Preto da Eva Station ID 1101 Point 0101000020E6100000833463D174BA4DC09AB1683A3B1908C0 55 Unknown +1102 a284e9eb-4fbc-8d8d-1ebf-e17d90deceed Water quality station miner Minerua Station ID 1102 Point 0101000020E61000001ADD41EC4C8550C0B18A37328FBC04C0 50 Unknown +1103 6e65ac75-4c75-a3b7-576b-eeb3f93811cc Water quality station tonant Tonantins Station ID 1103 Point 0101000020E61000008E23D6E253F250C04512BD8C623906C0 64 Unknown +1104 e59c4058-827d-9d89-ccb5-c926f2da081b Water quality station Lago_Cam Lago do Camaleao - Marchantaria Station ID 1104 - Middle of lake, on Ilha da Marchantaria Point 0101000020E6100000EC866D8B32FB4DC0E40F069E7B0F0AC0 24 Unknown +1105 69a2f45c-b1aa-50ff-bdd3-833b38344be5 Water quality station Solim_Grass Solimoes Flooded Grass near Marchantaria Station ID 1105 - Flooded grasses, right bank, upstream of Ilha da Marchantaria Point 0101000020E61000005951836918064EC0450DA661F8880AC0 24 Unknown +1106 eb0625c9-a5e0-f4f7-d042-538ca6f71000 Water quality station Solim_Forest Solimoes Flooded Forest near Marchantaria Station ID 1106 - Flooded forest, right bank, upstream of Ilha da Marchantaria Point 0101000020E6100000FCDEA63FFB094EC09031772D219F0AC0 24 Unknown +1110 4a3b0f3e-7caa-d719-fa4f-288b4450a9a9 Water quality station cayaru Cayaru Station ID 1110 Point 0101000020E610000024B4E55C8A8F51C0E4839ECDAA0F0FC0 88 Unknown +1111 e1ee9d00-5d9a-8983-2f82-deca388e4c6e Water quality station obi_strm Stream at Obidos Station ID 1111 Point 0101000020E61000004E452A8C2DC44BC0508D976E1283FEBF 51 Unknown +5001 44daa344-611d-11d3-a179-94d604d37a9c Water quality station xingu Xingu Station ID 5001 - Stallard: Above confl., and Porto de Moz Point 0101000020E6100000DC2E34D769204AC03A1E335019FFFABF 4 Unknown +9001 8bceae7b-8409-d5d5-57f4-423d604bf604 Water quality station tapajos tapajos Station ID 9001 Point 0101000020E610000033FE7DC685634BC076FD82DDB02D03C0 8 Unknown +9002 5f7e16a0-a9f0-db49-8d79-2375fc0e6e0a Water quality station tapajos_mthbay Tapajos at mid mouth-bay Station ID 9002 Point 0101000020E610000016359886E18B4BC0EDD808C4EBBA05C0 16 Unknown +11101 f0eb61e2-aea3-3c9e-088e-4cc03f8586bb Water quality station RTrom Trombetas Station ID 11101 - Near Oriximina Point 0101000020E610000023F3C81F0CF44BC0BEDEFDF15EB5FBBF 16 Unknown +11102 ab1ac855-df8d-9b48-ff12-7c95d9c34a8f Water quality station tromb_abvorix Trombetas above Oriximina Station ID 11102 Point 0101000020E610000086C954C1A8F84BC083FA96395D16FBBF 17 Unknown +11201 67504852-ae32-8066-f884-a584d2c70e02 Water quality station nhamu Nhamunda Station ID 11201 Point 0101000020E6100000B8AF03E78C5C4CC01D554D10759F01C0 25 Unknown +14001 8deb84ed-b567-3f15-1348-82e5318024bb Water quality station uatum Uatuma Station ID 14001 Point 0101000020E6100000D3F6AFAC34114DC0A7B393C151B204C0 16 Unknown +15001 a988bc41-6eb4-5f22-d0d0-2fe4df28623e Water quality station urubu Urubu Station ID 15001 Point 0101000020E6100000878A71FE26744DC0EEB1F4A10BAA08C0 49 Unknown +16000 03c36bae-b80c-bdc8-9056-eb488033d45c Water quality station RMad Rio Madeira Station ID 16000 Point 0101000020E6100000D23AAA9A20664DC00B462575029A0BC0 20 Unknown +16001 a18d7c70-7c02-d978-b361-31f52e1d5d51 Water quality station guaya Guayaramerin Station ID 16001 - PHICAB-GM? Point 0101000020E6100000950ED6FF395650C0FCDEA63FFBB125C0 120 Unknown +16002 1ffee2d6-98f0-a7d5-fcab-b3239999662f Water quality station yata Yata Station ID 16002 Point 0101000020E6100000312592E8656850C066BD18CA89F625C0 136 Unknown +16003 1f69a6f3-5d23-fa52-ab2a-ec217b6ec2f2 Water quality station arique Ariquemes Station ID 16003 Point 0101000020E6100000D0B359F5B9864FC02592E86514CB23C0 130 Unknown +16004 5d5c8527-3010-3929-44bc-b33719697b68 Water quality station cand Candeias-Porto Velho Station ID 16004 Point 0101000020E61000007B6649809ADA4FC09CA223B9FC8721C0 77 Unknown +16005 ac5671de-39e9-7c95-6457-ac9a54bbafc8 Water quality station carac Caracol Station ID 16005 Point 0101000020E6100000130A1170081350C0AB048BC3997F22C0 92 Unknown +16006 21124745-a6f3-1791-47be-0a150539fc57 Water quality station jacip Jaci-Paraná Station ID 16006 Point 0101000020E6100000AA605452271850C01630815B779322C0 90 Unknown +16007 e47fbae2-4a97-55c4-2e0a-da785a0035f0 Water quality station azul Azul Station ID 16007 Point 0101000020E61000001C5F7B66493C50C037894160E54023C0 103 Unknown +16008 42a9fab4-d180-5e99-5f87-d7a0f0e3cc15 Water quality station RAbuna Abuna Abunã Station ID 16008 Point 0101000020E610000002486DE2E45C50C0A7E8482EFF6123C0 112 Unknown +16009 2070415b-e692-ede0-a11d-f3a2cced7230 Water quality station abuna Madeira Abunã Station ID 16009 Point 0101000020E6100000C24CDBBFB25A50C0D00A0C59DD5A23C0 127 Unknown +16010 e76ea28b-6c72-966c-5162-fbebfb5294e4 Water quality station novo Novo Station ID 16010 Point 0101000020E6100000029F1F4608DF4DC0F29881CAF8572CC0 295 Unknown +16011 5d799bf9-3910-f63c-6bf1-aef007647c5f Water quality station sara Sararé Station ID 16011 Point 0101000020E6100000475A2A6F47B04DC06B2BF697DD732DC0 297 Unknown +16012 cdb408f3-d51d-aa88-627d-2cb8e2a76188 Water quality station vbgua Vila Bela da S. Trinidade Station ID 16012 Point 0101000020E610000091D5AD9E93FA4DC0780B24287EFC2DC0 193 Unknown +16013 80ec1025-3411-75ed-2dea-347873fbb049 Water quality station plgua Pontes e Lacerda Station ID 16013 Point 0101000020E61000007D7901F6D1A94DC05760C8EA566F2EC0 290 Unknown +16014 f7ff06a9-52fb-1c03-fba6-395ad5b5a513 Water quality station fvistal Faz. Vista Alegre Station ID 16014 Point 0101000020E6100000FC6F253B36024EC0E02D90A0F89113C0 36 Unknown +16015 595c4692-724c-fea1-ba1a-c298f203b03e Water quality station americ America Station ID 16015 Point 0101000020E61000001B81785DBF344EC08B6CE7FBA99114C0 40 Unknown +16016 f56b3f57-e9a0-269b-72b9-38d411176662 Water quality station manic Manicore Station ID 16016 Point 0101000020E6100000268DD13AAAA64EC0151DC9E53F4417C0 48 Unknown +16017 35083161-7fc2-d5a0-e23f-eecabf5c0536 Water quality station fatima Fatima Station ID 16017 Point 0101000020E6100000520ABABDA40D4FC0A3923A014DC418C0 53 Unknown +16018 df925164-deb5-5b25-4ee7-0883703d7c15 Water quality station humaita Humaita Station ID 16018 Point 0101000020E6100000840D4FAF94814FC0B7973446EBE81DC0 62 Unknown +16019 6bb88028-c061-0c37-7652-2dedc35dcc86 Water quality station pvelho Madeira-Porto Velho Station ID 16019 Point 0101000020E6100000BC0512143FF24FC0448B6CE7FB7921C0 96 Unknown +16020 2543edcf-d3ec-7bfa-6410-46d100194581 Water quality station aripua Aripuana Station ID 16020 Point 0101000020E6100000E3DF675C38304EC01A51DA1B7CA114C0 40 Unknown +16021 0b035b3c-52c7-ed12-69f7-52e29b169a61 Water quality station jamari Jamari mouth Station ID 16021 Point 0101000020E6100000645DDC4603B84FC034F44F70B1F220C0 96 Unknown +16100 6de449dd-4435-bea7-a3da-4f3d16255786 Water quality station RiAba Riberalta Abajo Station ID 16100 - PHICAB-CE Point 0101000020E610000073BA2C26367F50C02F6EA301BC9525C0 130 Unknown +16101 d7bf5757-48ae-a7f3-f63a-bc88ce9559e2 Water quality station ortho Orthon Station ID 16101 - PHICAB-CA Point 0101000020E61000008121AB5B3D8550C018CFA0A17FA225C0 131 Unknown +16102 7e03119e-733c-efd3-ae20-87b05b6b90c0 Water quality station Mdios Madre de Dios Station ID 16102 - PHICAB-MF Point 0101000020E6100000CB67791EDC8750C0F5D6C05609E625C0 133 Unknown +16103 1e3e3272-3b38-5ed9-009b-e085a9fcab1d Water quality station RiArr Riberalta Arriba Station ID 16103 - PHICAB-PC Point 0101000020E6100000079964E42C8850C0D09B8A54180B26C0 135 Unknown +16104 affa121d-5408-5e2a-bfd4-f3691ac56c93 Water quality station rurre Rurrenabaque Station ID 16104 - PHICAB-AB Point 0101000020E6100000172B6A300DE350C0BD8C62B9A5152DC0 504 Unknown +16105 e79245e1-4bb9-c4b3-24c7-b5077179fa79 Water quality station sape Sapecho Station ID 16105 - PHICAB-IN Point 0101000020E6100000ACE28DCC23D550C05C1B2AC6F93B2FC0 608 Unknown +16106 c82eca76-6a34-1302-fd81-3d3f6115ae5b Water quality station lapaz La Paz Station ID 16106 Point 0101000020E61000009EEFA7C64B0551C0390B7BDAE18F30C0 3339 Unknown +16107 374756d3-fc13-622a-1210-54ed12392509 Water quality station achu Achumani Station ID 16107 Point 0101000020E6100000158C4AEA040451C0B8239C16BC7830C0 3834 Unknown +16108 f292dc3d-5265-5f34-ab99-6477cf8e6d7b Water quality station kaka Camanaui Station ID 16108 - PHICAB-NU (Kaka-Nube, Teoponte) Point 0101000020E6100000320395F1EFF350C09E0C8E9257E72EC0 584 Unknown +16109 0058d246-2533-2ca6-08f2-34ca382cc16e Water quality station yara Yara Caranavi Station ID 16109 Point 0101000020E6100000E88711C2A3E550C09279E40F068E2FC0 1012 Unknown +16110 0952fb94-d606-46a8-5b53-ae5283d7cd54 Water quality station coroi Coroico Caranavi Station ID 16110 Point 0101000020E61000009F1F46088FE650C0DF4F8D976EA22FC0 1053 Unknown +16111 ac955120-230f-ba45-f3a2-faf3b183c6bc Water quality station zongo Zongo Station ID 16111 Point 0101000020E61000001D8F19A88C0751C0C6504EB4AB4030C0 4555 Unknown +16120 e849e4e0-13b8-1e1e-f83e-716c2bda3615 Water quality station VG Vuelta Grande Station ID 16120 Point 0101000020E6100000D4F19881CA3450C0ECFA05BB610B28C0 120 Unknown +16121 83603673-cfb8-4d83-dbe4-d69b735b160f Water quality station PS Puerto Siles Station ID 16121 Point 0101000020E610000033333333334750C095607138F38B29C0 155 Unknown +16122 e63f6c46-4117-c575-02d4-812f4721317c Water quality station PG Puerto Ganadero Station ID 16122 Point 0101000020E610000015C616821C4050C000AE64C746102EC0 157 Unknown +16123 0609ac05-ff54-94f4-e34b-11269e55fef2 Water quality station PA Puerto Almacen Station ID 16123 Point 0101000020E610000021EA3E00A93B50C031CEDF8442F42DC0 156 Unknown +16124 795ff4a3-bf47-72a9-0ea1-9bd1c9ca1d32 Water quality station PV Puerto Villarroel Station ID 16124 Point 0101000020E610000091442FA3583250C0D3307C444CD130C0 167 Unknown +16125 92f92a11-7b7a-6e5d-bf8f-207c72571b5d Water quality station AP Abapo Station ID 16125 Point 0101000020E61000000E4FAF9465B84FC021B0726891ED32C0 359 Unknown +16140 629a7e05-1ada-6a82-d5e9-fd238f192daf Water quality station ESP Esp. Santo - Tunari Station ID 16140 - Villa Tunari Point 0101000020E61000004C1AA375546150C05C3D27BD6F0431C0 453 Unknown +16141 031d7ed0-b81e-e9e3-63d0-d6704e858c99 Water quality station MAT San Mateo - Tunari Station ID 16141 - Villa Tunari Point 0101000020E6100000450DA661F85C50C05AD8D30E7F0D31C0 374 Unknown +16142 04a85e7a-4f2d-eab3-5ca8-c43bdf879ab3 Water quality station CHI Chimore Station ID 16142 - Bridge Point 0101000020E61000004BE5ED08A74B50C033C4B12E6E1B31C0 427 Unknown +16143 6c3f3b9e-8b74-0af1-8715-eaf7c4ed4b9f Water quality station ICH Ichilo Station ID 16143 - Bridge Point 0101000020E61000009031772D211950C0DE54A4C2D82A31C0 196 Unknown +16144 9278f631-beb9-346d-85a3-d3b7e11fc965 Water quality station PIR Piray-Guardia Station ID 16144 - Guardia Point 0101000020E6100000CF6BEC12D5A34FC0234A7B832F6C31C0 307 Unknown +16145 5fe03e1d-2e5a-1b1a-03ba-825f13fcc884 Water quality station ptearce Puente Arce Station ID 16145 - Puente Arce Point 0101000020E61000009B1BD313964650C0EA95B20C71A432C0 1492 Unknown +16146 83e900dd-128e-a37a-4159-f06ebbef60f4 Water quality station yapac Yapacani Station ID 16146 - Bridge Point 0101000020E61000009EEA909BE1F24FC09AB67F65A54931C0 262 Unknown +16147 c0ff4052-5b2e-b470-d19d-a60b2395696e Water quality station gra_stacruz Grande-Santa Cruz Station ID 16147 - Santa Cruz Point 0101000020E610000010CCD1E3F75E4FC08D0B0742B25031C0 222 Unknown +16148 4a53e852-5c1d-2aba-e6e2-249393bad5b5 Water quality station challa Challa Station ID 16148 Point 0101000020E610000061376C5B949B50C0BDFBE3BD6A8D31C0 2653 Unknown +16160 7ad8fbc6-d626-6123-bc37-d20cc3a9969e Water quality station UN Unduavi-Pte. Villa Station ID 16160 - Puente Villa Point 0101000020E61000004D4A41B797DE50C01D9430D3F64F30C0 2085 Unknown +16161 d7dce4f7-0e00-65ed-e843-b7bf39b194dc Water quality station TQ Taquesi-Pte. Villa Station ID 16161 - Puente Villa Point 0101000020E61000008811C2A38DDD50C05131CEDF846230C0 2069 Unknown +16162 33f50734-3f78-2b40-ec4a-a5757c4124cd Water quality station MAP Mapiri Station ID 16162 - Guanay Point 0101000020E61000000A9DD7D825F850C042959A3DD0DA2EC0 690 Unknown +16163 62b38efe-9259-4827-da2e-e73038baae2d Water quality station CHA Challana Station ID 16163 - Guanay Point 0101000020E61000005A2A6F4738F750C0912C6002B7FE2EC0 526 Unknown +16164 d802535a-93fa-6e02-bc03-7eeba8cde041 Water quality station TIP Tipuani Station ID 16164 - Guanay Point 0101000020E61000008D45D3D9C9F850C099D36531B1F92EC0 500 Unknown +16165 26632978-15c9-11d0-4b2a-fa794111181f Water quality station TEO Coroico-Teoponte Station ID 16165 - Teoponte Point 0101000020E6100000F8AA9509BFF250C047E6913F18082FC0 504 Unknown +16166 0edf285f-6d7c-6cdc-ce4e-9420e8b9c2be Water quality station KAK Kaka Mouth Station ID 16166 Point 0101000020E610000070EB6E9EEAEE50C06DC5FEB27B722EC0 500 Unknown +16200 963fd4fb-469d-fdd7-d44c-594713adde8e Water quality station JIP-5 Calama Station ID 16200 Point 0101000020E61000005BEB8B84B6644FC0ECDD1FEF554B20C0 69 Unknown +16201 b1c5e827-7c81-5aec-ba8f-fab2158abc26 Water quality station pjaru Jarú Station ID 16201 Point 0101000020E6100000742497FF903A4FC00BEF7211DFE924C0 195 Unknown +16202 fa7abf76-f35e-9cb1-4e39-b354eab15ee1 Water quality station JIP-2b Ji-Parana Station ID 16202 Point 0101000020E61000008A93FB1D8AFA4EC01D8F19A88CDF25C0 192 Unknown +16203 295b6639-6832-7348-3833-9911d610c8dc Water quality station COM-2 Com. at Pimenta Bueno Station ID 16203 Point 0101000020E61000008E75711B0D984EC085B69C4B715527C0 199 Unknown +16204 2ba074cc-cfdd-235b-b5c1-0d76e9c00a9e Water quality station COM-1 Vilhena - Ig. Piracolino Station ID 16204 Point 0101000020E61000005951836918164EC01E1B81785D6F29C0 594 Unknown +16205 086764f4-135e-5190-0c76-6b55013ba10a Water quality station JIP-5b Calama (half branch) Station ID 16205 Point 0101000020E610000003CFBD874B6E4FC0AA7D3A1E332020C0 67 Unknown +16206 ddeb4e97-2242-1f12-d908-5b9a0b81c9d1 Water quality station PRETO Calama Station ID 16206 Point 0101000020E6100000FE7DC68503714FC0AF08FEB7921D20C0 66 Unknown +16207 4091e9b1-927e-ba8f-d876-dd9208c764c1 Water quality station JIP-4 Tabajara Station ID 16207 Point 0101000020E6100000481630815B074FC085949F54FBE421C0 91 Unknown +16208 99968cac-f56d-4123-5946-cf50444ca85c Water quality station MAC Machadinho D'Oeste Station ID 16208 Point 0101000020E610000019ADA3AA09064FC088855AD3BC0323C0 198 Unknown +16209 19a063a9-ab0d-7c1a-d95a-c25f8f871375 Water quality station JIP-3b Barragem Station ID 16209 Point 0101000020E6100000E97DE36BCFF44EC0F98381E7DE7323C0 200 Unknown +16210 3f339071-e5ab-c0eb-4241-48a1f17d12dd Water quality station JIP-3 Rebio-Jarú Station ID 16210 Point 0101000020E610000029B3412619FD4EC057091687332F24C0 181 Unknown +16211 8625965f-50da-2434-7f00-fdf1d1203fda Water quality station JARU Rebio-Jarú Station ID 16211 Point 0101000020E6100000164D672783FF4EC0DCBA9BA73A3424C0 180 Unknown +16212 33b53f58-ac27-1b86-a606-772fe6d94720 Water quality station JIP-2 Ji-Parana at JP/BR-364 Station ID 16212 Point 0101000020E61000009B1BD31396F84EC0C51B9947FEC025C0 191 Unknown +16213 b3960e97-0dec-3b6f-c153-e1c7338fa54a Water quality station URUPA Ji-Parana Station ID 16213 Point 0101000020E6100000D7DD3CD521FB4EC0AF08FEB792CD25C0 191 Unknown +16214 6b7e02ec-8001-9f39-e2ad-a75ec71ed8eb Water quality station ROLIM Rolim de Moura Station ID 16214 Point 0101000020E6100000E1455F419ADD4EC0C03E3A75E5E326C0 200 Unknown +16215 db37c8aa-65bc-c59f-8cbd-d288310903be Water quality station JIP-1 Cacoal Station ID 16215 Point 0101000020E6100000FA27B85851BB4EC081785DBF60E726C0 200 Unknown +16216 196f8163-7222-a8a8-27a5-1209f365b1e3 Water quality station PB-2 PB at Pimenta Bueno Station ID 16216 Point 0101000020E61000001405FA449E984EC0F241CF66D56727C0 197 Unknown +16217 ed45cd3b-3aa2-4af4-b97c-6643831c20e3 Water quality station PB-1 Vilhena Station ID 16217 Point 0101000020E6100000247F30F0DC2B4EC036CD3B4ED1B129C0 495 Unknown +16218 6c957833-476f-8757-3c40-14e07dcca1e8 Water quality station NS2 forest stream @ Faz. Nossa Senora Station ID 16218 - NS-2, Igarape Boa Vista at 200-500 m upstream of NS-1, before exiting forest Point 0101000020E61000007901F6D1A92F4FC06FD39FFD488125C0 296 Unknown +16219 8023f495-bca6-c487-b1cf-b981eb746349 Water quality station NS1 pasture stream @ Faz. Nossa Senora Station ID 16219 - NS-1, Igarape Boa Vista at Estrada @Fazenda Nossa Senhora, after 200-500 m flowing through pasture Point 0101000020E610000010069E7B0F2F4FC016C1FF56B28325C0 296 Unknown +16300 4edc3c7e-cda6-dc2d-2299-a48d8e4419a2 Water quality station RIOMADREPMALDO Rio Madre de Dios Station ID 16300 - Landuse: Mixed. Stroud-Moore wtrshd: Rio Madre de Dios Point 0101000020E610000048E17A14AE4B51C052B81E85EB3129C0 193 Unknown +16301 3b302cdf-b612-cc20-69c3-bac91e818857 Water quality station RTAMBOPATAMOUTH Rio Tambopata Station ID 16301 - Landuse: Mixed. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E610000048E17A14AE4B51C09A999999993929C0 193 Unknown +16302 d760a1da-e945-ce5c-4380-8ba488498b31 Water quality station RINAMBARI Rio Inambari Station ID 16302 - Landuse: Forest. Stroud-Moore wtrshd: Rio Inambari Point 0101000020E6100000EC51B81E856F51C052B81E85EB7129C0 221 Unknown +16303 bde76329-046a-dfc2-2095-46713329ea0b Water quality station RLOSAMI Rio Los Amigos Station ID 16303 - Landuse: Forest. Stroud-Moore wtrshd: Rio Los Amigos Point 0101000020E61000001F85EB51B88251C0B81E85EB511829C0 238 Unknown +16304 fd94ce5c-687b-54cb-78c9-48a9d035372d Water quality station RMADRECICRA Rio Madre de Dios Station ID 16304 - Landuse: Forest. Stroud-Moore wtrshd: Rio Madre de Dios Point 0101000020E61000007B14AE47E18651C085EB51B81E2529C0 241 Unknown +16305 ba17d345-3c34-3957-29fc-99c6b01014e8 Water quality station RLATORRE Rio LaTorre Station ID 16305 - waypoint taken on mainstem R.Tambopata opposite mouth of R. LaTorre. Landuse: Forest. Stroud-Moore wtrshd: Rio LaTorre Point 0101000020E6100000D7A3703D0A5351C00AD7A3703DAA29C0 222 Unknown +16306 1b7b21c5-af34-1e79-ec88-f170b0f58334 Water quality station RMELAN Rio Malinowsqui Station ID 16306 - Landuse: Forest. Stroud-Moore wtrshd: Rio Malinowsqui Point 0101000020E6100000F6285C8FC26151C07B14AE47E1DA29C0 270 Unknown +16307 30985c09-1e16-2361-2f01-daff05813f4f Water quality station RTAMBOTRC Rio Tambopata Station ID 16307 - Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E6100000E17A14AE476551C06666666666462AC0 475 Unknown +16320 d71f56b5-4020-e86a-a67a-2cd457c47af6 Water quality station Q2MIRADORCICRA Q2MIRADORCICRA Station ID 16320 - SH assigned SampNo 248. Landuse: Forest. Stroud-Moore wtrshd: Rio Los Amigos Point 0101000020E6100000FDF7E0B54B8651C0853FC39B351829C0 241 Unknown +16321 9af8661e-54ff-ab62-5916-e1b4da83bb24 Water quality station QARA1 QARA1 Station ID 16321 - Small permanent stream(?) Few insects; disturbed?. Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E610000021020EA14A5951C0BF0E9C33A2C429C0 267 Unknown +16322 1a070f71-faa3-1788-38e3-0477b3a8ee05 Water quality station QARA3 QARA3 Station ID 16322 - Permanent; very clean water; many insect species. Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E6100000B554DE8E705A51C018213CDA38C229C0 260 Unknown +16323 0eed3c48-6bff-e4df-dbf3-85dcff60de4f Water quality station AQATI2 AQATI2 Station ID 16323 - Permanent; small community upstream, mostly primary forest. Landuse: Forest. Stroud-Moore wtrshd: Rio Madre de Dios Point 0101000020E6100000A99F3715A94451C0A12DE7525C3529C0 198 Unknown +16324 12cddc40-99fd-cb85-f863-aee8b3f11d0c Water quality station AQATI8 AQATI8 Station ID 16324 - Landuse: Forest. Stroud-Moore wtrshd: Rio Madre de Dios Point 0101000020E61000009B38B9DFA14451C0E71DA7E8483E29C0 200 Unknown +16325 29ca7ed7-61e1-d685-fc3c-e326c68d1431 Water quality station QGATO QGATO Station ID 16325 - Medium trib to Tambopata, soap suds on stream from house; waterfall just upstream. Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E610000073F4F8BD4D5D51C0C2C073EFE1B229C0 244 Unknown +16326 0a574b83-1628-936c-d19a-deeaf9b068f3 Water quality station QINF5 QINF5 Station ID 16326 - Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E6100000014D840D4F4F51C0EE7C3F355E5A29C0 195 Unknown +16327 93fe5552-2001-150d-db25-531098e33d13 Water quality station QMADEROCICRA QMADEROCICRA Station ID 16327 - Landuse: Forest. Stroud-Moore wtrshd: Rio Los Amigos Point 0101000020E6100000A6D590B8C78651C024D5777E511229C0 241 Unknown +16328 6bf9a1bf-8040-deaf-f94a-18d02d40c959 Water quality station QMAQUIS2 QMAQUIS2 Station ID 16328 - Landuse: Forest. Stroud-Moore wtrshd: Rio Los Amigos Point 0101000020E61000009274CDE49B8751C0C425C79DD21129C0 242 Unknown +16329 5529a83a-8b08-d541-43f0-eb5b08b81fa4 Water quality station QMAQUISAPACICRA QMAQUISAPACICRA Station ID 16329 - 2nd order; sandy bottom, few stones. Landuse: Forest. Stroud-Moore wtrshd: Rio Los Amigos Point 0101000020E610000077BAF3C4738751C05001309E411329C0 242 Unknown +16330 90b43499-4351-1670-3d17-e3ebfdb2f70d Water quality station QMISI QMISI Station ID 16330 - Small trib to Tambopata, gold mining at mouth; forested basin. Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E6100000B398D87C5C6151C017B7D100DED229C0 259 Unknown +16331 733ee725-13a9-c417-dbd4-a01bdc46094a Water quality station QTOMACICRA QTOMACICRA Station ID 16331 - Landuse: Forest. Stroud-Moore wtrshd: Rio Los Amigos Point 0101000020E6100000984C158C4A8651C035E63B19982229C0 240 Unknown +16332 6c1ef8ed-3091-9f53-dd21-331fa4546678 Water quality station QTRC2 QTRC2 Station ID 16332 - Rocky riffle. Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E61000008143A852B36751C02B6A300DC3472AC0 477 Unknown +16333 ad3809f0-5787-1513-a582-2668274a5ee0 Water quality station QTRC4 QTRC4 Station ID 16333 - Excellent stream; best found to date. Emilio: Moved GIS longitude so QTRC2 & QTRC4 fall on different 0.005 deg cells. Landuse: Forest. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E61000005C8FC2F5286851C0D656EC2FBB472AC0 477 Unknown +16334 58908415-52d0-789c-20fa-12c7851105e5 Water quality station Q3ESTRELLAS Q3ESTRELLAS Station ID 16334 - Heavy rain just before sampling, river muddy. Landuse: Agriculture. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E61000001092054CE05451C0D47D00529B6829C0 206 Unknown +16335 09fa404d-af1a-6f36-97a8-ccaa2ed3a202 Water quality station QABEJITA QABEJITA Station ID 16335 - Landuse: Agriculture. Stroud-Moore wtrshd: Rio Madre de Dios Point 0101000020E61000004E97C5C4E64751C0FFCA4A9352C028C0 200 Unknown +16336 85e01d6a-7f34-6509-dd83-0a04d66a194e Water quality station QINF2 QINF2 Station ID 16336 - Permanent. Landuse: Agriculture. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E6100000C2FA3F87F94E51C010751F80D45629C0 196 Unknown +16337 874184aa-eb6c-981b-009c-a63e1e5f0d21 Water quality station QINF3 QINF3 Station ID 16337 - Permanent; name=Roja. Landuse: Agriculture. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E6100000FC8C0B07424E51C0A245B6F3FD5429C0 195 Unknown +16338 3ba9eaea-e356-12b0-26d5-0b979c5122f9 Water quality station QINF6 QINF6 Station ID 16338 - Landuse: Agriculture. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E61000001A20EAA16A4F51C0C5FEB27BF26029C0 197 Unknown +16339 eaa77f36-8470-6114-0db8-314d30853fbb Water quality station QINFIERNO QINFIERNO Station ID 16339 - Airport upstream. Landuse: Agriculture. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E61000006AFB57569A4E51C0EB909BE1066C29C0 196 Unknown +16340 b887b9e8-d46c-155b-bca9-ec269989e9c9 Water quality station QKM14 QKM14 Station ID 16340 - Very few insects; toxic?. Landuse: Agriculture. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E61000003E22A644125151C02B8716D9CE4729C0 200 Unknown +16341 1a469369-8587-651e-a2d6-50a52c3a4293 Water quality station QLOBOYOC QLOBOYOC Station ID 16341 - Few Insects, bed unstable, riffles pea gravel. Landuse: Agriculture. Stroud-Moore wtrshd: Rio Madre de Dios Point 0101000020E6100000BCE82B48334851C06475ABE7A4E728C0 200 Unknown +16342 24f2585d-0e2b-2a54-40fe-6261afc56b0f Water quality station QLAJOYA QLAJOYA Station ID 16342 - Very polluted. Landuse: Urban. Stroud-Moore wtrshd: Rio Tambopata Point 0101000020E610000009A7052FFA4C51C04F58E201653329C0 194 Unknown +18000 8d278a56-1f65-10a8-3667-84ecbdd725c1 Water quality station RNeg Rio Negro Station ID 18000 Point 0101000020E610000051A5660FB4264EC000000000008008C0 29 Unknown +18001 3914b939-9fe5-626d-9909-2837b3850b81 Water quality station Rneg_Man Negro at Manaus Station ID 18001 Point 0101000020E6100000D690B8C7D2034EC0319413ED2A2409C0 32 Unknown +18002 1db88f9f-1d32-7e27-4684-36385362eaed Water quality station RNeg_Tar Taruma, Ponta Negra, Manaus Station ID 18002 - Ponta Negra, about 2 km upstream of port Point 0101000020E6100000A20BEA5BE6104EC0A56B26DF6CB308C0 24 Unknown +18003 d19cbff5-693b-9bf1-3511-ae108d448760 Water quality station RNeg_Cue R.Negro above R.Cueiras Station ID 18003 - above mouth of Cuieras Point 0101000020E61000001CB62DCA6C4C4EC04963B48EAAE606C0 27 Unknown +18004 096423aa-1e6d-8b81-4bb8-ff7f429731b0 Water quality station RNeg_Cam R.Negro above R.Camanau Station ID 18004 - above mouth of Camanau Point 0101000020E61000001B12F758FAA04EC0977329AE2A7BFFBF 36 Unknown +18005 83e80d43-a30b-c332-612b-8a7293203e9c Water quality station RNeg_Uni R.Negro above R.Unini Station ID 18005 - at confluence with Rio Unini Point 0101000020E61000007B6B60AB04BF4EC0ACFF73982F2FFABF 36 Unknown +18006 2d4e5f5b-f2a5-9303-d8b9-3eaf8f089c48 Water quality station RNeg_Per R. Negro @ Perseverança Station ID 18006 Point 0101000020E6100000E42CEC69873F50C024B4E55C8AABDCBF 55 Unknown +18007 fe20f1d8-1284-6006-9f71-abe4493ebb96 Water quality station RNeg_Pin R. Negro above Ig. Pinto Station ID 18007 Point 0101000020E6100000302AA913D0A050C031992A1895D4D7BF 65 Unknown +18022 a79b8121-b145-28ca-0a19-7fd6499b96a5 Water quality station Ducke1 Ig. Barro Branco at wells, Res. Ducke Station ID 18022 - Reserva Ducke Point 0101000020E61000007099D36531FD4DC0A1F31ABB447507C0 59 Unknown +18025 c64835b6-ede4-a31f-a71f-17c372dd790b Water quality station Camp2 Res. Campinas, 100m downstream Station ID 18025 - Reserva Campina, downstream, 100 m downstream Point 0101000020E61000002C9FE57970034EC03563D17476B204C0 97 Unknown +18026 5b0b327e-f6ca-6dd7-1ac3-65d418eef3af Water quality station Camp1 Res. Campinas, well site Station ID 18026 - Reserva Campina (km 44-45), upstream, at headwater near Michael's Point 0101000020E610000050FC1873D7024EC0D5B2B5BE48A804C0 99 Unknown +18040 29c6c35f-2577-17e8-490f-395e209b9c6f Water quality station RCue R. Cueiras @ mouth Station ID 18040 - at mouth, confluence with Rio Negro Point 0101000020E6100000F3716DA8183F4EC062D68BA19CA806C0 37 Unknown +18041 4d38eee4-0089-e3d0-7bac-4e802e1ec9e6 Water quality station I.Pedra Ig. do Pedra @ R. Cueiras Station ID 18041 - at mouth, confluence with R. Cueiras Point 0101000020E6100000D13FC1C58A3A4EC053910A630B8106C0 39 Unknown +18043 754f0313-a6d4-1b81-3f47-38817bb4f269 Water quality station RCue1 R. Cuieras above big trib Station ID 18043 - Middle of Cuieras, mainstem Point 0101000020E61000004D672783A3384EC0906B43C5383F06C0 40 Unknown +18044 667fe34d-14b9-f726-5f53-bcc014b4d2db Water quality station RCue_Forest Flooded Forest of R. Cuieras Station ID 18044 - Flooded forest, far from terra firma Point 0101000020E610000015E3FC4D28344EC02C82FFAD64C705C0 47 Unknown +18045 3d76b936-689c-e4e9-91f8-1d164e669dbf Water quality station RCue3 R. Cueiras @ Rafael's Station ID 18045 - at Rafael's Homestead Point 0101000020E6100000226C787AA5284EC0C5387F130A5105C0 56 Unknown +18046 d78d2720-cdde-fef4-b634-b7f0debba718 Water quality station I.Cach Ig. do Cachoeira Station ID 18046 - upstream of confluence with R. Cuieras by 5-10km Point 0101000020E6100000C22FF5F3A6264EC09CC420B072A805C0 53 Unknown +18047 09cf54ba-7cf8-72ff-cb3d-87f7dd027abf Water quality station RCue2 R. Cueiras middle Station ID 18047 Point 0101000020E61000009F76F86BB2364EC05C55F65D11FC05C0 44 Unknown +18050 66aa8259-7210-7498-7cd6-b7160b390911 Water quality station ZF2_1 Ig. 1 do ZF2, main site Station ID 18050 - Reserva ZF2, small stream that is instrumented by Waterloo Point 0101000020E6100000CFF753E3A51B4EC0E90E62670ADD04C0 67 Unknown +18051 0bec1f8f-f805-4a57-1fb6-179df2586a07 Water quality station ZF2_2 Ig. 2 do ZF2, near camp Station ID 18051 - Reserva ZF2, small stream on tower trail near camp, flowing into Ig. 1 upstream of sampling point? Point 0101000020E610000072BF4351A01B4EC0677E350708E604C0 67 Unknown +18060 b0370ef1-498f-18eb-e27b-eea7b52fe066 Water quality station RPud R.Puduari at mouth Station ID 18060 - Mouth Point 0101000020E61000008C101E6D1C9D4EC02AC6F99B50C800C0 26 Unknown +18061 a81ddc71-d6ab-e510-bd85-61b8eac37099 Water quality station I.Preta_Pud Ig. Preta do Puduari Station ID 18061 - at mouth, confluence with Rio Puduari Point 0101000020E610000063B48EAA26A44EC014CB2DAD860401C0 26 Unknown +18062 dedc2c9a-19ca-b5cb-6580-b57bc0e2254e Water quality station RPud2 R.Puduari below falls Station ID 18062 - below waterfall/rapids Point 0101000020E6100000A7052FFA0AA64EC0C2DD59BBED4201C0 26 Unknown +18063 53bb3076-d4ee-1536-0491-be670c51af48 Water quality station RPud3 R.Puduari above falls Station ID 18063 - above waterfall/rapids Point 0101000020E6100000A7052FFA0AA64EC0EBFF1CE6CB4B01C0 26 Unknown +18065 a55812c9-f1f0-3484-ceae-08829d35ef17 Water quality station RBae R.Baependi at mouth Station ID 18065 Point 0101000020E61000007901F6D1A97F4EC0C02154A9D90301C0 40 Unknown +18070 499ed1f5-11e6-c7de-2048-8d725f668416 Water quality station RCam R.Camanau at mouth Station ID 18070 - Mouth, near FUNAI Indian Reservation Point 0101000020E61000007D5C1B2AC69D4EC083DDB06D5166FFBF 39 Unknown +18080 1b678324-4f1b-e57d-dd97-24073ba6d427 Water quality station RUni R.Unini at mouth Station ID 18080 - mouth, confluence with Rio Negro Point 0101000020E6100000738577B988C34EC08907944DB9C2FABF 35 Unknown +18081 0d670822-37f3-0550-ad79-b12e46cf2138 Water quality station LagoUni1 Lago do Unini near mouth Station ID 18081 - near mouth of Unini Point 0101000020E6100000670A9DD7D8C94EC0C55565DF15C1FABF 35 Unknown +18082 56e1fb7b-6347-3ac0-ec8a-41c3cbe4fe85 Water quality station I.Esc_Uni Ig. Escondido do Unini Station ID 18082 - at mouth, confluence with Rio Unini, below 1st fall/rapids Point 0101000020E6100000878A71FE26E44EC04243FF0417ABFABF 35 Unknown +18083 3281112f-9706-f577-ed3b-6c2b98262361 Water quality station RUni1 R.Unini below falls1 Station ID 18083 - below 1st falls/rapids Point 0101000020E6100000A913D044D8E44EC0D8D30E7F4DD6FABF 35 Unknown +18084 43c13f2e-d367-c0bd-23e9-75f911f2b622 Water quality station RUni2 R.Unini above falls2 Station ID 18084 - immediately above 2nd falls/rapids Point 0101000020E61000002D78D15790EA4EC06DFFCA4A9352FBBF 35 Unknown +18085 42ff1ef0-8896-f6de-7f45-1f627c1850f1 Water quality station I.Preta_Uni Ig. Preta do Unini Station ID 18085 - at mouth, confluence with Rio Unini, above second falls/rapids Point 0101000020E61000001EDC9DB5DBF24EC056D4601A868FFBBF 36 Unknown +18086 a422d548-6579-8c9b-8ef5-b2d1154408a6 Water quality station RUni3 Rio Unini meander Station ID 18086 - above Lago (Man02 #25) Point 0101000020E6100000758E01D9EBF94EC0F775E09C11A5FBBF 35 Unknown +18087 daad7b85-66e7-76c1-b4eb-b4be58e2bec5 Water quality station LagoUni2 Lago do Unini above falls Station ID 18087 - above Ig. Preta, above 2nd falls/rapids Point 0101000020E6100000037D224F92FA4EC0B16D516683CCFBBF 35 Unknown +18100 ea292255-6da0-c7f8-9150-13ae1ba59a41 Water quality station jau-6b Jau-boca Station ID 18100 - Stream Ord. 6 Point 0101000020E61000005E85949F54B74EC0E31934F44F70FEBF 34 Unknown +18101 d2e5b336-a25f-8bd0-ccb3-17d2c7edc485 Water quality station jau-Car R.Jau above Caravinani Station ID 18101 Point 0101000020E6100000AF25E4839EC14EC090831266DAFEFEBF 34 Unknown +18102 41c0ba53-ea7e-22c5-7fa1-5ae98513eed0 Water quality station jau-6c Jau-capoeira grande Station ID 18102 - Stream Ord. 6 Point 0101000020E6100000C4B12E6EA3ED4EC022C32ADEC83CFFBF 34 Unknown +18103 33afe5d9-7670-cd1a-b94c-ee3329fa9d45 Water quality station jau-6v Jau-volta da paz Station ID 18103 - Stream Ord. 6 Point 0101000020E610000095F1EF332E044FC0533F6F2A52E1FFBF 34 Unknown +18104 e2715a0d-280d-c7f6-fb17-189e373ccd48 Water quality station jau-6p Jau-Pauini Station ID 18104 - Stream Ord. 6 Point 0101000020E61000007BF7C77BD5324FC0CD751A69A9BC01C0 34 Unknown +18105 c080533a-abfd-3d34-fef7-25a6cdb8cae1 Water quality station jau-5ap Jau-Acima pauini Station ID 18105 - Stream Ord. 5; also jau-5p Point 0101000020E610000019FF3EE3C23D4FC099BB96900FFA01C0 34 Unknown +18120 4bd51555-d419-6f41-401f-1b497c514e61 Water quality station preto-3 Ig. preto Station ID 18120 - Stream Ord. 3 Point 0101000020E6100000EA094B3CA0B84EC010E9B7AF0367FFBF 34 Unknown +18121 fc65e7e2-48ed-442b-e4cf-4c04425d540f Water quality station jara-2 Jaraca Station ID 18121 - Stream Ord. 2 Point 0101000020E6100000D7C0560916CF4EC01FD7868A71FEFCBF 34 Unknown +18122 8acbffcf-ca80-9d78-a952-a216ac8a3cac Water quality station queb-2 Quebrado Station ID 18122 - Stream Ord. 2 Point 0101000020E61000002D431CEBE2D24EC0352905DD5E52FDBF 34 Unknown +18123 b0782c87-b6ab-c787-6e69-c2f3cd6ad3e3 Water quality station capo-2 Ig. Capoeira grande(Jabu) Station ID 18123 - Stream Ord. 2 Point 0101000020E6100000A4703D0AD7EB4EC0971C774A07EBFEBF 34 Unknown +18124 3c202552-e8aa-9d92-ea11-b0c47c51f398 Water quality station paje-3 Paje Station ID 18124 - Stream Ord. 3 Point 0101000020E6100000895E46B1DCF24EC0CBD6FA22A1ADFEBF 34 Unknown +18125 e2aca5fd-eea0-63db-820f-c41588644195 Water quality station uma-4a Ig. Umanapana Station ID 18125 - Stream Ord. 4; also uma-4b Point 0101000020E61000005AF0A2AF200D4FC019C5724BAB6100C0 34 Unknown +18126 981db05a-efcb-4868-018b-5c69f7b02dcd Water quality station maca-4 Ig. Macaco Station ID 18126 - Stream Ord. 4 Point 0101000020E6100000F0F96184F0104FC033C4B12E6E2301C0 33 Unknown +18127 fa210181-ad81-3feb-3574-c2b0df8923f5 Water quality station maca-3s Ig. Macaco-sergio Station ID 18127 - Stream Ord. 3 Point 0101000020E6100000BF60376C5B104FC049BA66F2CD3601C0 32 Unknown +18128 b660a4ce-d60e-3be7-cef9-ce4bf4c7a8ea Water quality station maca-2pc Ig. Macaco-pret/cancao Station ID 18128 - Stream Ord. 2 Point 0101000020E6100000BF60376C5B104FC0B1F9B836544C01C0 32 Unknown +18129 62766a35-2ba8-f2ea-5bfd-049e1caea843 Water quality station maca-2b Ig. Macaco-branquinho Station ID 18129 - Stream Ord. 2; also maca-2p,oncas-2b,oncas-2p Point 0101000020E6100000D61C2098A30F4FC0529B38B9DF6101C0 31 Unknown +18130 7d332592-2ac6-2acf-598f-750f8ad8db2f Water quality station maca-1c Ig. Macaco-cancao Station ID 18130 - Stream Ord. 1 Point 0101000020E6100000C93CF207030F4FC02EFF21FDF67501C0 30 Unknown +18131 1e0ce513-5b63-8471-5813-b3a838e7e38c Water quality station fortu-3 Ig. Fortuna Station ID 18131 - Stream Ord. 3 Point 0101000020E61000002A8C2D0439344FC08BC3995FCD0102C0 33 Unknown +18132 fb0b9183-34d5-5068-31b9-3a272e422d43 Water quality station oncas-4 Ig. Oncas Station ID 18132 - Stream Ord. 4 Point 0101000020E61000000820B589933F4FC022FDF675E0DC02C0 34 Unknown +18133 e3ce99e7-709c-1c31-e3a4-d2b08389ed33 Water quality station oncas-3p Ig. Oncas-Preto Station ID 18133 - Stream Ord. 3 Point 0101000020E6100000D690B8C7D23B4FC03CDA38622DBE03C0 34 Unknown +18134 35ec36de-7de7-d34c-7807-a1985526bf47 Water quality station pauini-5 Pauini Station ID 18134 - Stream Ord. 5 Point 0101000020E61000006536C824233F4FC0E1D1C6116BF101C0 34 Unknown +18135 26997efd-a82d-58dc-51e8-f4f26bbe9e5f Water quality station pauini-3e Ig. Pauini-eustaque Station ID 18135 - Stream Ord. 3 Point 0101000020E6100000F20C1AFA27444FC0E5ED08A7052F02C0 34 Unknown +18140 591d221d-6504-391a-042d-dbff3d2cfa9b Water quality station mira-4 Ig. Miratucu Station ID 18140 - Stream Ord. 4 Point 0101000020E6100000543541D47DEC4EC07E1D38674469FFBF 34 Unknown +18141 7018044d-c8c5-586a-abdc-7b2544ae3c96 Water quality station mira-3n Miratucu-Novo Station ID 18141 - Stream Ord. 3 Point 0101000020E610000087DC0C37E0EB4EC05DF92CCF83BBFFBF 34 Unknown +18142 f1020641-374a-eb9f-650e-0698528894f5 Water quality station mira-2n Miratucu-Novo Station ID 18142 - Stream Ord. 2 Point 0101000020E61000001F11532289EA4EC0EE7C3F355EBAFFBF 34 Unknown +18143 584320f9-296b-ac48-2811-27cf939e682b Water quality station mira-1n Miratucu-Novo Station ID 18143 - Stream Ord. 1 Point 0101000020E6100000BE874B8E3BE94EC07E00529B38B9FFBF 34 Unknown +18144 2ae4999d-527f-fd1f-c89f-a6af0c58457e Water quality station mira-3ag Miratucu-acima gerley Station ID 18144 - Stream Ord. 3 Point 0101000020E61000000C1F115322ED4EC0C79DD2C1FA3F00C0 34 Unknown +18145 9387f2b9-f2d1-04ed-dd7d-3bd554c6e646 Water quality station mira-3g Ig. Miratucu-gerley Station ID 18145 - Stream Ord. 3 Point 0101000020E61000000DA661F888EC4EC012143FC6DC3500C0 34 Unknown +18146 a3a56b37-ca56-6a8c-9cea-d3b7b383a6aa Water quality station mira-3m Miratucu-meio caminho-ger Station ID 18146 - Stream Ord. 3 Point 0101000020E61000007958A835CDEB4EC04C1AA375543500C0 34 Unknown +18147 413e5be0-04f4-dfe5-0fcf-964a39280f06 Water quality station mira-2c Ig. Miratucu-Cobra/Normal Station ID 18147 - Stream Ord. 2 Point 0101000020E61000002B1895D409E84EC09E077767ED3600C0 34 Unknown +18148 1ce8c583-8771-26f9-a3a3-499a3d5e7842 Water quality station mira-2 Ig. Miratucu Station ID 18148 - Stream Ord. 2 Point 0101000020E6100000F111312592E84EC0650113B8753700C0 34 Unknown +18149 76cf9d62-f7c3-edff-0bc7-3ca860411824 Water quality station mira-1c Miratucu-caminho,cabeceir Station ID 18149 - Stream Ord. 1 Point 0101000020E61000000DA661F888EC4EC0AF777FBC572D00C0 34 Unknown +18150 3477278f-5236-16d7-a5e3-3c062c15c589 Water quality station mira-1 Ig. Miratucu Station ID 18150 - Stream Ord. 1 Point 0101000020E61000000DA661F888EC4EC014799274CD2400C0 34 Unknown +18170 c6975c70-a44d-fd85-cbf1-eb70b2467952 Water quality station cara-5 R. Carabinani Station ID 18170 - From Jau Report97, also -61.528889, -1.96 Point 0101000020E6100000363CBD5296C14EC0D82AC1E27066FFBF 34 Unknown +18200 4398dc0d-3a54-3779-c2e0-2a2e98e5d512 Water quality station branco Branco Station ID 18200 Point 0101000020E61000004BC8073D9BF14EC0A110018750A5F5BF 38 Unknown +18400 acaa17fc-4ad7-0fc8-3552-f876af8a3c4d Water quality station negro_branco Negro at Confl. With Branco Station ID 18400 Point 0101000020E61000002D78D15790FA4EC0247F30F0DC7BF5BF 38 Unknown +18401 27004cd6-b33c-1ec6-0674-b0f37e2deea8 Water quality station 4 R. Caurés Station ID 18401 Point 0101000020E6100000E466B8019F1F4FC08A8EE4F21F52F5BF 37 Unknown +18402 17d632c1-9ed3-f334-b8e2-53ae48234a5b Water quality station 16 R. Cuiuni Station ID 18402 Point 0101000020E6100000508D976E128B4FC0C095ECD808C4E7BF 37 Unknown +18403 039d8736-6b54-4d26-b128-0155d1bd873a Water quality station 15 R. Padauari Station ID 18403 Point 0101000020E610000026E4839ECD0050C025CCB4FD2B2BB5BF 59 Unknown +18404 de438057-89b5-0ee9-9a07-b5a0449d8b5c Water quality station 14 R. Preto Station ID 18404 Point 0101000020E6100000B6A1629CBF0150C0BCE82B483316B5BF 58 Unknown +18405 1db3fded-e007-1302-bb5f-abf00ab56b8a Water quality station 5 R. Urubaxi Station ID 18405 Point 0101000020E61000005036E50AEF3450C00EF8FC304278E3BF 48 Unknown +18406 53b853db-d36d-272b-82e2-9fc80c621558 Water quality station 6 R. Aruanã Station ID 18406 Point 0101000020E6100000EDF0D7648D3E50C00A68226C787AE2BF 49 Unknown +18407 7267ebd3-3337-6c43-c605-36ded758673d Water quality station 8 R. Uneiuxi Station ID 18407 Point 0101000020E6100000008C67D0D04750C00A68226C787AE2BF 51 Unknown +18408 563ff322-8b89-d3ff-21ca-9c302b346e59 Water quality station 9 R. Tea Station ID 18408 Point 0101000020E61000000B24287E8C4750C0AF7C96E7C1DDDFBF 51 Unknown +18409 5e7bc5de-6904-5fd7-fdac-324fb5194566 Water quality station 10 R. Marauia Station ID 18409 Point 0101000020E6100000C32ADEC83C4E50C02E90A0F831E6D6BF 59 Unknown +18410 9ff2f062-2361-dbc1-84d0-0e29879542a3 Water quality station 11 R. Cauaburi Station ID 18410 Point 0101000020E61000005E9D6340F67C50C0FD4D2844C021D0BF 62 Unknown +18411 1d8e8196-df99-19a9-a7ac-dcff649ded43 Water quality station 12 R. Marie Station ID 18411 Point 0101000020E6100000F90FE9B7AF9B50C0F3E505D847A7DCBF 65 Unknown +20000 2a266518-f7cb-88af-838d-42a9f388a56d Water quality station RPur Rio Purus Station ID 20000 Point 0101000020E610000033A7CB6262B74EC0448655BC91F90DC0 32 Unknown +20001 e435f7a9-ba5c-36e0-f2ba-7bed34447806 Water quality station acre Boca do Acre Station ID 20001 Point 0101000020E61000002A6F47382DD850C0492EFF21FD7621C0 100 Unknown +20002 d92a78b0-1a49-54f0-eb09-6ecfa9ffb272 Water quality station brasil Brasileia Station ID 20002 Point 0101000020E6100000064CE0D6DD3051C0C55565DF150126C0 250 Unknown +22001 5110f1e5-05ee-ce0b-25c5-a3107aca5a6e Water quality station coari Coari at Coari Station ID 22001 Point 0101000020E6100000F0F96184F0944FC0CF4E0647C92B10C0 38 Unknown +22002 6f204cdf-635b-216c-d6d6-cf4be2a8e842 Water quality station coari_mthbay Coari at Lower-Middle mouth-bay Station ID 22002 Point 0101000020E61000001D554D1075A34FC0D8D30E7F4D3610C0 39 Unknown +23001 9bd964a5-0b93-f717-6462-4b10d28f32d1 Water quality station tefe Tefe at Tefe Station ID 23001 Point 0101000020E61000001DACFF73982D50C0B398D87C5CDB0AC0 44 Unknown +23002 c8e9dc7b-47a3-916b-bdb6-075175a0dde1 Water quality station tefe_mthbay Tefe at Middle mouth-bay Station ID 23002 Point 0101000020E6100000C53D963E743150C085EB51B81E850BC0 44 Unknown +24000 a090533d-bafe-ec9d-00df-3e329fdd0369 Water quality station RJap Rio Japura Station ID 24000 Point 0101000020E61000001DE6CB0BB06B50C0A4198BA6B313FDBF 55 Unknown +25000 9cff8432-24e0-570d-deef-82ce6699ba3e Water quality station RJur Rio Jurua Station ID 25000 Point 0101000020E6100000018750A5667350C09DBAF2599EC705C0 56 Unknown +25001 ead2e217-70a3-4425-f26b-b1813c27f88a Water quality station crusu Cruzeiro do Sul Station ID 25001 Point 0101000020E6100000FFEC478AC82852C022C32ADEC87C1EC0 188 Unknown +26000 66b9edc3-1202-01ec-eb5b-85cc63a3c371 Water quality station RJut Rio Jutai Station ID 26000 Point 0101000020E6100000ACADD85F76C150C0F5A10BEA5B6606C0 62 Unknown +27000 c089ab06-2d72-845d-cb6a-fc8d74277fee Water quality station RIca Rio Ica Station ID 27000 Point 0101000020E6100000A514747B490D51C052499D80264208C0 68 Unknown +28000 edcc95c9-b580-08c1-236f-edbf93ca8544 Water quality station jandiatuba Jandiatuba Station ID 28000 Point 0101000020E61000008109DCBA9B2D51C099BB96900FFA0BC0 88 Unknown +29001 daa87792-6ac8-b6ca-b9b8-52d7679520f4 Water quality station javari Javari Station ID 29001 Point 0101000020E61000009FABADD85F8251C00BD28C45D35911C0 83 Unknown +30000 0b08ba0e-5d6d-90f3-2dbc-fb05f78602a7 Water quality station napo Napo Station ID 30000 Point 0101000020E6100000E370E657732852C0944DB9C2BB5C0AC0 103 Unknown +31001 9dd36d1a-f4fa-26ab-5303-7cff2cbba0fe Water quality station nanay Nanay at Iquitos Station ID 31001 Point 0101000020E6100000DCF4673F524C52C0A2D11DC4CE940DC0 106 Unknown +32000 fd18b753-e8b5-322e-1fd9-30c17fc08984 Water quality station mara Marañón Station ID 32000 Point 0101000020E6100000BF60376C5B6452C0CD0182397A1C12C0 113 Unknown +32100 ce78fb1e-23cd-f73f-69b7-98708c7147db Water quality station huall_yurim Huallaga at Yurimaguas Station ID 32100 Point 0101000020E6100000B537F8C2640253C010751F80D4A617C0 200 Unknown +32101 4261c4ef-1b8e-1b8e-56c1-cbca388410f4 Water quality station paranapura Paranapura at Yurimaguas Station ID 32101 Point 0101000020E61000007FBC57AD4C0853C0CDCCCCCCCC8C17C0 182 Unknown +32102 88104b55-6412-16cc-6ce2-990170988655 Water quality station shanusi Shanusi at Yurimaguas Station ID 32102 Point 0101000020E6100000473D44A33B0653C018EC866D8BB217C0 182 Unknown +32103 b56db0f2-d794-acc3-c745-37d694dd5117 Water quality station mayo Mayo Station ID 32103 Point 0101000020E61000001AA88C7F9F1B53C05FEFFE78AF3A1AC0 296 Unknown +32104 389d7c34-0b7b-8547-7463-49a1335a9d64 Water quality station saltspr2_huall Pilluana Salt Dome Cana salt spring Station ID 32104 Point 0101000020E61000007FC16ED8B61253C0A0C37C7901361BC0 290 Unknown +32105 7f3717b1-c5fd-93c7-8c1f-4ba52df92180 Water quality station saposoa Saposoa Station ID 32105 Point 0101000020E610000020EF552B132A53C0C80C54C6BF4F1CC0 309 Unknown +32106 325c0cf0-34c4-9132-c4f4-1656d335c396 Water quality station huallabamba Huallabamba Station ID 32106 Point 0101000020E6100000CEC7B5A1623053C006F52D73BA0C1DC0 328 Unknown +32107 fe8305a2-9921-ff48-ca66-4d8f8a449f1f Water quality station huall_bals Huallaga at Balsayacu Station ID 32107 Point 0101000020E610000087A2409FC82953C0BEF6CC9200B51DC0 343 Unknown +32108 8a4f2476-fb01-b1d2-6bc4-d0007bbd4077 Water quality station tocache Tocache Station ID 32108 Point 0101000020E6100000A0FD4811192253C0ED9E3C2CD45A20C0 452 Unknown +32109 46f36d9d-b67f-8e84-4187-415bd70f8bb1 Water quality station huall_toca Huallaga at Tocache Station ID 32109 Point 0101000020E6100000DC9DB5DB2E2053C019390B7BDA6120C0 467 Unknown +32110 01225a72-a741-c718-111d-d8456bde6073 Water quality station cachiyacu Cachiyacu Station ID 32110 Point 0101000020E6100000EC17EC866D1953C06BB75D68AE8320C0 514 Unknown +32111 6eb9468b-f5b0-dfc0-95c3-00ca7616cc1f Water quality station uchiza Uchiza Station ID 32111 Point 0101000020E6100000456458C51B1953C05E807D74EADA20C0 571 Unknown +32112 ee2bac6a-c822-561a-d986-00a7740dda59 Water quality station aspasarta Aspasarta Station ID 32112 Point 0101000020E6100000D3BCE3141D0953C058E71890BD7E21C0 600 Unknown +32113 dc0a36ff-9ae3-e46e-225b-de843a916712 Water quality station saltspr1_huall salt spring, left bank of Monzon R. Station ID 32113 Point 0101000020E61000008F8D40BCAE0353C0176536C8249322C0 719 Unknown +32114 1b149a26-2635-3994-d410-899c039cb6b8 Water quality station mozon Monzon Station ID 32114 Point 0101000020E6100000CC0BB08F4E0153C08A3C49BA66A222C0 677 Unknown +32115 7728f5fa-75bf-49a9-ffb1-ed2a1c9816a8 Water quality station huall_tingo Huallaga at Tingo Maria Station ID 32115 Point 0101000020E61000000BD28C45D3FF52C02B4D4A41B7A722C0 705 Unknown +32116 4e94e4f4-c79f-5704-eac1-a82f247994db Water quality station huachipa Huachipa Station ID 32116 Point 0101000020E61000004B766C04E2FD52C0E65C8AABCAFE22C0 881 Unknown +32117 afbf9d55-f4ba-e226-3826-f38a2c3c7a54 Water quality station higueras Higueras Station ID 32117 Point 0101000020E6100000AB5B3D27BD1153C004E275FD82DD23C0 1851 Unknown +32118 2662165e-3fc1-a5c3-5457-bf25999f5c30 Water quality station huall_huanuco Huallaga at Huanuco Station ID 32118 Point 0101000020E6100000527E52EDD30F53C06D73637AC2E223C0 1837 Unknown +33000 d6b7d68a-3c3f-5899-9b56-05da1f0ada35 Water quality station ucaya Ucayali Station ID 33000 Point 0101000020E61000007099D365315F52C09FCDAACFD51612C0 112 Unknown +33001 a7188d0e-ae1b-3a0e-14de-36913922ab1f Water quality station paucay Ucayali at Pachitea Station ID 33001 Point 0101000020E610000008AC1C5A64A352C0E21E4B1FBA9021C0 165 Unknown +33002 a9fcdef3-5178-77da-d596-365dc7402ab0 Water quality station tambo Tambo Station ID 33002 Point 0101000020E61000006F47382D787152C0FB3F87F9F29225C0 286 Unknown +33003 a2d0ce3b-6678-5702-d5fa-c3adcd441fb0 Water quality station cunyac Cunyac Station ID 33003 - At the main bridge Point 0101000020E6100000240B98C0AD2552C0185B087250222BC0 2425 Unknown +33004 a51a4bea-d77f-b981-5366-5224f0d23771 Water quality station urub Urubamba Station ID 33004 Point 0101000020E6100000A8E33103956D52C088855AD3BC8325C0 288 Unknown +33005 a259f005-3f4b-5ad7-0f74-9d3fe5229c18 Water quality station yanat Quellouno Station ID 33005 - Yana means black in quechua (saw it on the web) Point 0101000020E610000012A5BDC1172252C015747B49633429C0 1083 Unknown +33006 063ff01e-a2a2-17a3-5f88-e78be558b1e0 Water quality station sahua Sahuayaoti Station ID 33006 - At Chahuares bridge Point 0101000020E61000001895D409682252C07B14AE47E14A29C0 824 Unknown +33007 a6b66d56-78ea-ae8f-8a11-4ae4d43d54a7 Water quality station quilla Quillabamba Station ID 33007 - At Pavayoc bridge. GPS coords are off; using Google Earth-based location for bridge. Point 0101000020E61000008126C286A72B52C079E9263108BC29C0 1142 Unknown +33008 af2a244a-575b-b59a-7850-e7e976f044bf Water quality station osner glacier stream at Osneritio Station ID 33008 - At Quellouno bridge Point 0101000020E6100000F6285C8FC21152C0713D0AD7A3502AC0 4317 Unknown +33009 e8ad3e91-2db4-5d5d-43d4-626f0c14d095 Water quality station pachar Pachar Station ID 33009 - At bridge Point 0101000020E61000002BFBAE08FE0F52C024B4E55C8A8B2AC0 3106 Unknown +33010 e96a7429-c521-ee69-7f7b-dbb89b845363 Water quality station huanb Huanbutio Station ID 33010 - Just below confluence with Rio Huatanay, which drains Cusco Point 0101000020E610000075594C6C3EEE51C0D8F50B76C3262BC0 3002 Unknown +33011 c08e7588-7273-3d1e-d92b-71143dc3944d Water quality station salcca Salcca Station ID 33011 - Near Combapata Point 0101000020E61000007E6FD39FFDDA51C0153AAFB14B342CC0 3792 Unknown +33012 a021f03a-1ccd-4b03-0ada-88e1b57e47bc Water quality station tinta Tinta Station ID 33012 - At old foot bridge Point 0101000020E6100000C80C54C6BFD951C04C6C3EAE0D552CC0 3571 Unknown +33013 5deee454-9406-f7bc-acc6-545a1f6ec34c Water quality station veluy altiplano wetland at Veluyo Station ID 33013 Point 0101000020E6100000B81E85EB51D451C09A99999999B92CC0 3957 Unknown +33014 c48bcf71-12de-a170-fa52-a4c43cd84392 Water quality station langui Langui Station ID 33014 Point 0101000020E6100000DFE00B93A9D251C0C746205ED7DF2CC0 3877 Unknown +33050 7a0c6284-79a0-757e-f368-5d7eefcf17fa Water quality station ucay_pucall Ucayali at Pucallpa Station ID 33050 Point 0101000020E6100000E84D452A8C9F52C0CCEEC9C3429D20C0 158 Unknown +33051 7a5349c3-14e9-14ac-98d8-efab802db5ba Water quality station urub_machu Urubamba at Machu Picchu Station ID 33051 Point 0101000020E6100000F46C567DAE2252C0912749D74C4E2AC0 2029 Unknown +33052 a587e5f7-ebff-bc71-ffd1-de36964580db Water quality station aguascal Stream at Aguas Calientes, Machu Picchu Station ID 33052 Point 0101000020E61000002788BA0F401E52C048A7AE7C96672AC0 2881 Unknown +33053 222b74f4-c60a-4fec-146f-0d9268dbe65e Water quality station chulec Mantaro at Chulec Station ID 33053 Point 0101000020E6100000B4024356B7DA52C03C889D2974AE27C0 3829 Unknown +33100 ef8302e9-c569-95a9-81c6-df1a82510f7a Water quality station pachi Pachitea Station ID 33100 Point 0101000020E61000002D95B7239CA452C0BA66F2CD367721C0 165 Unknown +33101 7715e3aa-aba2-4404-3bdd-b5e75d57caa2 Water quality station tourna Tournavista Station ID 33101 Point 0101000020E6100000392861A6EDAD52C05AF5B9DA8ADD21C0 170 Unknown +33102 c62483de-ec17-82e8-e8ad-15b1c9077cfb Water quality station ptoinca Puerto Inca Station ID 33102 Point 0101000020E6100000F86BB2463DBE52C0A9C1340C1FC122C0 181 Unknown +33105 d98382f7-5eb3-ead8-6d78-ec710eaf0ad6 Water quality station sungar Sungarayacu Station ID 33105 Point 0101000020E6100000D235936FB6C152C074417DCB9CBE22C0 192 Unknown +33108 1558a346-3261-92b0-f7e4-6e5fbdfc5f67 Water quality station palcazu Palcazu Station ID 33108 Point 0101000020E610000065AA605452BD52C062A1D634EFC823C0 189 Unknown +33109 3ddff37d-4f9a-0bde-153e-ce728f5128db Water quality station pichis Pichis Station ID 33109 Point 0101000020E61000009291B3B0A7BB52C0DF37BEF6CCD223C0 194 Unknown +33110 f19e63a8-daab-425e-1989-d986bb4f9429 Water quality station pozuzo Pozuzo Station ID 33110 Point 0101000020E610000095F1EF332ED052C02497FF907ECB23C0 245 Unknown +33111 827b503c-d320-49b5-c892-7470a1fb4ec4 Water quality station altpalcazu Alto Palcazu Station ID 33111 Point 0101000020E6100000EE3D5C72DCCF52C07B6B60AB04DB23C0 296 Unknown +33114 837d5b77-6a3c-2bcb-b974-0d7c032b030e Water quality station apurucay Apurucayali Station ID 33114 Point 0101000020E61000007C7E18213CBE52C07099D365310124C0 189 Unknown +33116 ca06b029-4173-14a5-e918-e1e5969a77ee Water quality station altpichis Alto Pichis Station ID 33116 Point 0101000020E6100000E7C6F48425B852C019390B7BDAB124C0 260 Unknown +33117 f5938ea5-519e-0ac8-23cb-58defe3ea7d1 Water quality station neguachi Neguachi Station ID 33117 Point 0101000020E6100000D8B628B341B652C0E17A14AE47C124C0 275 Unknown +33118 bbe5a532-17f8-0d43-eb92-61855069f27a Water quality station nazarateg Nazarategui Station ID 33118 Point 0101000020E6100000417DCB9C2EB752C0115322895EC624C0 293 Unknown +33119 60a5feb2-808e-ef81-206c-209ed32416ff Water quality station azupizu Azupizu Station ID 33119 Point 0101000020E610000008C9022670B952C0E960FD9FC3AC24C0 246 Unknown +33122 fd5d6e29-84dc-2c46-6057-d963e848eb25 Water quality station hua_stacruz Santa Cruz Station ID 33122 Point 0101000020E6100000800EF3E505E452C03CBD5296210E24C0 691 Unknown +33123 44194873-28ae-3edc-6441-1755bfe82ddb Water quality station huancab Huancabamba Station ID 33123 Point 0101000020E61000004390831266E252C001F6D1A92B2F24C0 849 Unknown +33124 4fc6bc04-9923-1d07-5df1-1fc77f4ba99b Water quality station chonta_oxap Chontabamba at Oxapampa Station ID 33124 Point 0101000020E61000005F0CE544BBDA52C019390B7BDA3125C0 3183 Unknown +1 344cf24a-d201-b623-3518-0e3f4fbbd935 Specimen sta1036exp1300smp336_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 336 \N \N \N \N +2 8b0b1c08-a9bd-a3d8-7020-717026fc0314 Specimen sta1036exp1300smp337_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 337 \N \N \N \N +3 8a71fc0a-61df-70e5-525a-35527eb5c0e0 Specimen sta1036exp1300smp338_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 338 \N \N \N \N +4 ec443902-13c3-0240-db79-d20b3a54ee11 Specimen sta1036exp1300smp339_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 339 \N \N \N \N +5 149bc60b-7a98-7a01-4509-ed825e350d8e Specimen sta1036exp1300smp340_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 340 \N \N \N \N +6 0dc4512b-5087-f4f9-66a0-e3a10a65dedd Specimen sta1036exp1300smp341_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 341 \N \N \N \N +7 fa6f28a8-b3ec-f04b-f8d8-68bc9621238a Specimen sta1036exp1300smp342_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 342 \N \N \N \N +8 9849e2ce-d192-9a9b-3668-a5aa837731db Specimen sta1036exp1300smp343_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 343 \N \N \N \N +9 9b2eac04-ef76-3e66-65a7-a3fe8b3ab496 Specimen sta1036exp1300smp344_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 344 \N \N \N \N +10 c5b8a172-62c7-e232-d368-441182e060f1 Specimen sta1036exp1300smp345_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 345 \N \N \N \N +11 e703f019-e41a-fbc8-5739-fc77946db3e2 Specimen sta1036exp1300smp346_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 346 \N \N \N \N +12 204794fe-3b9f-7810-4091-cb619d9327d6 Specimen sta1036exp1300smp347_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 347 \N \N \N \N +13 ae16388d-ea97-9b8e-4dde-1807dd55a062 Specimen sta1036exp1300smp348_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 348 \N \N \N \N +14 b5c4977d-2576-d3ea-9e01-893cf7c08bfa Specimen sta1036exp1300smp349_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 349 \N \N \N \N +15 97cd5065-f3c5-8fcd-176f-dce080a7e40b Specimen sta1036exp1300smp350_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 350 \N \N \N \N +16 dfbdc2fe-887e-e921-a20f-8df957c1a860 Specimen sta1036exp1300smp351_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 351 \N \N \N \N +17 81b7d978-5292-4e7e-2a45-d33f91150619 Specimen sta1036exp1300smp352_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 352 \N \N \N \N +18 0ab2437a-fdf9-e917-8869-bdec38815b7b Specimen sta1036exp1300smp353_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 353 \N \N \N \N +19 97e6b1a2-cc52-3cfe-068c-a8f0c5d2c491 Specimen sta1036exp1300smp354_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 354 \N \N \N \N +20 11cbecc2-c71c-9c00-3cda-6daab428ef7e Specimen sta1036exp1300smp355_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 355 \N \N \N \N +21 36ef8105-86e5-514c-cd05-028e165bd1a0 Specimen sta1036exp1300smp356_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 356 \N \N \N \N +22 176f6728-ebe7-0511-1bb2-cb04f255ea27 Specimen sta1036exp1300smp357_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 357 \N \N \N \N +23 a697b023-9462-9583-96b2-31fa7497a1ff Specimen sta1036exp1300smp358_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 358 \N \N \N \N +24 7746d448-a2bf-bcf7-481c-8afb4754f7b8 Specimen sta1036exp1300smp359_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 359 \N \N \N \N +25 4681c7b6-1348-e7d6-5ae1-9e33e3186a5e Specimen sta1036exp1300smp360_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 360 \N \N \N \N +26 ca5c17e9-9628-11d9-e3a5-fd08900e79dd Specimen sta1036exp1300smp361_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 361 \N \N \N \N +27 2af7b6f0-538f-56ec-9f98-98ac4cb48cb0 Specimen sta1036exp1300smp362_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 362 \N \N \N \N +28 b189cec3-b1ab-b49d-4ef4-76cf68938a55 Specimen sta1036exp1300smp363_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 363 \N \N \N \N +29 114c9aec-2f4b-5aeb-b0c9-bdfeaef9d723 Specimen sta1036exp1300smp364_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 364 \N \N \N \N +30 caff4201-2299-f748-314a-4695de482a2c Specimen sta1036exp1300smp365_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 365 \N \N \N \N +31 74b79bd6-8ff3-3253-70dd-f683c78b4763 Specimen sta1036exp1300smp366_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 366 \N \N \N \N +32 3ac57293-e676-def1-2b54-34e24c10d915 Specimen sta1036exp1300smp367_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 367 \N \N \N \N +33 65df8146-c522-ae47-8dae-f9f728933236 Specimen sta1036exp1300smp368_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 368 \N \N \N \N +34 bf7df29c-f725-3074-02d1-b803371ef271 Specimen sta1036exp1300smp369_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 369 \N \N \N \N +35 79b1bac6-f08e-fc44-9209-cfe803533af4 Specimen sta1036exp1300smp370_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 370 \N \N \N \N +36 459a0692-4846-28cc-f307-e472b65aacc9 Specimen sta1036exp1300smp372_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 372 \N \N \N \N +37 bf3f53bf-02fc-b697-062e-7ef4090403e1 Specimen sta1036exp1300smp373_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 373 \N \N \N \N +38 38d2d80a-3762-3419-400b-75d358334b22 Specimen sta1036exp1300smp374_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 374 \N \N \N \N +39 0cfa4519-c4e4-c515-ebc3-ae6da74410ae Specimen sta1036exp1300smp375_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 375 \N \N \N \N +40 e155edbc-c578-5a96-0a83-32d312b044f7 Specimen sta1036exp1300smp376_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 376 \N \N \N \N +41 9bab7518-1f88-15d4-2d58-2a70a733489f Specimen sta1036exp1300smp377_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 377 \N \N \N \N +42 e73e9fe9-a0df-0e4f-6f3b-85e48d04a621 Specimen sta1036exp1300smp378_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 378 \N \N \N \N +43 ffd8cbdf-b222-f233-e60c-9c9585ffe669 Specimen sta1036exp1300smp379_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 379 \N \N \N \N +44 34ddd4fa-709c-db65-243b-c0232a781a9c Specimen sta1036exp1300smp380_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 380 \N \N \N \N +45 546b1f7d-81d4-7d05-fb9a-8d4584e12c60 Specimen sta1036exp1300smp381_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 381 \N \N \N \N +46 af035900-c5f2-a467-cc77-b3d30b8047b2 Specimen sta1036exp1300smp382_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 382 \N \N \N \N +47 d23ceb71-59a7-9fe5-f7fa-4f6ab41932f2 Specimen sta1036exp1300smp383_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 383 \N \N \N \N +48 a937b597-1989-2568-dbb2-8e25d3bbc7d5 Specimen sta1036exp1300smp384_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 384 \N \N \N \N +49 612eab78-381f-30e1-db3b-98e373a67a3f Specimen sta1036exp1300smp385_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 385 \N \N \N \N +50 90961b43-910f-59f9-d643-d8606b47faa1 Specimen sta1036exp1300smp386_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 386 \N \N \N \N +51 81f8de55-2d0b-a187-d4f7-83f9878d02ee Specimen sta1036exp1300smp387_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 387 \N \N \N \N +52 f087db2b-adeb-210f-3533-f15f1a67d515 Specimen sta1036exp1300smp388_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 388 \N \N \N \N +53 74499e12-aaf9-5389-16c2-9a7051321264 Specimen sta1036exp1300smp389_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 389 \N \N \N \N +54 f32c5271-c89d-ab3e-61f0-06557e3ca6d9 Specimen sta1036exp1300smp390_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 390 \N \N \N \N +55 2be48b38-f868-1605-3d52-2acb26b238b9 Specimen sta1036exp1300smp391_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 391 \N \N \N \N +56 1b7e994c-e077-4dbf-4486-9870b8bc091c Specimen sta1036exp1300smp392_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 392 \N \N \N \N +57 9e30a95e-acb3-aeb7-e408-bd2f8699ccfb Specimen sta1036exp1300smp393_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 393 \N \N \N \N +58 39c4a10f-445f-2e7b-a76e-c652b3f54693 Specimen sta1036exp1300smp394_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 394 \N \N \N \N +59 687c68de-7704-f641-ce9b-f25b96a7a585 Specimen sta1036exp1300smp396_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 396 \N \N \N \N +60 5c5fc1c8-8504-d50c-28ef-6cd60eeca32d Specimen sta1036exp1300smp397_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 397 \N \N \N \N +61 01ae67b2-708f-0e91-73a3-e1e934500fb4 Specimen sta1036exp1300smp398_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 398 \N \N \N \N +62 07d4b852-40fb-8bde-5d7e-9761264c50f8 Specimen sta1036exp1300smp399_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 399 \N \N \N \N +63 b3abd8fc-acbb-5b7f-196c-f505d387caa0 Specimen sta1036exp1300smp400_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 400 \N \N \N \N +64 4cfc192f-322c-76f0-3f03-ef522406a547 Specimen sta1036exp1300smp401_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 401 \N \N \N \N +65 58203638-4e8a-cc04-5e19-5508496697ab Specimen sta1036exp1300smp402_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 402 \N \N \N \N +66 1100f153-8b0c-05f6-9305-0fa116d388b4 Specimen sta1036exp1300smp403_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 403 \N \N \N \N +67 aa417f12-3651-b156-2cb1-ff08f2687fa3 Specimen sta1036exp1300smp404_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 404 \N \N \N \N +68 162051e9-b180-bd40-e175-36d943dd2857 Specimen sta1036exp1300smp405_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 405 \N \N \N \N +69 c6099fcb-f212-4b4a-c9d5-16517d983fe4 Specimen sta1036exp1300smp406_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 406 \N \N \N \N +70 7e33e133-611a-c27d-eff3-dea29fb36376 Specimen sta1036exp1300smp407_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 407 \N \N \N \N +71 417c3672-363d-b2de-cb6c-4007081991c3 Specimen sta1036exp1300smp408_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 408 \N \N \N \N +72 3d5959d9-6274-13f8-2665-efdec543f976 Specimen sta1036exp1300smp409_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 409 \N \N \N \N +73 f76d3a43-bad8-4a6a-a746-f5328f4ea3ae Specimen sta1036exp1300smp410_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 410 \N \N \N \N +74 42bc1699-340b-7c15-e3f0-41134872f577 Specimen sta1036exp1300smp411_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 411 \N \N \N \N +75 ac3a4f06-7f4a-68f3-1d08-a174851360a8 Specimen sta1036exp1300smp412_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 412 \N \N \N \N +76 84cf7571-521f-6ba0-3204-f2120fdbd6f6 Specimen sta1036exp1300smp413_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 413 \N \N \N \N +77 4ae01fbc-4bfd-72b8-4f14-ee22a787be6b Specimen sta1036exp1300smp415_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 415 \N \N \N \N +78 06977f27-222c-c582-55af-94197846ef46 Specimen sta1036exp1300smp416_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 416 \N \N \N \N +79 de86eb42-a34e-9e01-e566-0c35cc54a5a4 Specimen sta1036exp1300smp417_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 417 \N \N \N \N +80 d5bb8aa1-92fc-7f35-4941-8a8decf30e99 Specimen sta1036exp1300smp418_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 418 \N \N \N \N +81 363ce9c9-8a1a-0858-99e0-c3927183ad58 Specimen sta1036exp1300smp419_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 419 \N \N \N \N +82 455a85e1-76e5-6d1a-b8c2-65c3cd2ed811 Specimen sta1036exp1300smp420_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 420 \N \N \N \N +83 d4f2ff13-89ca-8709-231e-d651ffbbb000 Specimen sta1036exp1300smp421_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 421 \N \N \N \N +84 ac6d3296-898d-2e84-69a4-c61c81e97b80 Specimen sta1036exp1300smp422_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 422 \N \N \N \N +85 d273ffb7-3166-aa83-2e57-b156debbe375 Specimen sta1036exp1300smp423_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 423 \N \N \N \N +86 c0fb6015-eae1-9642-c243-4008fd33d1b9 Specimen sta1036exp1300smp424_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 424 \N \N \N \N +87 348dae49-1407-e8f2-e19d-8c320f183f25 Specimen sta1036exp1300smp425_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 425 \N \N \N \N +88 beadf5d3-13c8-43ac-0e46-6727820096a7 Specimen sta1036exp1300smp426_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 426 \N \N \N \N +89 fa1f9e4e-a78d-f9db-515d-1fadfff46373 Specimen sta1036exp1300smp427_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 427 \N \N \N \N +90 f88a7d5e-0a51-224d-90d1-29394d087623 Specimen sta1036exp1300smp428_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 428 \N \N \N \N +91 aa168ad1-e37c-0eed-ac43-fb0169cf01a3 Specimen sta1036exp1300smp429_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 429 \N \N \N \N +92 057f109d-accd-ace3-ca06-ae30fc92be51 Specimen sta1036exp1300smp430_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 430 \N \N \N \N +93 9fc83147-05b9-fcf3-e283-42f26d93926d Specimen sta1036exp1300smp431_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 431 \N \N \N \N +94 4b316534-774d-0b63-54c7-0166d056bba1 Specimen sta1036exp1300smp432_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 432 \N \N \N \N +95 0eafad85-ae38-18ca-88bb-7cd4b5738ca4 Specimen sta1036exp1300smp433_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 433 \N \N \N \N +96 5d6823a4-e16b-6cdb-ea82-63ab6edf0dc8 Specimen sta1036exp1300smp434_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 434 \N \N \N \N +97 493685f9-fd99-4703-d5f4-857da360a7a7 Specimen sta1036exp1300smp435_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 435 \N \N \N \N +98 3719486f-0271-3a46-40d4-48061f87668c Specimen sta1036exp1300smp436_fp Fine Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Fine Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 436 \N \N \N \N +33125 b0700a25-f049-4ca3-61d1-8ec8bc8a2100 Specimen sta1036exp1300smp336_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 336 \N \N \N \N +33126 eb72e0f2-8de5-6e5b-e627-4010202c9dac Specimen sta1036exp1300smp337_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 337 \N \N \N \N +33127 6c888bd6-6d74-1e53-f834-f9c5a5cb7caf Specimen sta1036exp1300smp338_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 338 \N \N \N \N +33128 8146ce8d-fc8c-b269-9016-393f07b15b42 Specimen sta1036exp1300smp339_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 339 \N \N \N \N +33129 0ec14980-99e3-d8c4-742d-caae67b4d642 Specimen sta1036exp1300smp340_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 340 \N \N \N \N +33130 2b65fbf7-73c3-9afd-0022-40e84058ab18 Specimen sta1036exp1300smp341_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 341 \N \N \N \N +33131 42351772-4eb8-ec9a-1ddf-c6dd23d20bc1 Specimen sta1036exp1300smp342_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 342 \N \N \N \N +33132 73db2824-e0b1-e0cf-d970-03850e32ac1d Specimen sta1036exp1300smp343_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 343 \N \N \N \N +33133 265488a9-83f5-2a55-d26e-faa86a356522 Specimen sta1036exp1300smp344_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 344 \N \N \N \N +33134 a1ea7f73-719f-c15b-144f-6a70c56ee213 Specimen sta1036exp1300smp345_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 345 \N \N \N \N +33135 525de0f0-b3a2-3e21-2b64-eda6c9188c10 Specimen sta1036exp1300smp346_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 346 \N \N \N \N +33136 055a1389-0e68-3f2a-6c82-acd5bbf828c9 Specimen sta1036exp1300smp347_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 347 \N \N \N \N +33137 d327b7be-a581-b26a-fa0d-e22a511b8ada Specimen sta1036exp1300smp348_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 348 \N \N \N \N +33138 1de8df23-30d4-fdbb-854a-87f058f9fb4e Specimen sta1036exp1300smp349_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 349 \N \N \N \N +33139 793cb908-20c7-75a7-742f-035a451d9ca4 Specimen sta1036exp1300smp350_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 350 \N \N \N \N +33140 5ff8a88b-af48-5673-c892-fc2ea21bc507 Specimen sta1036exp1300smp351_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 351 \N \N \N \N +33141 2ddf5ca1-ceb6-1992-bbc7-b1c08bf84f05 Specimen sta1036exp1300smp352_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 352 \N \N \N \N +33142 72e2401c-7086-c758-15b3-28bd0c5e46da Specimen sta1036exp1300smp353_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 353 \N \N \N \N +33143 176dceb0-56e6-433e-b75c-5df403af8710 Specimen sta1036exp1300smp354_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 354 \N \N \N \N +33144 8c18180d-f859-fc23-d9ff-d0f12dcffed2 Specimen sta1036exp1300smp355_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 355 \N \N \N \N +33145 1c5eba11-797a-75de-4388-29ec9cad70a9 Specimen sta1036exp1300smp356_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 356 \N \N \N \N +33146 05ef58f4-c3be-db6b-971c-f4f1c40eccad Specimen sta1036exp1300smp357_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 357 \N \N \N \N +33147 80f968b9-5336-fb91-0ec9-3612bd1b4e61 Specimen sta1036exp1300smp358_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 358 \N \N \N \N +33148 ba609343-dcfa-e0d3-675f-f9776b6963bd Specimen sta1036exp1300smp359_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 359 \N \N \N \N +33149 e8722b97-f66a-5eb1-de83-1c64b9372b8c Specimen sta1036exp1300smp360_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 360 \N \N \N \N +33150 5734a4de-15fc-b69f-2218-8e20c9c70986 Specimen sta1036exp1300smp361_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 361 \N \N \N \N +33151 845ea8ef-4140-83c1-bea9-1bf55a4f3221 Specimen sta1036exp1300smp362_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 362 \N \N \N \N +33152 692c3de3-9915-9787-2222-2f5a1212efb1 Specimen sta1036exp1300smp363_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 363 \N \N \N \N +33153 28f4afda-36a0-16ef-3eda-1fb6b7c2e5cb Specimen sta1036exp1300smp364_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 364 \N \N \N \N +33154 3baee79f-5183-143d-f70d-0a698ea028d6 Specimen sta1036exp1300smp365_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 365 \N \N \N \N +33155 4002cbb6-b7bb-ec62-802e-ce66373a40cb Specimen sta1036exp1300smp366_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 366 \N \N \N \N +33156 f0300212-06a7-e886-7d86-afc6803cf8b2 Specimen sta1036exp1300smp367_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 367 \N \N \N \N +33157 c8d41ab5-b86f-2a0d-1617-1ef5456a9b28 Specimen sta1036exp1300smp368_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 368 \N \N \N \N +33158 9727fd84-eb45-2512-530e-673e5678008f Specimen sta1036exp1300smp369_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 369 \N \N \N \N +33159 e86a2d99-9f93-c9d4-3fc8-46c46b16b487 Specimen sta1036exp1300smp370_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 370 \N \N \N \N +33160 2b5639b9-585d-af01-28b8-bbcb718184c6 Specimen sta1036exp1300smp372_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 372 \N \N \N \N +33161 d18b6f8f-6020-8c2a-6e1f-b99a3754cd30 Specimen sta1036exp1300smp373_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 373 \N \N \N \N +33162 50c66852-092b-5870-ddc0-1d48e9778de9 Specimen sta1036exp1300smp374_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 374 \N \N \N \N +33163 0ee5730a-998d-9f7a-7dc1-0e360bb44668 Specimen sta1036exp1300smp375_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 375 \N \N \N \N +33164 f0af55b6-d282-41ac-b133-34d763f832c0 Specimen sta1036exp1300smp376_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 376 \N \N \N \N +33165 72da0983-dc07-25f3-4c6c-e002c3580c81 Specimen sta1036exp1300smp377_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 377 \N \N \N \N +33166 82f08692-e706-3f28-3d90-8426f915a5f2 Specimen sta1036exp1300smp378_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 378 \N \N \N \N +33167 a0c24230-759d-8b32-6590-7f87aa28e082 Specimen sta1036exp1300smp379_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 379 \N \N \N \N +33168 c0e0f973-a428-1b10-23ed-d94bb023e535 Specimen sta1036exp1300smp380_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 380 \N \N \N \N +33169 ac3a3add-52c8-c0c2-e6e0-fbd9ae75481a Specimen sta1036exp1300smp381_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 381 \N \N \N \N +33170 4645624a-31f5-4ccc-c390-e589132bb114 Specimen sta1036exp1300smp382_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 382 \N \N \N \N +33171 23736c3c-c9b9-1484-a014-dd4c5c34e2f9 Specimen sta1036exp1300smp383_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 383 \N \N \N \N +33172 ae3162c7-f4d8-29ef-d6c8-927909d320d9 Specimen sta1036exp1300smp384_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 384 \N \N \N \N +33173 7a6c7e64-322a-ed0e-e75f-bce331d317a0 Specimen sta1036exp1300smp385_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 385 \N \N \N \N +33174 ee1f4aac-4831-3bce-bcff-b7772fc5dbc3 Specimen sta1036exp1300smp387_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 387 \N \N \N \N +33175 ed4f9efe-bc76-a999-998c-cbf94ce8fd09 Specimen sta1036exp1300smp388_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 388 \N \N \N \N +33176 3a583c64-2e52-0d55-3c30-de76b12063d2 Specimen sta1036exp1300smp389_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 389 \N \N \N \N +33177 79ff59be-af61-1eef-4630-f695d1fcc0a6 Specimen sta1036exp1300smp390_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 390 \N \N \N \N +33178 2e0d5120-ff1d-72a3-ec84-12a7166e6012 Specimen sta1036exp1300smp391_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 391 \N \N \N \N +33179 ee011a79-cc76-a9a2-ddab-1fd0e851955d Specimen sta1036exp1300smp392_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 392 \N \N \N \N +33180 69e29edf-c827-1f69-65cb-96078328eff3 Specimen sta1036exp1300smp393_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 393 \N \N \N \N +33181 a788b88c-646d-6a1d-90d9-7c5a7e388e7d Specimen sta1036exp1300smp394_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 394 \N \N \N \N +33182 dce79ee8-7a64-1c75-390b-17538ce2f725 Specimen sta1036exp1300smp396_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 396 \N \N \N \N +33183 b4e30d9d-eae8-88f7-f658-2de9b62df19f Specimen sta1036exp1300smp397_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 397 \N \N \N \N +33184 3938b08e-a561-c99a-30bb-40915029534f Specimen sta1036exp1300smp398_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 398 \N \N \N \N +33185 4e8a3f78-e1d8-8a1d-ebfe-02f62e76da50 Specimen sta1036exp1300smp399_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 399 \N \N \N \N +33186 62c01f71-537a-a9dd-b2bc-f7e024ac1304 Specimen sta1036exp1300smp400_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 400 \N \N \N \N +33187 086721b8-f9e9-eb87-fd04-02b50ea89f4d Specimen sta1036exp1300smp401_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 401 \N \N \N \N +33188 944ace2e-25ce-affe-d6f4-ed85a095ffa4 Specimen sta1036exp1300smp402_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 402 \N \N \N \N +33189 0bb0d40e-b9ba-02de-a733-d517f26d6b7c Specimen sta1036exp1300smp403_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 403 \N \N \N \N +33190 d87db5c3-a050-f91e-ea5f-eeaab1dd61d7 Specimen sta1036exp1300smp404_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 404 \N \N \N \N +33191 b74f2719-ef6c-6ab8-64c1-3355a1b6196c Specimen sta1036exp1300smp405_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 405 \N \N \N \N +33192 dfbf1966-c339-1285-a077-00dd8b732526 Specimen sta1036exp1300smp406_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 406 \N \N \N \N +33193 d96eeee7-46f5-3f44-6889-a7d88d6750aa Specimen sta1036exp1300smp407_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 407 \N \N \N \N +33194 7d4e8e70-3d63-ce4e-98a3-212b920bf9e0 Specimen sta1036exp1300smp408_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 408 \N \N \N \N +33195 78b78683-f510-77d7-f549-7fd1862bdea9 Specimen sta1036exp1300smp409_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 409 \N \N \N \N +33196 2ca44fd8-1996-a430-bfc8-0689fe7f3c63 Specimen sta1036exp1300smp410_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 410 \N \N \N \N +33197 6b6af98f-0712-d83c-a63f-7c82b80917a2 Specimen sta1036exp1300smp411_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 411 \N \N \N \N +33198 46959930-2967-690d-3b4b-6ab3644f19d4 Specimen sta1036exp1300smp412_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 412 \N \N \N \N +33199 d53dbbd2-c83e-0843-73f2-7d4cabdafcb2 Specimen sta1036exp1300smp413_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 413 \N \N \N \N +33200 f1405ca0-aad2-d659-7b5b-0b835bee749f Specimen sta1036exp1300smp415_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 415 \N \N \N \N +33201 b1ac6c3f-e3d2-789d-7c44-f87e70102a52 Specimen sta1036exp1300smp416_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 416 \N \N \N \N +33202 8ba83bf5-da2c-85d9-a6d6-a276e698d67f Specimen sta1036exp1300smp417_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 417 \N \N \N \N +33203 e66e66eb-f85f-2f2d-d1c3-313f8d147e40 Specimen sta1036exp1300smp418_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 418 \N \N \N \N +33204 e32ff1cc-99c9-4d59-1078-069f6a8ab49f Specimen sta1036exp1300smp419_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 419 \N \N \N \N +33205 9c4fd093-5a2b-089d-1022-e118f6053543 Specimen sta1036exp1300smp420_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 420 \N \N \N \N +33206 36f606d4-bdb4-79fa-c64e-33451a5d5f90 Specimen sta1036exp1300smp421_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 421 \N \N \N \N +33207 0f58b702-153c-1da3-0b8e-84613b0e836d Specimen sta1036exp1300smp422_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 422 \N \N \N \N +33208 24722e06-c063-918d-748b-1772b5ed5745 Specimen sta1036exp1300smp423_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 423 \N \N \N \N +33209 b5dea555-7d6f-765c-9a2e-463d8aa89161 Specimen sta1036exp1300smp424_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 424 \N \N \N \N +33210 3de2c6db-955e-83f6-a8f8-dd17fbd3b799 Specimen sta1036exp1300smp425_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 425 \N \N \N \N +33211 1c80ce1a-3735-1006-d06f-80ba2c84770d Specimen sta1036exp1300smp426_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 426 \N \N \N \N +33212 d939ab8d-0aac-da04-4bb8-03592bad99bf Specimen sta1036exp1300smp427_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 427 \N \N \N \N +33213 89ec5083-da40-a233-3729-67a0566fce34 Specimen sta1036exp1300smp428_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 428 \N \N \N \N +33214 b0428c46-0a60-0734-b0d9-65fbe66bc3fb Specimen sta1036exp1300smp429_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 429 \N \N \N \N +33215 14650ebe-0904-ee91-ac97-25bc00663440 Specimen sta1036exp1300smp430_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 430 \N \N \N \N +33216 432f6099-60dd-c4d7-9ccb-4cd96a53c73b Specimen sta1036exp1300smp431_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 431 \N \N \N \N +33217 64ffc97f-bc21-4483-2cda-66315ac56b22 Specimen sta1036exp1300smp432_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 432 \N \N \N \N +33218 4a99740d-42c2-3af2-840c-364418deab6e Specimen sta1036exp1300smp433_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 433 \N \N \N \N +33219 4f9071a9-f151-6328-f28b-ce95b02def26 Specimen sta1036exp1300smp434_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 434 \N \N \N \N +33220 22ab0d3c-2262-6c97-88f7-885a16c117b6 Specimen sta1036exp1300smp435_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 435 \N \N \N \N +33221 ceeb79b8-2c1e-e934-a448-e723d48755a6 Specimen sta1036exp1300smp436_cp Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Coarse Particulates specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 436 \N \N \N \N +33222 65954f60-4ec1-f114-13f5-ea05aa648d72 Specimen sta1036exp1300smp336_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 336 \N \N \N \N +33223 03d47e62-1370-5784-3b8c-9c24967a1d7d Specimen sta1036exp1300smp337_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 337 \N \N \N \N +33224 fbfc2e98-0ab7-7a03-7806-5545038d7285 Specimen sta1036exp1300smp338_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 338 \N \N \N \N +33225 e9106ab3-c695-d26f-a6c7-f93040e5ce3f Specimen sta1036exp1300smp339_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 339 \N \N \N \N +33226 dee297ec-8ad5-9853-5ad3-4c5537382af5 Specimen sta1036exp1300smp340_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 340 \N \N \N \N +33227 a37f9ea9-5fc6-7634-a844-14319f0b0ef4 Specimen sta1036exp1300smp341_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 341 \N \N \N \N +33228 965a042e-1007-8897-0d84-60fe4275ac08 Specimen sta1036exp1300smp342_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 342 \N \N \N \N +33229 315d54ee-ece4-6648-eadf-6720515b2404 Specimen sta1036exp1300smp343_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 343 \N \N \N \N +33230 6ae953b8-c186-c2c3-2010-f37ab75c0c4e Specimen sta1036exp1300smp344_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 344 \N \N \N \N +33231 694fa266-f3d4-ae79-3d6a-83b2776c9b99 Specimen sta1036exp1300smp345_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 345 \N \N \N \N +33232 93b40669-2977-c546-4a55-28962c4a5053 Specimen sta1036exp1300smp346_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 346 \N \N \N \N +33233 c35471a8-2fd3-6c7f-e91f-464efae161eb Specimen sta1036exp1300smp347_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 347 \N \N \N \N +33234 fedddd2f-2d71-015a-c574-95198a3171c0 Specimen sta1036exp1300smp348_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 348 \N \N \N \N +33235 187855d2-b4cd-3264-fd99-d88c1b1e58ce Specimen sta1036exp1300smp349_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 349 \N \N \N \N +33236 571c13b1-e066-e4bf-d58c-ac490bfda7d1 Specimen sta1036exp1300smp350_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 350 \N \N \N \N +33237 a8bef274-b0cc-163d-5f85-754464e3d519 Specimen sta1036exp1300smp351_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 351 \N \N \N \N +33238 a01c8666-5738-7a73-04ef-08ba83789dab Specimen sta1036exp1300smp352_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 352 \N \N \N \N +33239 173e7fc9-ac9b-9e26-9ee8-76c8433b8369 Specimen sta1036exp1300smp353_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 353 \N \N \N \N +33240 34f590b0-0196-b804-17aa-506c98762aa7 Specimen sta1036exp1300smp354_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 354 \N \N \N \N +33241 2e698562-c2ac-3dbc-02d0-c47bb13549ea Specimen sta1036exp1300smp355_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 355 \N \N \N \N +33242 a5032779-1ee0-4be1-9305-75f42a5c89e9 Specimen sta1036exp1300smp356_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 356 \N \N \N \N +33243 242618db-40c9-6f05-7879-246be26a05ac Specimen sta1036exp1300smp357_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 357 \N \N \N \N +33244 03860c2a-18e3-e0c3-0ceb-18379d758961 Specimen sta1036exp1300smp358_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 358 \N \N \N \N +33245 21e10269-f4b4-0c93-25a8-6e9362f77291 Specimen sta1036exp1300smp359_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 359 \N \N \N \N +33246 b86f1093-b97d-6c33-0292-f372a58f4cd7 Specimen sta1036exp1300smp360_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 360 \N \N \N \N +33247 8f09c968-b0e3-4bb5-7180-c3edc621cea3 Specimen sta1036exp1300smp361_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 361 \N \N \N \N +33248 791aaa33-8769-a825-350a-096dba860cd6 Specimen sta1036exp1300smp362_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 362 \N \N \N \N +33249 0d42a53a-cf26-4c3d-4699-2e70a2dc4c8b Specimen sta1036exp1300smp363_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 363 \N \N \N \N +33250 6f4efc0c-42e8-116e-2d5c-896ed2f3752f Specimen sta1036exp1300smp364_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 364 \N \N \N \N +33251 2426e52c-ab59-c113-ba20-5a865718dca3 Specimen sta1036exp1300smp365_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 365 \N \N \N \N +33252 3c273cbd-f415-e863-aa45-43b4e37d5aed Specimen sta1036exp1300smp366_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 366 \N \N \N \N +33253 6ba3628d-b477-8a59-ea39-dd55b758d9da Specimen sta1036exp1300smp367_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 367 \N \N \N \N +33254 22a4cf22-a772-000d-1849-fca6bb77f440 Specimen sta1036exp1300smp368_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 368 \N \N \N \N +33255 c80ad13a-7758-717a-1ff1-e9998aef5481 Specimen sta1036exp1300smp369_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 369 \N \N \N \N +33256 8d10f02a-9c3b-f6f7-af0e-6d6606d52938 Specimen sta1036exp1300smp370_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 370 \N \N \N \N +33257 149a8b6c-8ff4-9564-d2b7-c98e57967f7d Specimen sta1036exp1300smp371_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 371 \N \N \N \N +33258 212f0b22-3507-607b-6dd7-4bedc53e8ed8 Specimen sta1036exp1300smp372_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 372 \N \N \N \N +33259 2d667481-4a5e-c98b-914f-0dc9d738f668 Specimen sta1036exp1300smp373_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 373 \N \N \N \N +33260 78cf22e9-bb4e-7f05-f3cb-c4ebb5b975d5 Specimen sta1036exp1300smp374_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 374 \N \N \N \N +33261 cc5823f1-c9a6-fce8-dca0-774fe039b249 Specimen sta1036exp1300smp375_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 375 \N \N \N \N +33262 809a5314-2f0c-22a6-69c8-0cca2f8f4d49 Specimen sta1036exp1300smp376_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 376 \N \N \N \N +33263 77e283fc-39ba-b9b3-2015-e9cb1e33f5d5 Specimen sta1036exp1300smp377_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 377 \N \N \N \N +33264 9f72cb13-9348-129c-710f-30f1b32a23a6 Specimen sta1036exp1300smp378_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 378 \N \N \N \N +33265 e8b1bd53-d8fb-c44e-e6be-56fa4ed2d372 Specimen sta1036exp1300smp379_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 379 \N \N \N \N +33266 1a4f746c-c646-0370-2475-d41663fb48cf Specimen sta1036exp1300smp380_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 380 \N \N \N \N +33267 35f06c90-be01-2939-63e7-a604874a10cc Specimen sta1036exp1300smp381_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 381 \N \N \N \N +33268 387a90e2-3fb4-5d75-8a96-0040e932521e Specimen sta1036exp1300smp382_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 382 \N \N \N \N +33269 226d3014-f965-05a1-b6aa-2b8ac8cc02fe Specimen sta1036exp1300smp383_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 383 \N \N \N \N +33270 826268f4-f3d0-bb15-3d0a-d0e390d82379 Specimen sta1036exp1300smp384_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 384 \N \N \N \N +33271 485d719e-4f78-cfe4-c38b-9cc43c14d1b0 Specimen sta1036exp1300smp385_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 385 \N \N \N \N +33272 3e46294e-d554-84ba-d0b6-25062b001e9a Specimen sta1036exp1300smp386_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 386 \N \N \N \N +33273 d54dc580-9f61-3d4f-f294-3b46b94f7e0a Specimen sta1036exp1300smp387_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 387 \N \N \N \N +33274 8cb909af-4514-52ec-18fd-685dcaf8ec8c Specimen sta1036exp1300smp388_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 388 \N \N \N \N +33275 af63e9bc-54ec-d11b-9732-b49f09047674 Specimen sta1036exp1300smp389_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 389 \N \N \N \N +33276 32c09472-e5c7-0e7c-0b69-3eccc4260fcd Specimen sta1036exp1300smp390_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 390 \N \N \N \N +33277 cac86a08-7804-883d-000d-30e85557e195 Specimen sta1036exp1300smp391_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 391 \N \N \N \N +33278 42906121-56f8-7a1a-c1a8-f8a5999ecd60 Specimen sta1036exp1300smp392_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 392 \N \N \N \N +33279 75b19aff-fe6d-e35b-7375-ae08f68bad81 Specimen sta1036exp1300smp393_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 393 \N \N \N \N +33280 b12f2aee-ab29-7e0d-d27f-f7fbe7cee335 Specimen sta1036exp1300smp394_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 394 \N \N \N \N +33281 7f693438-3374-0082-40a7-9467ab904338 Specimen sta1036exp1300smp395_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 395 \N \N \N \N +33282 4647b2d3-9960-99f5-b725-ac9da5e8f649 Specimen sta1036exp1300smp396_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 396 \N \N \N \N +33283 0a322b5d-80f9-9fe0-a4a1-64d67df6afab Specimen sta1036exp1300smp397_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 397 \N \N \N \N +33284 cbae4585-d69c-32d7-75c4-0d4f6122717d Specimen sta1036exp1300smp398_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 398 \N \N \N \N +33285 03cebb86-b3af-51c5-3ee5-b3d129c4ea1d Specimen sta1036exp1300smp399_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 399 \N \N \N \N +33286 82d0d02e-eca6-eb42-9556-b07f981e39d7 Specimen sta1036exp1300smp400_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 400 \N \N \N \N +33287 73d24aaa-06d9-fa41-7f22-3f64ad385385 Specimen sta1036exp1300smp401_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 401 \N \N \N \N +33288 5b5bad89-9674-7c27-c688-bc2f5a57bea4 Specimen sta1036exp1300smp402_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 402 \N \N \N \N +33289 d4323a47-48b8-f215-4de2-3123f9924919 Specimen sta1036exp1300smp403_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 403 \N \N \N \N +33290 447dc8ab-900a-35e6-fded-750d30eeead4 Specimen sta1036exp1300smp404_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 404 \N \N \N \N +33291 8858691f-713f-cf5c-bba3-f4fdeb17f4bd Specimen sta1036exp1300smp405_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 405 \N \N \N \N +33292 d3db3b03-3fd2-0ed9-9575-98e28877b0eb Specimen sta1036exp1300smp406_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 406 \N \N \N \N +33293 dffb270f-c00c-60de-1ee7-c115e8f801a5 Specimen sta1036exp1300smp407_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 407 \N \N \N \N +33294 a2f701fd-93ab-7070-a5ef-b24e8c51370e Specimen sta1036exp1300smp408_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 408 \N \N \N \N +33295 09475abf-08e9-5759-a650-0281d18507ef Specimen sta1036exp1300smp409_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 409 \N \N \N \N +33296 36ab981d-686a-0f64-7cc6-2fc983484cda Specimen sta1036exp1300smp410_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 410 \N \N \N \N +33297 999ef40a-3fd4-bcfe-a6a7-112a3d0fb525 Specimen sta1036exp1300smp412_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 412 \N \N \N \N +33298 fcb278c7-58a4-c09a-da14-ccc7f923a53e Specimen sta1036exp1300smp413_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 413 \N \N \N \N +33299 6b37d73b-0778-70dc-7a42-7949171becf7 Specimen sta1036exp1300smp414_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 414 \N \N \N \N +33300 1317c846-2980-4a0c-feea-7738812a238f Specimen sta1036exp1300smp415_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 415 \N \N \N \N +33301 86f86d20-445e-46b6-a968-4dce54dda981 Specimen sta1036exp1300smp416_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 416 \N \N \N \N +33302 59ec58dc-a8cf-4393-14f4-5bc28032399a Specimen sta1036exp1300smp417_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 417 \N \N \N \N +33303 b4bed065-d469-b026-257b-412a54336ecf Specimen sta1036exp1300smp418_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 418 \N \N \N \N +33304 a4f90a21-af64-603c-32ec-99dda37c9e7f Specimen sta1036exp1300smp419_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 419 \N \N \N \N +33305 19b3a1d5-dbdb-3751-7d80-29977234eeba Specimen sta1036exp1300smp420_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 420 \N \N \N \N +33306 e67bbcf7-279a-7cfc-e80c-47be52c04998 Specimen sta1036exp1300smp421_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 421 \N \N \N \N +33307 933614d0-d452-a4cd-7d92-349adbd05cc3 Specimen sta1036exp1300smp422_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 422 \N \N \N \N +33308 0de1fe43-f50f-0eba-090a-c80eb6889165 Specimen sta1036exp1300smp423_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 423 \N \N \N \N +33309 4741cb8d-412c-d960-4757-becea1e1ae74 Specimen sta1036exp1300smp424_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 424 \N \N \N \N +33310 9f3c8746-73c3-4873-a4ca-7fdfd405deb7 Specimen sta1036exp1300smp425_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 425 \N \N \N \N +33311 60b5f7dc-22be-1e6b-7f9c-d7adfa3b8ca3 Specimen sta1036exp1300smp426_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 426 \N \N \N \N +33312 66896dc9-3223-ab46-0652-b2b8dbf042f1 Specimen sta1036exp1300smp427_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 427 \N \N \N \N +33313 c9486776-c87f-a545-60b3-3b8fff3528c6 Specimen sta1036exp1300smp428_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 428 \N \N \N \N +33314 c95d631c-0392-63de-6916-941018e50a7b Specimen sta1036exp1300smp429_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 429 \N \N \N \N +33315 62e2f13c-8d10-a334-9a96-eef7cb1b5922 Specimen sta1036exp1300smp430_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 430 \N \N \N \N +33316 c43d4eac-e6fb-91ed-2bdf-0a14eecaee85 Specimen sta1036exp1300smp431_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 431 \N \N \N \N +33317 b5cd75da-9108-513c-5616-f9502885643a Specimen sta1036exp1300smp432_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 432 \N \N \N \N +33318 9c2f5214-28a2-6564-ec0f-10e52b48ed94 Specimen sta1036exp1300smp433_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 433 \N \N \N \N +33319 6e5ad25b-eef6-617b-07e0-87b658c34627 Specimen sta1036exp1300smp434_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 434 \N \N \N \N +33320 737c4980-9757-07ee-13a7-aeb9f33695f1 Specimen sta1036exp1300smp435_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 435 \N \N \N \N +33321 b482a5c6-318b-b6cd-13e7-da80ec53e547 Specimen sta1036exp1300smp436_dissmn Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (main composite) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 436 \N \N \N \N +33322 4a609d26-9c3f-5946-39ab-ecea3567609e Specimen sta1036exp1300smp336_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 336 \N \N \N \N +33323 e20c274b-67c1-2d76-24dd-08627a96c259 Specimen sta1036exp1300smp337_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 337 \N \N \N \N +33324 aefa71be-843c-4323-9a9a-f60943675040 Specimen sta1036exp1300smp338_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 338 \N \N \N \N +33325 f4525f08-49ba-f9f3-a561-56fa62095092 Specimen sta1036exp1300smp339_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 339 \N \N \N \N +33326 bf7c8303-3dcf-f956-2ce6-8e004a67339f Specimen sta1036exp1300smp340_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 340 \N \N \N \N +33327 fde6a160-15f7-2d0d-3af6-7a7c65f56013 Specimen sta1036exp1300smp341_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 341 \N \N \N \N +33328 d9c2615a-a380-c669-4754-3a0b6341bdb4 Specimen sta1036exp1300smp342_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 342 \N \N \N \N +33329 d33f2a70-e6a7-0974-f442-c08463041f41 Specimen sta1036exp1300smp343_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 343 \N \N \N \N +33330 ab47e180-de21-becb-25d9-7ed37228bd39 Specimen sta1036exp1300smp344_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 344 \N \N \N \N +33331 bc6fcaa6-bc1a-97bb-e9d6-db7a59bdec34 Specimen sta1036exp1300smp345_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 345 \N \N \N \N +33332 50f72b8a-8f69-d015-cfe1-c2b4eea24a89 Specimen sta1036exp1300smp346_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 346 \N \N \N \N +33333 6a418351-7188-4fc0-cde3-9a98875448ae Specimen sta1036exp1300smp347_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 347 \N \N \N \N +33334 79106c70-afc5-852d-b563-364b7a8ffa9a Specimen sta1036exp1300smp348_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 348 \N \N \N \N +33335 704d7397-9021-9c62-f8a0-ecda8f655b96 Specimen sta1036exp1300smp349_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 349 \N \N \N \N +33336 ddc4f6d0-1ef7-91e9-4c6a-2f1b92fcd987 Specimen sta1036exp1300smp350_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 350 \N \N \N \N +33337 edc1844c-1f43-eb13-577d-9cddcc056bfd Specimen sta1036exp1300smp351_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 351 \N \N \N \N +33338 97bf40ee-d791-7e86-0240-3f9792d1aeae Specimen sta1036exp1300smp352_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 352 \N \N \N \N +33339 17ad8f2e-6895-d801-cdeb-d7e8b4457e1e Specimen sta1036exp1300smp353_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 353 \N \N \N \N +33340 753a40c0-5fd5-f6ba-9041-beafbb0a5d87 Specimen sta1036exp1300smp354_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 354 \N \N \N \N +33341 88ea2b93-78ef-fa30-62a0-40485e5fec55 Specimen sta1036exp1300smp355_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 355 \N \N \N \N +33342 1bad1d12-9091-c982-eab4-27a20d03a8f1 Specimen sta1036exp1300smp356_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 356 \N \N \N \N +33343 e9118071-843f-8e84-7d44-315d9d290e16 Specimen sta1036exp1300smp357_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 357 \N \N \N \N +33344 16dfb8d9-86fe-8dd9-1ea9-0f11d1ec8660 Specimen sta1036exp1300smp358_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 358 \N \N \N \N +33345 ab09fe36-4f45-67f4-8008-a10a538f0566 Specimen sta1036exp1300smp359_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 359 \N \N \N \N +33346 adbf205e-50d9-62dc-813e-42e05cc7dd3c Specimen sta1036exp1300smp360_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 360 \N \N \N \N +33347 c9f61960-37db-99c2-e0b9-cd23b9daeef8 Specimen sta1036exp1300smp361_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 361 \N \N \N \N +33348 eedf6b42-fed8-955f-ae92-204708b64c98 Specimen sta1036exp1300smp362_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 362 \N \N \N \N +33349 a9056aee-9499-7fb8-2f75-0421f369ab23 Specimen sta1036exp1300smp363_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 363 \N \N \N \N +33350 4b800e79-b8ad-ba5e-dd86-81dafc371fe6 Specimen sta1036exp1300smp364_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 364 \N \N \N \N +33351 271289fa-71a8-34d3-a698-e99ed747549f Specimen sta1036exp1300smp365_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 365 \N \N \N \N +33352 1bf57258-ec46-7921-32fd-8d870757c593 Specimen sta1036exp1300smp366_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 366 \N \N \N \N +33353 6b044ed7-5193-33c4-d919-b65d5fed23ab Specimen sta1036exp1300smp367_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 367 \N \N \N \N +33354 7ac10b0e-de06-9e78-c8f0-80893d4e0920 Specimen sta1036exp1300smp368_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 368 \N \N \N \N +33355 93c8a92e-0569-6688-ccc7-734e0d4f6a6d Specimen sta1036exp1300smp369_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 369 \N \N \N \N +33356 fddeecfb-855e-e572-1785-0973cbcb7d1e Specimen sta1036exp1300smp370_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 370 \N \N \N \N +33357 370d53a6-a939-90cd-c560-4de13a657f1d Specimen sta1036exp1300smp371_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 371 \N \N \N \N +33358 88c1dee8-0cb3-8e30-0c46-a8f6d615b15b Specimen sta1036exp1300smp372_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 372 \N \N \N \N +33359 983ecec1-814e-3735-765e-bef92751417d Specimen sta1036exp1300smp373_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 373 \N \N \N \N +33360 74ba0e99-dfed-f035-6c01-2c8cb10e9ef1 Specimen sta1036exp1300smp374_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 374 \N \N \N \N +33361 772e91d3-4243-41a2-ec8b-df0405e1c187 Specimen sta1036exp1300smp375_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 375 \N \N \N \N +33362 d1e26bb7-f166-adb4-8aa7-19c7c0fb07d7 Specimen sta1036exp1300smp376_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 376 \N \N \N \N +33363 23a3106c-b964-ad11-3ab2-4d53782f414d Specimen sta1036exp1300smp377_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 377 \N \N \N \N +33364 6f917aef-1ff1-6b7e-d301-7af955c7da93 Specimen sta1036exp1300smp378_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 378 \N \N \N \N +33365 76fac7ce-ccd6-f226-b1fa-b96c5051ea9d Specimen sta1036exp1300smp379_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 379 \N \N \N \N +33366 a30d4f29-c502-b43c-8ab1-8a99511cabfb Specimen sta1036exp1300smp380_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 380 \N \N \N \N +33367 a4e3e603-11d7-9dc2-5520-70d5527b8924 Specimen sta1036exp1300smp381_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 381 \N \N \N \N +33368 802a3caf-e18d-3c80-6610-963d0df5756b Specimen sta1036exp1300smp382_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 382 \N \N \N \N +33369 a424bfc6-a60f-b7b6-3eb4-00d6bee32bc6 Specimen sta1036exp1300smp383_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 383 \N \N \N \N +33370 86b2dc2d-5e3b-328b-d6dc-ac358e16fbc7 Specimen sta1036exp1300smp384_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 384 \N \N \N \N +33371 402ad9ba-3c50-a96d-51da-33192b5063e7 Specimen sta1036exp1300smp385_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 385 \N \N \N \N +33372 a55b0c57-9e1d-193c-9cce-a7b70bcbbffb Specimen sta1036exp1300smp386_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 386 \N \N \N \N +33373 fca5257f-fabf-f1ab-6ff0-7f005a135e34 Specimen sta1036exp1300smp387_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 387 \N \N \N \N +33374 9516e358-a847-3c04-43da-1da1a6e4964d Specimen sta1036exp1300smp388_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 388 \N \N \N \N +33375 7b6a767d-e41f-f055-c44a-6c8b3508882a Specimen sta1036exp1300smp389_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 389 \N \N \N \N +33376 9b2227d7-0a43-dcbd-f929-e2fae9c50bfc Specimen sta1036exp1300smp390_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 390 \N \N \N \N +33377 23c19349-6bcc-83fd-7dd5-350149f41367 Specimen sta1036exp1300smp391_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 391 \N \N \N \N +33378 3b5451ba-fb97-3d26-a615-c01153da157c Specimen sta1036exp1300smp392_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 392 \N \N \N \N +33379 1c3c0525-b353-ee45-88ed-f6e31d75f8e6 Specimen sta1036exp1300smp393_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 393 \N \N \N \N +33380 66ef126e-1a36-4a43-f5bc-b6ee630885b5 Specimen sta1036exp1300smp394_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 394 \N \N \N \N +33381 37226fe5-3459-6959-e95d-0485e4482c04 Specimen sta1036exp1300smp395_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 395 \N \N \N \N +33382 cfe7ff51-a094-91a8-ced8-b0f69b0643f0 Specimen sta1036exp1300smp396_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 396 \N \N \N \N +33383 53f2f0d3-4889-ec9b-c803-fc40797616ec Specimen sta1036exp1300smp397_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 397 \N \N \N \N +33384 65397a9a-3b7a-a4a5-8c99-4774664c40c3 Specimen sta1036exp1300smp398_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 398 \N \N \N \N +33385 47a413c6-1985-7fe9-b7cc-4f530a0be69a Specimen sta1036exp1300smp399_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 399 \N \N \N \N +33386 b6c8b916-5356-f2eb-d022-bf8c358eabe3 Specimen sta1036exp1300smp400_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 400 \N \N \N \N +33387 04182a19-4120-7475-17f2-5a75fb8781a1 Specimen sta1036exp1300smp401_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 401 \N \N \N \N +33388 98c5ae3b-2952-a474-6345-4ccfaa0c7d25 Specimen sta1036exp1300smp402_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 402 \N \N \N \N +33389 b3bde33f-8845-6f61-ac3e-7dec3e5a91fb Specimen sta1036exp1300smp403_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 403 \N \N \N \N +33390 49c791f3-0986-5765-0f49-bb5b052642de Specimen sta1036exp1300smp404_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 404 \N \N \N \N +33391 7aadaf8b-667c-7c72-9db2-ebf824de6163 Specimen sta1036exp1300smp405_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 405 \N \N \N \N +33392 9e1a43fe-02a7-ba8c-643b-0f158a5b2d52 Specimen sta1036exp1300smp406_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 406 \N \N \N \N +33393 f793dfb3-fc23-24ac-52ef-b607013e4569 Specimen sta1036exp1300smp407_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 407 \N \N \N \N +33394 4994281d-48bd-c88a-6d40-32ff88d543c4 Specimen sta1036exp1300smp408_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 408 \N \N \N \N +33395 d91a2554-b580-fa84-a236-ab61b7bf2aca Specimen sta1036exp1300smp409_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 409 \N \N \N \N +33396 9767c12b-3fe2-d188-5f1e-df861e6ee078 Specimen sta1036exp1300smp410_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 410 \N \N \N \N +33397 fdcab793-2859-dcee-1f7e-89fa1a8cd607 Specimen sta1036exp1300smp413_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 413 \N \N \N \N +33398 67a8558d-3533-c97a-4b2c-f1d184f7fb41 Specimen sta1036exp1300smp414_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 414 \N \N \N \N +33399 8c78d579-9e20-6eda-7024-b48547650e2b Specimen sta1036exp1300smp415_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 415 \N \N \N \N +33400 7330f038-6612-fa3d-8213-a60b42aba1f9 Specimen sta1036exp1300smp416_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 416 \N \N \N \N +33401 ad0e351c-919d-3b8c-6d7c-20d162db505e Specimen sta1036exp1300smp417_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 417 \N \N \N \N +33402 41fd1a36-b609-4201-3581-17e79b8173f2 Specimen sta1036exp1300smp418_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 418 \N \N \N \N +33403 fc9b7e84-7c1a-17dc-3312-34df09ba393c Specimen sta1036exp1300smp419_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 419 \N \N \N \N +33404 739ea9b5-1770-05bb-0ee6-49b3abf441f2 Specimen sta1036exp1300smp420_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 420 \N \N \N \N +33405 b04efa07-2585-0d22-a6ab-a783b667815b Specimen sta1036exp1300smp421_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 421 \N \N \N \N +33406 754b157b-90eb-2766-3989-d7442b95a3b1 Specimen sta1036exp1300smp422_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 422 \N \N \N \N +33407 2befc91e-e015-b895-5c72-effabc093c4c Specimen sta1036exp1300smp423_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 423 \N \N \N \N +33408 d04c0d4a-8e1d-de60-dfaf-c5845fc985eb Specimen sta1036exp1300smp424_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 424 \N \N \N \N +33409 13bb8ad1-c148-431e-8dcd-4ab1058f3402 Specimen sta1036exp1300smp425_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 425 \N \N \N \N +33410 926e2dc4-5dc4-bea4-abca-2da828ee49a3 Specimen sta1036exp1300smp426_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 426 \N \N \N \N +33411 542b0ce3-8a1f-8f6c-6c5f-b4a3d3aa67dd Specimen sta1036exp1300smp427_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 427 \N \N \N \N +33412 6d5fb2a9-3f90-8711-fcfc-750b8841daed Specimen sta1036exp1300smp428_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 428 \N \N \N \N +33413 92ff7e52-0f83-90e5-88bd-ad4f5fbbc2d1 Specimen sta1036exp1300smp429_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 429 \N \N \N \N +33414 953351ce-1ed2-deb1-e2eb-d7c39699944c Specimen sta1036exp1300smp430_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 430 \N \N \N \N +33415 45608e24-d8b1-cf04-cdc4-dcaa91eff8b3 Specimen sta1036exp1300smp431_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 431 \N \N \N \N +33416 ca933b6c-74c3-4eed-3e58-6f2be976635c Specimen sta1036exp1300smp432_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 432 \N \N \N \N +33417 9ee44559-7c34-f297-ac60-503fde6811ef Specimen sta1036exp1300smp433_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 433 \N \N \N \N +33418 f64a45a1-fd55-2462-ac13-a9bccd54c3e0 Specimen sta1036exp1300smp434_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 434 \N \N \N \N +33419 11c3be23-ebe5-882a-5898-728f15550d78 Specimen sta1036exp1300smp435_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 435 \N \N \N \N +33420 f8524fd5-127d-b067-1ee1-29279b1de9da Specimen sta1036exp1300smp436_dissgas Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria), from Marchantaria time series Dissolved (minimum aeration) specimen at station 1036 (Solimoes - Marchantaria, river Solimoes), from Marchantaria time series. From Sample ID 436 \N \N \N \N +\. + + +-- +-- TOC entry 5121 (class 0 OID 0) +-- Dependencies: 264 +-- Name: samplingfeatures_samplingfeatureid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('samplingfeatures_samplingfeatureid_seq', 33420, true); + + +-- +-- TOC entry 4932 (class 0 OID 70971) +-- Dependencies: 395 +-- Data for Name: sectionresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY sectionresults (resultid, ylocation, ylocationunitsid, spatialreferenceid, intendedxspacing, intendedxspacingunitsid, intendedzspacing, intendedzspacingunitsid, intendedtimespacing, intendedtimespacingunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 4768 (class 0 OID 70072) +-- Dependencies: 231 +-- Data for Name: sectionresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY sectionresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5122 (class 0 OID 0) +-- Dependencies: 230 +-- Name: sectionresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('sectionresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4934 (class 0 OID 70978) +-- Dependencies: 397 +-- Data for Name: sectionresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY sectionresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, xlocation, xaggregationinterval, xlocationunitsid, zlocation, zaggregationinterval, zlocationunitsid, censorcodecv, qualitycodecv, aggregationstatisticcv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5123 (class 0 OID 0) +-- Dependencies: 396 +-- Name: sectionresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('sectionresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4963 (class 0 OID 71128) +-- Dependencies: 426 +-- Data for Name: simulations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY simulations (simulationid, actionid, simulationname, simulationdescription, simulationstartdatetime, simulationstartdatetimeutcoffset, simulationenddatetime, simulationenddatetimeutcoffset, timestepvalue, timestepunitsid, inputdatasetid, modelid) FROM stdin; +\. + + +-- +-- TOC entry 5124 (class 0 OID 0) +-- Dependencies: 425 +-- Name: simulations_simulationid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('simulations_simulationid_seq', 1, false); + + +-- +-- TOC entry 4949 (class 0 OID 71059) +-- Dependencies: 412 +-- Data for Name: sites; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY sites (samplingfeatureid, sitetypecv, latitude, longitude, spatialreferenceid) FROM stdin; +1000 Stream -1.94778000000000007 -55.512120000000003 1 +1001 Stream -2.39721999999999991 -57.4372499999999988 1 +1002 Stream -3.24257000000000017 -58.9827700000000021 1 +1003 Stream -3.32243999999999984 -60.6119500000000002 1 +1004 Stream -3.81756999999999991 -61.6176600000000008 1 +1005 Stream -4.05290999999999979 -63.0172099999999986 1 +1006 Stream -3.64244000000000012 -64.2366399999999942 1 +1007 Stream -2.50685000000000002 -65.8617899999999992 1 +1008 Stream -2.58695999999999993 -67.1925899999999956 1 +1009 Stream -3.08026 -67.892240000000001 1 +1010 Stream -3.27891000000000021 -67.8528600000000068 1 +1020 Stream -3.8024 -73.1122799999999984 1 +1021 Stream -3.43250000000000011 -72.9058399999999978 1 +1022 Stream -3.36791000000000018 -72.532660000000007 1 +1023 Stream -3.19255999999999984 -71.782669999999996 1 +1024 Stream -4.09210000000000029 -70.05274 1 +1025 Stream -3.80349000000000004 -69.4618499999999983 1 +1026 Stream -3.44195999999999991 -68.7514299999999992 1 +1027 Stream -2.68744000000000005 -66.8005899999999997 1 +1028 Stream -2.5023200000000001 -66.0772000000000048 1 +1029 Stream -3.15246000000000004 -64.8623900000000049 1 +1031 Stream -3.81300000000000017 -63.4407700000000006 1 +1032 Stream -3.90791000000000022 -63.3137299999999996 1 +1033 Stream -3.98408000000000007 -63.1423100000000019 1 +1034 Stream -3.88263999999999987 -62.7263000000000019 1 +1035 Stream -3.60779000000000005 -61.3036299999999983 1 +1036 Stream -3.29313000000000011 -60.0118700000000018 1 +1037 Stream -3.13239000000000001 -59.7858700000000027 1 +1038 Stream -3.14734999999999987 -58.4723400000000026 1 +1039 Stream -2.57289000000000012 -56.6212400000000002 1 +1040 Stream -2.10822999999999983 -55.0580799999999968 1 +1041 Stream -2.39710000000000001 -54.2111400000000003 1 +1042 Stream -1.54217000000000004 -52.4537800000000018 1 +1043 Stream -1.36084000000000005 -51.9271299999999982 1 +1050 Stream -3.16574 -59.8824899999999971 1 +1101 Stream -3.01231999999999989 -59.4566900000000018 1 +1102 Stream -2.5920700000000001 -66.0828199999999981 1 +1103 Stream -2.77802000000000016 -67.7863700000000051 1 +1104 Stream -3.25755999999999979 -59.9624799999999993 1 +1105 Stream -3.31687999999999983 -60.047620000000002 1 +1106 Stream -3.3277000000000001 -60.0779799999999966 1 +1110 Stream -3.88264999999999993 -70.2428199999999947 1 +1111 Stream -1.90700000000000003 -55.5326400000000007 1 +5001 Stream -1.68727999999999989 -52.2532300000000021 1 +9001 Stream -2.39731000000000005 -54.7775200000000027 1 +9002 Stream -2.71627000000000018 -55.0928200000000032 1 +11101 Stream -1.7317800000000001 -55.9066199999999967 1 +11102 Stream -1.69296000000000002 -55.9426500000000004 1 +11201 Stream -2.20285999999999982 -56.7230500000000006 1 +14001 Stream -2.5870700000000002 -58.1344199999999987 1 +15001 Stream -3.08302999999999994 -58.9074400000000011 1 +16000 Stream -3.45020000000000016 -58.7978700000000032 1 +16001 Stream -10.8476199999999992 -65.347290000000001 1 +16002 Stream -10.9815199999999997 -65.631219999999999 1 +16003 Stream -9.89663999999999966 -63.0525499999999965 1 +16004 Stream -8.76559999999999917 -63.7078399999999974 1 +16005 Stream -9.24921999999999933 -64.2973899999999929 1 +16006 Stream -9.2880199999999995 -64.3773999999999944 1 +16007 Stream -9.62674999999999947 -64.9419800000000009 1 +16008 Stream -9.69139999999999979 -65.4514700000000005 1 +16009 Stream -9.67746999999999957 -65.4171599999999955 1 +16010 Stream -14.1718200000000003 -59.742440000000002 1 +16011 Stream -14.7263000000000002 -59.3771800000000027 1 +16012 Stream -14.99315 -59.9576300000000018 1 +16013 Stream -15.2174600000000009 -59.3267200000000017 1 +16014 Stream -4.89254999999999995 -60.0172799999999995 1 +16015 Stream -5.14224999999999977 -60.4120899999999992 1 +16016 Stream -5.8166500000000001 -61.3020700000000005 1 +16017 Stream -6.19169999999999998 -62.1065899999999971 1 +16018 Stream -7.47745999999999977 -63.0123499999999979 1 +16019 Stream -8.73825000000000074 -63.89255 1 +16020 Stream -5.15770000000000017 -60.3767199999999988 1 +16021 Stream -8.47400999999999982 -63.4376000000000033 1 +16100 Stream -10.7924500000000005 -65.9876799999999974 1 +16101 Stream -10.81738 -66.081869999999995 1 +16102 Stream -10.9492899999999995 -66.1228100000000012 1 +16103 Stream -11.0216700000000003 -66.1277400000000029 1 +16104 Stream -14.5422799999999999 -67.5476799999999997 1 +16105 Stream -15.6171399999999991 -67.3303099999999972 1 +16106 Stream -16.5620399999999997 -68.0827500000000043 1 +16107 Stream -16.4716200000000015 -68.0627999999999957 1 +16108 Stream -15.4518400000000007 -67.8115200000000016 1 +16109 Stream -15.7773900000000005 -67.5881200000000035 1 +16110 Stream -15.8172499999999996 -67.6024799999999999 1 +16111 Stream -16.2526200000000003 -68.1179599999999965 1 +16120 Stream -12.0222300000000004 -64.824860000000001 1 +16121 Stream -12.7733399999999993 -65.1124999999999972 1 +16122 Stream -15.0317900000000009 -65.0017399999999981 1 +16123 Stream -14.9770699999999994 -64.9321900000000056 1 +16124 Stream -16.8175699999999999 -64.7866599999999977 1 +16125 Stream -18.9280000000000008 -63.4406000000000034 1 +16140 Stream -17.0173300000000012 -65.520780000000002 1 +16141 Stream -17.0527200000000008 -65.4526599999999945 1 +16142 Stream -17.1071500000000007 -65.182069999999996 1 +16143 Stream -17.1673699999999982 -64.3926500000000033 1 +16144 Stream -17.4225999999999992 -63.2799400000000034 1 +16145 Stream -18.6423500000000004 -65.1029099999999943 1 +16146 Stream -17.2876800000000017 -63.8975099999999969 1 +16147 Stream -17.3152200000000001 -62.7419399999999996 1 +16148 Stream -17.5524099999999983 -66.4309300000000036 1 +16160 Stream -16.3123600000000017 -67.4780099999999976 1 +16161 Stream -16.3848400000000005 -67.4617700000000013 1 +16162 Stream -15.4273699999999998 -67.8773099999999943 1 +16163 Stream -15.4974900000000009 -67.8628099999999961 1 +16164 Stream -15.4876799999999992 -67.8873200000000026 1 +16165 Stream -15.5158100000000001 -67.7929100000000062 1 +16166 Stream -15.2235999999999994 -67.7330699999999979 1 +16200 Stream -8.14714000000000027 -62.7868199999999987 1 +16201 Stream -10.4567800000000002 -62.4575499999999977 1 +16202 Stream -10.9366199999999996 -61.9573400000000021 1 +16203 Stream -11.6668800000000008 -61.1878999999999991 1 +16204 Stream -12.7175100000000008 -60.172620000000002 1 +16205 Stream -8.06288999999999945 -62.8616799999999998 1 +16206 Stream -8.05776000000000003 -62.8829199999999986 1 +16207 Stream -8.94722999999999935 -62.0574799999999982 1 +16208 Stream -9.50730000000000075 -62.0471700000000013 1 +16209 Stream -9.72630999999999979 -61.9125799999999984 1 +16210 Stream -10.0921900000000004 -61.977330000000002 1 +16211 Stream -10.1020099999999999 -61.9961899999999986 1 +16212 Stream -10.8769399999999994 -61.9420799999999971 1 +16213 Stream -10.90151 -61.9619700000000009 1 +16214 Stream -11.4451099999999997 -61.7312700000000021 1 +16215 Stream -11.4519099999999998 -61.4634199999999993 1 +16216 Stream -11.7027999999999999 -61.1923299999999983 1 +16217 Stream -12.8473000000000006 -60.3426800000000014 1 +16218 Stream -10.7525099999999991 -62.3723699999999965 1 +16219 Stream -10.7572200000000002 -62.3676600000000008 1 +16300 Stream -12.5975000000000001 -69.1825000000000045 1 +16301 Stream -12.6125000000000007 -69.1825000000000045 1 +16302 Stream -12.7225000000000001 -69.7425000000000068 1 +16303 Stream -12.5474999999999994 -70.042500000000004 1 +16304 Stream -12.5724999999999998 -70.1075000000000017 1 +16305 Stream -12.8324999999999996 -69.2974999999999994 1 +16306 Stream -12.9275000000000002 -69.5275000000000034 1 +16307 Stream -13.1374999999999993 -69.582499999999996 1 +16320 Stream -12.5472839999999994 -70.0983710000000002 1 +16321 Stream -12.8840500000000002 -69.3951799999999963 1 +16322 Stream -12.8793399999999991 -69.4131200000000064 1 +16323 Stream -12.6042199999999998 -69.072819999999993 1 +16324 Stream -12.6216500000000007 -69.0723799999999954 1 +16325 Stream -12.84938 -69.4578699999999998 1 +16326 Stream -12.6765000000000008 -69.2391999999999967 1 +16327 Stream -12.5357780000000005 -70.1059400000000039 1 +16328 Stream -12.5348100000000002 -70.1188899999999933 1 +16329 Stream -12.5376100000000008 -70.1164409999999947 1 +16330 Stream -12.9118499999999994 -69.5212700000000012 1 +16331 Stream -12.5675666699999997 -70.0982999999999947 1 +16332 Stream -13.1401599999999998 -69.6203200000000066 1 +16333 Stream -13.1401000000000003 -69.6274999999999977 1 +16334 Stream -12.7043099999999995 -69.3261899999999969 1 +16335 Stream -12.3756299999999992 -69.1234599999999944 1 +16336 Stream -12.6695899999999995 -69.2339800000000025 1 +16337 Stream -12.6660000000000004 -69.2227800000000002 1 +16338 Stream -12.6893499999999992 -69.2408833300000026 1 +16339 Stream -12.7109900000000007 -69.2281700000000058 1 +16340 Stream -12.64025 -69.2667399999999986 1 +16341 Stream -12.4524299999999997 -69.1281299999999987 1 +16342 Stream -12.6003799999999995 -69.202770000000001 1 +18000 Stream -3.0625 -60.3023700000000034 1 +18001 Stream -3.14265999999999979 -60.0298700000000025 1 +18002 Stream -3.08761000000000019 -60.1320300000000003 1 +18003 Stream -2.86262999999999979 -60.5970700000000022 1 +18004 Stream -1.96757000000000004 -61.2576400000000021 1 +18005 Stream -1.63651999999999997 -61.4923300000000026 1 +18006 Stream -0.447969999999999979 -64.9926399999999944 1 +18007 Stream -0.372350000000000014 -66.5126999999999953 1 +18022 Stream -2.93225999999999987 -59.9780700000000024 1 +18025 Stream -2.58714000000000022 -60.0268700000000024 1 +18026 Stream -2.58217000000000008 -60.022199999999998 1 +18040 Stream -2.83232999999999979 -60.4929399999999973 1 +18041 Stream -2.81300999999999979 -60.4573600000000013 1 +18043 Stream -2.78087000000000018 -60.4424899999999994 1 +18044 Stream -2.72236000000000011 -60.4074799999999996 1 +18045 Stream -2.66456999999999988 -60.3175499999999971 1 +18046 Stream -2.70725000000000016 -60.3019699999999972 1 +18047 Stream -2.74807999999999986 -60.4273200000000017 1 +18050 Stream -2.60793000000000008 -60.2160000000000011 1 +18051 Stream -2.61231999999999998 -60.2158299999999969 1 +18060 Stream -2.09780999999999995 -61.2274299999999982 1 +18061 Stream -2.12720999999999982 -61.282429999999998 1 +18062 Stream -2.15768000000000004 -61.2972099999999998 1 +18063 Stream -2.16200999999999999 -61.2972099999999998 1 +18065 Stream -2.12687999999999988 -60.9973699999999965 1 +18070 Stream -1.96248 -61.2326100000000011 1 +18080 Stream -1.67253999999999992 -61.5276100000000028 1 +18081 Stream -1.67213999999999996 -61.5769299999999973 1 +18082 Stream -1.66677000000000008 -61.7824400000000011 1 +18083 Stream -1.67731999999999992 -61.7878499999999988 1 +18084 Stream -1.70765999999999996 -61.8325299999999984 1 +18085 Stream -1.72253999999999996 -61.8973299999999966 1 +18086 Stream -1.7278 -61.9525099999999966 1 +18087 Stream -1.73743000000000003 -61.9575900000000033 1 +18100 Stream -1.90242 -61.4322700000000026 1 +18101 Stream -1.93721999999999994 -61.5126500000000007 1 +18102 Stream -1.95233999999999996 -61.8565499999999986 1 +18103 Stream -1.99251 -62.0326599999999999 1 +18104 Stream -2.21711999999999998 -62.3971400000000003 1 +18105 Stream -2.2471000000000001 -62.4825099999999978 1 +18120 Stream -1.96265000000000001 -61.4423900000000032 1 +18121 Stream -1.81211999999999995 -61.6178600000000003 1 +18122 Stream -1.83261000000000007 -61.6475500000000025 1 +18123 Stream -1.93237999999999999 -61.8425000000000011 1 +18124 Stream -1.91738999999999993 -61.897359999999999 1 +18125 Stream -2.04768999999999979 -62.1025599999999969 1 +18126 Stream -2.14230000000000009 -62.1323399999999992 1 +18127 Stream -2.15175999999999989 -62.1277899999999974 1 +18128 Stream -2.16226999999999991 -62.1277899999999974 1 +18129 Stream -2.17279 -62.1221800000000002 1 +18130 Stream -2.18259999999999987 -62.1172800000000009 1 +18131 Stream -2.25087999999999999 -62.4079899999999981 1 +18132 Stream -2.35785 -62.496690000000001 1 +18133 Stream -2.46785999999999994 -62.4673700000000025 1 +18134 Stream -2.24287999999999998 -62.4932599999999994 1 +18135 Stream -2.27295999999999987 -62.5324700000000036 1 +18140 Stream -1.96320000000000006 -61.8475899999999967 1 +18141 Stream -1.98327999999999993 -61.8427799999999976 1 +18142 Stream -1.9830000000000001 -61.8323099999999997 1 +18143 Stream -1.98272000000000004 -61.8221300000000014 1 +18144 Stream -2.03123999999999993 -61.8526099999999985 1 +18145 Stream -2.02629999999999999 -61.8479299999999981 1 +18146 Stream -2.02604000000000006 -61.8421999999999983 1 +18147 Stream -2.02681999999999984 -61.8128000000000029 1 +18148 Stream -2.02708000000000022 -61.8169600000000017 1 +18149 Stream -2.02213999999999983 -61.8479299999999981 1 +18150 Stream -2.01797000000000004 -61.8479299999999981 1 +18170 Stream -1.96250999999999998 -61.5123999999999995 1 +18200 Stream -1.35285999999999995 -61.8875499999999974 1 +18400 Stream -1.34274000000000004 -61.9575299999999984 1 +18401 Stream -1.3325499999999999 -62.2470399999999984 1 +18402 Stream -0.742680000000000007 -63.0865000000000009 1 +18403 Stream -0.0826899999999999996 -64.0125500000000045 1 +18404 Stream -0.0823699999999999988 -64.0273200000000031 1 +18405 Stream -0.608430000000000026 -64.8270899999999983 1 +18406 Stream -0.577450000000000019 -64.9773799999999966 1 +18407 Stream -0.577450000000000019 -65.1221199999999953 1 +18408 Stream -0.497910000000000019 -65.1179499999999933 1 +18409 Stream -0.357800000000000007 -65.2224599999999981 1 +18410 Stream -0.252060000000000006 -65.9525299999999959 1 +18411 Stream -0.447709999999999997 -66.4325999999999937 1 +20000 Stream -3.74685999999999986 -61.4326900000000009 1 +20001 Stream -8.73240000000000016 -67.377759999999995 1 +20002 Stream -11.0021199999999997 -68.7635400000000061 1 +22001 Stream -4.04276000000000035 -63.1635899999999992 1 +22002 Stream -4.05302999999999969 -63.2770099999999971 1 +23001 Stream -3.35711000000000004 -64.7124299999999977 1 +23002 Stream -3.43999999999999995 -64.7727200000000067 1 +24000 Stream -1.81730999999999998 -65.68262 1 +25000 Stream -2.72246999999999995 -65.8031399999999991 1 +25001 Stream -7.62185999999999986 -72.6372400000000056 1 +26000 Stream -2.79998000000000014 -67.0228500000000054 1 +27000 Stream -3.03230000000000022 -68.2076100000000025 1 +28000 Stream -3.4971000000000001 -68.7126300000000043 1 +29001 Stream -4.33772000000000002 -70.0370999999999952 1 +30000 Stream -3.29527999999999999 -72.6320400000000035 1 +31001 Stream -3.69765999999999995 -73.1925200000000018 1 +32000 Stream -4.52780999999999967 -73.5680799999999948 1 +32100 Stream -5.91291999999999973 -76.0374000000000052 1 +32101 Stream -5.88750000000000018 -76.1296799999999934 1 +32102 Stream -5.92436000000000007 -76.0973900000000043 1 +32103 Stream -6.55731000000000019 -76.4316100000000063 1 +32104 Stream -6.80274000000000001 -76.2924100000000038 1 +32105 Stream -7.07788000000000039 -76.6574200000000019 1 +32106 Stream -7.26243000000000016 -76.7560200000000066 1 +32107 Stream -7.42675999999999981 -76.652869999999993 1 +32108 Stream -8.17740000000000045 -76.5327800000000025 1 +32109 Stream -8.19111999999999973 -76.5028599999999983 1 +32110 Stream -8.25718999999999959 -76.3973100000000045 1 +32111 Stream -8.42756999999999934 -76.392319999999998 1 +32112 Stream -8.74754000000000076 -76.142399999999995 1 +32113 Stream -9.28739000000000026 -76.057540000000003 1 +32114 Stream -9.31719000000000008 -76.0204200000000014 1 +32115 Stream -9.32756999999999969 -75.9972700000000003 1 +32116 Stream -9.49764000000000053 -75.9669200000000018 1 +32117 Stream -9.93263999999999925 -76.2771699999999981 1 +32118 Stream -9.94289000000000023 -76.2473099999999988 1 +33000 Stream -4.52230000000000043 -73.4873900000000049 1 +33001 Stream -8.78266999999999953 -74.5529999999999973 1 +33002 Stream -10.7870100000000004 -73.7729599999999976 1 +33003 Stream -13.5670199999999994 -72.5887299999999982 1 +33004 Stream -10.7573000000000008 -73.7122200000000021 1 +33005 Stream -12.6023200000000006 -72.5327000000000055 1 +33006 Stream -12.6462500000000002 -72.5375999999999976 1 +33007 Stream -12.8672500000000003 -72.6821000000000055 1 +33008 Stream -13.1575000000000006 -72.2775000000000034 1 +33009 Stream -13.2725399999999993 -72.2498800000000045 1 +33010 Stream -13.5757100000000008 -71.7225600000000014 1 +33011 Stream -14.1021400000000003 -71.4217299999999966 1 +33012 Stream -14.1661199999999994 -71.4023300000000063 1 +33013 Stream -14.3625000000000007 -71.3174999999999955 1 +33014 Stream -14.4371899999999993 -71.2916000000000025 1 +33050 Stream -8.30715000000000003 -74.4929300000000012 1 +33051 Stream -13.1529299999999996 -72.5418999999999983 1 +33052 Stream -13.2023200000000003 -72.4726600000000047 1 +33053 Stream -11.8407300000000006 -75.4174399999999991 1 +33100 Stream -8.73283999999999949 -74.572029999999998 1 +33101 Stream -8.93270000000000053 -74.7176299999999998 1 +33102 Stream -9.37719000000000058 -74.9724899999999934 1 +33105 Stream -9.37228999999999957 -75.0267599999999959 1 +33108 Stream -9.89245000000000019 -74.9581500000000034 1 +33109 Stream -9.91172000000000075 -74.9321099999999944 1 +33110 Stream -9.89744999999999919 -75.2528199999999998 1 +33111 Stream -9.92777000000000065 -75.2478299999999933 1 +33114 Stream -10.0023300000000006 -74.9724199999999996 1 +33116 Stream -10.3473699999999997 -74.8772900000000021 1 +33117 Stream -10.3774999999999995 -74.8477599999999939 1 +33118 Stream -10.3874399999999998 -74.8622199999999935 1 +33119 Stream -10.3374299999999995 -74.8974699999999984 1 +33122 Stream -10.0275999999999996 -75.5628600000000006 1 +33123 Stream -10.0921299999999992 -75.5374800000000022 1 +33124 Stream -10.5973699999999997 -75.4176800000000043 1 +\. + + +-- +-- TOC entry 4950 (class 0 OID 71064) +-- Dependencies: 413 +-- Data for Name: spatialoffsets; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY spatialoffsets (spatialoffsetid, spatialoffsettypecv, offset1value, offset1unitid, offset2value, offset2unitid, offset3value, offset3unitid) FROM stdin; +\. + + +-- +-- TOC entry 4891 (class 0 OID 70775) +-- Dependencies: 354 +-- Data for Name: spatialreferenceexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY spatialreferenceexternalidentifiers (bridgeid, spatialreferenceid, externalidentifiersystemid, spatialreferenceexternalidentifier, spatialreferenceexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5125 (class 0 OID 0) +-- Dependencies: 353 +-- Name: spatialreferenceexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('spatialreferenceexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4952 (class 0 OID 71071) +-- Dependencies: 415 +-- Data for Name: spatialreferences; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY spatialreferences (spatialreferenceid, srscode, srsname, srsdescription, srslink) FROM stdin; +1 epsg:4326 WGS 84 (EPSG:4326) Lat-lon Geographic 2D, WGS84, EPSG:4386 http://www.opengis.net/def/crs/EPSG/0/4326 +\. + + +-- +-- TOC entry 5126 (class 0 OID 0) +-- Dependencies: 414 +-- Name: spatialreferences_spatialreferenceid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('spatialreferences_spatialreferenceid_seq', 1, false); + + +-- +-- TOC entry 4900 (class 0 OID 70825) +-- Dependencies: 363 +-- Data for Name: specimenbatchpostions; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY specimenbatchpostions (featureactionid, batchpositionnumber, batchpositionlabel) FROM stdin; +\. + + +-- +-- TOC entry 4953 (class 0 OID 71080) +-- Dependencies: 416 +-- Data for Name: specimens; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY specimens (samplingfeatureid, specimentypecv, specimenmediumcv, isfieldspecimen) FROM stdin; +1 Grab Particulate t +2 Grab Particulate t +3 Grab Particulate t +4 Grab Particulate t +5 Grab Particulate t +6 Grab Particulate t +7 Grab Particulate t +8 Grab Particulate t +9 Grab Particulate t +10 Grab Particulate t +11 Grab Particulate t +12 Grab Particulate t +13 Grab Particulate t +14 Grab Particulate t +15 Grab Particulate t +16 Grab Particulate t +17 Grab Particulate t +18 Grab Particulate t +19 Grab Particulate t +20 Grab Particulate t +21 Grab Particulate t +22 Grab Particulate t +23 Grab Particulate t +24 Grab Particulate t +25 Grab Particulate t +26 Grab Particulate t +27 Grab Particulate t +28 Grab Particulate t +29 Grab Particulate t +30 Grab Particulate t +31 Grab Particulate t +32 Grab Particulate t +33 Grab Particulate t +34 Grab Particulate t +35 Grab Particulate t +36 Grab Particulate t +37 Grab Particulate t +38 Grab Particulate t +39 Grab Particulate t +40 Grab Particulate t +41 Grab Particulate t +42 Grab Particulate t +43 Grab Particulate t +44 Grab Particulate t +45 Grab Particulate t +46 Grab Particulate t +47 Grab Particulate t +48 Grab Particulate t +49 Grab Particulate t +50 Grab Particulate t +51 Grab Particulate t +52 Grab Particulate t +53 Grab Particulate t +54 Grab Particulate t +55 Grab Particulate t +56 Grab Particulate t +57 Grab Particulate t +58 Grab Particulate t +59 Grab Particulate t +60 Grab Particulate t +61 Grab Particulate t +62 Grab Particulate t +63 Grab Particulate t +64 Grab Particulate t +65 Grab Particulate t +66 Grab Particulate t +67 Grab Particulate t +68 Grab Particulate t +69 Grab Particulate t +70 Grab Particulate t +71 Grab Particulate t +72 Grab Particulate t +73 Grab Particulate t +74 Grab Particulate t +75 Grab Particulate t +76 Grab Particulate t +77 Grab Particulate t +78 Grab Particulate t +79 Grab Particulate t +80 Grab Particulate t +81 Grab Particulate t +82 Grab Particulate t +83 Grab Particulate t +84 Grab Particulate t +85 Grab Particulate t +86 Grab Particulate t +87 Grab Particulate t +88 Grab Particulate t +89 Grab Particulate t +90 Grab Particulate t +91 Grab Particulate t +92 Grab Particulate t +93 Grab Particulate t +94 Grab Particulate t +95 Grab Particulate t +96 Grab Particulate t +97 Grab Particulate t +98 Grab Particulate t +33125 Grab Particulate t +33126 Grab Particulate t +33127 Grab Particulate t +33128 Grab Particulate t +33129 Grab Particulate t +33130 Grab Particulate t +33131 Grab Particulate t +33132 Grab Particulate t +33133 Grab Particulate t +33134 Grab Particulate t +33135 Grab Particulate t +33136 Grab Particulate t +33137 Grab Particulate t +33138 Grab Particulate t +33139 Grab Particulate t +33140 Grab Particulate t +33141 Grab Particulate t +33142 Grab Particulate t +33143 Grab Particulate t +33144 Grab Particulate t +33145 Grab Particulate t +33146 Grab Particulate t +33147 Grab Particulate t +33148 Grab Particulate t +33149 Grab Particulate t +33150 Grab Particulate t +33151 Grab Particulate t +33152 Grab Particulate t +33153 Grab Particulate t +33154 Grab Particulate t +33155 Grab Particulate t +33156 Grab Particulate t +33157 Grab Particulate t +33158 Grab Particulate t +33159 Grab Particulate t +33160 Grab Particulate t +33161 Grab Particulate t +33162 Grab Particulate t +33163 Grab Particulate t +33164 Grab Particulate t +33165 Grab Particulate t +33166 Grab Particulate t +33167 Grab Particulate t +33168 Grab Particulate t +33169 Grab Particulate t +33170 Grab Particulate t +33171 Grab Particulate t +33172 Grab Particulate t +33173 Grab Particulate t +33174 Grab Particulate t +33175 Grab Particulate t +33176 Grab Particulate t +33177 Grab Particulate t +33178 Grab Particulate t +33179 Grab Particulate t +33180 Grab Particulate t +33181 Grab Particulate t +33182 Grab Particulate t +33183 Grab Particulate t +33184 Grab Particulate t +33185 Grab Particulate t +33186 Grab Particulate t +33187 Grab Particulate t +33188 Grab Particulate t +33189 Grab Particulate t +33190 Grab Particulate t +33191 Grab Particulate t +33192 Grab Particulate t +33193 Grab Particulate t +33194 Grab Particulate t +33195 Grab Particulate t +33196 Grab Particulate t +33197 Grab Particulate t +33198 Grab Particulate t +33199 Grab Particulate t +33200 Grab Particulate t +33201 Grab Particulate t +33202 Grab Particulate t +33203 Grab Particulate t +33204 Grab Particulate t +33205 Grab Particulate t +33206 Grab Particulate t +33207 Grab Particulate t +33208 Grab Particulate t +33209 Grab Particulate t +33210 Grab Particulate t +33211 Grab Particulate t +33212 Grab Particulate t +33213 Grab Particulate t +33214 Grab Particulate t +33215 Grab Particulate t +33216 Grab Particulate t +33217 Grab Particulate t +33218 Grab Particulate t +33219 Grab Particulate t +33220 Grab Particulate t +33221 Grab Particulate t +33222 Grab Liquid aqueous t +33223 Grab Liquid aqueous t +33224 Grab Liquid aqueous t +33225 Grab Liquid aqueous t +33226 Grab Liquid aqueous t +33227 Grab Liquid aqueous t +33228 Grab Liquid aqueous t +33229 Grab Liquid aqueous t +33230 Grab Liquid aqueous t +33231 Grab Liquid aqueous t +33232 Grab Liquid aqueous t +33233 Grab Liquid aqueous t +33234 Grab Liquid aqueous t +33235 Grab Liquid aqueous t +33236 Grab Liquid aqueous t +33237 Grab Liquid aqueous t +33238 Grab Liquid aqueous t +33239 Grab Liquid aqueous t +33240 Grab Liquid aqueous t +33241 Grab Liquid aqueous t +33242 Grab Liquid aqueous t +33243 Grab Liquid aqueous t +33244 Grab Liquid aqueous t +33245 Grab Liquid aqueous t +33246 Grab Liquid aqueous t +33247 Grab Liquid aqueous t +33248 Grab Liquid aqueous t +33249 Grab Liquid aqueous t +33250 Grab Liquid aqueous t +33251 Grab Liquid aqueous t +33252 Grab Liquid aqueous t +33253 Grab Liquid aqueous t +33254 Grab Liquid aqueous t +33255 Grab Liquid aqueous t +33256 Grab Liquid aqueous t +33257 Grab Liquid aqueous t +33258 Grab Liquid aqueous t +33259 Grab Liquid aqueous t +33260 Grab Liquid aqueous t +33261 Grab Liquid aqueous t +33262 Grab Liquid aqueous t +33263 Grab Liquid aqueous t +33264 Grab Liquid aqueous t +33265 Grab Liquid aqueous t +33266 Grab Liquid aqueous t +33267 Grab Liquid aqueous t +33268 Grab Liquid aqueous t +33269 Grab Liquid aqueous t +33270 Grab Liquid aqueous t +33271 Grab Liquid aqueous t +33272 Grab Liquid aqueous t +33273 Grab Liquid aqueous t +33274 Grab Liquid aqueous t +33275 Grab Liquid aqueous t +33276 Grab Liquid aqueous t +33277 Grab Liquid aqueous t +33278 Grab Liquid aqueous t +33279 Grab Liquid aqueous t +33280 Grab Liquid aqueous t +33281 Grab Liquid aqueous t +33282 Grab Liquid aqueous t +33283 Grab Liquid aqueous t +33284 Grab Liquid aqueous t +33285 Grab Liquid aqueous t +33286 Grab Liquid aqueous t +33287 Grab Liquid aqueous t +33288 Grab Liquid aqueous t +33289 Grab Liquid aqueous t +33290 Grab Liquid aqueous t +33291 Grab Liquid aqueous t +33292 Grab Liquid aqueous t +33293 Grab Liquid aqueous t +33294 Grab Liquid aqueous t +33295 Grab Liquid aqueous t +33296 Grab Liquid aqueous t +33297 Grab Liquid aqueous t +33298 Grab Liquid aqueous t +33299 Grab Liquid aqueous t +33300 Grab Liquid aqueous t +33301 Grab Liquid aqueous t +33302 Grab Liquid aqueous t +33303 Grab Liquid aqueous t +33304 Grab Liquid aqueous t +33305 Grab Liquid aqueous t +33306 Grab Liquid aqueous t +33307 Grab Liquid aqueous t +33308 Grab Liquid aqueous t +33309 Grab Liquid aqueous t +33310 Grab Liquid aqueous t +33311 Grab Liquid aqueous t +33312 Grab Liquid aqueous t +33313 Grab Liquid aqueous t +33314 Grab Liquid aqueous t +33315 Grab Liquid aqueous t +33316 Grab Liquid aqueous t +33317 Grab Liquid aqueous t +33318 Grab Liquid aqueous t +33319 Grab Liquid aqueous t +33320 Grab Liquid aqueous t +33321 Grab Liquid aqueous t +33322 Grab Liquid aqueous t +33323 Grab Liquid aqueous t +33324 Grab Liquid aqueous t +33325 Grab Liquid aqueous t +33326 Grab Liquid aqueous t +33327 Grab Liquid aqueous t +33328 Grab Liquid aqueous t +33329 Grab Liquid aqueous t +33330 Grab Liquid aqueous t +33331 Grab Liquid aqueous t +33332 Grab Liquid aqueous t +33333 Grab Liquid aqueous t +33334 Grab Liquid aqueous t +33335 Grab Liquid aqueous t +33336 Grab Liquid aqueous t +33337 Grab Liquid aqueous t +33338 Grab Liquid aqueous t +33339 Grab Liquid aqueous t +33340 Grab Liquid aqueous t +33341 Grab Liquid aqueous t +33342 Grab Liquid aqueous t +33343 Grab Liquid aqueous t +33344 Grab Liquid aqueous t +33345 Grab Liquid aqueous t +33346 Grab Liquid aqueous t +33347 Grab Liquid aqueous t +33348 Grab Liquid aqueous t +33349 Grab Liquid aqueous t +33350 Grab Liquid aqueous t +33351 Grab Liquid aqueous t +33352 Grab Liquid aqueous t +33353 Grab Liquid aqueous t +33354 Grab Liquid aqueous t +33355 Grab Liquid aqueous t +33356 Grab Liquid aqueous t +33357 Grab Liquid aqueous t +33358 Grab Liquid aqueous t +33359 Grab Liquid aqueous t +33360 Grab Liquid aqueous t +33361 Grab Liquid aqueous t +33362 Grab Liquid aqueous t +33363 Grab Liquid aqueous t +33364 Grab Liquid aqueous t +33365 Grab Liquid aqueous t +33366 Grab Liquid aqueous t +33367 Grab Liquid aqueous t +33368 Grab Liquid aqueous t +33369 Grab Liquid aqueous t +33370 Grab Liquid aqueous t +33371 Grab Liquid aqueous t +33372 Grab Liquid aqueous t +33373 Grab Liquid aqueous t +33374 Grab Liquid aqueous t +33375 Grab Liquid aqueous t +33376 Grab Liquid aqueous t +33377 Grab Liquid aqueous t +33378 Grab Liquid aqueous t +33379 Grab Liquid aqueous t +33380 Grab Liquid aqueous t +33381 Grab Liquid aqueous t +33382 Grab Liquid aqueous t +33383 Grab Liquid aqueous t +33384 Grab Liquid aqueous t +33385 Grab Liquid aqueous t +33386 Grab Liquid aqueous t +33387 Grab Liquid aqueous t +33388 Grab Liquid aqueous t +33389 Grab Liquid aqueous t +33390 Grab Liquid aqueous t +33391 Grab Liquid aqueous t +33392 Grab Liquid aqueous t +33393 Grab Liquid aqueous t +33394 Grab Liquid aqueous t +33395 Grab Liquid aqueous t +33396 Grab Liquid aqueous t +33397 Grab Liquid aqueous t +33398 Grab Liquid aqueous t +33399 Grab Liquid aqueous t +33400 Grab Liquid aqueous t +33401 Grab Liquid aqueous t +33402 Grab Liquid aqueous t +33403 Grab Liquid aqueous t +33404 Grab Liquid aqueous t +33405 Grab Liquid aqueous t +33406 Grab Liquid aqueous t +33407 Grab Liquid aqueous t +33408 Grab Liquid aqueous t +33409 Grab Liquid aqueous t +33410 Grab Liquid aqueous t +33411 Grab Liquid aqueous t +33412 Grab Liquid aqueous t +33413 Grab Liquid aqueous t +33414 Grab Liquid aqueous t +33415 Grab Liquid aqueous t +33416 Grab Liquid aqueous t +33417 Grab Liquid aqueous t +33418 Grab Liquid aqueous t +33419 Grab Liquid aqueous t +33420 Grab Liquid aqueous t +\. + + +-- +-- TOC entry 4955 (class 0 OID 71090) +-- Dependencies: 418 +-- Data for Name: specimentaxonomicclassifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY specimentaxonomicclassifiers (bridgeid, samplingfeatureid, taxonomicclassifierid, citationid) FROM stdin; +\. + + +-- +-- TOC entry 5127 (class 0 OID 0) +-- Dependencies: 417 +-- Name: specimentaxonomicclassifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('specimentaxonomicclassifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4935 (class 0 OID 70987) +-- Dependencies: 398 +-- Data for Name: spectraresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY spectraresults (resultid, xlocation, xlocationunitsid, ylocation, ylocationunitsid, zlocation, zlocationunitsid, spatialreferenceid, intendedwavelengthspacing, intendedwavelengthspacingunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 4770 (class 0 OID 70080) +-- Dependencies: 233 +-- Data for Name: spectraresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY spectraresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5128 (class 0 OID 0) +-- Dependencies: 232 +-- Name: spectraresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('spectraresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4937 (class 0 OID 70994) +-- Dependencies: 400 +-- Data for Name: spectraresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY spectraresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, excitationwavelength, emissionwavelength, wavelengthunitsid, censorcodecv, qualitycodecv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5129 (class 0 OID 0) +-- Dependencies: 399 +-- Name: spectraresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('spectraresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4893 (class 0 OID 70786) +-- Dependencies: 356 +-- Data for Name: taxonomicclassifierexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY taxonomicclassifierexternalidentifiers (bridgeid, taxonomicclassifierid, externalidentifiersystemid, taxonomicclassifierexternalidentifier, taxonomicclassifierexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5130 (class 0 OID 0) +-- Dependencies: 355 +-- Name: taxonomicclassifierexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('taxonomicclassifierexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4803 (class 0 OID 70244) +-- Dependencies: 266 +-- Data for Name: taxonomicclassifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY taxonomicclassifiers (taxonomicclassifierid, taxonomicclassifiertypecv, taxonomicclassifiername, taxonomicclassifiercommonname, taxonomicclassifierdescription, parenttaxonomicclassifierid) FROM stdin; +\. + + +-- +-- TOC entry 4938 (class 0 OID 71003) +-- Dependencies: 401 +-- Data for Name: timeseriesresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY timeseriesresults (resultid, xlocation, xlocationunitsid, ylocation, ylocationunitsid, zlocation, zlocationunitsid, spatialreferenceid, intendedtimespacing, intendedtimespacingunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 4772 (class 0 OID 70088) +-- Dependencies: 235 +-- Data for Name: timeseriesresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY timeseriesresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5131 (class 0 OID 0) +-- Dependencies: 234 +-- Name: timeseriesresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('timeseriesresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4940 (class 0 OID 71010) +-- Dependencies: 403 +-- Data for Name: timeseriesresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY timeseriesresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, censorcodecv, qualitycodecv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5132 (class 0 OID 0) +-- Dependencies: 402 +-- Name: timeseriesresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('timeseriesresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4941 (class 0 OID 71019) +-- Dependencies: 404 +-- Data for Name: trajectoryresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY trajectoryresults (resultid, spatialreferenceid, intendedtrajectoryspacing, intendedtrajectoryspacingunitsid, intendedtimespacing, intendedtimespacingunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 4774 (class 0 OID 70096) +-- Dependencies: 237 +-- Data for Name: trajectoryresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY trajectoryresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5133 (class 0 OID 0) +-- Dependencies: 236 +-- Name: trajectoryresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('trajectoryresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4943 (class 0 OID 71026) +-- Dependencies: 406 +-- Data for Name: trajectoryresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY trajectoryresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, xlocation, xlocationunitsid, ylocation, ylocationunitsid, zlocation, zlocationunitsid, trajectorydistance, trajectorydistanceaggregationinterval, trajectorydistanceunitsid, censorcodecv, qualitycodecv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5134 (class 0 OID 0) +-- Dependencies: 405 +-- Name: trajectoryresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('trajectoryresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4944 (class 0 OID 71035) +-- Dependencies: 407 +-- Data for Name: transectresults; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY transectresults (resultid, zlocation, zlocationunitsid, spatialreferenceid, intendedtransectspacing, intendedtransectspacingunitsid, intendedtimespacing, intendedtimespacingunitsid, aggregationstatisticcv) FROM stdin; +\. + + +-- +-- TOC entry 4776 (class 0 OID 70104) +-- Dependencies: 239 +-- Data for Name: transectresultvalueannotations; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY transectresultvalueannotations (bridgeid, valueid, annotationid) FROM stdin; +\. + + +-- +-- TOC entry 5135 (class 0 OID 0) +-- Dependencies: 238 +-- Name: transectresultvalueannotations_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('transectresultvalueannotations_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4946 (class 0 OID 71042) +-- Dependencies: 409 +-- Data for Name: transectresultvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY transectresultvalues (valueid, resultid, datavalue, valuedatetime, valuedatetimeutcoffset, xlocation, xlocationunitsid, ylocation, ylocationunitsid, transectdistance, transectdistanceaggregationinterval, transectdistanceunitsid, censorcodecv, qualitycodecv, aggregationstatisticcv, timeaggregationinterval, timeaggregationintervalunitsid) FROM stdin; +\. + + +-- +-- TOC entry 5136 (class 0 OID 0) +-- Dependencies: 408 +-- Name: transectresultvalues_valueid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('transectresultvalues_valueid_seq', 1, false); + + +-- +-- TOC entry 4805 (class 0 OID 70254) +-- Dependencies: 268 +-- Data for Name: units; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY units (unitsid, unitstypecv, unitsabbreviation, unitsname, unitslink) FROM stdin; +1 Mass concentration mg/L milligrams per liter \N +2 Specific surface area m2 SA/g sed meters^2 of surface area per gram of sediment \N +3 Temperature deg C degrees Celsius \N +4 Dimensionless - pH unit \N +5 Electrical conductivity uS/cm micro Siemens per centimeter \N +6 Charge concentration ueq/L micro equivalents per liter \N +7 Molar concentration uM micro moles per liter \N +8 Mass fraction ppm parts per million \N +9 Mass fraction sat fr saturation fraction (ratio) \N +10 Mass fraction per mil parts per thousand (mille) \N +11 Molar fraction mol fr mole fraction (ratio) \N +12 Mass fraction mass % mass percent \N +13 Areal density mg OC/m2 SA milligrams organic carbon per meter^2 of surface area \N +14 Time hr hour \N +\. + + +-- +-- TOC entry 5137 (class 0 OID 0) +-- Dependencies: 267 +-- Name: units_unitsid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('units_unitsid_seq', 14, true); + + +-- +-- TOC entry 4878 (class 0 OID 70704) +-- Dependencies: 341 +-- Data for Name: variableextensionpropertyvalues; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY variableextensionpropertyvalues (bridgeid, variableid, propertyid, propertyvalue) FROM stdin; +\. + + +-- +-- TOC entry 5138 (class 0 OID 0) +-- Dependencies: 340 +-- Name: variableextensionpropertyvalues_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('variableextensionpropertyvalues_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4895 (class 0 OID 70797) +-- Dependencies: 358 +-- Data for Name: variableexternalidentifiers; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY variableexternalidentifiers (bridgeid, variableid, externalidentifiersystemid, variableexternalidentifer, variableexternalidentifieruri) FROM stdin; +\. + + +-- +-- TOC entry 5139 (class 0 OID 0) +-- Dependencies: 357 +-- Name: variableexternalidentifiers_bridgeid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('variableexternalidentifiers_bridgeid_seq', 1, false); + + +-- +-- TOC entry 4807 (class 0 OID 70265) +-- Dependencies: 270 +-- Data for Name: variables; Type: TABLE DATA; Schema: odm2; Owner: - +-- + +COPY variables (variableid, variabletypecv, variablecode, variablenamecv, variabledefinition, speciationcv, nodatavalue) FROM stdin; +1 Chemistry FPOC Carbon, particulate organic Fine particulate organic carbon \N -999 +2 Chemistry FPON Nitrogen, particulate organic Fine particulate organic nitrogen \N -999 +4 Water quality FSS Sediment, suspended Fine suspended sediment \N -999 +3 Chemistry FPCNratio_a Carbon to nitrogen molar ratio Fine particulate atomic (molar) organic C/N ratio, acidified \N -999 +5 Chemistry CPOC Carbon, particulate organic Coarse particulate organic carbon \N -999 +6 Chemistry CPON Nitrogen, particulate organic Coarse particulate organic nitrogen \N -999 +7 Chemistry CPCNa Carbon to nitrogen molar ratio Coarse particulate atomic (molar) organic C/N ratio, acidified \N -999 +8 Water quality CSS Sediment, suspended Coarse suspended sediment \N -999 +9 Chemistry Ca Calcium, dissolved Dissolved Calcium (Ca) \N -999 +10 Chemistry Cl Chlorine Chlorine (Cl2) \N -999 +11 Chemistry DOC Carbon, dissolved organic Dissolved Organic Carbon \N -999 +12 Hydrology 18OinH2O delta-18O of H2O Stable isotope 18O (oxygen) of water \N -999 +13 Chemistry K Potassium, dissolved Dissolved Potassium (K) \N -999 +14 Chemistry Na Sodium, dissolved Dissolved Sodium (Na) \N -999 +15 Chemistry NH4 Nitrogen, NH4 Ammonium Nitrogen (NH4) \N -999 +16 Chemistry NO3 Nitrogen, dissolved nitrate (NO3) Dissolved nitrate (NO3) nitrogen \N -999 +17 Chemistry PO4 Phosphorus, orthophosphate dissolved Dissolved orthophosphate (PO4) phosphorus \N -999 +18 Chemistry SiO4 Silica, dissolved Dissolved silica (SiO2) (Labelled SiO4 in source data) \N -999 +19 Hydrology Temperature Temperature Temperature \N -999 +20 Chemistry Alk Alkalinity, total Total Alkalinity \N -999 +21 Chemistry DIC_13 delta-13C of DIC Isotope 13C of dissolved inorganic carbon (DIC) \N -999 +22 Chemistry DO2 Oxygen, dissolved Dissolved oxygen \N -999 +23 Chemistry pH pH pH (measure of acidity) \N -999 +24 Chemistry DIC Carbon, dissolved inorganic Dissolved Inorganic Carbon \N -999 +25 Chemistry pCO2 Carbon Dioxide, dissolved Dissolved Carbon dioxide (CO2) partial pressure \N -999 +\. + + +-- +-- TOC entry 5140 (class 0 OID 0) +-- Dependencies: 269 +-- Name: variables_variableid_seq; Type: SEQUENCE SET; Schema: odm2; Owner: - +-- + +SELECT pg_catalog.setval('variables_variableid_seq', 25, true); + + +SET search_path = public, pg_catalog; + +-- +-- TOC entry 3982 (class 0 OID 16658) +-- Dependencies: 173 +-- Data for Name: spatial_ref_sys; Type: TABLE DATA; Schema: public; Owner: - +-- + +COPY spatial_ref_sys (srid, auth_name, auth_srid, srtext, proj4text) FROM stdin; +\. + + +SET search_path = odm2, pg_catalog; + +-- +-- TOC entry 4069 (class 2606 OID 69994) +-- Name: actionannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY actionannotations + ADD CONSTRAINT actionannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4099 (class 2606 OID 70120) +-- Name: actionby_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY actionby + ADD CONSTRAINT actionby_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4256 (class 2606 OID 70813) +-- Name: actiondirectives_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY actiondirectives + ADD CONSTRAINT actiondirectives_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4224 (class 2606 OID 70658) +-- Name: actionextensionpropertyvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY actionextensionpropertyvalues + ADD CONSTRAINT actionextensionpropertyvalues_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4101 (class 2606 OID 70131) +-- Name: actions_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY actions + ADD CONSTRAINT actions_pkey PRIMARY KEY (actionid); + + +-- +-- TOC entry 4103 (class 2606 OID 70142) +-- Name: affiliations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY affiliations + ADD CONSTRAINT affiliations_pkey PRIMARY KEY (affiliationid); + + +-- +-- TOC entry 4071 (class 2606 OID 70005) +-- Name: annotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY annotations + ADD CONSTRAINT annotations_pkey PRIMARY KEY (annotationid); + + +-- +-- TOC entry 4262 (class 2606 OID 70837) +-- Name: authorlists_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY authorlists + ADD CONSTRAINT authorlists_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4200 (class 2606 OID 70544) +-- Name: calibrationactions_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY calibrationactions + ADD CONSTRAINT calibrationactions_pkey PRIMARY KEY (actionid); + + +-- +-- TOC entry 4202 (class 2606 OID 70552) +-- Name: calibrationreferenceequipment_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY calibrationreferenceequipment + ADD CONSTRAINT calibrationreferenceequipment_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4204 (class 2606 OID 70560) +-- Name: calibrationstandards_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY calibrationstandards + ADD CONSTRAINT calibrationstandards_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4282 (class 2606 OID 70914) +-- Name: categoricalresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY categoricalresults + ADD CONSTRAINT categoricalresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4073 (class 2606 OID 70013) +-- Name: categoricalresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY categoricalresultvalueannotations + ADD CONSTRAINT categoricalresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4284 (class 2606 OID 70922) +-- Name: categoricalresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY categoricalresultvalues + ADD CONSTRAINT categoricalresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4226 (class 2606 OID 70666) +-- Name: citationextensionpropertyvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY citationextensionpropertyvalues + ADD CONSTRAINT citationextensionpropertyvalues_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4238 (class 2606 OID 70720) +-- Name: citationexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY citationexternalidentifiers + ADD CONSTRAINT citationexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4264 (class 2606 OID 70848) +-- Name: citations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY citations + ADD CONSTRAINT citations_pkey PRIMARY KEY (citationid); + + +-- +-- TOC entry 4132 (class 2606 OID 70281) +-- Name: cv_actiontype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_actiontype + ADD CONSTRAINT cv_actiontype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4134 (class 2606 OID 70289) +-- Name: cv_aggregationstatistic_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_aggregationstatistic + ADD CONSTRAINT cv_aggregationstatistic_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4136 (class 2606 OID 70297) +-- Name: cv_annotationtype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_annotationtype + ADD CONSTRAINT cv_annotationtype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4138 (class 2606 OID 70305) +-- Name: cv_censorcode_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_censorcode + ADD CONSTRAINT cv_censorcode_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4140 (class 2606 OID 70313) +-- Name: cv_dataqualitytype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_dataqualitytype + ADD CONSTRAINT cv_dataqualitytype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4142 (class 2606 OID 70321) +-- Name: cv_datasettypecv_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_datasettypecv + ADD CONSTRAINT cv_datasettypecv_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4144 (class 2606 OID 70329) +-- Name: cv_directivetype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_directivetype + ADD CONSTRAINT cv_directivetype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4146 (class 2606 OID 70337) +-- Name: cv_elevationdatum_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_elevationdatum + ADD CONSTRAINT cv_elevationdatum_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4148 (class 2606 OID 70345) +-- Name: cv_equipmenttype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_equipmenttype + ADD CONSTRAINT cv_equipmenttype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4150 (class 2606 OID 70353) +-- Name: cv_methodtype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_methodtype + ADD CONSTRAINT cv_methodtype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4152 (class 2606 OID 70361) +-- Name: cv_organizationtype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_organizationtype + ADD CONSTRAINT cv_organizationtype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4154 (class 2606 OID 70369) +-- Name: cv_propertydatatype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_propertydatatype + ADD CONSTRAINT cv_propertydatatype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4156 (class 2606 OID 70377) +-- Name: cv_qualitycode_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_qualitycode + ADD CONSTRAINT cv_qualitycode_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4158 (class 2606 OID 70385) +-- Name: cv_referencematerialmedium_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_referencematerialmedium + ADD CONSTRAINT cv_referencematerialmedium_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4160 (class 2606 OID 70393) +-- Name: cv_relationshiptype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_relationshiptype + ADD CONSTRAINT cv_relationshiptype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4162 (class 2606 OID 70401) +-- Name: cv_resulttype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_resulttype + ADD CONSTRAINT cv_resulttype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4164 (class 2606 OID 70409) +-- Name: cv_sampledmedium_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_sampledmedium + ADD CONSTRAINT cv_sampledmedium_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4166 (class 2606 OID 70417) +-- Name: cv_samplingfeaturegeotype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_samplingfeaturegeotype + ADD CONSTRAINT cv_samplingfeaturegeotype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4168 (class 2606 OID 70425) +-- Name: cv_samplingfeaturetype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_samplingfeaturetype + ADD CONSTRAINT cv_samplingfeaturetype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4170 (class 2606 OID 70433) +-- Name: cv_sitetype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_sitetype + ADD CONSTRAINT cv_sitetype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4172 (class 2606 OID 70441) +-- Name: cv_spatialoffsettype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_spatialoffsettype + ADD CONSTRAINT cv_spatialoffsettype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4174 (class 2606 OID 70449) +-- Name: cv_speciation_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_speciation + ADD CONSTRAINT cv_speciation_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4176 (class 2606 OID 70457) +-- Name: cv_specimenmedium_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_specimenmedium + ADD CONSTRAINT cv_specimenmedium_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4178 (class 2606 OID 70465) +-- Name: cv_specimentype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_specimentype + ADD CONSTRAINT cv_specimentype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4180 (class 2606 OID 70473) +-- Name: cv_status_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_status + ADD CONSTRAINT cv_status_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4182 (class 2606 OID 70481) +-- Name: cv_taxonomicclassifiertype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_taxonomicclassifiertype + ADD CONSTRAINT cv_taxonomicclassifiertype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4184 (class 2606 OID 70489) +-- Name: cv_unitstype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_unitstype + ADD CONSTRAINT cv_unitstype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4186 (class 2606 OID 70497) +-- Name: cv_variablename_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_variablename + ADD CONSTRAINT cv_variablename_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4188 (class 2606 OID 70505) +-- Name: cv_variabletype_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY cv_variabletype + ADD CONSTRAINT cv_variabletype_pkey PRIMARY KEY (name); + + +-- +-- TOC entry 4206 (class 2606 OID 70571) +-- Name: dataloggerfilecolumns_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT dataloggerfilecolumns_pkey PRIMARY KEY (dataloggerfilecolumnid); + + +-- +-- TOC entry 4208 (class 2606 OID 70582) +-- Name: dataloggerfiles_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY dataloggerfiles + ADD CONSTRAINT dataloggerfiles_pkey PRIMARY KEY (dataloggerfileid); + + +-- +-- TOC entry 4210 (class 2606 OID 70593) +-- Name: dataloggerprogramfiles_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY dataloggerprogramfiles + ADD CONSTRAINT dataloggerprogramfiles_pkey PRIMARY KEY (programid); + + +-- +-- TOC entry 4190 (class 2606 OID 70513) +-- Name: dataquality_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY dataquality + ADD CONSTRAINT dataquality_pkey PRIMARY KEY (dataqualityid); + + +-- +-- TOC entry 4266 (class 2606 OID 70856) +-- Name: datasetcitations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY datasetcitations + ADD CONSTRAINT datasetcitations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4105 (class 2606 OID 70153) +-- Name: datasets_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY datasets + ADD CONSTRAINT datasets_pkey PRIMARY KEY (datasetid); + + +-- +-- TOC entry 4107 (class 2606 OID 70161) +-- Name: datasetsresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY datasetsresults + ADD CONSTRAINT datasetsresults_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4268 (class 2606 OID 70864) +-- Name: derivationequations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY derivationequations + ADD CONSTRAINT derivationequations_pkey PRIMARY KEY (derivationequationid); + + +-- +-- TOC entry 4258 (class 2606 OID 70824) +-- Name: directives_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY directives + ADD CONSTRAINT directives_pkey PRIMARY KEY (directiveid); + + +-- +-- TOC entry 4212 (class 2606 OID 70604) +-- Name: equipment_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY equipment + ADD CONSTRAINT equipment_pkey PRIMARY KEY (equipmentid); + + +-- +-- TOC entry 4075 (class 2606 OID 70021) +-- Name: equipmentannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY equipmentannotations + ADD CONSTRAINT equipmentannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4214 (class 2606 OID 70615) +-- Name: equipmentmodels_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY equipmentmodels + ADD CONSTRAINT equipmentmodels_pkey PRIMARY KEY (equipmentmodelid); + + +-- +-- TOC entry 4216 (class 2606 OID 70623) +-- Name: equipmentused_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY equipmentused + ADD CONSTRAINT equipmentused_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4228 (class 2606 OID 70677) +-- Name: extensionproperties_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY extensionproperties + ADD CONSTRAINT extensionproperties_pkey PRIMARY KEY (propertyid); + + +-- +-- TOC entry 4240 (class 2606 OID 70728) +-- Name: externalidentifiersystems_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY externalidentifiersystems + ADD CONSTRAINT externalidentifiersystems_pkey PRIMARY KEY (externalidentifiersystemid); + + +-- +-- TOC entry 4109 (class 2606 OID 70169) +-- Name: featureactions_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY featureactions + ADD CONSTRAINT featureactions_pkey PRIMARY KEY (featureactionid); + + +-- +-- TOC entry 4218 (class 2606 OID 70634) +-- Name: instrumentoutputvariables_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY instrumentoutputvariables + ADD CONSTRAINT instrumentoutputvariables_pkey PRIMARY KEY (instrumentoutputvariableid); + + +-- +-- TOC entry 4220 (class 2606 OID 70642) +-- Name: maintenanceactions_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY maintenanceactions + ADD CONSTRAINT maintenanceactions_pkey PRIMARY KEY (actionid); + + +-- +-- TOC entry 4286 (class 2606 OID 70930) +-- Name: measurementresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT measurementresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4077 (class 2606 OID 70029) +-- Name: measurementresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY measurementresultvalueannotations + ADD CONSTRAINT measurementresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4288 (class 2606 OID 70938) +-- Name: measurementresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY measurementresultvalues + ADD CONSTRAINT measurementresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4079 (class 2606 OID 70037) +-- Name: methodannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY methodannotations + ADD CONSTRAINT methodannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4270 (class 2606 OID 70872) +-- Name: methodcitations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY methodcitations + ADD CONSTRAINT methodcitations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4230 (class 2606 OID 70685) +-- Name: methodextensionpropertyvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY methodextensionpropertyvalues + ADD CONSTRAINT methodextensionpropertyvalues_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4242 (class 2606 OID 70739) +-- Name: methodexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY methodexternalidentifiers + ADD CONSTRAINT methodexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4111 (class 2606 OID 70180) +-- Name: methods_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY methods + ADD CONSTRAINT methods_pkey PRIMARY KEY (methodid); + + +-- +-- TOC entry 4330 (class 2606 OID 71106) +-- Name: modelaffiliations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY modelaffiliations + ADD CONSTRAINT modelaffiliations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4332 (class 2606 OID 71117) +-- Name: models_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY models + ADD CONSTRAINT models_pkey PRIMARY KEY (modelid); + + +-- +-- TOC entry 4113 (class 2606 OID 70191) +-- Name: organizations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY organizations + ADD CONSTRAINT organizations_pkey PRIMARY KEY (organizationid); + + +-- +-- TOC entry 4115 (class 2606 OID 70202) +-- Name: people_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY people + ADD CONSTRAINT people_pkey PRIMARY KEY (personid); + + +-- +-- TOC entry 4244 (class 2606 OID 70750) +-- Name: personexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY personexternalidentifiers + ADD CONSTRAINT personexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4290 (class 2606 OID 70943) +-- Name: pointcoverageresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT pointcoverageresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4081 (class 2606 OID 70045) +-- Name: pointcoverageresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY pointcoverageresultvalueannotations + ADD CONSTRAINT pointcoverageresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4292 (class 2606 OID 70954) +-- Name: pointcoverageresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY pointcoverageresultvalues + ADD CONSTRAINT pointcoverageresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4117 (class 2606 OID 70213) +-- Name: processinglevels_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY processinglevels + ADD CONSTRAINT processinglevels_pkey PRIMARY KEY (processinglevelid); + + +-- +-- TOC entry 4294 (class 2606 OID 70959) +-- Name: profileresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT profileresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4083 (class 2606 OID 70053) +-- Name: profileresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY profileresultvalueannotations + ADD CONSTRAINT profileresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4296 (class 2606 OID 70970) +-- Name: profileresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY profileresultvalues + ADD CONSTRAINT profileresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4246 (class 2606 OID 70761) +-- Name: referencematerialexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY referencematerialexternalidentifiers + ADD CONSTRAINT referencematerialexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4192 (class 2606 OID 70521) +-- Name: referencematerials_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY referencematerials + ADD CONSTRAINT referencematerials_pkey PRIMARY KEY (referencematerialid); + + +-- +-- TOC entry 4194 (class 2606 OID 70526) +-- Name: referencematerialvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY referencematerialvalues + ADD CONSTRAINT referencematerialvalues_pkey PRIMARY KEY (referencematerialvalueid); + + +-- +-- TOC entry 4119 (class 2606 OID 70221) +-- Name: relatedactions_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedactions + ADD CONSTRAINT relatedactions_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4272 (class 2606 OID 70880) +-- Name: relatedannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedannotations + ADD CONSTRAINT relatedannotations_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4274 (class 2606 OID 70888) +-- Name: relatedcitations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedcitations + ADD CONSTRAINT relatedcitations_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4276 (class 2606 OID 70896) +-- Name: relateddatasets_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relateddatasets + ADD CONSTRAINT relateddatasets_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4222 (class 2606 OID 70650) +-- Name: relatedequipment_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedequipment + ADD CONSTRAINT relatedequipment_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4318 (class 2606 OID 71058) +-- Name: relatedfeatures_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedfeatures + ADD CONSTRAINT relatedfeatures_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4334 (class 2606 OID 71125) +-- Name: relatedmodels_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedmodels + ADD CONSTRAINT relatedmodels_pkey PRIMARY KEY (relatedid); + + +-- +-- TOC entry 4278 (class 2606 OID 70904) +-- Name: relatedresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY relatedresults + ADD CONSTRAINT relatedresults_pkey PRIMARY KEY (relationid); + + +-- +-- TOC entry 4085 (class 2606 OID 70061) +-- Name: resultannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY resultannotations + ADD CONSTRAINT resultannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4280 (class 2606 OID 70909) +-- Name: resultderivationequations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY resultderivationequations + ADD CONSTRAINT resultderivationequations_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4232 (class 2606 OID 70693) +-- Name: resultextensionpropertyvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY resultextensionpropertyvalues + ADD CONSTRAINT resultextensionpropertyvalues_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4196 (class 2606 OID 70531) +-- Name: resultnormalizationvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY resultnormalizationvalues + ADD CONSTRAINT resultnormalizationvalues_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4121 (class 2606 OID 70232) +-- Name: results_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT results_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4198 (class 2606 OID 70539) +-- Name: resultsdataquality_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY resultsdataquality + ADD CONSTRAINT resultsdataquality_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4087 (class 2606 OID 70069) +-- Name: samplingfeatureannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY samplingfeatureannotations + ADD CONSTRAINT samplingfeatureannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4234 (class 2606 OID 70701) +-- Name: samplingfeatureextensionpropertyvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY samplingfeatureextensionpropertyvalues + ADD CONSTRAINT samplingfeatureextensionpropertyvalues_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4248 (class 2606 OID 70772) +-- Name: samplingfeatureexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY samplingfeatureexternalidentifiers + ADD CONSTRAINT samplingfeatureexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4124 (class 2606 OID 70243) +-- Name: samplingfeatures_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY samplingfeatures + ADD CONSTRAINT samplingfeatures_pkey PRIMARY KEY (samplingfeatureid); + + +-- +-- TOC entry 4298 (class 2606 OID 70975) +-- Name: sectionresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT sectionresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4089 (class 2606 OID 70077) +-- Name: sectionresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY sectionresultvalueannotations + ADD CONSTRAINT sectionresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4300 (class 2606 OID 70986) +-- Name: sectionresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT sectionresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4336 (class 2606 OID 71136) +-- Name: simulations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY simulations + ADD CONSTRAINT simulations_pkey PRIMARY KEY (simulationid); + + +-- +-- TOC entry 4320 (class 2606 OID 71063) +-- Name: sites_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY sites + ADD CONSTRAINT sites_pkey PRIMARY KEY (samplingfeatureid); + + +-- +-- TOC entry 4322 (class 2606 OID 71068) +-- Name: spatialoffsets_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY spatialoffsets + ADD CONSTRAINT spatialoffsets_pkey PRIMARY KEY (spatialoffsetid); + + +-- +-- TOC entry 4250 (class 2606 OID 70783) +-- Name: spatialreferenceexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY spatialreferenceexternalidentifiers + ADD CONSTRAINT spatialreferenceexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4324 (class 2606 OID 71079) +-- Name: spatialreferences_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY spatialreferences + ADD CONSTRAINT spatialreferences_pkey PRIMARY KEY (spatialreferenceid); + + +-- +-- TOC entry 4260 (class 2606 OID 70829) +-- Name: specimenbatchpostions_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY specimenbatchpostions + ADD CONSTRAINT specimenbatchpostions_pkey PRIMARY KEY (featureactionid); + + +-- +-- TOC entry 4326 (class 2606 OID 71087) +-- Name: specimens_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY specimens + ADD CONSTRAINT specimens_pkey PRIMARY KEY (samplingfeatureid); + + +-- +-- TOC entry 4328 (class 2606 OID 71095) +-- Name: specimentaxonomicclassifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY specimentaxonomicclassifiers + ADD CONSTRAINT specimentaxonomicclassifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4302 (class 2606 OID 70991) +-- Name: spectraresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT spectraresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4091 (class 2606 OID 70085) +-- Name: spectraresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY spectraresultvalueannotations + ADD CONSTRAINT spectraresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4304 (class 2606 OID 71002) +-- Name: spectraresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY spectraresultvalues + ADD CONSTRAINT spectraresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4252 (class 2606 OID 70794) +-- Name: taxonomicclassifierexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY taxonomicclassifierexternalidentifiers + ADD CONSTRAINT taxonomicclassifierexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4126 (class 2606 OID 70251) +-- Name: taxonomicclassifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY taxonomicclassifiers + ADD CONSTRAINT taxonomicclassifiers_pkey PRIMARY KEY (taxonomicclassifierid); + + +-- +-- TOC entry 4306 (class 2606 OID 71007) +-- Name: timeseriesresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT timeseriesresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4093 (class 2606 OID 70093) +-- Name: timeseriesresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY timeseriesresultvalueannotations + ADD CONSTRAINT timeseriesresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4308 (class 2606 OID 71018) +-- Name: timeseriesresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY timeseriesresultvalues + ADD CONSTRAINT timeseriesresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4310 (class 2606 OID 71023) +-- Name: trajectoryresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY trajectoryresults + ADD CONSTRAINT trajectoryresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4095 (class 2606 OID 70101) +-- Name: trajectoryresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY trajectoryresultvalueannotations + ADD CONSTRAINT trajectoryresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4312 (class 2606 OID 71034) +-- Name: trajectoryresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT trajectoryresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4314 (class 2606 OID 71039) +-- Name: transectresults_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT transectresults_pkey PRIMARY KEY (resultid); + + +-- +-- TOC entry 4097 (class 2606 OID 70109) +-- Name: transectresultvalueannotations_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY transectresultvalueannotations + ADD CONSTRAINT transectresultvalueannotations_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4316 (class 2606 OID 71050) +-- Name: transectresultvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT transectresultvalues_pkey PRIMARY KEY (valueid); + + +-- +-- TOC entry 4128 (class 2606 OID 70262) +-- Name: units_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY units + ADD CONSTRAINT units_pkey PRIMARY KEY (unitsid); + + +-- +-- TOC entry 4236 (class 2606 OID 70709) +-- Name: variableextensionpropertyvalues_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY variableextensionpropertyvalues + ADD CONSTRAINT variableextensionpropertyvalues_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4254 (class 2606 OID 70805) +-- Name: variableexternalidentifiers_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY variableexternalidentifiers + ADD CONSTRAINT variableexternalidentifiers_pkey PRIMARY KEY (bridgeid); + + +-- +-- TOC entry 4130 (class 2606 OID 70273) +-- Name: variables_pkey; Type: CONSTRAINT; Schema: odm2; Owner: -; Tablespace: +-- + +ALTER TABLE ONLY variables + ADD CONSTRAINT variables_pkey PRIMARY KEY (variableid); + + +-- +-- TOC entry 4122 (class 1259 OID 72583) +-- Name: idx_samplingfeature_featuregeom; Type: INDEX; Schema: odm2; Owner: -; Tablespace: +-- + +CREATE INDEX idx_samplingfeature_featuregeom ON samplingfeatures USING gist (featuregeometry); + + +-- +-- TOC entry 4337 (class 2606 OID 71137) +-- Name: fk_actionannotations_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionannotations + ADD CONSTRAINT fk_actionannotations_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4338 (class 2606 OID 71142) +-- Name: fk_actionannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionannotations + ADD CONSTRAINT fk_actionannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4476 (class 2606 OID 71832) +-- Name: fk_actiondirectives_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actiondirectives + ADD CONSTRAINT fk_actiondirectives_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4477 (class 2606 OID 71837) +-- Name: fk_actiondirectives_directives; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actiondirectives + ADD CONSTRAINT fk_actiondirectives_directives FOREIGN KEY (directiveid) REFERENCES directives(directiveid) ON DELETE CASCADE; + + +-- +-- TOC entry 4445 (class 2606 OID 71677) +-- Name: fk_actionextensionpropertyvalues_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionextensionpropertyvalues + ADD CONSTRAINT fk_actionextensionpropertyvalues_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4446 (class 2606 OID 71682) +-- Name: fk_actionextensionpropertyvalues_extensionproperties; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionextensionpropertyvalues + ADD CONSTRAINT fk_actionextensionpropertyvalues_extensionproperties FOREIGN KEY (propertyid) REFERENCES extensionproperties(propertyid) ON DELETE CASCADE; + + +-- +-- TOC entry 4368 (class 2606 OID 71292) +-- Name: fk_actionpeople_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionby + ADD CONSTRAINT fk_actionpeople_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4369 (class 2606 OID 71297) +-- Name: fk_actionpeople_affiliations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actionby + ADD CONSTRAINT fk_actionpeople_affiliations FOREIGN KEY (affiliationid) REFERENCES affiliations(affiliationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4370 (class 2606 OID 71302) +-- Name: fk_actions_cv_actiontype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actions + ADD CONSTRAINT fk_actions_cv_actiontype FOREIGN KEY (actiontypecv) REFERENCES cv_actiontype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4371 (class 2606 OID 71307) +-- Name: fk_actions_methods; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY actions + ADD CONSTRAINT fk_actions_methods FOREIGN KEY (methodid) REFERENCES methods(methodid) ON DELETE CASCADE; + + +-- +-- TOC entry 4372 (class 2606 OID 71312) +-- Name: fk_affiliations_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY affiliations + ADD CONSTRAINT fk_affiliations_organizations FOREIGN KEY (organizationid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4373 (class 2606 OID 71317) +-- Name: fk_affiliations_people; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY affiliations + ADD CONSTRAINT fk_affiliations_people FOREIGN KEY (personid) REFERENCES people(personid) ON DELETE CASCADE; + + +-- +-- TOC entry 4339 (class 2606 OID 71147) +-- Name: fk_annotations_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY annotations + ADD CONSTRAINT fk_annotations_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4340 (class 2606 OID 71152) +-- Name: fk_annotations_cv_annotationtype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY annotations + ADD CONSTRAINT fk_annotations_cv_annotationtype FOREIGN KEY (annotationtypecv) REFERENCES cv_annotationtype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4341 (class 2606 OID 71157) +-- Name: fk_annotations_people; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY annotations + ADD CONSTRAINT fk_annotations_people FOREIGN KEY (annotatorid) REFERENCES people(personid) ON DELETE CASCADE; + + +-- +-- TOC entry 4480 (class 2606 OID 71852) +-- Name: fk_authorlists_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY authorlists + ADD CONSTRAINT fk_authorlists_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4481 (class 2606 OID 71857) +-- Name: fk_authorlists_people; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY authorlists + ADD CONSTRAINT fk_authorlists_people FOREIGN KEY (personid) REFERENCES people(personid) ON DELETE CASCADE; + + +-- +-- TOC entry 4416 (class 2606 OID 71532) +-- Name: fk_calibrationactions_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationactions + ADD CONSTRAINT fk_calibrationactions_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4417 (class 2606 OID 71537) +-- Name: fk_calibrationactions_instrumentoutputvariables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationactions + ADD CONSTRAINT fk_calibrationactions_instrumentoutputvariables FOREIGN KEY (instrumentoutputvariableid) REFERENCES instrumentoutputvariables(instrumentoutputvariableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4418 (class 2606 OID 71542) +-- Name: fk_calibrationreferenceequipment_calibrationactions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationreferenceequipment + ADD CONSTRAINT fk_calibrationreferenceequipment_calibrationactions FOREIGN KEY (actionid) REFERENCES calibrationactions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4419 (class 2606 OID 71547) +-- Name: fk_calibrationreferenceequipment_equipment; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationreferenceequipment + ADD CONSTRAINT fk_calibrationreferenceequipment_equipment FOREIGN KEY (equipmentid) REFERENCES equipment(equipmentid) ON DELETE CASCADE; + + +-- +-- TOC entry 4420 (class 2606 OID 71552) +-- Name: fk_calibrationstandards_calibrationactions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationstandards + ADD CONSTRAINT fk_calibrationstandards_calibrationactions FOREIGN KEY (actionid) REFERENCES calibrationactions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4502 (class 2606 OID 71962) +-- Name: fk_categoricalresults_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresults + ADD CONSTRAINT fk_categoricalresults_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4503 (class 2606 OID 71967) +-- Name: fk_categoricalresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresults + ADD CONSTRAINT fk_categoricalresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4504 (class 2606 OID 71972) +-- Name: fk_categoricalresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresults + ADD CONSTRAINT fk_categoricalresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4342 (class 2606 OID 71162) +-- Name: fk_categoricalresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresultvalueannotations + ADD CONSTRAINT fk_categoricalresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4343 (class 2606 OID 71167) +-- Name: fk_categoricalresultvalueannotations_categoricalresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresultvalueannotations + ADD CONSTRAINT fk_categoricalresultvalueannotations_categoricalresultvalues FOREIGN KEY (valueid) REFERENCES categoricalresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4505 (class 2606 OID 71977) +-- Name: fk_categoricalresultvalues_categoricalresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY categoricalresultvalues + ADD CONSTRAINT fk_categoricalresultvalues_categoricalresults FOREIGN KEY (resultid) REFERENCES categoricalresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4447 (class 2606 OID 71687) +-- Name: fk_citationextensionpropertyvalues_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citationextensionpropertyvalues + ADD CONSTRAINT fk_citationextensionpropertyvalues_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4448 (class 2606 OID 71692) +-- Name: fk_citationextensionpropertyvalues_extensionproperties; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citationextensionpropertyvalues + ADD CONSTRAINT fk_citationextensionpropertyvalues_extensionproperties FOREIGN KEY (propertyid) REFERENCES extensionproperties(propertyid) ON DELETE CASCADE; + + +-- +-- TOC entry 4459 (class 2606 OID 71747) +-- Name: fk_citationexternalidentifiers_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citationexternalidentifiers + ADD CONSTRAINT fk_citationexternalidentifiers_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4460 (class 2606 OID 71752) +-- Name: fk_citationexternalidentifiers_externalidentifiersystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY citationexternalidentifiers + ADD CONSTRAINT fk_citationexternalidentifiers_externalidentifiersystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4422 (class 2606 OID 71562) +-- Name: fk_dataloggerfilecolumns_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT fk_dataloggerfilecolumns_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4423 (class 2606 OID 71567) +-- Name: fk_dataloggerfilecolumns_dataloggerfiles; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT fk_dataloggerfilecolumns_dataloggerfiles FOREIGN KEY (dataloggerfileid) REFERENCES dataloggerfiles(dataloggerfileid) ON DELETE CASCADE; + + +-- +-- TOC entry 4424 (class 2606 OID 71572) +-- Name: fk_dataloggerfilecolumns_instrumentoutputvariables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT fk_dataloggerfilecolumns_instrumentoutputvariables FOREIGN KEY (instrumentoutputvariableid) REFERENCES instrumentoutputvariables(instrumentoutputvariableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4425 (class 2606 OID 71577) +-- Name: fk_dataloggerfilecolumns_recordingunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT fk_dataloggerfilecolumns_recordingunits FOREIGN KEY (recordingintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4426 (class 2606 OID 71582) +-- Name: fk_dataloggerfilecolumns_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT fk_dataloggerfilecolumns_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4427 (class 2606 OID 71587) +-- Name: fk_dataloggerfilecolumns_scanunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfilecolumns + ADD CONSTRAINT fk_dataloggerfilecolumns_scanunits FOREIGN KEY (scanintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4428 (class 2606 OID 71592) +-- Name: fk_dataloggerfiles_dataloggerprogramfiles; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerfiles + ADD CONSTRAINT fk_dataloggerfiles_dataloggerprogramfiles FOREIGN KEY (programid) REFERENCES dataloggerprogramfiles(programid) ON DELETE CASCADE; + + +-- +-- TOC entry 4429 (class 2606 OID 71597) +-- Name: fk_dataloggerprogramfiles_affiliations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataloggerprogramfiles + ADD CONSTRAINT fk_dataloggerprogramfiles_affiliations FOREIGN KEY (affiliationid) REFERENCES affiliations(affiliationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4403 (class 2606 OID 71467) +-- Name: fk_dataquality_cv_dataqualitytype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataquality + ADD CONSTRAINT fk_dataquality_cv_dataqualitytype FOREIGN KEY (dataqualitytypecv) REFERENCES cv_dataqualitytype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4404 (class 2606 OID 71472) +-- Name: fk_dataquality_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY dataquality + ADD CONSTRAINT fk_dataquality_units FOREIGN KEY (dataqualityvalueunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4482 (class 2606 OID 71862) +-- Name: fk_datasetcitations_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetcitations + ADD CONSTRAINT fk_datasetcitations_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4483 (class 2606 OID 71867) +-- Name: fk_datasetcitations_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetcitations + ADD CONSTRAINT fk_datasetcitations_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4484 (class 2606 OID 71872) +-- Name: fk_datasetcitations_datasets; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetcitations + ADD CONSTRAINT fk_datasetcitations_datasets FOREIGN KEY (datasetid) REFERENCES datasets(datasetid) ON DELETE CASCADE; + + +-- +-- TOC entry 4374 (class 2606 OID 71322) +-- Name: fk_datasets_cv_datasettypecv; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasets + ADD CONSTRAINT fk_datasets_cv_datasettypecv FOREIGN KEY (datasettypecv) REFERENCES cv_datasettypecv(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4375 (class 2606 OID 71327) +-- Name: fk_datasetsresults_datasets; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetsresults + ADD CONSTRAINT fk_datasetsresults_datasets FOREIGN KEY (datasetid) REFERENCES datasets(datasetid) ON DELETE CASCADE; + + +-- +-- TOC entry 4376 (class 2606 OID 71332) +-- Name: fk_datasetsresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY datasetsresults + ADD CONSTRAINT fk_datasetsresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4478 (class 2606 OID 71842) +-- Name: fk_directives_cv_directivetype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY directives + ADD CONSTRAINT fk_directives_cv_directivetype FOREIGN KEY (directivetypecv) REFERENCES cv_directivetype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4430 (class 2606 OID 71602) +-- Name: fk_equipment_cv_equipmenttype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipment + ADD CONSTRAINT fk_equipment_cv_equipmenttype FOREIGN KEY (equipmenttypecv) REFERENCES cv_equipmenttype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4431 (class 2606 OID 71607) +-- Name: fk_equipment_equipmentmodels; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipment + ADD CONSTRAINT fk_equipment_equipmentmodels FOREIGN KEY (equipmentmodelid) REFERENCES equipmentmodels(equipmentmodelid) ON DELETE CASCADE; + + +-- +-- TOC entry 4432 (class 2606 OID 71612) +-- Name: fk_equipment_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipment + ADD CONSTRAINT fk_equipment_organizations FOREIGN KEY (equipmentvendorid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4433 (class 2606 OID 71617) +-- Name: fk_equipment_people; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipment + ADD CONSTRAINT fk_equipment_people FOREIGN KEY (equipmentownerid) REFERENCES people(personid) ON DELETE CASCADE; + + +-- +-- TOC entry 4435 (class 2606 OID 71627) +-- Name: fk_equipmentactions_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentused + ADD CONSTRAINT fk_equipmentactions_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4436 (class 2606 OID 71632) +-- Name: fk_equipmentactions_equipment; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentused + ADD CONSTRAINT fk_equipmentactions_equipment FOREIGN KEY (equipmentid) REFERENCES equipment(equipmentid) ON DELETE CASCADE; + + +-- +-- TOC entry 4344 (class 2606 OID 71172) +-- Name: fk_equipmentannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentannotations + ADD CONSTRAINT fk_equipmentannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4345 (class 2606 OID 71177) +-- Name: fk_equipmentannotations_equipment; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentannotations + ADD CONSTRAINT fk_equipmentannotations_equipment FOREIGN KEY (equipmentid) REFERENCES equipment(equipmentid) ON DELETE CASCADE; + + +-- +-- TOC entry 4434 (class 2606 OID 71622) +-- Name: fk_equipmentmodels_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY equipmentmodels + ADD CONSTRAINT fk_equipmentmodels_organizations FOREIGN KEY (modelmanufacturerid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4449 (class 2606 OID 71697) +-- Name: fk_extensionproperties_cv_propertydatatype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY extensionproperties + ADD CONSTRAINT fk_extensionproperties_cv_propertydatatype FOREIGN KEY (propertydatatypecv) REFERENCES cv_propertydatatype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4450 (class 2606 OID 71702) +-- Name: fk_extensionproperties_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY extensionproperties + ADD CONSTRAINT fk_extensionproperties_units FOREIGN KEY (propertyunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4461 (class 2606 OID 71757) +-- Name: fk_externalidentifiersystems_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY externalidentifiersystems + ADD CONSTRAINT fk_externalidentifiersystems_organizations FOREIGN KEY (identifiersystemorganizationid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4377 (class 2606 OID 71337) +-- Name: fk_featureactions_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY featureactions + ADD CONSTRAINT fk_featureactions_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4378 (class 2606 OID 71342) +-- Name: fk_featureactions_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY featureactions + ADD CONSTRAINT fk_featureactions_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4603 (class 2606 OID 72467) +-- Name: fk_featureparents_featuresparent; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedfeatures + ADD CONSTRAINT fk_featureparents_featuresparent FOREIGN KEY (relatedfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4604 (class 2606 OID 72472) +-- Name: fk_featureparents_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedfeatures + ADD CONSTRAINT fk_featureparents_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4605 (class 2606 OID 72477) +-- Name: fk_featureparents_spatialoffsets; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedfeatures + ADD CONSTRAINT fk_featureparents_spatialoffsets FOREIGN KEY (spatialoffsetid) REFERENCES spatialoffsets(spatialoffsetid) ON DELETE CASCADE; + + +-- +-- TOC entry 4421 (class 2606 OID 71557) +-- Name: fk_fieldcalibrationstandards_referencematerials; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY calibrationstandards + ADD CONSTRAINT fk_fieldcalibrationstandards_referencematerials FOREIGN KEY (referencematerialid) REFERENCES referencematerials(referencematerialid) ON DELETE CASCADE; + + +-- +-- TOC entry 4437 (class 2606 OID 71637) +-- Name: fk_instrumentoutputvariables_equipmentmodels; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY instrumentoutputvariables + ADD CONSTRAINT fk_instrumentoutputvariables_equipmentmodels FOREIGN KEY (modelid) REFERENCES equipmentmodels(equipmentmodelid) ON DELETE CASCADE; + + +-- +-- TOC entry 4438 (class 2606 OID 71642) +-- Name: fk_instrumentoutputvariables_methods; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY instrumentoutputvariables + ADD CONSTRAINT fk_instrumentoutputvariables_methods FOREIGN KEY (instrumentmethodid) REFERENCES methods(methodid) ON DELETE CASCADE; + + +-- +-- TOC entry 4439 (class 2606 OID 71647) +-- Name: fk_instrumentoutputvariables_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY instrumentoutputvariables + ADD CONSTRAINT fk_instrumentoutputvariables_units FOREIGN KEY (instrumentrawoutputunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4440 (class 2606 OID 71652) +-- Name: fk_instrumentoutputvariables_variables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY instrumentoutputvariables + ADD CONSTRAINT fk_instrumentoutputvariables_variables FOREIGN KEY (variableid) REFERENCES variables(variableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4441 (class 2606 OID 71657) +-- Name: fk_maintenanceactions_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY maintenanceactions + ADD CONSTRAINT fk_maintenanceactions_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4506 (class 2606 OID 71982) +-- Name: fk_measurementresults_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4507 (class 2606 OID 71987) +-- Name: fk_measurementresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4508 (class 2606 OID 71992) +-- Name: fk_measurementresults_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4509 (class 2606 OID 71997) +-- Name: fk_measurementresults_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4510 (class 2606 OID 72002) +-- Name: fk_measurementresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4511 (class 2606 OID 72007) +-- Name: fk_measurementresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4512 (class 2606 OID 72012) +-- Name: fk_measurementresults_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4513 (class 2606 OID 72017) +-- Name: fk_measurementresults_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4514 (class 2606 OID 72022) +-- Name: fk_measurementresults_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresults + ADD CONSTRAINT fk_measurementresults_zunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4346 (class 2606 OID 71182) +-- Name: fk_measurementresultvalueannotations_measurementresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresultvalueannotations + ADD CONSTRAINT fk_measurementresultvalueannotations_measurementresultvalues FOREIGN KEY (valueid) REFERENCES measurementresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4515 (class 2606 OID 72027) +-- Name: fk_measurementresultvalues_measurementresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresultvalues + ADD CONSTRAINT fk_measurementresultvalues_measurementresults FOREIGN KEY (resultid) REFERENCES measurementresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4348 (class 2606 OID 71192) +-- Name: fk_methodannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodannotations + ADD CONSTRAINT fk_methodannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4349 (class 2606 OID 71197) +-- Name: fk_methodannotations_methods; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodannotations + ADD CONSTRAINT fk_methodannotations_methods FOREIGN KEY (methodid) REFERENCES methods(methodid) ON DELETE CASCADE; + + +-- +-- TOC entry 4485 (class 2606 OID 71877) +-- Name: fk_methodcitations_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodcitations + ADD CONSTRAINT fk_methodcitations_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4486 (class 2606 OID 71882) +-- Name: fk_methodcitations_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodcitations + ADD CONSTRAINT fk_methodcitations_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4487 (class 2606 OID 71887) +-- Name: fk_methodcitations_methods; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodcitations + ADD CONSTRAINT fk_methodcitations_methods FOREIGN KEY (methodid) REFERENCES methods(methodid) ON DELETE CASCADE; + + +-- +-- TOC entry 4451 (class 2606 OID 71707) +-- Name: fk_methodextensionpropertyvalues_extensionproperties; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodextensionpropertyvalues + ADD CONSTRAINT fk_methodextensionpropertyvalues_extensionproperties FOREIGN KEY (propertyid) REFERENCES extensionproperties(propertyid) ON DELETE CASCADE; + + +-- +-- TOC entry 4452 (class 2606 OID 71712) +-- Name: fk_methodextensionpropertyvalues_methods; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodextensionpropertyvalues + ADD CONSTRAINT fk_methodextensionpropertyvalues_methods FOREIGN KEY (methodid) REFERENCES methods(methodid) ON DELETE CASCADE; + + +-- +-- TOC entry 4462 (class 2606 OID 71762) +-- Name: fk_methodexternalidentifiers_externalidentifiersystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodexternalidentifiers + ADD CONSTRAINT fk_methodexternalidentifiers_externalidentifiersystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4463 (class 2606 OID 71767) +-- Name: fk_methodexternalidentifiers_methods; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methodexternalidentifiers + ADD CONSTRAINT fk_methodexternalidentifiers_methods FOREIGN KEY (methodid) REFERENCES methods(methodid) ON DELETE CASCADE; + + +-- +-- TOC entry 4379 (class 2606 OID 71347) +-- Name: fk_methods_cv_methodtype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methods + ADD CONSTRAINT fk_methods_cv_methodtype FOREIGN KEY (methodtypecv) REFERENCES cv_methodtype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4380 (class 2606 OID 71352) +-- Name: fk_methods_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY methods + ADD CONSTRAINT fk_methods_organizations FOREIGN KEY (organizationid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4620 (class 2606 OID 72552) +-- Name: fk_modelaffiliations_affiliations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY modelaffiliations + ADD CONSTRAINT fk_modelaffiliations_affiliations FOREIGN KEY (affiliationid) REFERENCES affiliations(affiliationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4621 (class 2606 OID 72557) +-- Name: fk_modelaffiliations_models; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY modelaffiliations + ADD CONSTRAINT fk_modelaffiliations_models FOREIGN KEY (modelid) REFERENCES models(modelid) ON DELETE CASCADE; + + +-- +-- TOC entry 4381 (class 2606 OID 71357) +-- Name: fk_organizations_cv_organizationtype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY organizations + ADD CONSTRAINT fk_organizations_cv_organizationtype FOREIGN KEY (organizationtypecv) REFERENCES cv_organizationtype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4382 (class 2606 OID 71362) +-- Name: fk_organizations_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY organizations + ADD CONSTRAINT fk_organizations_organizations FOREIGN KEY (parentorganizationid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4397 (class 2606 OID 71437) +-- Name: fk_parenttaxon_taxon; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY taxonomicclassifiers + ADD CONSTRAINT fk_parenttaxon_taxon FOREIGN KEY (parenttaxonomicclassifierid) REFERENCES taxonomicclassifiers(taxonomicclassifierid) ON DELETE CASCADE; + + +-- +-- TOC entry 4464 (class 2606 OID 71772) +-- Name: fk_personexternalidentifiers_externalidentifiersystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY personexternalidentifiers + ADD CONSTRAINT fk_personexternalidentifiers_externalidentifiersystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4465 (class 2606 OID 71777) +-- Name: fk_personexternalidentifiers_people; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY personexternalidentifiers + ADD CONSTRAINT fk_personexternalidentifiers_people FOREIGN KEY (personid) REFERENCES people(personid) ON DELETE CASCADE; + + +-- +-- TOC entry 4516 (class 2606 OID 72032) +-- Name: fk_pointcoverageresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT fk_pointcoverageresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4517 (class 2606 OID 72037) +-- Name: fk_pointcoverageresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT fk_pointcoverageresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4518 (class 2606 OID 72042) +-- Name: fk_pointcoverageresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT fk_pointcoverageresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4519 (class 2606 OID 72047) +-- Name: fk_pointcoverageresults_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT fk_pointcoverageresults_xunits FOREIGN KEY (intendedxspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4520 (class 2606 OID 72052) +-- Name: fk_pointcoverageresults_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT fk_pointcoverageresults_yunits FOREIGN KEY (intendedyspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4521 (class 2606 OID 72057) +-- Name: fk_pointcoverageresults_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresults + ADD CONSTRAINT fk_pointcoverageresults_zunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4350 (class 2606 OID 71202) +-- Name: fk_pointcoverageresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalueannotations + ADD CONSTRAINT fk_pointcoverageresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4351 (class 2606 OID 71207) +-- Name: fk_pointcoverageresultvalueannotations_pointcoverageresultvalue; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalueannotations + ADD CONSTRAINT fk_pointcoverageresultvalueannotations_pointcoverageresultvalue FOREIGN KEY (valueid) REFERENCES pointcoverageresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4522 (class 2606 OID 72062) +-- Name: fk_pointcoverageresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalues + ADD CONSTRAINT fk_pointcoverageresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4523 (class 2606 OID 72067) +-- Name: fk_pointcoverageresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalues + ADD CONSTRAINT fk_pointcoverageresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4524 (class 2606 OID 72072) +-- Name: fk_pointcoverageresultvalues_pointcoverageresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalues + ADD CONSTRAINT fk_pointcoverageresultvalues_pointcoverageresults FOREIGN KEY (resultid) REFERENCES pointcoverageresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4525 (class 2606 OID 72077) +-- Name: fk_pointcoverageresultvalues_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalues + ADD CONSTRAINT fk_pointcoverageresultvalues_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4526 (class 2606 OID 72082) +-- Name: fk_pointcoverageresultvalues_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY pointcoverageresultvalues + ADD CONSTRAINT fk_pointcoverageresultvalues_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4527 (class 2606 OID 72087) +-- Name: fk_profileresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4528 (class 2606 OID 72092) +-- Name: fk_profileresults_dunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_dunits FOREIGN KEY (intendedzspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4529 (class 2606 OID 72097) +-- Name: fk_profileresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4530 (class 2606 OID 72102) +-- Name: fk_profileresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4531 (class 2606 OID 72107) +-- Name: fk_profileresults_tunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_tunits FOREIGN KEY (intendedtimespacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4532 (class 2606 OID 72112) +-- Name: fk_profileresults_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4533 (class 2606 OID 72117) +-- Name: fk_profileresults_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresults + ADD CONSTRAINT fk_profileresults_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4352 (class 2606 OID 71212) +-- Name: fk_profileresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalueannotations + ADD CONSTRAINT fk_profileresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4353 (class 2606 OID 71217) +-- Name: fk_profileresultvalueannotations_profileresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalueannotations + ADD CONSTRAINT fk_profileresultvalueannotations_profileresultvalues FOREIGN KEY (valueid) REFERENCES profileresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4534 (class 2606 OID 72122) +-- Name: fk_profileresultvalues_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalues + ADD CONSTRAINT fk_profileresultvalues_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4535 (class 2606 OID 72127) +-- Name: fk_profileresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalues + ADD CONSTRAINT fk_profileresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4536 (class 2606 OID 72132) +-- Name: fk_profileresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalues + ADD CONSTRAINT fk_profileresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4537 (class 2606 OID 72137) +-- Name: fk_profileresultvalues_dunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalues + ADD CONSTRAINT fk_profileresultvalues_dunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4538 (class 2606 OID 72142) +-- Name: fk_profileresultvalues_profileresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY profileresultvalues + ADD CONSTRAINT fk_profileresultvalues_profileresults FOREIGN KEY (resultid) REFERENCES profileresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4405 (class 2606 OID 71477) +-- Name: fk_referencematerials_cv_referencematerialmedium; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerials + ADD CONSTRAINT fk_referencematerials_cv_referencematerialmedium FOREIGN KEY (referencematerialmediumcv) REFERENCES cv_referencematerialmedium(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4406 (class 2606 OID 71482) +-- Name: fk_referencematerials_organizations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerials + ADD CONSTRAINT fk_referencematerials_organizations FOREIGN KEY (referencematerialorganizationid) REFERENCES organizations(organizationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4407 (class 2606 OID 71487) +-- Name: fk_referencematerials_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerials + ADD CONSTRAINT fk_referencematerials_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4408 (class 2606 OID 71492) +-- Name: fk_referencematerialvalues_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialvalues + ADD CONSTRAINT fk_referencematerialvalues_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4409 (class 2606 OID 71497) +-- Name: fk_referencematerialvalues_referencematerials; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialvalues + ADD CONSTRAINT fk_referencematerialvalues_referencematerials FOREIGN KEY (referencematerialid) REFERENCES referencematerials(referencematerialid) ON DELETE CASCADE; + + +-- +-- TOC entry 4410 (class 2606 OID 71502) +-- Name: fk_referencematerialvalues_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialvalues + ADD CONSTRAINT fk_referencematerialvalues_units FOREIGN KEY (unitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4411 (class 2606 OID 71507) +-- Name: fk_referencematerialvalues_variables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialvalues + ADD CONSTRAINT fk_referencematerialvalues_variables FOREIGN KEY (variableid) REFERENCES variables(variableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4466 (class 2606 OID 71782) +-- Name: fk_refmaterialextidentifiers_extidentifiersystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialexternalidentifiers + ADD CONSTRAINT fk_refmaterialextidentifiers_extidentifiersystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4467 (class 2606 OID 71787) +-- Name: fk_refmaterialextidentifiers_refmaterials; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY referencematerialexternalidentifiers + ADD CONSTRAINT fk_refmaterialextidentifiers_refmaterials FOREIGN KEY (referencematerialid) REFERENCES referencematerials(referencematerialid) ON DELETE CASCADE; + + +-- +-- TOC entry 4383 (class 2606 OID 71367) +-- Name: fk_relatedactions_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedactions + ADD CONSTRAINT fk_relatedactions_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4384 (class 2606 OID 71372) +-- Name: fk_relatedactions_actions_arerelated; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedactions + ADD CONSTRAINT fk_relatedactions_actions_arerelated FOREIGN KEY (relatedactionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4385 (class 2606 OID 71377) +-- Name: fk_relatedactions_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedactions + ADD CONSTRAINT fk_relatedactions_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4488 (class 2606 OID 71892) +-- Name: fk_relatedannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedannotations + ADD CONSTRAINT fk_relatedannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4489 (class 2606 OID 71897) +-- Name: fk_relatedannotations_annotations_arerelated; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedannotations + ADD CONSTRAINT fk_relatedannotations_annotations_arerelated FOREIGN KEY (relatedannotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4490 (class 2606 OID 71902) +-- Name: fk_relatedannotations_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedannotations + ADD CONSTRAINT fk_relatedannotations_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4491 (class 2606 OID 71907) +-- Name: fk_relatedcitations_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedcitations + ADD CONSTRAINT fk_relatedcitations_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4492 (class 2606 OID 71912) +-- Name: fk_relatedcitations_citations_arerelated; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedcitations + ADD CONSTRAINT fk_relatedcitations_citations_arerelated FOREIGN KEY (relatedcitationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4493 (class 2606 OID 71917) +-- Name: fk_relatedcitations_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedcitations + ADD CONSTRAINT fk_relatedcitations_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4494 (class 2606 OID 71922) +-- Name: fk_relateddatasets_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relateddatasets + ADD CONSTRAINT fk_relateddatasets_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4495 (class 2606 OID 71927) +-- Name: fk_relateddatasets_datasets; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relateddatasets + ADD CONSTRAINT fk_relateddatasets_datasets FOREIGN KEY (datasetid) REFERENCES datasets(datasetid) ON DELETE CASCADE; + + +-- +-- TOC entry 4496 (class 2606 OID 71932) +-- Name: fk_relateddatasets_datasets_arerelated; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relateddatasets + ADD CONSTRAINT fk_relateddatasets_datasets_arerelated FOREIGN KEY (relateddatasetid) REFERENCES datasets(datasetid) ON DELETE CASCADE; + + +-- +-- TOC entry 4442 (class 2606 OID 71662) +-- Name: fk_relatedequipment_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedequipment + ADD CONSTRAINT fk_relatedequipment_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4443 (class 2606 OID 71667) +-- Name: fk_relatedequipment_equipment; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedequipment + ADD CONSTRAINT fk_relatedequipment_equipment FOREIGN KEY (equipmentid) REFERENCES equipment(equipmentid) ON DELETE CASCADE; + + +-- +-- TOC entry 4444 (class 2606 OID 71672) +-- Name: fk_relatedequipment_equipment_arerelated; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedequipment + ADD CONSTRAINT fk_relatedequipment_equipment_arerelated FOREIGN KEY (relatedequipmentid) REFERENCES equipment(equipmentid) ON DELETE CASCADE; + + +-- +-- TOC entry 4606 (class 2606 OID 72482) +-- Name: fk_relatedfeatures_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedfeatures + ADD CONSTRAINT fk_relatedfeatures_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4622 (class 2606 OID 72562) +-- Name: fk_relatedmodels_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedmodels + ADD CONSTRAINT fk_relatedmodels_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4623 (class 2606 OID 72567) +-- Name: fk_relatedmodels_models; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedmodels + ADD CONSTRAINT fk_relatedmodels_models FOREIGN KEY (modelid) REFERENCES models(modelid) ON DELETE CASCADE; + + +-- +-- TOC entry 4497 (class 2606 OID 71937) +-- Name: fk_relatedresults_cv_relationshiptype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedresults + ADD CONSTRAINT fk_relatedresults_cv_relationshiptype FOREIGN KEY (relationshiptypecv) REFERENCES cv_relationshiptype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4498 (class 2606 OID 71942) +-- Name: fk_relatedresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedresults + ADD CONSTRAINT fk_relatedresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4499 (class 2606 OID 71947) +-- Name: fk_relatedresults_results_arerelated; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY relatedresults + ADD CONSTRAINT fk_relatedresults_results_arerelated FOREIGN KEY (relatedresultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4354 (class 2606 OID 71222) +-- Name: fk_resultannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultannotations + ADD CONSTRAINT fk_resultannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4355 (class 2606 OID 71227) +-- Name: fk_resultannotations_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultannotations + ADD CONSTRAINT fk_resultannotations_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4500 (class 2606 OID 71952) +-- Name: fk_resultderivationequations_derivationequations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultderivationequations + ADD CONSTRAINT fk_resultderivationequations_derivationequations FOREIGN KEY (derivationequationid) REFERENCES derivationequations(derivationequationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4501 (class 2606 OID 71957) +-- Name: fk_resultderivationequations_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultderivationequations + ADD CONSTRAINT fk_resultderivationequations_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4453 (class 2606 OID 71717) +-- Name: fk_resultextensionpropertyvalues_extensionproperties; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultextensionpropertyvalues + ADD CONSTRAINT fk_resultextensionpropertyvalues_extensionproperties FOREIGN KEY (propertyid) REFERENCES extensionproperties(propertyid) ON DELETE CASCADE; + + +-- +-- TOC entry 4454 (class 2606 OID 71722) +-- Name: fk_resultextensionpropertyvalues_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultextensionpropertyvalues + ADD CONSTRAINT fk_resultextensionpropertyvalues_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4412 (class 2606 OID 71512) +-- Name: fk_resultnormalizationvalues_referencematerialvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultnormalizationvalues + ADD CONSTRAINT fk_resultnormalizationvalues_referencematerialvalues FOREIGN KEY (normalizedbyreferencematerialvalueid) REFERENCES referencematerialvalues(referencematerialvalueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4413 (class 2606 OID 71517) +-- Name: fk_resultnormalizationvalues_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultnormalizationvalues + ADD CONSTRAINT fk_resultnormalizationvalues_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4386 (class 2606 OID 71382) +-- Name: fk_results_cv_resulttype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_cv_resulttype FOREIGN KEY (resulttypecv) REFERENCES cv_resulttype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4387 (class 2606 OID 71387) +-- Name: fk_results_cv_sampledmedium; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_cv_sampledmedium FOREIGN KEY (sampledmediumcv) REFERENCES cv_sampledmedium(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4388 (class 2606 OID 71392) +-- Name: fk_results_cv_status; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_cv_status FOREIGN KEY (statuscv) REFERENCES cv_status(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4389 (class 2606 OID 71397) +-- Name: fk_results_featureactions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_featureactions FOREIGN KEY (featureactionid) REFERENCES featureactions(featureactionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4390 (class 2606 OID 71402) +-- Name: fk_results_processinglevels; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_processinglevels FOREIGN KEY (processinglevelid) REFERENCES processinglevels(processinglevelid) ON DELETE CASCADE; + + +-- +-- TOC entry 4391 (class 2606 OID 71407) +-- Name: fk_results_taxonomicclassifiers; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_taxonomicclassifiers FOREIGN KEY (taxonomicclassifierid) REFERENCES taxonomicclassifiers(taxonomicclassifierid) ON DELETE CASCADE; + + +-- +-- TOC entry 4392 (class 2606 OID 71412) +-- Name: fk_results_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_units FOREIGN KEY (unitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4393 (class 2606 OID 71417) +-- Name: fk_results_variables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY results + ADD CONSTRAINT fk_results_variables FOREIGN KEY (variableid) REFERENCES variables(variableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4414 (class 2606 OID 71522) +-- Name: fk_resultsdataquality_dataquality; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultsdataquality + ADD CONSTRAINT fk_resultsdataquality_dataquality FOREIGN KEY (dataqualityid) REFERENCES dataquality(dataqualityid) ON DELETE CASCADE; + + +-- +-- TOC entry 4415 (class 2606 OID 71527) +-- Name: fk_resultsdataquality_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY resultsdataquality + ADD CONSTRAINT fk_resultsdataquality_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4347 (class 2606 OID 71187) +-- Name: fk_resultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY measurementresultvalueannotations + ADD CONSTRAINT fk_resultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4356 (class 2606 OID 71232) +-- Name: fk_samplingfeatureannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureannotations + ADD CONSTRAINT fk_samplingfeatureannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4357 (class 2606 OID 71237) +-- Name: fk_samplingfeatureannotations_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureannotations + ADD CONSTRAINT fk_samplingfeatureannotations_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4455 (class 2606 OID 71727) +-- Name: fk_samplingfeatureextensionpropertyvalues_extensionproperties; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureextensionpropertyvalues + ADD CONSTRAINT fk_samplingfeatureextensionpropertyvalues_extensionproperties FOREIGN KEY (propertyid) REFERENCES extensionproperties(propertyid) ON DELETE CASCADE; + + +-- +-- TOC entry 4456 (class 2606 OID 71732) +-- Name: fk_samplingfeatureextensionpropertyvalues_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureextensionpropertyvalues + ADD CONSTRAINT fk_samplingfeatureextensionpropertyvalues_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4468 (class 2606 OID 71792) +-- Name: fk_samplingfeatureexternalidentifiers_externalidentifiersystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureexternalidentifiers + ADD CONSTRAINT fk_samplingfeatureexternalidentifiers_externalidentifiersystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4469 (class 2606 OID 71797) +-- Name: fk_samplingfeatureexternalidentifiers_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatureexternalidentifiers + ADD CONSTRAINT fk_samplingfeatureexternalidentifiers_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4394 (class 2606 OID 71422) +-- Name: fk_samplingfeatures_cv_elevationdatum; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatures + ADD CONSTRAINT fk_samplingfeatures_cv_elevationdatum FOREIGN KEY (elevationdatumcv) REFERENCES cv_elevationdatum(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4395 (class 2606 OID 71427) +-- Name: fk_samplingfeatures_cv_samplingfeaturegeotype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatures + ADD CONSTRAINT fk_samplingfeatures_cv_samplingfeaturegeotype FOREIGN KEY (samplingfeaturegeotypecv) REFERENCES cv_samplingfeaturegeotype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4396 (class 2606 OID 71432) +-- Name: fk_samplingfeatures_cv_samplingfeaturetype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY samplingfeatures + ADD CONSTRAINT fk_samplingfeatures_cv_samplingfeaturetype FOREIGN KEY (samplingfeaturetypecv) REFERENCES cv_samplingfeaturetype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4539 (class 2606 OID 72147) +-- Name: fk_sectionresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4540 (class 2606 OID 72152) +-- Name: fk_sectionresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4541 (class 2606 OID 72157) +-- Name: fk_sectionresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4542 (class 2606 OID 72162) +-- Name: fk_sectionresults_tmunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_tmunits FOREIGN KEY (intendedtimespacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4543 (class 2606 OID 72167) +-- Name: fk_sectionresults_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_units FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4544 (class 2606 OID 72172) +-- Name: fk_sectionresults_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_xunits FOREIGN KEY (intendedxspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4545 (class 2606 OID 72177) +-- Name: fk_sectionresults_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresults + ADD CONSTRAINT fk_sectionresults_zunits FOREIGN KEY (intendedzspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4358 (class 2606 OID 71242) +-- Name: fk_sectionresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalueannotations + ADD CONSTRAINT fk_sectionresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4359 (class 2606 OID 71247) +-- Name: fk_sectionresultvalueannotations_sectionresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalueannotations + ADD CONSTRAINT fk_sectionresultvalueannotations_sectionresultvalues FOREIGN KEY (valueid) REFERENCES sectionresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4546 (class 2606 OID 72182) +-- Name: fk_sectionresultvalues_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4547 (class 2606 OID 72187) +-- Name: fk_sectionresultvalues_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4548 (class 2606 OID 72192) +-- Name: fk_sectionresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4549 (class 2606 OID 72197) +-- Name: fk_sectionresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4550 (class 2606 OID 72202) +-- Name: fk_sectionresultvalues_sectionresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_sectionresults FOREIGN KEY (resultid) REFERENCES sectionresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4551 (class 2606 OID 72207) +-- Name: fk_sectionresultvalues_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4552 (class 2606 OID 72212) +-- Name: fk_sectionresultvalues_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sectionresultvalues + ADD CONSTRAINT fk_sectionresultvalues_zunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4624 (class 2606 OID 72572) +-- Name: fk_simulations_actions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY simulations + ADD CONSTRAINT fk_simulations_actions FOREIGN KEY (actionid) REFERENCES actions(actionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4625 (class 2606 OID 72577) +-- Name: fk_simulations_models; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY simulations + ADD CONSTRAINT fk_simulations_models FOREIGN KEY (modelid) REFERENCES models(modelid) ON DELETE CASCADE; + + +-- +-- TOC entry 4607 (class 2606 OID 72487) +-- Name: fk_sites_cv_sitetype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sites + ADD CONSTRAINT fk_sites_cv_sitetype FOREIGN KEY (sitetypecv) REFERENCES cv_sitetype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4608 (class 2606 OID 72492) +-- Name: fk_sites_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sites + ADD CONSTRAINT fk_sites_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4609 (class 2606 OID 72497) +-- Name: fk_sites_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY sites + ADD CONSTRAINT fk_sites_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4610 (class 2606 OID 72502) +-- Name: fk_spatialoffsets_cv_spatialoffsettype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialoffsets + ADD CONSTRAINT fk_spatialoffsets_cv_spatialoffsettype FOREIGN KEY (spatialoffsettypecv) REFERENCES cv_spatialoffsettype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4611 (class 2606 OID 72507) +-- Name: fk_spatialoffsets_offset1units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialoffsets + ADD CONSTRAINT fk_spatialoffsets_offset1units FOREIGN KEY (offset1unitid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4612 (class 2606 OID 72512) +-- Name: fk_spatialoffsets_offset2units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialoffsets + ADD CONSTRAINT fk_spatialoffsets_offset2units FOREIGN KEY (offset2unitid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4613 (class 2606 OID 72517) +-- Name: fk_spatialoffsets_offset3units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialoffsets + ADD CONSTRAINT fk_spatialoffsets_offset3units FOREIGN KEY (offset3unitid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4470 (class 2606 OID 71802) +-- Name: fk_spatialreferenceexternalidentifiers_externalidentifiersystem; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialreferenceexternalidentifiers + ADD CONSTRAINT fk_spatialreferenceexternalidentifiers_externalidentifiersystem FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4471 (class 2606 OID 71807) +-- Name: fk_spatialreferenceexternalidentifiers_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spatialreferenceexternalidentifiers + ADD CONSTRAINT fk_spatialreferenceexternalidentifiers_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4479 (class 2606 OID 71847) +-- Name: fk_specimenbatchpostions_featureactions; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimenbatchpostions + ADD CONSTRAINT fk_specimenbatchpostions_featureactions FOREIGN KEY (featureactionid) REFERENCES featureactions(featureactionid) ON DELETE CASCADE; + + +-- +-- TOC entry 4614 (class 2606 OID 72522) +-- Name: fk_specimens_cv_specimenmedium; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimens + ADD CONSTRAINT fk_specimens_cv_specimenmedium FOREIGN KEY (specimenmediumcv) REFERENCES cv_specimenmedium(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4615 (class 2606 OID 72527) +-- Name: fk_specimens_cv_specimentype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimens + ADD CONSTRAINT fk_specimens_cv_specimentype FOREIGN KEY (specimentypecv) REFERENCES cv_specimentype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4616 (class 2606 OID 72532) +-- Name: fk_specimens_samplingfeatures; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimens + ADD CONSTRAINT fk_specimens_samplingfeatures FOREIGN KEY (samplingfeatureid) REFERENCES samplingfeatures(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4617 (class 2606 OID 72537) +-- Name: fk_specimentaxonomicclassifiers_citations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimentaxonomicclassifiers + ADD CONSTRAINT fk_specimentaxonomicclassifiers_citations FOREIGN KEY (citationid) REFERENCES citations(citationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4618 (class 2606 OID 72542) +-- Name: fk_specimentaxonomicclassifiers_specimens; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimentaxonomicclassifiers + ADD CONSTRAINT fk_specimentaxonomicclassifiers_specimens FOREIGN KEY (samplingfeatureid) REFERENCES specimens(samplingfeatureid) ON DELETE CASCADE; + + +-- +-- TOC entry 4619 (class 2606 OID 72547) +-- Name: fk_specimentaxonomicclassifiers_taxonomicclassifiers; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY specimentaxonomicclassifiers + ADD CONSTRAINT fk_specimentaxonomicclassifiers_taxonomicclassifiers FOREIGN KEY (taxonomicclassifierid) REFERENCES taxonomicclassifiers(taxonomicclassifierid) ON DELETE CASCADE; + + +-- +-- TOC entry 4553 (class 2606 OID 72217) +-- Name: fk_spectraresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4554 (class 2606 OID 72222) +-- Name: fk_spectraresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4555 (class 2606 OID 72227) +-- Name: fk_spectraresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4556 (class 2606 OID 72232) +-- Name: fk_spectraresults_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_units FOREIGN KEY (intendedwavelengthspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4557 (class 2606 OID 72237) +-- Name: fk_spectraresults_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4558 (class 2606 OID 72242) +-- Name: fk_spectraresults_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4559 (class 2606 OID 72247) +-- Name: fk_spectraresults_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresults + ADD CONSTRAINT fk_spectraresults_zunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4360 (class 2606 OID 71252) +-- Name: fk_spectraresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalueannotations + ADD CONSTRAINT fk_spectraresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4361 (class 2606 OID 71257) +-- Name: fk_spectraresultvalueannotations_spectraresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalueannotations + ADD CONSTRAINT fk_spectraresultvalueannotations_spectraresultvalues FOREIGN KEY (valueid) REFERENCES spectraresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4560 (class 2606 OID 72252) +-- Name: fk_spectraresultvalues_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalues + ADD CONSTRAINT fk_spectraresultvalues_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4561 (class 2606 OID 72257) +-- Name: fk_spectraresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalues + ADD CONSTRAINT fk_spectraresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4562 (class 2606 OID 72262) +-- Name: fk_spectraresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalues + ADD CONSTRAINT fk_spectraresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4563 (class 2606 OID 72267) +-- Name: fk_spectraresultvalues_spectraresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalues + ADD CONSTRAINT fk_spectraresultvalues_spectraresults FOREIGN KEY (resultid) REFERENCES spectraresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4564 (class 2606 OID 72272) +-- Name: fk_spectraresultvalues_wunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY spectraresultvalues + ADD CONSTRAINT fk_spectraresultvalues_wunits FOREIGN KEY (wavelengthunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4472 (class 2606 OID 71812) +-- Name: fk_taxonomicclassifierextids_extidsystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY taxonomicclassifierexternalidentifiers + ADD CONSTRAINT fk_taxonomicclassifierextids_extidsystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4473 (class 2606 OID 71817) +-- Name: fk_taxonomicclassifierextids_taxonomicclassifiers; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY taxonomicclassifierexternalidentifiers + ADD CONSTRAINT fk_taxonomicclassifierextids_taxonomicclassifiers FOREIGN KEY (taxonomicclassifierid) REFERENCES taxonomicclassifiers(taxonomicclassifierid) ON DELETE CASCADE; + + +-- +-- TOC entry 4398 (class 2606 OID 71442) +-- Name: fk_taxonomicclassifiers_cv_taxonomicclassifiertype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY taxonomicclassifiers + ADD CONSTRAINT fk_taxonomicclassifiers_cv_taxonomicclassifiertype FOREIGN KEY (taxonomicclassifiertypecv) REFERENCES cv_taxonomicclassifiertype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4565 (class 2606 OID 72277) +-- Name: fk_timeseriesresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4566 (class 2606 OID 72282) +-- Name: fk_timeseriesresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4567 (class 2606 OID 72287) +-- Name: fk_timeseriesresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4568 (class 2606 OID 72292) +-- Name: fk_timeseriesresults_tunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_tunits FOREIGN KEY (intendedtimespacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4569 (class 2606 OID 72297) +-- Name: fk_timeseriesresults_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4570 (class 2606 OID 72302) +-- Name: fk_timeseriesresults_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4571 (class 2606 OID 72307) +-- Name: fk_timeseriesresults_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresults + ADD CONSTRAINT fk_timeseriesresults_zunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4362 (class 2606 OID 71262) +-- Name: fk_timeseriesresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalueannotations + ADD CONSTRAINT fk_timeseriesresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4363 (class 2606 OID 71267) +-- Name: fk_timeseriesresultvalueannotations_timeseriesresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalueannotations + ADD CONSTRAINT fk_timeseriesresultvalueannotations_timeseriesresultvalues FOREIGN KEY (valueid) REFERENCES timeseriesresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4572 (class 2606 OID 72312) +-- Name: fk_timeseriesresultvalues_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalues + ADD CONSTRAINT fk_timeseriesresultvalues_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4573 (class 2606 OID 72317) +-- Name: fk_timeseriesresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalues + ADD CONSTRAINT fk_timeseriesresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4574 (class 2606 OID 72322) +-- Name: fk_timeseriesresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalues + ADD CONSTRAINT fk_timeseriesresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4575 (class 2606 OID 72327) +-- Name: fk_timeseriesresultvalues_timeseriesresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY timeseriesresultvalues + ADD CONSTRAINT fk_timeseriesresultvalues_timeseriesresults FOREIGN KEY (resultid) REFERENCES timeseriesresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4576 (class 2606 OID 72332) +-- Name: fk_trajectoryresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresults + ADD CONSTRAINT fk_trajectoryresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4577 (class 2606 OID 72337) +-- Name: fk_trajectoryresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresults + ADD CONSTRAINT fk_trajectoryresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4578 (class 2606 OID 72342) +-- Name: fk_trajectoryresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresults + ADD CONSTRAINT fk_trajectoryresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4579 (class 2606 OID 72347) +-- Name: fk_trajectoryresults_tsunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresults + ADD CONSTRAINT fk_trajectoryresults_tsunits FOREIGN KEY (intendedtrajectoryspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4580 (class 2606 OID 72352) +-- Name: fk_trajectoryresults_tunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresults + ADD CONSTRAINT fk_trajectoryresults_tunits FOREIGN KEY (intendedtimespacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4364 (class 2606 OID 71272) +-- Name: fk_trajectoryresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalueannotations + ADD CONSTRAINT fk_trajectoryresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4365 (class 2606 OID 71277) +-- Name: fk_trajectoryresultvalueannotations_trajectoryresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalueannotations + ADD CONSTRAINT fk_trajectoryresultvalueannotations_trajectoryresultvalues FOREIGN KEY (valueid) REFERENCES trajectoryresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4581 (class 2606 OID 72357) +-- Name: fk_trajectoryresultvalues_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4582 (class 2606 OID 72362) +-- Name: fk_trajectoryresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4583 (class 2606 OID 72367) +-- Name: fk_trajectoryresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4584 (class 2606 OID 72372) +-- Name: fk_trajectoryresultvalues_distanceunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_distanceunits FOREIGN KEY (trajectorydistanceunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4585 (class 2606 OID 72377) +-- Name: fk_trajectoryresultvalues_trajectoryresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_trajectoryresults FOREIGN KEY (resultid) REFERENCES trajectoryresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4586 (class 2606 OID 72382) +-- Name: fk_trajectoryresultvalues_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4587 (class 2606 OID 72387) +-- Name: fk_trajectoryresultvalues_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4588 (class 2606 OID 72392) +-- Name: fk_trajectoryresultvalues_zunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY trajectoryresultvalues + ADD CONSTRAINT fk_trajectoryresultvalues_zunits FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4589 (class 2606 OID 72397) +-- Name: fk_transectresults_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT fk_transectresults_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4590 (class 2606 OID 72402) +-- Name: fk_transectresults_results; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT fk_transectresults_results FOREIGN KEY (resultid) REFERENCES results(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4591 (class 2606 OID 72407) +-- Name: fk_transectresults_spatialreferences; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT fk_transectresults_spatialreferences FOREIGN KEY (spatialreferenceid) REFERENCES spatialreferences(spatialreferenceid) ON DELETE CASCADE; + + +-- +-- TOC entry 4592 (class 2606 OID 72412) +-- Name: fk_transectresults_tmunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT fk_transectresults_tmunits FOREIGN KEY (intendedtimespacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4593 (class 2606 OID 72417) +-- Name: fk_transectresults_tsunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT fk_transectresults_tsunits FOREIGN KEY (intendedtransectspacingunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4594 (class 2606 OID 72422) +-- Name: fk_transectresults_units; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresults + ADD CONSTRAINT fk_transectresults_units FOREIGN KEY (zlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4366 (class 2606 OID 71282) +-- Name: fk_transectresultvalueannotations_annotations; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalueannotations + ADD CONSTRAINT fk_transectresultvalueannotations_annotations FOREIGN KEY (annotationid) REFERENCES annotations(annotationid) ON DELETE CASCADE; + + +-- +-- TOC entry 4367 (class 2606 OID 71287) +-- Name: fk_transectresultvalueannotations_transectresultvalues; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalueannotations + ADD CONSTRAINT fk_transectresultvalueannotations_transectresultvalues FOREIGN KEY (valueid) REFERENCES transectresultvalues(valueid) ON DELETE CASCADE; + + +-- +-- TOC entry 4595 (class 2606 OID 72427) +-- Name: fk_transectresultvalues_aiunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_aiunits FOREIGN KEY (timeaggregationintervalunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4596 (class 2606 OID 72432) +-- Name: fk_transectresultvalues_cv_aggregationstatistic; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_cv_aggregationstatistic FOREIGN KEY (aggregationstatisticcv) REFERENCES cv_aggregationstatistic(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4597 (class 2606 OID 72437) +-- Name: fk_transectresultvalues_cv_censorcode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_cv_censorcode FOREIGN KEY (censorcodecv) REFERENCES cv_censorcode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4598 (class 2606 OID 72442) +-- Name: fk_transectresultvalues_cv_qualitycode; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_cv_qualitycode FOREIGN KEY (qualitycodecv) REFERENCES cv_qualitycode(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4599 (class 2606 OID 72447) +-- Name: fk_transectresultvalues_distanceunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_distanceunits FOREIGN KEY (transectdistanceunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4600 (class 2606 OID 72452) +-- Name: fk_transectresultvalues_transectresults; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_transectresults FOREIGN KEY (resultid) REFERENCES transectresults(resultid) ON DELETE CASCADE; + + +-- +-- TOC entry 4601 (class 2606 OID 72457) +-- Name: fk_transectresultvalues_xunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_xunits FOREIGN KEY (xlocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4602 (class 2606 OID 72462) +-- Name: fk_transectresultvalues_yunits; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY transectresultvalues + ADD CONSTRAINT fk_transectresultvalues_yunits FOREIGN KEY (ylocationunitsid) REFERENCES units(unitsid) ON DELETE CASCADE; + + +-- +-- TOC entry 4399 (class 2606 OID 71447) +-- Name: fk_units_cv_unitstype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY units + ADD CONSTRAINT fk_units_cv_unitstype FOREIGN KEY (unitstypecv) REFERENCES cv_unitstype(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4457 (class 2606 OID 71737) +-- Name: fk_variableextensionpropertyvalues_extensionproperties; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variableextensionpropertyvalues + ADD CONSTRAINT fk_variableextensionpropertyvalues_extensionproperties FOREIGN KEY (propertyid) REFERENCES extensionproperties(propertyid) ON DELETE CASCADE; + + +-- +-- TOC entry 4458 (class 2606 OID 71742) +-- Name: fk_variableextensionpropertyvalues_variables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variableextensionpropertyvalues + ADD CONSTRAINT fk_variableextensionpropertyvalues_variables FOREIGN KEY (variableid) REFERENCES variables(variableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4474 (class 2606 OID 71822) +-- Name: fk_variableexternalidentifiers_externalidentifiersystems; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variableexternalidentifiers + ADD CONSTRAINT fk_variableexternalidentifiers_externalidentifiersystems FOREIGN KEY (externalidentifiersystemid) REFERENCES externalidentifiersystems(externalidentifiersystemid) ON DELETE CASCADE; + + +-- +-- TOC entry 4475 (class 2606 OID 71827) +-- Name: fk_variableexternalidentifiers_variables; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variableexternalidentifiers + ADD CONSTRAINT fk_variableexternalidentifiers_variables FOREIGN KEY (variableid) REFERENCES variables(variableid) ON DELETE CASCADE; + + +-- +-- TOC entry 4400 (class 2606 OID 71452) +-- Name: fk_variables_cv_speciation; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variables + ADD CONSTRAINT fk_variables_cv_speciation FOREIGN KEY (speciationcv) REFERENCES cv_speciation(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4401 (class 2606 OID 71457) +-- Name: fk_variables_cv_variablename; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variables + ADD CONSTRAINT fk_variables_cv_variablename FOREIGN KEY (variablenamecv) REFERENCES cv_variablename(name) ON DELETE CASCADE; + + +-- +-- TOC entry 4402 (class 2606 OID 71462) +-- Name: fk_variables_cv_variabletype; Type: FK CONSTRAINT; Schema: odm2; Owner: - +-- + +ALTER TABLE ONLY variables + ADD CONSTRAINT fk_variables_cv_variabletype FOREIGN KEY (variabletypecv) REFERENCES cv_variabletype(name) ON DELETE CASCADE; + + +-- Completed on 2015-06-11 00:07:06 PDT + +-- +-- PostgreSQL database dump complete +-- +